From 0fa378ec881a41e4bccb522ddd23acfd9fb3d477 Mon Sep 17 00:00:00 2001 From: chenxi Date: Tue, 18 Apr 2023 21:32:03 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E7=94=9F=E5=91=BD=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E8=A2=AB=E5=8A=A8=E6=94=B9=E4=B8=BA=E7=94=B1=E9=98=9F=E4=BC=8D?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/battle/helper/battle_passive.lua | 8 +++---- .../battle/team/battle_team_entity.lua | 23 +++++++++++++++++++ .../battle/team/battle_unit_entity.lua | 8 +++++++ 3 files changed, 35 insertions(+), 4 deletions(-) diff --git a/lua/app/module/battle/helper/battle_passive.lua b/lua/app/module/battle/helper/battle_passive.lua index 183da36b..4c24d36c 100644 --- a/lua/app/module/battle/helper/battle_passive.lua +++ b/lua/app/module/battle/helper/battle_passive.lua @@ -25,16 +25,16 @@ end local function _checkhpLowerThan(unitComp, skill, targetComp, hpPercent) local triggerValue = skill:getPassiveTriggerValue() or 0 if hpPercent*DEFAULT_FACTOR < triggerValue then -- 低于指定血量,触发技能 - local data = skill:getRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN) or 0 + local data = unitComp.unitEntity:getTeamRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN) or 0 if data == 1 then -- 已经触发过了 return 0 end - skill:setRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN, 1) + unitComp.unitEntity:setTeamRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN, 1) return 1 else - local data = skill:getRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN) or 0 + local data = unitComp.unitEntity:getTeamRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN) or 0 if data == 1 then -- 已经触发过了,那么需要取消 - skill:setRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN, 0) + unitComp.unitEntity:setTeamRecordData(SKILL_RECORD_DATA_NAME.HP_LOWER_THAN, 0) return -1 end end diff --git a/lua/app/userdata/battle/team/battle_team_entity.lua b/lua/app/userdata/battle/team/battle_team_entity.lua index d9bef4c7..00672b56 100644 --- a/lua/app/userdata/battle/team/battle_team_entity.lua +++ b/lua/app/userdata/battle/team/battle_team_entity.lua @@ -229,11 +229,34 @@ function BattleTeamEntity:handleShield(damageNum) end end +function BattleTeamEntity:getRecordData(name) + if self.recordData == nil then + self.recordData = {} + end + return self.recordData[name] +end + +function BattleTeamEntity:setRecordData(name, value) + if self.recordData == nil then + self.recordData = {} + end + self.recordData[name] = value +end + +function BattleTeamEntity:clearRecordData() + if self.recordData then + for k, v in pairs(self.recordData) do + self.recordData[k] = nil + end + end +end + function BattleTeamEntity:die() if self.isDead then return end self.isDead = true + self:clearRecordData() end function BattleTeamEntity:getIsDead() diff --git a/lua/app/userdata/battle/team/battle_unit_entity.lua b/lua/app/userdata/battle/team/battle_unit_entity.lua index 124a8b34..24dfbec0 100644 --- a/lua/app/userdata/battle/team/battle_unit_entity.lua +++ b/lua/app/userdata/battle/team/battle_unit_entity.lua @@ -253,6 +253,14 @@ function BattleUnitEntity:getSkillExtraUseTimes(skillId) return self.skillExtraUseTimes[skillId] or 0 end +function BattleUnitEntity:getTeamRecordData(name) + return self.team:getRecordData(name) +end + +function BattleUnitEntity:setTeamRecordData(name, value) + self.team:setRecordData(name, value) +end + function BattleUnitEntity:onRoundEnd() for k, v in ipairs(self.activeSkills) do v:cooldown() From e6015e7e8ce1145e04ed53c2eacb964b591946ad Mon Sep 17 00:00:00 2001 From: chenxi Date: Tue, 18 Apr 2023 22:22:03 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E8=A1=80=E6=9D=A1=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/global/global_func.lua | 4 + .../battle/component/battle_unit_comp.lua | 35 ++++ .../battle/controller/battle_controller.lua | 8 +- .../module/battle/helper/battle_helper.lua | 6 +- lua/app/module/battle/team/battle_team.lua | 6 +- lua/app/ui/battle/battle_ui.lua | 157 +++++++++++++++++- 6 files changed, 207 insertions(+), 9 deletions(-) diff --git a/lua/app/global/global_func.lua b/lua/app/global/global_func.lua index 7353d4ef..9dd1a020 100644 --- a/lua/app/global/global_func.lua +++ b/lua/app/global/global_func.lua @@ -1730,6 +1730,10 @@ function GFunc.getRewardType(reward) end end +function GFunc.DOBFSliderValue(slider, endValue, duration, snapping) + return CS.BF.Utils.DOBFSliderValue(slider, endValue, duration, snapping) +end + --[[ 设置tabLe只速 出现改写会抛出Lua error 用法locaL readOnlyCfg = GFunc.readOnlyTab(cfg) return readOnlyCfg diff --git a/lua/app/module/battle/component/battle_unit_comp.lua b/lua/app/module/battle/component/battle_unit_comp.lua index 3c8f9edc..73c692d5 100644 --- a/lua/app/module/battle/component/battle_unit_comp.lua +++ b/lua/app/module/battle/component/battle_unit_comp.lua @@ -243,16 +243,19 @@ function BattleUnitComp:useSkill(index, count, callback) if self.normalSkillCount <= 0 then self.actionOverCallback = nil self.activeSkillIndex = nil + self.battleController:setIsPauseHpProgress(false) callback() return end if not self:changeState(UNIT_STATE.NORMAL_ATTACK) then self.actionOverCallback = nil + self.battleController:setIsPauseHpProgress(false) callback() end else if not self:changeState(UNIT_STATE.SKILL_ATTACK) then self.actionOverCallback = nil + self.battleController:setIsPauseHpProgress(false) callback() end end @@ -274,16 +277,19 @@ function BattleUnitComp:useAllSkills(callback) if self.currActiveSkill == nil then -- 没有技能就用普攻 if self.normalSkillCount <= 0 then self.actionOverCallback = nil + self.battleController:setIsPauseHpProgress(false) callback() return end if not self:changeState(UNIT_STATE.NORMAL_ATTACK) then self.actionOverCallback = nil + self.battleController:setIsPauseHpProgress(false) callback() end else if not self:changeState(UNIT_STATE.SKILL_ATTACK) then self.actionOverCallback = nil + self.battleController:setIsPauseHpProgress(false) callback() end end @@ -294,6 +300,7 @@ function BattleUnitComp:useNormalSkill(count, callback) self.normalSkillCount = count + self.unitEntity:getNormalAttackAddCount() if not self:changeState(UNIT_STATE.NORMAL_ATTACK) then self.actionOverCallback = nil + self.battleController:setIsPauseHpProgress(false) callback() end end @@ -634,13 +641,38 @@ function BattleUnitComp:updateSkillAttack(dt) if self.normalSkillCount > 0 then local skill = self.unitEntity:getNormalSkill() self:onSkillTakeEffect(skill) + if self.normalSkillCount == 1 and self.currActiveSkill == nil then -- 最后一次攻击 + self.battleController:setIsPauseHpProgress(false) + end else self:onSkillTakeEffect(self.currActiveSkill) + if not self:getIsHaveNextAvailableActiveSkill() then + self.battleController:setIsPauseHpProgress(false) + end end end end end +function BattleUnitComp:getIsHaveNextAvailableActiveSkill() + local skillCanUseTimes = self.currActiveSkill:getSkillCanUseTimes() + if skillCanUseTimes and skillCanUseTimes > 0 then -- 当前技能可以多次使用 + return true + elseif self.activeSkillIndex then + local currActiveSkill = nil + local activeSkillIndex = self.activeSkillIndex + 1 + local activeSkillCount = self.unitEntity:getActiveSkillCount() + while activeSkillIndex <= activeSkillCount do + currActiveSkill = self.unitEntity:getAvailableActiveSkill(activeSkillIndex) + if currActiveSkill then + return true + end + activeSkillIndex = activeSkillIndex + 1 + end + end + return false +end + function BattleUnitComp:moveBackToInitPosition() self.isMove = true self:playAnimation(BattleConst.SPINE_ANIMATION_NAME.MOVE, true, false) @@ -763,6 +795,9 @@ function BattleUnitComp:updateNormalAttack(dt) self.currAttackKeyTime = 0 local skill = self.unitEntity:getNormalSkill() self:onSkillTakeEffect(skill) + if self.normalSkillCount == 1 then -- 如果是最后一次攻击,那么可以开始跑血条了 + self.battleController:setIsPauseHpProgress(false) + end end end end diff --git a/lua/app/module/battle/controller/battle_controller.lua b/lua/app/module/battle/controller/battle_controller.lua index f14d3e38..e3fb813c 100644 --- a/lua/app/module/battle/controller/battle_controller.lua +++ b/lua/app/module/battle/controller/battle_controller.lua @@ -155,9 +155,13 @@ end function BattleController:initBattleTeam() self.atkTeam = BattleTeam:create() - self.atkTeam:init(BattleConst.SIDE_ATK) + self.atkTeam:init(BattleConst.SIDE_ATK, self) self.defTeam = BattleTeam:create() - self.defTeam:init(BattleConst.SIDE_DEF) + self.defTeam:init(BattleConst.SIDE_DEF, self) +end + +function BattleController:setIsPauseHpProgress(value) + self.battleUI:setIsPauseHpProgress(value) end function BattleController:prepareFight() diff --git a/lua/app/module/battle/helper/battle_helper.lua b/lua/app/module/battle/helper/battle_helper.lua index 553c79b3..67423cbd 100644 --- a/lua/app/module/battle/helper/battle_helper.lua +++ b/lua/app/module/battle/helper/battle_helper.lua @@ -61,14 +61,12 @@ end function BattleHelper:getEffectText(parent) if #self.battleEffectTextPool <= 0 then - local prefab = CS.UnityEngine.Object.Instantiate(self.effectTextCache:getGameObject(), parent:getTransform(), false) + local prefab = CS.UnityEngine.Object.Instantiate(self.effectTextCache:getGameObject()) local prefabObject = UIPrefabObject:create() prefabObject:initWithPrefab(self.effectTextCache:getAssetPath(), prefab) prefabObject:initPrefabHelper() - prefabObject:addUnloadCallback(function(obj) - ResourceManager:unload(obj:getAssetPath()) - end) prefabObject:getTransform():SetAsLastSibling() + prefabObject:setParent(parent, false) local comp = prefabObject:addLuaComponent(GConst.BattleConst.TYPEOF_LUA_COMP.BATTLE_NUMBER_COMPONENT) comp:setEnabled(true) return comp diff --git a/lua/app/module/battle/team/battle_team.lua b/lua/app/module/battle/team/battle_team.lua index 4a27121c..cdefdc35 100644 --- a/lua/app/module/battle/team/battle_team.lua +++ b/lua/app/module/battle/team/battle_team.lua @@ -2,8 +2,9 @@ local BattleBuffHandle = require "app/module/battle/helper/battle_buff_handle" local BattleTeam = class("BattleTeam") -function BattleTeam:init(side) +function BattleTeam:init(side, battleController) self.side = side + self.battleController = battleController self.unitList = {} self.unitMap = {} self.buffList = {} @@ -53,6 +54,7 @@ function BattleTeam:useNormalSkill(matchType, count, callback) return callback() end self.mainUnit = unit + self.battleController:setIsPauseHpProgress(true) unit:beforeAttack() unit:useNormalSkill(count, callback) end @@ -68,6 +70,7 @@ function BattleTeam:useSkill(matchType, count, callback) return callback() end self.mainUnit = unit + self.battleController:setIsPauseHpProgress(true) unit:beforeAttack() unit:useSkill(1, count, callback) end @@ -94,6 +97,7 @@ function BattleTeam:useAssistingSkill(assistingList, callback) end function BattleTeam:mainUnitUseAllSkills(callback) + self.battleController:setIsPauseHpProgress(true) self.mainUnit:beforeAttack() self.mainUnit:useAllSkills(callback) end diff --git a/lua/app/ui/battle/battle_ui.lua b/lua/app/ui/battle/battle_ui.lua index ad00a0c8..e9bf4a16 100644 --- a/lua/app/ui/battle/battle_ui.lua +++ b/lua/app/ui/battle/battle_ui.lua @@ -92,20 +92,149 @@ end function BattleUI:initHpNode() self.hpProgressLeft = self.uiMap["battle_ui.top_node.bg_l.atk_slider_green"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) self.hpProgressRight = self.uiMap["battle_ui.top_node.bg_r.def_slider_red"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + self.hpProgressLeft.value = 1 + self.hpProgressRight.value = 1 self.hpProgressYellowLeft = self.uiMap["battle_ui.top_node.bg_l.atk_slider_yellow"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) self.hpProgressYellowRight = self.uiMap["battle_ui.top_node.bg_r.def_slider_yellow"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + self.hpProgressYellowLeft.value = 1 + self.hpProgressYellowRight.value = 1 self.hpTextLeft = self.uiMap["battle_ui.top_node.atk_hp"] self.hpTextRight = self.uiMap["battle_ui.top_node.def_hp"] + self.hpPercentLeft = 1 + self.hpPercentRight = 1 +end + +function BattleUI:setIsPauseHpProgress(value) + if self.isPauseHpProgress == value then + return + end + self.isPauseHpProgress = value + if not value then + local timeLeft = math.abs(self.hpProgressYellowLeft.value - self.hpPercentLeft) + if timeLeft > 0.01 then + local delayTime = math.abs(self.hpProgressLeft.value - self.hpPercentLeft)*2 + if delayTime > 0.05 then + if self.hpProgressYellowLeftSid then + self:unscheduleGlobal(self.hpProgressYellowLeftSid) + end + self.hpProgressYellowLeftSid = self:performWithDelayGlobal(function() + self:playHpProgressYellowRightTween(timeLeft) + end, delayTime) + else + self:playHpProgressYellowRightTween(timeLeft) + end + else + if self.hpProgressYellowLeftTween then + self.hpProgressYellowLeftTween:Pause() + end + self.hpProgressYellowLeft.value = self.hpPercentLeft + end + local timeRight = math.abs(self.hpProgressYellowRight.value - self.hpPercentRight) + if timeRight > 0.01 then + local delayTime = math.abs(self.hpProgressRight.value - self.hpPercentRight)*2 + if delayTime > 0.05 then + if self.hpProgressYellowRightSid then + self:unscheduleGlobal(self.hpProgressYellowRightSid) + end + self.hpProgressYellowRightSid = self:performWithDelayGlobal(function() + self:playHpProgressYellowRightTween(delayTime) + end, delayTime) + else + self:playHpProgressYellowRightTween(delayTime) + end + else + if self.hpProgressYellowRightTween then + self.hpProgressYellowRightTween:Pause() + end + self.hpProgressYellowRight.value = self.hpPercentRight + end + end +end + +function BattleUI:playHpProgressYellowLeftTween(time) + if self.hpProgressYellowLeftTween == nil then + self.hpProgressYellowLeftTween = GFunc.DOBFSliderValue(self.hpProgressYellowLeft, self.hpPercentLeft, time, false) + self.hpProgressYellowLeftTween:SetIntId(GConst.DOTWEEN_IDS.BATTLE) + self.hpProgressYellowLeftTween:SetAutoKill(false) + else + self.hpProgressYellowLeftTween:ChangeEndValue(self.hpPercentLeft, time, true) + self.hpProgressYellowLeftTween:Restart() + end +end + +function BattleUI:playHpProgressYellowRightTween(time) + if self.hpProgressYellowRightTween == nil then + self.hpProgressYellowRightTween = GFunc.DOBFSliderValue(self.hpProgressYellowRight, self.hpPercentRight, time, false) + self.hpProgressYellowRightTween:SetIntId(GConst.DOTWEEN_IDS.BATTLE) + self.hpProgressYellowRightTween:SetAutoKill(false) + else + self.hpProgressYellowRightTween:ChangeEndValue(self.hpPercentRight, time, true) + self.hpProgressYellowRightTween:Restart() + end end function BattleUI:refreshAtkHp(num, percent) self.hpTextLeft:setText(GFunc.num2Str(num)) - self.hpProgressLeft.value = percent + if not self.isPauseHpProgress then + if self.hpProgressLeftTween then + self.hpProgressLeftTween:Pause() + end + if self.hpProgressYellowLeftTween then + self.hpProgressYellowLeftTween:Pause() + end + if self.hpProgressYellowLeftSid then + self:unscheduleGlobal(self.hpProgressYellowLeftSid) + self.hpProgressYellowLeftSid = nil + end + self.hpProgressLeft.value = percent + self.hpProgressYellowLeft.value = percent + return + end + if self.hpPercentLeft == percent then + return + end + self.hpPercentLeft = percent + local time = math.abs(self.hpProgressLeft.value - percent)*2 + if self.hpProgressLeftTween == nil then + self.hpProgressLeftTween = GFunc.DOBFSliderValue(self.hpProgressLeft, percent, time, false) + self.hpProgressLeftTween:SetIntId(GConst.DOTWEEN_IDS.BATTLE) + self.hpProgressLeftTween:SetAutoKill(false) + else + self.hpProgressLeftTween:ChangeEndValue(percent, time, true) + self.hpProgressLeftTween:Restart() + end end function BattleUI:refreshDefHp(num, percent) self.hpTextRight:setText(GFunc.num2Str(num)) - self.hpProgressRight.value = percent + if not self.isPauseHpProgress then + if self.hpProgressRightTween then + self.hpProgressrightTween:Pause() + end + if self.hpProgressYellowRightTween then + self.hpProgressYellowRightTween:Pause() + end + if self.hpProgressYellowRightSid then + self:unscheduleGlobal(self.hpProgressYellowRightSid) + self.hpProgressYellowRightSid = nil + end + self.hpProgressRight.value = percent + self.hpProgressYellowRight.value = percent + return + end + if self.hpPercentRight == percent then + return + end + self.hpPercentRight = percent + local time = math.abs(self.hpProgressRight.value - percent)*2 + if self.hpProgressRightTween == nil then + self.hpProgressRightTween = GFunc.DOBFSliderValue(self.hpProgressRight, percent, time, false) + self.hpProgressRightTween:SetIntId(GConst.DOTWEEN_IDS.BATTLE) + self.hpProgressRightTween:SetAutoKill(false) + else + self.hpProgressRightTween:ChangeEndValue(percent, time, true) + self.hpProgressRightTween:Restart() + end end function BattleUI:refreshSkill(elementMap) @@ -545,6 +674,30 @@ function BattleUI:clear() if self.battleNode then self.battleNode:removeAllChildren() end + if self.hpProgressYellowLeftSid then + self:unscheduleGlobal(self.hpProgressYellowLeftSid) + self.hpProgressYellowLeftSid = nil + end + if self.hpProgressYellowRightSid then + self:unscheduleGlobal(self.hpProgressYellowRightSid) + self.hpProgressYellowRightSid = nil + end + if self.hpProgressLeftTween then + self.hpProgressLeftTween:Kill() + self.hpProgressLeftTween = nil + end + if self.hpProgressYellowLeftTween then + self.hpProgressYellowLeftTween:Kill() + self.hpProgressYellowLeftTween = nil + end + if self.hpProgressRightTween then + self.hpProgressRightTween:Kill() + self.hpProgressRightTween = nil + end + if self.hpProgressYellowRightTween then + self.hpProgressYellowRightTween:Kill() + self.hpProgressYellowRightTween = nil + end if self.battleNumberNode then self.battleNumberNode:removeAllChildren() end From 421748cd17e52837a69deb106bcab7b83b54b9e0 Mon Sep 17 00:00:00 2001 From: chenxi Date: Tue, 18 Apr 2023 22:25:33 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/app/config/buff.lua | 57 +- lua/app/config/chapter_board.lua | 6716 +++++++++++++--------------- lua/app/config/hero.lua | 176 +- lua/app/config/monster_chapter.lua | 868 ++-- lua/app/config/skill.lua | 37 +- lua/app/config/skill_rogue.lua | 10 +- lua/app/ui/battle/battle_ui.lua | 2 +- 7 files changed, 3785 insertions(+), 4081 deletions(-) diff --git a/lua/app/config/buff.lua b/lua/app/config/buff.lua index ab7746ba..dcb0bca9 100644 --- a/lua/app/config/buff.lua +++ b/lua/app/config/buff.lua @@ -182,6 +182,10 @@ local buff = { } }, [33]={ + ["name"]="heal_normal_attack", + ["buff_type"]=1 + }, + [34]={ ["name"]="stun", ["buff_type"]=8, ["icon"]="stun", @@ -189,60 +193,60 @@ local buff = { 4001 } }, - [34]={ + [35]={ ["name"]="shield", ["buff_type"]=2, ["fx_continued"]={ 4001 } }, - [35]={ + [36]={ ["name"]="atkp_add", ["buff_type"]=1 }, - [36]={ + [37]={ ["name"]="normal_attack_dec", ["buff_type"]=1, ["fx_continued"]={ 4001 } }, - [37]={ + [38]={ ["name"]="normal_attack_add", ["buff_type"]=1, ["fx_continued"]={ 4001 } }, - [38]={ + [39]={ ["name"]="block", ["buff_type"]=1 }, - [39]={ + [40]={ ["name"]="hpp_add", ["buff_type"]=1 }, - [40]={ + [41]={ ["name"]="crit_add", ["buff_type"]=1 }, - [41]={ + [42]={ ["name"]="crit_time_add", ["buff_type"]=1 }, - [42]={ + [43]={ ["name"]="exp_time_add", ["buff_type"]=7 }, - [43]={ + [44]={ ["name"]="cured_add", ["buff_type"]=1 }, - [44]={ + [45]={ ["name"]="add_skill", ["buff_type"]=7 }, - [45]={ + [46]={ ["name"]="skill_fire_times", ["buff_type"]=7 } @@ -281,24 +285,25 @@ local keys = { ["atkp_purple_add"]=buff[30], ["wavehealp"]=buff[31], ["heal"]=buff[32], - ["stun"]=buff[33], - ["shield"]=buff[34], - ["atkp_add"]=buff[35], - ["normal_attack_dec"]=buff[36], - ["normal_attack_add"]=buff[37], - ["block"]=buff[38], - ["hpp_add"]=buff[39], - ["crit_add"]=buff[40], - ["crit_time_add"]=buff[41], - ["exp_time_add"]=buff[42], - ["cured_add"]=buff[43], - ["add_skill"]=buff[44], - ["skill_fire_times"]=buff[45] + ["heal_normal_attack"]=buff[33], + ["stun"]=buff[34], + ["shield"]=buff[35], + ["atkp_add"]=buff[36], + ["normal_attack_dec"]=buff[37], + ["normal_attack_add"]=buff[38], + ["block"]=buff[39], + ["hpp_add"]=buff[40], + ["crit_add"]=buff[41], + ["crit_time_add"]=buff[42], + ["exp_time_add"]=buff[43], + ["cured_add"]=buff[44], + ["add_skill"]=buff[45], + ["skill_fire_times"]=buff[46] } } local config = { data=buff, keys=keys, -count=45 +count=46 } return config \ No newline at end of file diff --git a/lua/app/config/chapter_board.lua b/lua/app/config/chapter_board.lua index a29483be..b2a3164d 100644 --- a/lua/app/config/chapter_board.lua +++ b/lua/app/config/chapter_board.lua @@ -39,7 +39,7 @@ local chapter_board = { }, { 0, - 5 + 4 }, { 0, @@ -79,7 +79,7 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 1, @@ -103,7 +103,7 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, @@ -123,7 +123,7 @@ local chapter_board = { }, { 0, - 4 + 2 }, { 0, @@ -200,12 +200,8 @@ local chapter_board = { }, ["control_element"]={ 3, - 2, 3, - 3, - 4, - 5, - 5 + 3 } }, [2]={ @@ -276,7 +272,7 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, @@ -288,7 +284,7 @@ local chapter_board = { }, { 0, - 5 + 3 }, { 1, @@ -298,6 +294,14 @@ local chapter_board = { 1, 0 }, + { + 0, + 2 + }, + { + 0, + 3 + }, { 0, 4 @@ -308,15 +312,7 @@ local chapter_board = { }, { 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 + 4 }, { 1, @@ -344,7 +340,7 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 1, @@ -364,11 +360,11 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 5 + 2 }, { 1, @@ -408,15 +404,11 @@ local chapter_board = { } }, ["control_element"]={ - 1, - 1, - 3, - 5, - 1, 4, 3, + 4, 1, - 1 + 4 } }, [3]={ @@ -435,7 +427,7 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, @@ -459,7 +451,7 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, @@ -539,7 +531,7 @@ local chapter_board = { }, { 0, - 4 + 1 }, { 0, @@ -555,7 +547,7 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 1, @@ -583,7 +575,7 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 1, @@ -617,12 +609,6 @@ local chapter_board = { 1, 0 } - }, - ["control_element"]={ - 3, - 1, - 5, - 3 } }, [4]={ @@ -633,11 +619,11 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 0, - 5 + 4 }, { 0, @@ -645,7 +631,7 @@ local chapter_board = { }, { 0, - 5 + 4 }, { 0, @@ -661,95 +647,95 @@ local chapter_board = { }, { 0, - 5 + 2 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 2 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 }, { 0, 1 }, - { - 0, - 3 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, { 1, 0 }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, { 1, 0 }, - { - 0, - 5 - }, - { - 0, - 1 - }, { 0, 3 }, { 0, - 5 - }, - { - 0, - 2 - }, - { - 1, - 0 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 2 - }, - { - 0, - 3 - }, - { - 0, - 2 - }, - { - 0, - 3 - }, - { - 0, - 2 - }, - { - 1, - 0 - }, - { - 0, - 3 - }, - { - 0, - 5 + 4 }, { 0, @@ -781,7 +767,7 @@ local chapter_board = { }, { 0, - 5 + 4 }, { 0, @@ -808,8 +794,8 @@ local chapter_board = { 0 }, { - 0, - 3 + 2, + 0 }, { 1, @@ -835,6 +821,74 @@ local chapter_board = { 1, 0 }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 0, + 1 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 1, + 0 + }, + { + 0, + 4 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, { 0, 3 @@ -848,13 +902,41 @@ local chapter_board = { 3 }, { - 1, + 3, 0 }, { - 1, + 0, + 1 + }, + { + 3, 0 }, + { + 0, + 1 + }, + { + 3, + 0 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, { 1, 0 @@ -865,31 +947,7 @@ local chapter_board = { }, { 0, - 5 - }, - { - 0, - 2 - }, - { - 0, - 2 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 + 1 }, { 0, @@ -899,38 +957,6 @@ local chapter_board = { 0, 3 }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 2 - }, - { - 0, - 2 - }, - { - 0, - 4 - }, - { - 0, - 5 - }, { 0, 4 @@ -957,7 +983,7 @@ local chapter_board = { }, { 0, - 3 + 4 }, { 1, @@ -980,58 +1006,9 @@ local chapter_board = { 0 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 + 0, + 4 } - }, - ["control_element"]={ - 3, - 2, - 3, - 3, - 4, - 5, - 5 } }, [6]={ @@ -1045,8 +1022,12 @@ local chapter_board = { 0 }, { - 1, - 0 + 0, + 4 + }, + { + 0, + 3 }, { 0, @@ -1066,15 +1047,15 @@ local chapter_board = { }, { 1, - 0 - }, - { - 1, - 0 + 1 }, { 0, - 4 + 3 + }, + { + 0, + 3 }, { 0, @@ -1090,42 +1071,6 @@ local chapter_board = { }, { 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, 4 }, { @@ -1134,7 +1079,11 @@ local chapter_board = { }, { 0, - 5 + 3 + }, + { + 2, + 0 }, { 0, @@ -1142,26 +1091,70 @@ local chapter_board = { }, { 0, - 5 + 3 }, { 1, + 4 + }, + { + 3, + 3 + }, + { + 0, 0 }, { - 1, + 0, + 1 + }, + { + 2, 0 }, { 0, 1 }, + { + 0, + 0 + }, + { + 3, + 3 + }, + { + 3, + 3 + }, { 0, 1 }, { 0, + 2 + }, + { + 0, + 0 + }, + { + 0, + 2 + }, + { + 0, + 1 + }, + { + 3, + 3 + }, + { + 1, 3 }, { @@ -1170,54 +1163,26 @@ local chapter_board = { }, { 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 4 + }, + { + 1, 3 }, { 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 0, - 5 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, 4 }, { @@ -1225,39 +1190,36 @@ local chapter_board = { 0 }, { - 1, + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, 0 }, { 1, 0 + }, + { + 1, + 4 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [7]={ ["board"]={ - { - 1, - 0 - }, { 1, 0 }, { 0, - 1 + 5 }, { 0, @@ -1265,23 +1227,7 @@ local chapter_board = { }, { 0, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 + 5 }, { 0, @@ -1289,43 +1235,35 @@ local chapter_board = { }, { 0, - 4 + 5 }, { - 0, - 1 + 1, + 0 }, { - 0, + 1, + 0 + }, + { + 4, + 5 + }, + { + 4, 3 }, { - 1, - 0 + 4, + 2 }, { - 1, - 0 - }, - { - 0, + 4, 3 }, { - 0, - 1 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 0, - 3 + 4, + 5 }, { 1, @@ -1337,48 +1275,20 @@ local chapter_board = { }, { 0, - 1 + 5 }, { - 0, - 3 - }, - { - 1, + 2, 0 }, { - 0, - 1 - }, - { - 0, - 1 - }, - { - 1, + 2, 0 }, { - 1, + 2, 0 }, - { - 0, - 4 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 0, - 3 - }, { 0, 5 @@ -1393,19 +1303,19 @@ local chapter_board = { }, { 0, - 3 + 5 }, { - 0, - 3 + 2, + 0 }, { - 0, - 1 + 2, + 0 }, { - 0, - 3 + 2, + 0 }, { 0, @@ -1419,21 +1329,77 @@ local chapter_board = { 1, 0 }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, { 1, 0 }, { - 0, - 4 + 1, + 0 }, { - 0, - 1 + 2, + 0 }, { - 0, - 4 + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 }, { 1, @@ -1443,12 +1409,6 @@ local chapter_board = { 1, 0 } - }, - ["control_element"]={ - 3, - 1, - 5, - 3 } }, [8]={ @@ -1459,75 +1419,19 @@ local chapter_board = { }, { 0, - 3 + 2 }, { 0, - 5 + 4 }, { 0, - 3 + 4 }, { 0, - 5 - }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 5 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 5 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 0, - 5 + 2 }, { 0, @@ -1537,82 +1441,138 @@ local chapter_board = { 1, 0 }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 2 - }, - { - 0, - 3 - }, - { - 0, - 2 - }, - { - 0, - 3 - }, - { - 0, - 2 - }, { 1, 0 }, { - 0, - 3 + 4, + 2 }, { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, + 4, 1 }, { - 0, - 3 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 2 - }, - { - 0, - 5 - }, - { - 0, + 4, 1 }, + { + 4, + 1 + }, + { + 4, + 4 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 4, + 1 + }, + { + 3, + 0 + }, + { + 4, + 1 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, { 1, 0 @@ -1634,8 +1594,8 @@ local chapter_board = { 0 }, { - 0, - 3 + 1, + 0 }, { 1, @@ -1658,31 +1618,7 @@ local chapter_board = { 0 }, { - 1, - 0 - }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 3 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, + 2, 0 }, { @@ -1691,19 +1627,15 @@ local chapter_board = { }, { 0, - 5 + 3 }, { 0, 2 }, { - 0, - 2 - }, - { - 0, - 4 + 2, + 0 }, { 1, @@ -1713,24 +1645,80 @@ local chapter_board = { 1, 0 }, + { + 2, + 0 + }, { 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 4, + 3 + }, + { + 4, 4 }, { - 0, - 3 - }, - { - 0, - 3 - }, - { - 0, - 3 - }, - { - 0, + 4, 5 }, { @@ -1743,26 +1731,22 @@ local chapter_board = { }, { 0, - 2 + 0 }, { 0, - 2 + 0 }, { 0, - 4 + 0 }, { 0, - 5 + 0 }, { 0, - 4 - }, - { - 1, 0 }, { @@ -1775,18 +1759,22 @@ local chapter_board = { }, { 0, - 4 + 0 + }, + { + 3, + 0 }, { 0, - 3 + 0 + }, + { + 3, + 0 }, { 0, - 3 - }, - { - 1, 0 }, { @@ -1798,109 +1786,36 @@ local chapter_board = { 0 }, { - 1, + 0, 0 }, { - 1, + 0, 0 }, { - 1, + 0, 0 }, { - 1, + 0, 0 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, + 0, 0 }, { 1, 0 } - }, - ["control_element"]={ - 3, - 2, - 3, - 3, - 4, - 5, - 5 } }, [10]={ ["board"]={ { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 + 4, + 2 }, { 0, @@ -1908,6 +1823,106 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 4 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 0, + 3 + }, + { + 0, + 3 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 0, + 2 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 4, + 1 + }, + { + 4, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 4, 1 }, { @@ -1915,91 +1930,23 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 3, 0 }, { - 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 5 - }, - { - 1, + 3, 0 }, { - 1, + 3, 0 }, { - 0, - 4 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, - { - 0, - 4 - }, - { - 0, - 3 - }, - { - 1, + 2, 0 }, { @@ -2011,19 +1958,23 @@ local chapter_board = { 0 }, { - 0, - 4 + 2, + 0 }, { - 0, - 5 + 2, + 0 }, { - 0, - 5 + 3, + 0 }, { - 1, + 2, + 0 + }, + { + 2, 0 }, { @@ -2035,40 +1986,29 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, + 3, 0 }, { - 0, - 4 - }, - { - 1, + 3, 0 }, { - 1, + 3, + 0 + }, + { + 2, 0 }, { 1, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [11]={ @@ -2078,28 +2018,24 @@ local chapter_board = { 0 }, { - 1, - 0 - }, - { - 1, - 0 + 0, + 3 }, { 0, 4 }, { - 1, - 0 + 0, + 4 }, { - 1, - 0 + 0, + 3 }, { - 1, - 0 + 0, + 4 }, { 1, @@ -2117,90 +2053,10 @@ local chapter_board = { 0, 3 }, - { - 0, - 1 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, { 0, 4 }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 - }, { 0, 4 @@ -2214,49 +2070,113 @@ local chapter_board = { 0 }, { - 1, + 5, + 3 + }, + { + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 - }, - { - 0, - 5 - }, - { - 1, + 2, 0 }, { - 1, + 5, + 3 + }, + { + 2, 0 }, { - 1, + 5, + 3 + }, + { + 2, 0 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 2, + 0 + }, + { + 5, + 4 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 1, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, { 1, 0 @@ -2265,21 +2185,30 @@ local chapter_board = { 1, 0 }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, + { + 0, + 0 + }, { 1, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [12]={ @@ -2292,45 +2221,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -2350,19 +2251,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -2378,39 +2279,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -2418,6 +2287,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -2425,72 +2326,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [13]={ @@ -2503,45 +2421,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -2561,19 +2451,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -2589,39 +2479,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -2629,6 +2487,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -2636,72 +2526,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [14]={ @@ -2714,45 +2621,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -2772,19 +2651,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -2800,39 +2679,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -2840,6 +2687,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -2847,72 +2726,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [15]={ @@ -2925,45 +2821,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -2983,19 +2851,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -3011,39 +2879,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -3051,6 +2887,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -3058,72 +2926,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [16]={ @@ -3136,45 +3021,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -3194,19 +3051,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -3222,39 +3079,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -3262,6 +3087,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -3269,72 +3126,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [17]={ @@ -3347,45 +3221,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -3405,19 +3251,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -3433,39 +3279,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -3473,6 +3287,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -3480,72 +3326,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [18]={ @@ -3558,45 +3421,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -3616,19 +3451,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -3644,39 +3479,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -3684,6 +3487,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -3691,72 +3526,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [19]={ @@ -3769,45 +3621,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -3827,19 +3651,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -3855,39 +3679,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -3895,6 +3687,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -3902,72 +3726,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [20]={ @@ -3980,45 +3821,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -4038,19 +3851,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -4066,39 +3879,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -4106,6 +3887,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -4113,72 +3926,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [21]={ @@ -4191,45 +4021,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -4249,19 +4051,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -4277,39 +4079,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -4317,6 +4087,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -4324,72 +4126,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [22]={ @@ -4402,45 +4221,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -4460,19 +4251,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -4488,39 +4279,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -4528,6 +4287,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -4535,72 +4326,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [23]={ @@ -4613,45 +4421,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -4671,19 +4451,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -4699,39 +4479,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -4739,6 +4487,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -4746,72 +4526,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [24]={ @@ -4824,45 +4621,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -4882,19 +4651,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -4910,39 +4679,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -4950,6 +4687,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -4957,72 +4726,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [25]={ @@ -5035,45 +4821,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -5093,19 +4851,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -5121,39 +4879,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -5161,6 +4887,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -5168,72 +4926,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [26]={ @@ -5246,45 +5021,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -5304,19 +5051,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -5332,39 +5079,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -5372,6 +5087,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -5379,72 +5126,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [27]={ @@ -5457,45 +5221,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -5515,19 +5251,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -5543,39 +5279,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -5583,6 +5287,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -5590,72 +5326,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [28]={ @@ -5668,45 +5421,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -5726,19 +5451,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -5754,39 +5479,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -5794,6 +5487,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -5801,72 +5526,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [29]={ @@ -5879,45 +5621,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -5937,19 +5651,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -5965,39 +5679,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -6005,6 +5687,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -6012,72 +5726,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [30]={ @@ -6090,45 +5821,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -6148,19 +5851,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -6176,39 +5879,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -6216,6 +5887,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -6223,72 +5926,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [31]={ @@ -6301,45 +6021,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -6359,19 +6051,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -6387,39 +6079,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -6427,6 +6087,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -6434,72 +6126,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [32]={ @@ -6512,45 +6221,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -6570,19 +6251,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -6598,39 +6279,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -6638,6 +6287,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -6645,72 +6326,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [33]={ @@ -6723,45 +6421,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -6781,19 +6451,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -6809,39 +6479,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -6849,6 +6487,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -6856,72 +6526,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } }, [34]={ @@ -6934,45 +6621,17 @@ local chapter_board = { 1, 0 }, - { - 1, - 0 - }, - { - 0, - 4 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 4 - }, { 0, 3 }, { 0, - 1 + 4 + }, + { + 0, + 2 }, { 1, @@ -6992,19 +6651,19 @@ local chapter_board = { }, { 0, - 5 + 2 }, { 0, - 1 + 4 }, { 0, - 1 + 3 }, { 0, - 5 + 3 }, { 1, @@ -7020,39 +6679,7 @@ local chapter_board = { }, { 0, - 3 - }, - { - 0, - 5 - }, - { - 0, - 3 - }, - { - 0, - 5 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, - 1 - }, - { - 0, - 1 - }, - { - 0, - 3 + 2 }, { 0, @@ -7060,6 +6687,38 @@ local chapter_board = { }, { 0, + 2 + }, + { + 0, + 2 + }, + { + 1, + 0 + }, + { + 1, + 0 + }, + { + 5, + 2 + }, + { + 5, + 4 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, 3 }, { @@ -7067,72 +6726,89 @@ local chapter_board = { 0 }, { - 1, + 2, 0 }, { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 0, - 5 + 5, + 2 }, { - 0, - 5 + 5, + 2 }, { - 1, - 0 + 5, + 2 }, { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 1, - 0 - }, - { - 0, + 5, 4 }, { - 1, + 2, 0 }, { - 1, + 2, 0 }, { - 1, + 5, + 2 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 3 + }, + { + 5, + 2 + }, + { + 2, + 0 + }, + { + 2, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 3, + 0 + }, + { + 2, 0 } - }, - ["control_element"]={ - 1, - 1, - 3, - 5, - 1, - 4, - 3, - 1, - 1 } } } diff --git a/lua/app/config/hero.lua b/lua/app/config/hero.lua index d730cef4..637e336d 100644 --- a/lua/app/config/hero.lua +++ b/lua/app/config/hero.lua @@ -11,21 +11,21 @@ local hero = { ["rouge_skill_3"]=200503, ["begin_lv"]=1, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, @@ -60,21 +60,21 @@ local hero = { ["rouge_skill_3"]=200203, ["begin_lv"]=1, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, @@ -109,21 +109,21 @@ local hero = { ["rouge_skill_3"]=200703, ["begin_lv"]=3, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, @@ -158,21 +158,21 @@ local hero = { ["rouge_skill_3"]=200103, ["begin_lv"]=1, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, @@ -207,21 +207,21 @@ local hero = { ["rouge_skill_3"]=200603, ["begin_lv"]=3, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, @@ -256,21 +256,21 @@ local hero = { ["rouge_skill_3"]=200303, ["begin_lv"]=1, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, @@ -305,21 +305,21 @@ local hero = { ["rouge_skill_3"]=200803, ["begin_lv"]=3, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, @@ -354,21 +354,21 @@ local hero = { ["rouge_skill_3"]=200403, ["begin_lv"]=1, ["hp"]={ - 1000000, - 1100000, - 1200000, - 1300000, - 1400000, - 1500000, - 1600000, - 1700000, - 1800000, - 1900000, 2000000, 2100000, 2200000, 2300000, - 2400000 + 2400000, + 2500000, + 2600000, + 2700000, + 2800000, + 2900000, + 3000000, + 3100000, + 3200000, + 3300000, + 3400000 }, ["atk"]={ 1000000, diff --git a/lua/app/config/monster_chapter.lua b/lua/app/config/monster_chapter.lua index 0c091dc8..697695b6 100644 --- a/lua/app/config/monster_chapter.lua +++ b/lua/app/config/monster_chapter.lua @@ -1,42 +1,42 @@ local monster_chapter = { [101]={ ["monster_base"]=10001, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=3000000, + ["atk"]=200000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [201]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=4000000, + ["atk"]=200000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [301]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=9500000, + ["atk"]=200000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [401]={ ["monster_base"]=10006, - ["hp"]=10000000, - ["atk"]=1000000, - ["atk_times"]=3, + ["hp"]=6000000, + ["atk"]=200000, + ["atk_times"]=2, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [501]={ ["monster_base"]=20004, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000000, - ["atk_times"]=2, + ["hp"]=14000000, + ["atk"]=250000, + ["atk_times"]=3, ["hurt_skill"]=1000000, ["skill"]={ 1000002 @@ -45,16 +45,16 @@ local monster_chapter = { }, [601]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=8000000, + ["atk"]=250000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [701]={ ["monster_base"]=10003, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=8000000, + ["atk"]=250000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -62,15 +62,15 @@ local monster_chapter = { [801]={ ["monster_base"]=10004, ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["atk"]=250000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [901]={ ["monster_base"]=10001, ["hp"]=10000000, - ["atk"]=1000001, + ["atk"]=280000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -78,8 +78,8 @@ local monster_chapter = { [1001]={ ["monster_base"]=20004, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000000, + ["hp"]=20000000, + ["atk"]=340000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["skill"]={ @@ -89,42 +89,42 @@ local monster_chapter = { }, [1101]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=15000000, + ["atk"]=300000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [1201]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=17000000, + ["atk"]=310000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [1301]={ ["monster_base"]=10008, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=320000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [1401]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=21000000, + ["atk"]=330000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [1501]={ ["monster_base"]=20012, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=380000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["skill"]={ 1000003 @@ -133,32 +133,32 @@ local monster_chapter = { }, [1601]={ ["monster_base"]=10009, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=4000000, + ["atk"]=250000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [1701]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=6000000, + ["atk"]=250000, ["atk_times"]=2, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [1801]={ ["monster_base"]=10008, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=8000000, + ["atk"]=250000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [1901]={ ["monster_base"]=10010, ["hp"]=10000000, - ["atk"]=1000001, + ["atk"]=280000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -166,8 +166,8 @@ local monster_chapter = { [2001]={ ["monster_base"]=20012, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=20000000, + ["atk"]=340000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["skill"]={ @@ -177,42 +177,42 @@ local monster_chapter = { }, [2101]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=15000000, + ["atk"]=300000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [2201]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=17000000, + ["atk"]=310000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [2301]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=320000, ["atk_times"]=2, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [2401]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=21000000, + ["atk"]=330000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [2501]={ ["monster_base"]=20010, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=380000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["skill"]={ 1000004, @@ -222,32 +222,32 @@ local monster_chapter = { }, [2601]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=21000000, + ["atk"]=340000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [2701]={ ["monster_base"]=10009, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=23000000, + ["atk"]=350000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [2801]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=26000000, + ["atk"]=360000, + ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [2901]={ ["monster_base"]=10003, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=29000000, + ["atk"]=370000, ["atk_times"]=2, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -255,8 +255,8 @@ local monster_chapter = { [3001]={ ["monster_base"]=20011, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=45000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["skill"]={ @@ -267,32 +267,32 @@ local monster_chapter = { }, [3101]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=7980000, + ["atk"]=250000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [3201]={ ["monster_base"]=10006, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=11000000, + ["atk"]=270000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [3301]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=12000000, + ["atk"]=290000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [3401]={ ["monster_base"]=10005, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=13000000, + ["atk"]=310000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -300,9 +300,9 @@ local monster_chapter = { [3501]={ ["monster_base"]=20009, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=21000000, + ["atk"]=370000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["skill"]={ 1000008, @@ -312,41 +312,41 @@ local monster_chapter = { }, [3601]={ ["monster_base"]=10005, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=13000000, + ["atk"]=310000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [3701]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=14000000, + ["atk"]=330000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [3801]={ ["monster_base"]=10006, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=16000000, + ["atk"]=330000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [3901]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=17000000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [4001]={ ["monster_base"]=20002, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=28000000, + ["atk"]=400000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["skill"]={ @@ -357,32 +357,32 @@ local monster_chapter = { }, [4101]={ ["monster_base"]=10005, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=21000000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [4201]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=24000000, + ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [4301]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=27000000, + ["atk"]=390000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [4401]={ ["monster_base"]=10006, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=29000000, + ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 @@ -390,9 +390,9 @@ local monster_chapter = { [4501]={ ["monster_base"]=20002, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=43000000, + ["atk"]=640000, + ["atk_times"]=3, ["hurt_skill"]=1000000, ["skill"]={ 1000011, @@ -402,41 +402,41 @@ local monster_chapter = { }, [4601]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=36000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [4701]={ ["monster_base"]=10006, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=39000000, + ["atk"]=450000, + ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [4801]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=43000000, + ["atk"]=470000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [4901]={ ["monster_base"]=10005, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=47000000, + ["atk"]=490000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [5001]={ ["monster_base"]=20009, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=73000000, + ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["skill"]={ @@ -447,32 +447,32 @@ local monster_chapter = { }, [5101]={ ["monster_base"]=10013, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=6400000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [5201]={ ["monster_base"]=10001, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=8000000, + ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [5301]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=9600000, + ["atk"]=390000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [5401]={ ["monster_base"]=10013, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=11000000, + ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -480,9 +480,9 @@ local monster_chapter = { [5501]={ ["monster_base"]=20006, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=24000000, + ["atk"]=470000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000013, @@ -492,42 +492,42 @@ local monster_chapter = { }, [5601]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=14000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [5701]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=17000000, + ["atk"]=490000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [5801]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [5901]={ ["monster_base"]=10013, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=22000000, + ["atk"]=510000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [6001]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=38000000, + ["atk"]=570000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000015, @@ -537,32 +537,32 @@ local monster_chapter = { }, [6101]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=30000000, + ["atk"]=530000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [6201]={ ["monster_base"]=10013, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=33000000, + ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [6301]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=570000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [6401]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=39000000, + ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 @@ -570,9 +570,9 @@ local monster_chapter = { [6501]={ ["monster_base"]=20011, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=71000000, + ["atk"]=590000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000006, @@ -582,42 +582,42 @@ local monster_chapter = { }, [6601]={ ["monster_base"]=10013, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=47000000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [6701]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=50000000, + ["atk"]=630000, + ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [6801]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=55000000, + ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [6901]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=60000000, + ["atk"]=670000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [7001]={ ["monster_base"]=20007, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=95000000, + ["atk"]=920000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000016, @@ -627,32 +627,32 @@ local monster_chapter = { }, [7101]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=6400000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [7201]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=8000000, + ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [7301]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=9600000, + ["atk"]=390000, + ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [7401]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=11000000, + ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -660,9 +660,9 @@ local monster_chapter = { [7501]={ ["monster_base"]=20008, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=24000000, + ["atk"]=470000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000018, @@ -673,42 +673,42 @@ local monster_chapter = { }, [7601]={ ["monster_base"]=10006, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=14000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [7701]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=17000000, + ["atk"]=490000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [7801]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [7901]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=22000000, + ["atk"]=510000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [8001]={ ["monster_base"]=20006, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=38000000, + ["atk"]=570000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000013, @@ -718,32 +718,32 @@ local monster_chapter = { }, [8101]={ ["monster_base"]=10006, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=30000000, + ["atk"]=530000, + ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [8201]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=33000000, + ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [8301]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=570000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [8401]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=39000000, + ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -751,9 +751,9 @@ local monster_chapter = { [8501]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=71000000, + ["atk"]=590000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000016, @@ -763,42 +763,42 @@ local monster_chapter = { }, [8601]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=47000000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [8701]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=50000000, + ["atk"]=630000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [8801]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=55000000, + ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [8901]={ ["monster_base"]=10013, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=60000000, + ["atk"]=670000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [9001]={ ["monster_base"]=20008, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=95000000, + ["atk"]=920000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000018, @@ -810,32 +810,32 @@ local monster_chapter = { }, [9101]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=6400000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [9201]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=8000000, + ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [9301]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=9600000, + ["atk"]=390000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [9401]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=11000000, + ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -843,9 +843,9 @@ local monster_chapter = { [9501]={ ["monster_base"]=20005, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=24000000, + ["atk"]=470000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000022, @@ -856,42 +856,42 @@ local monster_chapter = { }, [9601]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=14000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [9701]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=17000000, + ["atk"]=490000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [9801]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [9901]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=22000000, + ["atk"]=510000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [10001]={ ["monster_base"]=20010, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=38000000, + ["atk"]=570000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000004, @@ -901,32 +901,32 @@ local monster_chapter = { }, [10101]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=30000000, + ["atk"]=530000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [10201]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=33000000, + ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [10301]={ ["monster_base"]=10003, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=570000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [10401]={ ["monster_base"]=10008, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=39000000, + ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -934,9 +934,9 @@ local monster_chapter = { [10501]={ ["monster_base"]=20011, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=71000000, + ["atk"]=590000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000006, @@ -946,42 +946,42 @@ local monster_chapter = { }, [10601]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=47000000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [10701]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=50000000, + ["atk"]=630000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [10801]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=55000000, + ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [10901]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=60000000, + ["atk"]=670000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [11001]={ ["monster_base"]=20005, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=95000000, + ["atk"]=920000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000022, @@ -992,32 +992,32 @@ local monster_chapter = { }, [11101]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=6400000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [11201]={ ["monster_base"]=10003, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=8000000, + ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [11301]={ ["monster_base"]=10009, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=9600000, + ["atk"]=390000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [11401]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=11000000, + ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -1025,9 +1025,9 @@ local monster_chapter = { [11501]={ ["monster_base"]=20008, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=24000000, + ["atk"]=470000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000018, @@ -1039,42 +1039,42 @@ local monster_chapter = { }, [11601]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=14000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [11701]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=17000000, + ["atk"]=490000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [11801]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [11901]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=22000000, + ["atk"]=510000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [12001]={ ["monster_base"]=20001, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=38000000, + ["atk"]=570000, + ["atk_times"]=4, ["hurt_skill"]=1000000, ["skill"]={ 1000026, @@ -1084,32 +1084,32 @@ local monster_chapter = { }, [12101]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=30000000, + ["atk"]=530000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [12201]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=33000000, + ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [12301]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=570000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [12401]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=39000000, + ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -1117,9 +1117,9 @@ local monster_chapter = { [12501]={ ["monster_base"]=20004, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=71000000, + ["atk"]=590000, + ["atk_times"]=4, ["hurt_skill"]=1000000, ["skill"]={ 1000002 @@ -1128,42 +1128,42 @@ local monster_chapter = { }, [12601]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=47000000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [12701]={ ["monster_base"]=10003, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=50000000, + ["atk"]=630000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [12801]={ ["monster_base"]=10009, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=55000000, + ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [12901]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=60000000, + ["atk"]=670000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [13001]={ ["monster_base"]=20005, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=95000000, + ["atk"]=920000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000022, @@ -1174,32 +1174,32 @@ local monster_chapter = { }, [13101]={ ["monster_base"]=10015, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=6400000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [13201]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=8000000, + ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [13301]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=9600000, + ["atk"]=390000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [13401]={ ["monster_base"]=10018, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=11000000, + ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -1207,9 +1207,9 @@ local monster_chapter = { [13501]={ ["monster_base"]=20001, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=24000000, + ["atk"]=470000, + ["atk_times"]=4, ["hurt_skill"]=1000000, ["skill"]={ 1000026, @@ -1219,42 +1219,42 @@ local monster_chapter = { }, [13601]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=14000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [13701]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=17000000, + ["atk"]=490000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [13801]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [13901]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=22000000, + ["atk"]=510000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [14001]={ ["monster_base"]=20005, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=38000000, + ["atk"]=570000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000022, @@ -1265,32 +1265,32 @@ local monster_chapter = { }, [14101]={ ["monster_base"]=10010, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=30000000, + ["atk"]=530000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [14201]={ ["monster_base"]=10003, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=33000000, + ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [14301]={ ["monster_base"]=10009, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=570000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [14401]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=39000000, + ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -1298,9 +1298,9 @@ local monster_chapter = { [14501]={ ["monster_base"]=20004, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=71000000, + ["atk"]=590000, + ["atk_times"]=4, ["hurt_skill"]=1000000, ["skill"]={ 1000002 @@ -1309,42 +1309,42 @@ local monster_chapter = { }, [14601]={ ["monster_base"]=10015, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=47000000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [14701]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=50000000, + ["atk"]=630000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [14801]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=55000000, + ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [14901]={ ["monster_base"]=10018, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=60000000, + ["atk"]=670000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [15001]={ ["monster_base"]=20003, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=95000000, + ["atk"]=920000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000028, @@ -1354,32 +1354,32 @@ local monster_chapter = { }, [15101]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=6400000, + ["atk"]=350000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [15201]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=8000000, + ["atk"]=370000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [15301]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=9600000, + ["atk"]=390000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [15401]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=11000000, + ["atk"]=410000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -1387,9 +1387,9 @@ local monster_chapter = { [15501]={ ["monster_base"]=20005, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=24000000, + ["atk"]=470000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000022, @@ -1400,42 +1400,42 @@ local monster_chapter = { }, [15601]={ ["monster_base"]=10007, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=14000000, + ["atk"]=430000, ["atk_times"]=3, ["hurt_skill"]=1000000, ["monster_exp"]=10000 }, [15701]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=17000000, + ["atk"]=490000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [15801]={ ["monster_base"]=10012, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=19000000, + ["atk"]=450000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [15901]={ ["monster_base"]=10016, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=22000000, + ["atk"]=510000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [16001]={ ["monster_base"]=20007, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=38000000, + ["atk"]=570000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000016, @@ -1445,32 +1445,32 @@ local monster_chapter = { }, [16101]={ ["monster_base"]=10015, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=30000000, + ["atk"]=530000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [16201]={ ["monster_base"]=10017, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=33000000, + ["atk"]=550000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [16301]={ ["monster_base"]=10014, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=36000000, + ["atk"]=570000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [16401]={ ["monster_base"]=10018, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=39000000, + ["atk"]=590000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 @@ -1478,9 +1478,9 @@ local monster_chapter = { [16501]={ ["monster_base"]=20008, ["is_boss"]=1, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=71000000, + ["atk"]=590000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000018, @@ -1492,42 +1492,42 @@ local monster_chapter = { }, [16601]={ ["monster_base"]=10004, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=47000000, + ["atk"]=610000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [16701]={ ["monster_base"]=10002, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=50000000, + ["atk"]=630000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [16801]={ ["monster_base"]=10011, - ["hp"]=10000000, - ["atk"]=1000001, + ["hp"]=55000000, + ["atk"]=650000, ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [16901]={ ["monster_base"]=10013, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=2, + ["hp"]=60000000, + ["atk"]=670000, + ["atk_times"]=3, ["hurt_skill"]=1000001, ["monster_exp"]=10000 }, [17001]={ ["monster_base"]=20003, ["is_boss"]=2, - ["hp"]=10000000, - ["atk"]=1000001, - ["atk_times"]=3, + ["hp"]=95000000, + ["atk"]=920000, + ["atk_times"]=4, ["hurt_skill"]=1000001, ["skill"]={ 1000028, diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua index 62f00ba9..73f92706 100644 --- a/lua/app/config/skill.lua +++ b/lua/app/config/skill.lua @@ -11,6 +11,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=1 }, [2]={ @@ -25,6 +26,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=1 }, [3]={ @@ -39,6 +41,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=1 }, [4]={ @@ -53,6 +56,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=1 }, [5]={ @@ -67,6 +71,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=1 }, [6]={ @@ -81,6 +86,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=2 }, [7]={ @@ -95,6 +101,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=2 }, [8]={ @@ -109,6 +116,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=2 }, [9]={ @@ -123,6 +131,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=2 }, [10]={ @@ -137,6 +146,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=2, ["skill_position"]=2 }, [11]={ @@ -153,6 +163,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=1, ["skill_position"]=2 }, [12]={ @@ -166,6 +177,7 @@ local skill = { ["round"]=0 } }, + ["obj"]=1, ["skill_position"]=2 }, [13]={ @@ -179,8 +191,22 @@ local skill = { ["round"]=1 } }, + ["obj"]=2, ["skill_position"]=2 }, + [14]={ + ["effect_type"]=2, + ["trigger"]=3, + ["effect"]={ + { + ["type"]="heal_normal_attack", + ["num"]=500, + ["ratio"]=10000, + ["round"]=1 + } + }, + ["obj"]=1 + }, [320010]={ ["position"]=3, ["effect_type"]=1, @@ -213,8 +239,7 @@ local skill = { }, ["icon"]=10, ["battle_icon"]="1", - ["skill_position"]=1, - ["name_act"]="skill01" + ["skill_position"]=1 }, [220010]={ ["position"]=2, @@ -321,8 +346,7 @@ local skill = { }, ["icon"]=30, ["battle_icon"]="3", - ["skill_position"]=2, - ["name_act"]="skill01" + ["skill_position"]=2 }, [520010]={ ["position"]=5, @@ -392,8 +416,7 @@ local skill = { }, ["icon"]=50, ["battle_icon"]="5", - ["skill_position"]=2, - ["name_act"]="skill01" + ["skill_position"]=2 }, [330010]={ ["position"]=3, @@ -1104,6 +1127,6 @@ local skill = { } } local config = { -data=skill,count=63 +data=skill,count=64 } return config \ No newline at end of file diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua index 5f4db2c0..79a1f79c 100644 --- a/lua/app/config/skill_rogue.lua +++ b/lua/app/config/skill_rogue.lua @@ -743,11 +743,11 @@ local skill_rogue = { ["limit_times"]=1, ["weight"]=1000, ["qlt"]=4, - ["type"]=9, + ["type"]=12, ["skill_position"]=3, ["effect"]={ { - ["type"]="skill_add", + ["type"]="add_skill", ["num"]=13, ["ratio"]=10000, ["round"]=1 @@ -788,7 +788,7 @@ local skill_rogue = { ["limit_times"]=1, ["weight"]=1000, ["qlt"]=4, - ["type"]=9, + ["type"]=12, ["skill_position"]=2, ["effect"]={ { @@ -963,8 +963,8 @@ local skill_rogue = { ["skill_position"]=3, ["effect"]={ { - ["type"]="heal", - ["num"]=500, + ["type"]="add_skill", + ["num"]=14, ["ratio"]=10000, ["round"]=1 } diff --git a/lua/app/ui/battle/battle_ui.lua b/lua/app/ui/battle/battle_ui.lua index e9bf4a16..5858cf63 100644 --- a/lua/app/ui/battle/battle_ui.lua +++ b/lua/app/ui/battle/battle_ui.lua @@ -209,7 +209,7 @@ function BattleUI:refreshDefHp(num, percent) self.hpTextRight:setText(GFunc.num2Str(num)) if not self.isPauseHpProgress then if self.hpProgressRightTween then - self.hpProgressrightTween:Pause() + self.hpProgressRightTween:Pause() end if self.hpProgressYellowRightTween then self.hpProgressYellowRightTween:Pause()