diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua
index ab791a66..21132786 100644
--- a/lua/app/common/bi_report.lua
+++ b/lua/app/common/bi_report.lua
@@ -140,6 +140,10 @@ BIReport.ITEM_GET_TYPE = {
OFFLINE_RECOVERY = "OfflineRecovery",
ACT_SUMMER = "ActSummer",
ACT_HERO_FUND = "ActHeroFund",
+ ACT_FOURTEEN_DAY_BOUNTY = "ActFourteenDayBounty",
+ ACT_FOURTEEN_DAY_TASK = "ActFourteenDayTask",
+ ACT_FOURTEEN_DAY_EXCHANGE = "ActFourteenDayExchange",
+ FOURTEEN_DAY_GIFT = "FourteenDayGift",
}
BIReport.ADS_CLICK_TYPE = {
@@ -208,7 +212,8 @@ BIReport.GIFT_TYPE = {
WEAPON_GIFT = "WeaponGift",
ARMOR_GIFT = "ArmorGift",
ACT_SUMMER = "ActSummer",
- ACT_HERO_FUND = "ActHeroFund"
+ ACT_HERO_FUND = "ActHeroFund",
+ FOURTEEN_DAY_GIFT = "FourteenDayGift",
}
BIReport.COIN_TYPE = {
diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua
index 98dc9fef..504b1eec 100644
--- a/lua/app/common/data_manager.lua
+++ b/lua/app/common/data_manager.lua
@@ -34,6 +34,7 @@ function DataManager:init()
self:initManager("SummonData", "app/userdata/summon/summon_data")
self:initManager("AIHelperData", "app/userdata/game_setting/ai_helper_data")
self:initManager("HeroFundData", "app/userdata/activity/hero_fund/hero_fund_data")
+ self:initManager("FourteenDayData", "app/userdata/activity/fourteen_day/fourteen_day_data")
end
function DataManager:initManager(name, path)
@@ -120,6 +121,7 @@ function DataManager:clear()
self.TaskData:clear()
self.AIHelperData:clear()
self.HeroFundData:clear()
+ self.FourteenDayData:clear()
ModuleManager.TaskManager:clear()
self:clearTryOpenFunc()
end
@@ -181,6 +183,7 @@ function DataManager:initWithServerData(data)
self.GrowthFundData:init(data.fund.funds)
end
self.HeroFundData:init(data.hero_fund)
+ self.FourteenDayData:init(data.fourteen_bounty)
-- 任务数据最后初始化,依赖其他模块的数据
self.TaskData:init()
diff --git a/lua/app/common/local_data.lua b/lua/app/common/local_data.lua
index 47e7f3ce..7b30e682 100644
--- a/lua/app/common/local_data.lua
+++ b/lua/app/common/local_data.lua
@@ -40,6 +40,7 @@ local LOCAL_DATA_KEY = {
BATTLE_SNAPSHOT = "BATTLE_SNAPSHOT",
ACTIVITY_SUMMER_TODAY_SKIN = "ACTIVITY_SUMMER_TODAY_SKIN",
ACTIVITY_SUMMER_TODAY_HERO = "ACTIVITY_SUMMER_TODAY_HERO",
+ FOURTEEN_DAY_TODAY_EXCHANGE = "FOURTEEN_DAY_TODAY_EXCHANGE",
}
LocalData.KEYS = LOCAL_DATA_KEY
@@ -465,4 +466,16 @@ function LocalData:recordTodayActSummerWatchedHero()
self:setInt(LOCAL_DATA_KEY.ACTIVITY_SUMMER_TODAY_HERO .. Time:getBeginningOfServerToday(), 1)
end
+function LocalData:getTodayFourteenDayExchangeWatched()
+ return self:getInt(LOCAL_DATA_KEY.FOURTEEN_DAY_TODAY_EXCHANGE .. Time:getBeginningOfServerToday(), 0) == 1
+end
+
+function LocalData:recordTodayFourteenDayExchangeWatched()
+ if self:getTodayFourteenDayExchangeWatched() then
+ return
+ end
+ self:setInt(LOCAL_DATA_KEY.FOURTEEN_DAY_TODAY_EXCHANGE .. Time:getBeginningOfServerToday(), 1)
+ DataManager.FourteenDayData:setDirty()
+end
+
return LocalData
\ No newline at end of file
diff --git a/lua/app/common/module_manager.lua b/lua/app/common/module_manager.lua
index a9a3b3cf..94044585 100644
--- a/lua/app/common/module_manager.lua
+++ b/lua/app/common/module_manager.lua
@@ -71,6 +71,8 @@ local MODULE_PATHS = {
SkinManager = "app/module/skin/skin_manager",
-- 英雄基金
HeroFundManager = "app/module/activity/hero_fund/hero_fund_manager",
+ -- 新手14天乐
+ FourteenDayManager = "app/module/activity/fourteen_day/fourteen_day_manager",
}
-- 这里的key对应func_open里的id
diff --git a/lua/app/common/pay_manager.lua b/lua/app/common/pay_manager.lua
index 799522e9..e6c6b0b1 100644
--- a/lua/app/common/pay_manager.lua
+++ b/lua/app/common/pay_manager.lua
@@ -26,6 +26,7 @@ PayManager.PURCHARSE_ACT_TYPE = {
ACT_HERO_FUND = 14,
WEAPON_UPGRADE_GIFT = 15,
ARMOR_UPGRADE_GIFT = 16,
+ FOURTEEN_DAY_GIFT = 17,
}
PayManager.PURCHARSE_TYPE_CONFIG = {
@@ -54,6 +55,7 @@ PayManager.BI_ITEM_GET_TYPE = {
[PayManager.PURCHARSE_ACT_TYPE.ACT_HERO_FUND] = BIReport.ITEM_GET_TYPE.ACT_HERO_FUND,
[PayManager.PURCHARSE_ACT_TYPE.WEAPON_UPGRADE_GIFT] = BIReport.ITEM_GET_TYPE.WEAPON_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_UPGRADE_GIFT] = BIReport.ITEM_GET_TYPE.ARMOR_GIFT,
+ [PayManager.PURCHARSE_ACT_TYPE.FOURTEEN_DAY_GIFT] = BIReport.ITEM_GET_TYPE.FOURTEEN_DAY_GIFT,
},
[PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.ITEM_GET_TYPE.GOLD_PIG,
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE,
@@ -79,6 +81,7 @@ PayManager.BI_GIFT_TYPE = {
[PayManager.PURCHARSE_ACT_TYPE.ACT_HERO_FUND] = BIReport.ITEM_GET_TYPE.ACT_HERO_FUND,
[PayManager.PURCHARSE_ACT_TYPE.WEAPON_UPGRADE_GIFT] = BIReport.GIFT_TYPE.WEAPON_GIFT,
[PayManager.PURCHARSE_ACT_TYPE.ARMOR_UPGRADE_GIFT] = BIReport.GIFT_TYPE.ARMOR_GIFT,
+ [PayManager.PURCHARSE_ACT_TYPE.FOURTEEN_DAY_GIFT] = BIReport.GIFT_TYPE.FOURTEEN_DAY_GIFT,
},
[PayManager.PURCHARSE_TYPE.ACT_GOLD_PIG] = BIReport.GIFT_TYPE.GOLD_PIG,
[PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE,
diff --git a/lua/app/config/act_fourteen_bounty.lua b/lua/app/config/act_fourteen_bounty.lua
index 75f79032..756a1edc 100644
--- a/lua/app/config/act_fourteen_bounty.lua
+++ b/lua/app/config/act_fourteen_bounty.lua
@@ -3,18 +3,18 @@ local act_fourteen_bounty = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1100,
- ["num_for_nothing"]="VwlcAw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=1100,
- ["num_for_nothing"]="VwlcAw=="
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
[2]={
@@ -23,52 +23,52 @@ local act_fourteen_bounty = {
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
- ["num"]=1101,
- ["num_for_nothing"]="VwlcAg=="
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=1101,
- ["num_for_nothing"]="VwlcAg=="
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
}
},
[3]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1102,
- ["num_for_nothing"]="VwlcAQ=="
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=1102,
- ["num_for_nothing"]="VwlcAQ=="
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
[4]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1103,
- ["num_for_nothing"]="VwlcAA=="
+ ["id"]=10,
+ ["id_for_nothing"]="Vwg=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=1103,
- ["num_for_nothing"]="VwlcAA=="
+ ["id"]=11,
+ ["id_for_nothing"]="Vwk=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
}
},
[5]={
@@ -77,34 +77,34 @@ local act_fourteen_bounty = {
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
- ["num"]=1104,
- ["num_for_nothing"]="VwlcBw=="
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=1104,
- ["num_for_nothing"]="VwlcBw=="
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
},
[6]={
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1105,
- ["num_for_nothing"]="VwlcBg=="
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=3,
["id_for_nothing"]="VQ==",
- ["num"]=1105,
- ["num_for_nothing"]="VwlcBg=="
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
}
},
[7]={
@@ -113,20 +113,38 @@ local act_fourteen_bounty = {
["type_for_nothing"]="Vw==",
["id"]=2,
["id_for_nothing"]="VA==",
- ["num"]=1106,
- ["num_for_nothing"]="VwlcBQ=="
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
},
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=1106,
- ["num_for_nothing"]="VwlcBQ=="
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ [8]={
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ ["reward_pro"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14001,
+ ["id_for_nothing"]="VwxcA2Q=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
}
}
}
local config = {
-data=act_fourteen_bounty,count=7
+data=act_fourteen_bounty,count=8
}
return config
\ No newline at end of file
diff --git a/lua/app/config/act_fourteen_exchange.lua b/lua/app/config/act_fourteen_exchange.lua
index 3c278f74..8b20ed6e 100644
--- a/lua/app/config/act_fourteen_exchange.lua
+++ b/lua/app/config/act_fourteen_exchange.lua
@@ -1,5 +1,205 @@
local act_fourteen_exchange = {
[1]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=44002,
+ ["id_for_nothing"]="UgxcA2c=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ },
+ ["limit"]=10
+ },
+ [2]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=750,
+ ["num_for_nothing"]="UQ1c"
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=24001,
+ ["id_for_nothing"]="VAxcA2Q=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ },
+ ["limit"]=10
+ },
+ [3]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=750,
+ ["num_for_nothing"]="UQ1c"
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=34001,
+ ["id_for_nothing"]="VQxcA2Q=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ },
+ ["limit"]=10
+ },
+ [4]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=750,
+ ["num_for_nothing"]="UQ1c"
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54003,
+ ["id_for_nothing"]="UwxcA2Y=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ },
+ ["limit"]=10
+ },
+ [5]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=800,
+ ["num_for_nothing"]="Xghc"
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=15,
+ ["id_for_nothing"]="Vw0=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ ["limit"]=3
+ },
+ [6]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14,
+ ["id_for_nothing"]="Vww=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ ["limit"]=3
+ },
+ [7]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1002,
+ ["id_for_nothing"]="VwhcAQ==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ ["limit"]=10
+ },
+ [8]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1003,
+ ["id_for_nothing"]="VwhcAA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ ["limit"]=10
+ },
+ [9]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1004,
+ ["id_for_nothing"]="VwhcBw==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ ["limit"]=10
+ },
+ [10]={
+ ["stage"]=1,
+ ["cost"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
+ },
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=39,
+ ["id_for_nothing"]="VQE=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ },
+ ["limit"]=10
+ },
+ [11]={
["stage"]=1,
["cost"]={
["type"]=1,
@@ -12,155 +212,95 @@ local act_fourteen_exchange = {
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=40,
+ ["id_for_nothing"]="Ugg=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
},
- ["limit"]=1
+ ["limit"]=10
},
- [2]={
- ["stage"]=2,
+ [12]={
+ ["stage"]=1,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
- ["num"]=101,
- ["num_for_nothing"]="Vwhd"
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=101,
- ["num_for_nothing"]="Vwhd"
+ ["id"]=41,
+ ["id_for_nothing"]="Ugk=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
},
- ["limit"]=1
+ ["limit"]=10
},
- [3]={
- ["stage"]=3,
+ [13]={
+ ["stage"]=1,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
- ["num"]=102,
- ["num_for_nothing"]="Vwhe"
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=102,
- ["num_for_nothing"]="Vwhe"
+ ["id"]=3,
+ ["id_for_nothing"]="VQ==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
},
- ["limit"]=1
+ ["limit"]=10
},
- [4]={
- ["stage"]=4,
+ [14]={
+ ["stage"]=1,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
- ["num"]=103,
- ["num_for_nothing"]="Vwhf"
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=103,
- ["num_for_nothing"]="Vwhf"
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
},
- ["limit"]=1
+ ["limit"]=999
},
- [5]={
- ["stage"]=5,
+ [15]={
+ ["stage"]=1,
["cost"]={
["type"]=1,
["type_for_nothing"]="Vw==",
["id"]=51,
["id_for_nothing"]="Uwk=",
- ["num"]=104,
- ["num_for_nothing"]="VwhY"
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
},
["reward"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=104,
- ["num_for_nothing"]="VwhY"
+ ["id"]=13,
+ ["id_for_nothing"]="Vws=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
},
- ["limit"]=1
- },
- [6]={
- ["stage"]=6,
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=51,
- ["id_for_nothing"]="Uwk=",
- ["num"]=105,
- ["num_for_nothing"]="VwhZ"
- },
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=105,
- ["num_for_nothing"]="VwhZ"
- },
- ["limit"]=1
- },
- [7]={
- ["stage"]=7,
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=51,
- ["id_for_nothing"]="Uwk=",
- ["num"]=106,
- ["num_for_nothing"]="Vwha"
- },
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=106,
- ["num_for_nothing"]="Vwha"
- },
- ["limit"]=1
- },
- [8]={
- ["stage"]=8,
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=51,
- ["id_for_nothing"]="Uwk=",
- ["num"]=107,
- ["num_for_nothing"]="Vwhb"
- },
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=107,
- ["num_for_nothing"]="Vwhb"
- },
- ["limit"]=1
+ ["limit"]=999
}
}
local config = {
-data=act_fourteen_exchange,count=8
+data=act_fourteen_exchange,count=15
}
return config
\ No newline at end of file
diff --git a/lua/app/config/act_fourteen_quest.lua b/lua/app/config/act_fourteen_quest.lua
index f4f35ab8..bbbf6fe1 100644
--- a/lua/app/config/act_fourteen_quest.lua
+++ b/lua/app/config/act_fourteen_quest.lua
@@ -1,795 +1,894 @@
local act_fourteen_quest = {
[1]={
["stage"]=1,
- ["quest"]=23,
- ["none"]="深渊挑战 8",
- ["num"]=1,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [2]={
- ["stage"]=1,
- ["quest"]=23,
- ["none"]="角色升到40级",
- ["num"]=2,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- }
- }
- },
- [3]={
- ["stage"]=1,
- ["quest"]=23,
- ["none"]="竞技场达到白银I",
- ["num"]=3,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- }
- }
- },
- [4]={
- ["stage"]=1,
- ["quest"]=23,
- ["none"]="广告次数累计达3",
+ ["quest"]=32,
+ ["none"]="深渊挑战4",
["num"]=4,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=400,
- ["num_for_nothing"]="Ughc"
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
- }
+ },
+ ["icon"]=16
},
- [5]={
+ [2]={
["stage"]=1,
["quest"]=23,
- ["none"]="完成所有任务",
- ["num"]=5,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [6]={
- ["stage"]=2,
- ["quest"]=23,
- ["none"]="武器升级 x次",
- ["num"]=6,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
- }
- }
- },
- [7]={
- ["stage"]=2,
- ["quest"]=23,
- ["none"]="时空裂隙3-6",
- ["num"]=7,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- }
- }
- },
- [8]={
- ["stage"]=2,
- ["quest"]=23,
- ["none"]="开启主线宝箱 x个",
- ["num"]=8,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=700,
- ["num_for_nothing"]="UQhc"
- }
- }
- },
- [9]={
- ["stage"]=2,
- ["quest"]=23,
- ["none"]="矿车拦截 7",
- ["num"]=9,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- }
- }
- },
- [10]={
- ["stage"]=2,
- ["quest"]=23,
- ["none"]="完成所有任务",
- ["num"]=10,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [11]={
- ["stage"]=3,
- ["quest"]=23,
- ["none"]="灯神之塔 9",
- ["num"]=11,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1100,
- ["num_for_nothing"]="VwlcAw=="
- }
- }
- },
- [12]={
- ["stage"]=3,
- ["quest"]=23,
- ["none"]="角色升级x次",
- ["num"]=12,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1200,
- ["num_for_nothing"]="VwpcAw=="
- }
- }
- },
- [13]={
- ["stage"]=3,
- ["quest"]=23,
- ["none"]="深渊挑战 10",
- ["num"]=13,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1300,
- ["num_for_nothing"]="VwtcAw=="
- }
- }
- },
- [14]={
- ["stage"]=3,
- ["quest"]=23,
- ["none"]="广告次数累计达8",
- ["num"]=14,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1400,
- ["num_for_nothing"]="VwxcAw=="
- }
- }
- },
- [15]={
- ["stage"]=3,
- ["quest"]=23,
- ["none"]="完成所有任务",
- ["num"]=15,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [16]={
- ["stage"]=4,
- ["quest"]=23,
- ["none"]="每日挑战 胜利x次",
- ["num"]=16,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- }
- }
- },
- [17]={
- ["stage"]=4,
- ["quest"]=23,
- ["none"]="矿车拦截 10",
- ["num"]=17,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1600,
- ["num_for_nothing"]="Vw5cAw=="
- }
- }
- },
- [18]={
- ["stage"]=4,
- ["quest"]=23,
- ["none"]="时空裂隙4-3",
- ["num"]=18,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1700,
- ["num_for_nothing"]="Vw9cAw=="
- }
- }
- },
- [19]={
- ["stage"]=4,
- ["quest"]=23,
- ["none"]="开宝箱 x次",
- ["num"]=19,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=1800,
- ["num_for_nothing"]="VwBcAw=="
- }
- }
- },
- [20]={
- ["stage"]=4,
- ["quest"]=23,
- ["none"]="完成所有任务",
+ ["none"]="角色升到20级",
["num"]=20,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
- }
+ },
+ ["icon"]=7
},
- [21]={
- ["stage"]=5,
- ["quest"]=23,
- ["none"]="广告次数累计达15",
- ["num"]=21,
+ [3]={
+ ["stage"]=1,
+ ["quest"]=31,
+ ["none"]="竞技场达到青铜II",
+ ["num"]=1000,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2100,
- ["num_for_nothing"]="VAlcAw=="
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
- }
+ },
+ ["icon"]=14
},
- [22]={
- ["stage"]=5,
- ["quest"]=23,
- ["none"]="通关波次 x次",
- ["num"]=22,
+ [4]={
+ ["stage"]=1,
+ ["quest"]=1,
+ ["none"]="广告次数累计达8",
+ ["num"]=8,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2200,
- ["num_for_nothing"]="VApcAw=="
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
}
- }
+ },
+ ["icon"]=10
},
- [23]={
- ["stage"]=5,
- ["quest"]=23,
- ["none"]="灯神之塔 10",
- ["num"]=23,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2300,
- ["num_for_nothing"]="VAtcAw=="
- }
- }
- },
- [24]={
- ["stage"]=5,
- ["quest"]=23,
- ["none"]="竞技场达到白银III",
- ["num"]=24,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2400,
- ["num_for_nothing"]="VAxcAw=="
- }
- }
- },
- [25]={
- ["stage"]=5,
- ["quest"]=23,
+ [5]={
+ ["stage"]=1,
["none"]="完成所有任务",
- ["num"]=25,
["reward"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [26]={
- ["stage"]=6,
- ["quest"]=23,
- ["none"]="击杀BOSS x次",
- ["num"]=26,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2500,
- ["num_for_nothing"]="VA1cAw=="
- }
- }
- },
- [27]={
- ["stage"]=6,
- ["quest"]=23,
- ["none"]="深渊挑战 13",
- ["num"]=27,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2600,
- ["num_for_nothing"]="VA5cAw=="
- }
- }
- },
- [28]={
- ["stage"]=6,
- ["quest"]=23,
- ["none"]="开启主线宝箱 x个",
- ["num"]=28,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2700,
- ["num_for_nothing"]="VA9cAw=="
- }
- }
- },
- [29]={
- ["stage"]=6,
- ["quest"]=23,
- ["none"]="矿车拦截 13",
- ["num"]=29,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=2800,
- ["num_for_nothing"]="VABcAw=="
- }
- }
- },
- [30]={
- ["stage"]=6,
- ["quest"]=23,
- ["none"]="完成所有任务",
- ["num"]=30,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=6000,
- ["num_for_nothing"]="UAhcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [31]={
- ["stage"]=7,
- ["quest"]=23,
- ["none"]="时空裂隙5-2",
- ["num"]=31,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3100,
- ["num_for_nothing"]="VQlcAw=="
- }
- }
- },
- [32]={
- ["stage"]=7,
- ["quest"]=23,
- ["none"]="每日挑战 胜利x次",
- ["num"]=32,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3200,
- ["num_for_nothing"]="VQpcAw=="
- }
- }
- },
- [33]={
- ["stage"]=7,
- ["quest"]=23,
- ["none"]="开宝箱x次",
- ["num"]=33,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3300,
- ["num_for_nothing"]="VQtcAw=="
- }
- }
- },
- [34]={
- ["stage"]=7,
- ["quest"]=23,
- ["none"]="广告次数累计达20",
- ["num"]=34,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3400,
- ["num_for_nothing"]="VQxcAw=="
- }
- }
- },
- [35]={
- ["stage"]=7,
- ["quest"]=23,
- ["none"]="完成所有任务",
- ["num"]=35,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=7000,
- ["num_for_nothing"]="UQhcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [36]={
- ["stage"]=8,
- ["quest"]=23,
- ["none"]="装备升级 x次",
- ["num"]=36,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3500,
- ["num_for_nothing"]="VQ1cAw=="
- }
- }
- },
- [37]={
- ["stage"]=8,
- ["quest"]=23,
- ["none"]="灯神之塔 12",
- ["num"]=37,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3600,
- ["num_for_nothing"]="VQ5cAw=="
- }
- }
- },
- [38]={
- ["stage"]=8,
- ["quest"]=23,
- ["none"]="通关波次 x次",
- ["num"]=38,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3700,
- ["num_for_nothing"]="VQ9cAw=="
- }
- }
- },
- [39]={
- ["stage"]=8,
- ["quest"]=23,
- ["none"]="矿车拦截 15",
- ["num"]=39,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=3800,
- ["num_for_nothing"]="VQBcAw=="
- }
- }
- },
- [40]={
- ["stage"]=8,
- ["quest"]=23,
- ["none"]="完成所有任务",
- ["num"]=40,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
["num"]=8000,
["num_for_nothing"]="XghcAw=="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- }
- },
- [41]={
- ["stage"]=9,
- ["quest"]=23,
- ["none"]="竞技场达到黄金段位",
- ["num"]=41,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=4100,
- ["num_for_nothing"]="UglcAw=="
- }
- }
- },
- [42]={
- ["stage"]=9,
- ["quest"]=23,
- ["none"]="广告次数累计达30",
- ["num"]=42,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=4200,
- ["num_for_nothing"]="UgpcAw=="
- }
- }
- },
- [43]={
- ["stage"]=9,
- ["quest"]=23,
- ["none"]="角色升到50级",
- ["num"]=43,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=4300,
- ["num_for_nothing"]="UgtcAw=="
- }
- }
- },
- [44]={
- ["stage"]=9,
- ["quest"]=23,
- ["none"]="深渊挑战 15",
- ["num"]=44,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=4400,
- ["num_for_nothing"]="UgxcAw=="
- }
- }
- },
- [45]={
- ["stage"]=9,
- ["quest"]=23,
- ["none"]="完成所有任务",
- ["num"]=45,
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=9000,
- ["num_for_nothing"]="XwhcAw=="
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
["num"]=100,
["num_for_nothing"]="Vwhc"
}
- }
+ },
+ ["icon"]=11
+ },
+ [6]={
+ ["stage"]=2,
+ ["quest"]=10,
+ ["none"]="武器升级15次",
+ ["num"]=15,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=7
+ },
+ [7]={
+ ["stage"]=2,
+ ["quest"]=33,
+ ["none"]="时空裂隙1-6",
+ ["num"]=6,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=17
+ },
+ [8]={
+ ["stage"]=2,
+ ["quest"]=37,
+ ["none"]="开启主线宝箱3个",
+ ["num"]=3,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=21
+ },
+ [9]={
+ ["stage"]=2,
+ ["quest"]=34,
+ ["none"]="矿车拦截5",
+ ["num"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=18
+ },
+ [10]={
+ ["stage"]=2,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["icon"]=11
+ },
+ [11]={
+ ["stage"]=3,
+ ["quest"]=35,
+ ["none"]="灯神之塔4",
+ ["num"]=4,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=19
+ },
+ [12]={
+ ["stage"]=3,
+ ["quest"]=38,
+ ["none"]="角色升到24级",
+ ["num"]=24,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=22
+ },
+ [13]={
+ ["stage"]=3,
+ ["quest"]=32,
+ ["none"]="深渊挑战5",
+ ["num"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=16
+ },
+ [14]={
+ ["stage"]=3,
+ ["quest"]=1,
+ ["none"]="广告次数累计达24",
+ ["num"]=24,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=10
+ },
+ [15]={
+ ["stage"]=3,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
+ },
+ ["icon"]=11
+ },
+ [16]={
+ ["stage"]=4,
+ ["quest"]=36,
+ ["none"]="每日挑战胜利5次",
+ ["num"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=6
+ },
+ [17]={
+ ["stage"]=4,
+ ["quest"]=34,
+ ["none"]="矿车拦截6",
+ ["num"]=6,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=18
+ },
+ [18]={
+ ["stage"]=4,
+ ["quest"]=33,
+ ["none"]="时空裂隙2-6",
+ ["num"]=12,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=17
+ },
+ [19]={
+ ["stage"]=4,
+ ["quest"]=6,
+ ["none"]="开启商城宝箱5次",
+ ["num"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=4
+ },
+ [20]={
+ ["stage"]=4,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["icon"]=11
+ },
+ [21]={
+ ["stage"]=5,
+ ["quest"]=1,
+ ["none"]="广告次数累计达40",
+ ["num"]=40,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=10
+ },
+ [22]={
+ ["stage"]=5,
+ ["quest"]=19,
+ ["none"]="通关波次400次",
+ ["num"]=400,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=20
+ },
+ [23]={
+ ["stage"]=5,
+ ["quest"]=35,
+ ["none"]="灯神之塔5",
+ ["num"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=19
+ },
+ [24]={
+ ["stage"]=5,
+ ["quest"]=31,
+ ["none"]="竞技场达到白银IV",
+ ["num"]=1200,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=14
+ },
+ [25]={
+ ["stage"]=5,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
+ },
+ ["icon"]=11
+ },
+ [26]={
+ ["stage"]=6,
+ ["quest"]=12,
+ ["none"]="击杀BOSS80次",
+ ["num"]=80,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=9
+ },
+ [27]={
+ ["stage"]=6,
+ ["quest"]=32,
+ ["none"]="深渊挑战7",
+ ["num"]=7,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=16
+ },
+ [28]={
+ ["stage"]=6,
+ ["quest"]=37,
+ ["none"]="开启主线宝箱15个",
+ ["num"]=15,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=21
+ },
+ [29]={
+ ["stage"]=6,
+ ["quest"]=34,
+ ["none"]="矿车拦截7",
+ ["num"]=7,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=18
+ },
+ [30]={
+ ["stage"]=6,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["icon"]=11
+ },
+ [31]={
+ ["stage"]=7,
+ ["quest"]=33,
+ ["none"]="时空裂隙3-4",
+ ["num"]=16,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=17
+ },
+ [32]={
+ ["stage"]=7,
+ ["quest"]=36,
+ ["none"]="每日挑战胜利10次",
+ ["num"]=10,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=6
+ },
+ [33]={
+ ["stage"]=7,
+ ["quest"]=6,
+ ["none"]="开启商城宝箱10次",
+ ["num"]=10,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=4
+ },
+ [34]={
+ ["stage"]=7,
+ ["quest"]=1,
+ ["none"]="广告次数累计达56",
+ ["num"]=56,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=10
+ },
+ [35]={
+ ["stage"]=7,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
+ },
+ ["icon"]=11
+ },
+ [36]={
+ ["stage"]=8,
+ ["quest"]=39,
+ ["none"]="防具升级40次",
+ ["num"]=40,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=23
+ },
+ [37]={
+ ["stage"]=8,
+ ["quest"]=35,
+ ["none"]="灯神之塔7",
+ ["num"]=7,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=19
+ },
+ [38]={
+ ["stage"]=8,
+ ["quest"]=19,
+ ["none"]="通关波次700次",
+ ["num"]=700,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=20
+ },
+ [39]={
+ ["stage"]=8,
+ ["quest"]=34,
+ ["none"]="矿车拦截8",
+ ["num"]=8,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=18
+ },
+ [40]={
+ ["stage"]=8,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=6,
+ ["id_for_nothing"]="UA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["icon"]=11
+ },
+ [41]={
+ ["stage"]=9,
+ ["quest"]=31,
+ ["none"]="竞技场达到白银III",
+ ["num"]=1400,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=15
+ },
+ [42]={
+ ["stage"]=9,
+ ["quest"]=1,
+ ["none"]="广告次数累计达72",
+ ["num"]=72,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=10
+ },
+ [43]={
+ ["stage"]=9,
+ ["quest"]=23,
+ ["none"]="角色升到32级",
+ ["num"]=32,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=7
+ },
+ [44]={
+ ["stage"]=9,
+ ["quest"]=32,
+ ["none"]="深渊挑战9",
+ ["num"]=9,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["icon"]=16
+ },
+ [45]={
+ ["stage"]=9,
+ ["none"]="完成所有任务",
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=8000,
+ ["num_for_nothing"]="XghcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=14,
+ ["id_for_nothing"]="Vww=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["icon"]=11
}
}
local config = {
diff --git a/lua/app/config/act_gift.lua b/lua/app/config/act_gift.lua
index c4b52596..5afddf5f 100644
--- a/lua/app/config/act_gift.lua
+++ b/lua/app/config/act_gift.lua
@@ -2558,9 +2558,198 @@ local act_gift = {
["limit_time"]=6,
["cd"]=1,
["value"]=800
+ },
+ [170102]={
+ ["type"]=17,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ }
+ }
+ },
+ [170202]={
+ ["type"]=17,
+ ["recharge_id"]=5,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=5000,
+ ["num_for_nothing"]="UwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
+ },
+ ["limit"]=5,
+ ["value"]=800
+ },
+ [170302]={
+ ["type"]=17,
+ ["recharge_id"]=10,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=10000,
+ ["num_for_nothing"]="VwhcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["limit"]=5,
+ ["value"]=800
+ },
+ [170402]={
+ ["type"]=17,
+ ["recharge_id"]=13,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=720,
+ ["num_for_nothing"]="UQpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=20000,
+ ["num_for_nothing"]="VAhcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ }
+ },
+ ["limit"]=5,
+ ["value"]=900
+ },
+ [170502]={
+ ["type"]=17,
+ ["recharge_id"]=16,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=50000,
+ ["num_for_nothing"]="UwhcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=1000,
+ ["num_for_nothing"]="VwhcAw=="
+ }
+ },
+ ["limit"]=5,
+ ["value"]=900
+ },
+ [170602]={
+ ["type"]=17,
+ ["recharge_id"]=18,
+ ["reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=51,
+ ["id_for_nothing"]="Uwk=",
+ ["num"]=4200,
+ ["num_for_nothing"]="UgpcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100000,
+ ["num_for_nothing"]="VwhcA2VR"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=2000,
+ ["num_for_nothing"]="VAhcAw=="
+ }
+ },
+ ["limit"]=5,
+ ["value"]=1000
}
}
local config = {
-data=act_gift,count=79
+data=act_gift,count=85
}
return config
\ No newline at end of file
diff --git a/lua/app/config/arena_board.lua b/lua/app/config/arena_board.lua
index 862e8f51..0286d318 100644
--- a/lua/app/config/arena_board.lua
+++ b/lua/app/config/arena_board.lua
@@ -26,11 +26,11 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 0,
0
},
{
@@ -82,7 +82,31 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -110,11 +134,11 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 0,
0
},
{
@@ -126,7 +150,11 @@ local arena_board = {
0
},
{
- 2,
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -137,38 +165,10 @@ local arena_board = {
0,
0
},
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
},
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
{
3,
0
@@ -194,11 +194,11 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 0,
0
},
{
@@ -250,11 +250,11 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 0,
0
},
{
@@ -313,98 +313,10 @@ local arena_board = {
3,
0
},
- {
- 3,
- 0
- },
{
2,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
{
2,
0
@@ -422,37 +334,13 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
+ 2,
0
},
{
2,
0
},
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
{
3,
0
@@ -481,38 +369,6 @@ local arena_board = {
3,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
2,
0
@@ -529,6 +385,14 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
2,
0
@@ -537,6 +401,26 @@ local arena_board = {
3,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
3,
0
@@ -557,6 +441,14 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
2,
0
@@ -564,6 +456,114 @@ local arena_board = {
{
3,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
}
}
},
@@ -597,14 +597,6 @@ local arena_board = {
3,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
{
2,
0
@@ -613,20 +605,12 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
{
0,
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 0,
0
},
{
@@ -641,6 +625,10 @@ local arena_board = {
2,
0
},
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -654,13 +642,17 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
0,
0
},
+ {
+ 3,
+ 0
+ },
{
2,
0
@@ -670,7 +662,7 @@ local arena_board = {
0
},
{
- 2,
+ 0,
0
},
{
@@ -678,7 +670,15 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -737,14 +737,6 @@ local arena_board = {
3,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
{
2,
0
@@ -753,20 +745,12 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
{
0,
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 0,
0
},
{
@@ -781,6 +765,10 @@ local arena_board = {
2,
0
},
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -794,13 +782,17 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
0,
0
},
+ {
+ 3,
+ 0
+ },
{
2,
0
@@ -810,7 +802,7 @@ local arena_board = {
0
},
{
- 2,
+ 0,
0
},
{
@@ -818,7 +810,15 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -910,7 +910,7 @@ local arena_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -922,7 +922,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -934,7 +934,7 @@ local arena_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -1050,7 +1050,7 @@ local arena_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -1062,7 +1062,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -1074,7 +1074,7 @@ local arena_board = {
0
},
{
- 3,
+ 2,
0
},
{
@@ -1161,42 +1161,6 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -1205,26 +1169,6 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
{
0,
0
@@ -1273,14 +1217,6 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -1293,82 +1229,6 @@ local arena_board = {
0,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
{
2,
0
@@ -1413,44 +1273,156 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
2,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
}
}
},
[6]={
["board"]={
{
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -1474,67 +1446,11 @@ local arena_board = {
0
},
{
- 3,
+ 35,
0
},
{
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -1558,7 +1474,15 @@ local arena_board = {
0
},
{
- 3,
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -1569,6 +1493,166 @@ local arena_board = {
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
0,
0
@@ -1586,11 +1670,11 @@ local arena_board = {
0
},
{
- 3,
+ 35,
0
},
{
- 3,
+ 35,
0
},
{
@@ -1614,91 +1698,7 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
+ 35,
0
}
}
@@ -1706,11 +1706,7 @@ local arena_board = {
[7]={
["board"]={
{
- 3,
- 0
- },
- {
- 2,
+ 35,
0
},
{
@@ -1726,41 +1722,65 @@ local arena_board = {
0
},
{
- 2,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
0
},
{
3,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
3,
0
},
- {
- 2,
- 0
- },
{
0,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
{
3,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
3,
0
@@ -1778,19 +1798,15 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
- 0,
+ 35,
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -1813,10 +1829,98 @@ local arena_board = {
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
3,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
3,
0
@@ -1825,28 +1929,12 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
},
{
- 3,
+ 35,
0
},
{
@@ -1854,7 +1942,7 @@ local arena_board = {
0
},
{
- 2,
+ 0,
0
},
{
@@ -1862,11 +1950,7 @@ local arena_board = {
0
},
{
- 2,
- 0
- },
- {
- 0,
+ 35,
0
},
{
@@ -1874,7 +1958,7 @@ local arena_board = {
0
},
{
- 3,
+ 35,
0
},
{
@@ -1898,101 +1982,97 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
+ 35,
0
}
}
},
[8]={
["board"]={
+ {
+ 2,
+ 0
+ },
{
3,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
2,
0
@@ -2009,46 +2089,6 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -2061,50 +2101,6 @@ local arena_board = {
2,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
2,
0
@@ -2121,18 +2117,18 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
2,
0
},
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
2,
0
@@ -2149,46 +2145,6 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -2201,50 +2157,6 @@ local arena_board = {
2,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
2,
0
@@ -2261,6 +2173,18 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
2,
0
@@ -2268,151 +2192,87 @@ local arena_board = {
{
3,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
}
}
},
[9]={
["board"]={
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
{
0,
0
@@ -2449,46 +2309,10 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
{
0,
0
@@ -2502,11 +2326,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 2,
+ 3,
0
},
{
@@ -2514,13 +2334,189 @@ local arena_board = {
0
},
{
- 2,
+ 35,
0
},
{
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -2550,7 +2546,11 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
0
}
}
@@ -2558,7 +2558,7 @@ local arena_board = {
[10]={
["board"]={
{
- 3,
+ 35,
0
},
{
@@ -2582,35 +2582,7 @@ local arena_board = {
0
},
{
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -2622,43 +2594,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
+ 3,
0
},
{
@@ -2669,6 +2605,42 @@ local arena_board = {
3,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
3,
0
@@ -2694,7 +2666,63 @@ local arena_board = {
0
},
{
- 2,
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -2721,38 +2749,38 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
3,
0
@@ -2762,43 +2790,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
+ 3,
0
},
{
@@ -2809,10 +2801,18 @@ local arena_board = {
3,
0
},
+ {
+ 0,
+ 0
+ },
{
3,
0
},
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -2834,7 +2834,7 @@ local arena_board = {
0
},
{
- 2,
+ 35,
0
}
}
@@ -2842,7 +2842,11 @@ local arena_board = {
[11]={
["board"]={
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -2866,235 +2870,31 @@ local arena_board = {
0
},
{
- 3,
+ 35,
0
},
{
- 3,
+ 36,
0
},
{
- 0,
+ 35,
0
},
{
- 0,
+ 36,
0
},
{
- 0,
+ 35,
0
},
{
- 0,
+ 36,
0
},
{
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -3118,7 +2918,207 @@ local arena_board = {
0
},
{
- 3,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
0
}
}
@@ -3126,11 +3126,11 @@ local arena_board = {
[12]={
["board"]={
{
- 3,
+ 36,
0
},
{
- 2,
+ 35,
0
},
{
@@ -3146,19 +3146,15 @@ local arena_board = {
0
},
{
- 2,
+ 35,
0
},
{
- 3,
+ 36,
0
},
{
- 3,
- 0
- },
- {
- 2,
+ 35,
0
},
{
@@ -3169,20 +3165,40 @@ local arena_board = {
0,
0
},
+ {
+ 35,
+ 0
+ },
{
0,
0
},
{
- 2,
+ 0,
0
},
{
- 3,
+ 35,
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -3206,11 +3222,7 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -3234,11 +3246,7 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 0,
0
},
{
@@ -3246,57 +3254,17 @@ local arena_board = {
0
},
{
- 2,
+ 0,
0
},
{
0,
0
},
- {
- 2,
- 0
- },
{
0,
0
},
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -3318,11 +3286,27 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -3346,15 +3330,59 @@ local arena_board = {
0
},
{
- 3,
+ 35,
0
},
{
- 3,
+ 36,
0
},
{
- 2,
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -3370,39 +3398,11 @@ local arena_board = {
0
},
{
- 2,
+ 35,
0
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
+ 36,
0
}
}
@@ -3410,7 +3410,79 @@ local arena_board = {
[13]={
["board"]={
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -3429,44 +3501,12 @@ local arena_board = {
0,
0
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
},
{
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -3478,7 +3518,11 @@ local arena_board = {
0
},
{
- 2,
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -3490,11 +3534,7 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 3,
+ 0,
0
},
{
@@ -3502,7 +3542,7 @@ local arena_board = {
0
},
{
- 2,
+ 0,
0
},
{
@@ -3510,7 +3550,7 @@ local arena_board = {
0
},
{
- 2,
+ 0,
0
},
{
@@ -3518,15 +3558,43 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
- 3,
+ 0,
0
},
{
- 2,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -3546,11 +3614,15 @@ local arena_board = {
0
},
{
- 3,
+ 35,
0
},
{
- 3,
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -3562,7 +3634,31 @@ local arena_board = {
0
},
{
- 0,
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -3570,103 +3666,7 @@ local arena_board = {
0
},
{
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
+ 35,
0
},
{
@@ -3682,11 +3682,11 @@ local arena_board = {
0
},
{
- 2,
+ 35,
0
},
{
- 3,
+ 0,
0
}
}
@@ -3694,7 +3694,79 @@ local arena_board = {
[14]={
["board"]={
{
- 3,
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -3718,91 +3790,7 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -3861,38 +3849,10 @@ local arena_board = {
0,
0
},
- {
- 3,
- 0
- },
{
0,
0
},
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -3914,39 +3874,7 @@ local arena_board = {
0
},
{
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -3970,7 +3898,79 @@ local arena_board = {
0
},
{
- 3,
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
}
}
@@ -3978,7 +3978,107 @@ local arena_board = {
[15]={
["board"]={
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -4005,94 +4105,10 @@ local arena_board = {
2,
0
},
- {
- 2,
- 0
- },
{
0,
0
},
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -4118,7 +4134,91 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -4142,95 +4242,7 @@ local arena_board = {
0
},
{
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
+ 35,
0
},
{
@@ -4244,25 +4256,13 @@ local arena_board = {
{
0,
0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
}
}
},
[16]={
["board"]={
{
- 35,
+ 3,
0
},
{
@@ -4270,7 +4270,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -4278,47 +4278,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
+ 2,
0
},
{
@@ -4329,10 +4289,6 @@ local arena_board = {
3,
0
},
- {
- 0,
- 0
- },
{
3,
0
@@ -4341,42 +4297,6 @@ local arena_board = {
0,
0
},
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -4393,86 +4313,38 @@ local arena_board = {
0,
0
},
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -4482,15 +4354,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
+ 0,
0
},
{
@@ -4498,7 +4362,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -4506,15 +4370,67 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 35,
+ 3,
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -4538,47 +4454,103 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
0
}
}
},
[17]={
["board"]={
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
},
{
- 35,
+ 2,
0
},
{
@@ -4594,47 +4566,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 2,
0
},
{
@@ -4645,60 +4577,32 @@ local arena_board = {
3,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
3,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 3,
0
},
{
@@ -4730,7 +4634,11 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -4749,18 +4657,6 @@ local arena_board = {
3,
0
},
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -4769,12 +4665,28 @@ local arena_board = {
0,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
3,
0
},
{
- 35,
+ 3,
0
},
{
@@ -4782,7 +4694,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -4790,7 +4702,11 @@ local arena_board = {
0
},
{
- 35,
+ 2,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -4798,7 +4714,7 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
@@ -4822,33 +4738,97 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
}
}
},
[18]={
["board"]={
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
@@ -4858,33 +4838,17 @@ local arena_board = {
0
},
{
- 2,
- 0
- },
- {
- 35,
+ 0,
0
},
{
0,
0
},
- {
- 35,
- 0
- },
{
0,
0
},
- {
- 35,
- 0
- },
- {
- 2,
- 0
- },
{
2,
0
@@ -4893,12 +4857,24 @@ local arena_board = {
3,
0
},
+ {
+ 3,
+ 0
+ },
{
0,
0
},
{
- 3,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -4909,126 +4885,6 @@ local arena_board = {
3,
0
},
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
{
3,
0
@@ -5037,58 +4893,46 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
3,
0
},
- {
- 0,
- 0
- },
{
3,
0
},
{
- 2,
+ 0,
0
},
{
2,
0
},
- {
- 35,
- 0
- },
{
0,
0
},
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
2,
0
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -5097,10 +4941,34 @@ local arena_board = {
3,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -5108,17 +4976,145 @@ local arena_board = {
{
2,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
}
}
},
[19]={
["board"]={
{
- 0,
- 0
- },
- {
- 0,
+ 3,
0
},
{
@@ -5150,7 +5146,23 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -5165,66 +5177,6 @@ local arena_board = {
0,
0
},
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -5241,110 +5193,10 @@ local arena_board = {
0,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -5354,7 +5206,15 @@ local arena_board = {
0
},
{
- 3,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -5392,39 +5252,151 @@ local arena_board = {
{
0,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
}
}
},
[20]={
["board"]={
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -5433,6 +5405,54 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -5442,7 +5462,43 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -5454,7 +5510,7 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
@@ -5466,7 +5522,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -5478,7 +5534,7 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
@@ -5490,7 +5546,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -5498,7 +5554,35 @@ local arena_board = {
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -5509,62 +5593,6 @@ local arena_board = {
3,
0
},
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -5574,7 +5602,11 @@ local arena_board = {
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -5582,7 +5614,31 @@ local arena_board = {
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -5593,34 +5649,6 @@ local arena_board = {
3,
0
},
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -5629,30 +5657,6 @@ local arena_board = {
0,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -5670,11 +5674,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 35,
+ 2,
0
}
}
@@ -7101,90 +7101,10 @@ local arena_board = {
},
[26]={
["board"]={
- {
- 35,
- 0
- },
{
0,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
35,
0
@@ -7214,27 +7134,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 36,
0
},
{
@@ -7242,33 +7142,17 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 36,
0
},
{
35,
0
},
+ {
+ 36,
+ 0
+ },
{
35,
0
@@ -7298,7 +7182,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -7306,7 +7190,7 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
@@ -7314,7 +7198,7 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
@@ -7322,15 +7206,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
+ 0,
0
},
{
@@ -7338,7 +7214,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -7346,15 +7222,63 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
- 35,
+ 0,
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -7380,11 +7304,159 @@ local arena_board = {
{
35,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
}
}
},
[27]={
["board"]={
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
{
35,
0
@@ -7413,82 +7485,6 @@ local arena_board = {
35,
0
},
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -7561,18 +7557,6 @@ local arena_board = {
0,
0
},
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -7581,62 +7565,6 @@ local arena_board = {
0,
0
},
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
{
35,
0
@@ -7664,17 +7592,89 @@ local arena_board = {
{
35,
0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
}
}
},
[28]={
["board"]={
{
- 2,
+ 0,
0
},
{
- 3,
+ 35,
0
},
{
@@ -7682,7 +7682,7 @@ local arena_board = {
0
},
{
- 3,
+ 0,
0
},
{
@@ -7690,15 +7690,231 @@ local arena_board = {
0
},
{
- 3,
+ 35,
0
},
{
- 2,
+ 0,
0
},
{
- 2,
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
0
},
{
@@ -7717,190 +7933,10 @@ local arena_board = {
0,
0
},
- {
- 35,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -7912,107 +7948,35 @@ local arena_board = {
{
0,
0
- },
- {
- 35,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
}
}
},
[29]={
["board"]={
{
- 0,
+ 35,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
+ 36,
0
},
{
35,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
{
35,
0
@@ -8033,14 +7997,6 @@ local arena_board = {
35,
0
},
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -8053,10 +8009,42 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
35,
0
},
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
0,
0
@@ -8121,6 +8109,78 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
35,
0
@@ -8150,7 +8210,7 @@ local arena_board = {
0
},
{
- 35,
+ 36,
0
},
{
@@ -8166,81 +8226,17 @@ local arena_board = {
0
},
{
- 0,
+ 36,
0
},
{
35,
0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
}
}
},
[30]={
["board"]={
- {
- 35,
- 0
- },
{
0,
0
@@ -8253,102 +8249,6 @@ local arena_board = {
0,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
{
35,
0
@@ -8377,6 +8277,66 @@ local arena_board = {
35,
0
},
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
{
35,
0
@@ -8405,38 +8365,14 @@ local arena_board = {
35,
0
},
- {
- 3,
- 0
- },
{
0,
0
},
- {
- 35,
- 0
- },
{
0,
0
},
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -8445,10 +8381,6 @@ local arena_board = {
0,
0
},
- {
- 35,
- 0
- },
{
0,
0
@@ -8461,38 +8393,6 @@ local arena_board = {
35,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -8516,13 +8416,113 @@ local arena_board = {
{
35,
0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
}
}
},
[31]={
["board"]={
{
- 35,
+ 3,
0
},
{
@@ -8530,7 +8530,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -8538,47 +8538,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
+ 2,
0
},
{
@@ -8589,10 +8549,6 @@ local arena_board = {
3,
0
},
- {
- 0,
- 0
- },
{
3,
0
@@ -8601,42 +8557,6 @@ local arena_board = {
0,
0
},
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -8653,86 +8573,38 @@ local arena_board = {
0,
0
},
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -8742,15 +8614,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
+ 0,
0
},
{
@@ -8758,7 +8622,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -8766,15 +8630,67 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 35,
+ 3,
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -8798,47 +8714,103 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
0
}
}
},
[32]={
["board"]={
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
},
{
- 35,
+ 2,
0
},
{
@@ -8854,47 +8826,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 2,
0
},
{
@@ -8905,60 +8837,32 @@ local arena_board = {
3,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
3,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 3,
0
},
{
@@ -8990,7 +8894,11 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -9009,18 +8917,6 @@ local arena_board = {
3,
0
},
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -9029,12 +8925,28 @@ local arena_board = {
0,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
3,
0
},
{
- 35,
+ 3,
0
},
{
@@ -9042,7 +8954,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -9050,7 +8962,11 @@ local arena_board = {
0
},
{
- 35,
+ 2,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -9058,7 +8974,7 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
@@ -9082,33 +8998,97 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
}
}
},
[33]={
["board"]={
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
@@ -9118,33 +9098,17 @@ local arena_board = {
0
},
{
- 2,
- 0
- },
- {
- 35,
+ 0,
0
},
{
0,
0
},
- {
- 35,
- 0
- },
{
0,
0
},
- {
- 35,
- 0
- },
- {
- 2,
- 0
- },
{
2,
0
@@ -9153,12 +9117,24 @@ local arena_board = {
3,
0
},
+ {
+ 3,
+ 0
+ },
{
0,
0
},
{
- 3,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -9169,126 +9145,6 @@ local arena_board = {
3,
0
},
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
{
3,
0
@@ -9297,58 +9153,46 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
3,
0
},
- {
- 0,
- 0
- },
{
3,
0
},
{
- 2,
+ 0,
0
},
{
2,
0
},
- {
- 35,
- 0
- },
{
0,
0
},
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
2,
0
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
{
0,
0
@@ -9357,10 +9201,34 @@ local arena_board = {
3,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -9368,17 +9236,145 @@ local arena_board = {
{
2,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
}
}
},
[34]={
["board"]={
{
- 0,
- 0
- },
- {
- 0,
+ 3,
0
},
{
@@ -9410,7 +9406,23 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -9425,66 +9437,6 @@ local arena_board = {
0,
0
},
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -9501,110 +9453,10 @@ local arena_board = {
0,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -9614,7 +9466,15 @@ local arena_board = {
0
},
{
- 3,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -9652,39 +9512,151 @@ local arena_board = {
{
0,
0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
}
}
},
[35]={
["board"]={
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -9693,6 +9665,54 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
3,
0
@@ -9702,7 +9722,43 @@ local arena_board = {
0
},
{
- 3,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -9714,7 +9770,7 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
@@ -9726,7 +9782,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -9738,7 +9794,7 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
@@ -9750,7 +9806,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -9758,7 +9814,35 @@ local arena_board = {
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -9769,62 +9853,6 @@ local arena_board = {
3,
0
},
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -9834,7 +9862,11 @@ local arena_board = {
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -9842,7 +9874,31 @@ local arena_board = {
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -9853,34 +9909,6 @@ local arena_board = {
3,
0
},
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
{
3,
0
@@ -9889,30 +9917,6 @@ local arena_board = {
0,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 35,
- 0
- },
{
0,
0
@@ -9930,21 +9934,97 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 35,
+ 2,
0
}
}
},
[36]={
["board"]={
+ {
+ 35,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
35,
0
@@ -9974,23 +10054,59 @@ local arena_board = {
0
},
{
- 36,
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
35,
0
},
- {
- 36,
- 0
- },
{
35,
0
},
{
- 36,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -10022,7 +10138,7 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
@@ -10030,7 +10146,7 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
@@ -10038,7 +10154,7 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
@@ -10046,7 +10162,15 @@ local arena_board = {
0
},
{
- 0,
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -10054,7 +10178,7 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
@@ -10062,63 +10186,15 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
- 0,
+ 35,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 35,
0
},
{
@@ -10144,159 +10220,11 @@ local arena_board = {
{
35,
0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
}
}
},
[37]={
["board"]={
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
{
35,
0
@@ -10325,6 +10253,14 @@ local arena_board = {
35,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -10337,6 +10273,70 @@ local arena_board = {
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
0,
0
@@ -10401,10 +10401,82 @@ local arena_board = {
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
35,
0
@@ -10432,89 +10504,17 @@ local arena_board = {
{
35,
0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
}
}
},
[38]={
["board"]={
{
- 0,
+ 2,
0
},
{
- 35,
+ 3,
0
},
{
@@ -10522,7 +10522,7 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
@@ -10530,231 +10530,15 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 0,
+ 2,
0
},
{
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
+ 2,
0
},
{
@@ -10773,10 +10557,190 @@ local arena_board = {
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -10788,17 +10752,105 @@ local arena_board = {
{
0,
0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
}
}
},
[39]={
["board"]={
{
- 35,
+ 0,
0
},
{
- 36,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -10814,7 +10866,15 @@ local arena_board = {
0
},
{
- 36,
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -10857,78 +10917,6 @@ local arena_board = {
0,
0
},
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
{
0,
0
@@ -10982,15 +10970,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 35,
0
},
{
@@ -11002,7 +10982,7 @@ local arena_board = {
0
},
{
- 36,
+ 0,
0
},
{
@@ -11010,15 +10990,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 35,
0
},
{
@@ -11041,20 +11013,12 @@ local arena_board = {
35,
0
},
- {
- 0,
- 0
- },
{
35,
0
},
{
- 36,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -11062,21 +11026,65 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 36,
+ 0,
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
0
}
}
},
[40]={
["board"]={
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
0,
0
@@ -11089,6 +11097,98 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
35,
0
@@ -11117,66 +11217,6 @@ local arena_board = {
35,
0
},
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
{
35,
0
@@ -11205,10 +11245,38 @@ local arena_board = {
35,
0
},
+ {
+ 3,
+ 0
+ },
{
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -11218,7 +11286,7 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
@@ -11233,6 +11301,38 @@ local arena_board = {
35,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -11256,106 +11356,6 @@ local arena_board = {
{
35,
0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
}
}
},
@@ -12782,11 +12782,7 @@ local arena_board = {
[46]={
["board"]={
{
- 0,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -12794,7 +12790,7 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
@@ -12802,7 +12798,7 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
@@ -12810,55 +12806,11 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -12882,7 +12834,15 @@ local arena_board = {
0
},
{
- 0,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -12898,7 +12858,15 @@ local arena_board = {
0
},
{
- 0,
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -12922,7 +12890,11 @@ local arena_board = {
0
},
{
- 0,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -12933,6 +12905,10 @@ local arena_board = {
0,
0
},
+ {
+ 2,
+ 0
+ },
{
0,
0
@@ -12941,6 +12917,42 @@ local arena_board = {
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -12961,6 +12973,42 @@ local arena_board = {
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -12982,7 +13030,11 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -12990,7 +13042,7 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
@@ -12998,7 +13050,7 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
@@ -13006,59 +13058,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
+ 3,
0
}
}
@@ -13066,11 +13066,11 @@ local arena_board = {
[47]={
["board"]={
{
- 36,
+ 3,
0
},
{
- 35,
+ 2,
0
},
{
@@ -13086,15 +13086,19 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
- 36,
+ 3,
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -13105,40 +13109,20 @@ local arena_board = {
0,
0
},
- {
- 35,
- 0
- },
{
0,
0
},
{
- 0,
+ 2,
0
},
{
- 35,
+ 3,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -13162,7 +13146,11 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -13186,7 +13174,11 @@ local arena_board = {
0
},
{
- 0,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -13194,17 +13186,57 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
0,
0
},
+ {
+ 2,
+ 0
+ },
{
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -13226,27 +13258,11 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -13270,59 +13286,15 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 36,
+ 3,
0
},
{
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
+ 2,
0
},
{
@@ -13338,11 +13310,39 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
- 36,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -13350,11 +13350,11 @@ local arena_board = {
[48]={
["board"]={
{
- 0,
+ 3,
0
},
{
- 35,
+ 2,
0
},
{
@@ -13370,7 +13370,15 @@ local arena_board = {
0
},
{
- 35,
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -13378,31 +13386,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
+ 2,
0
},
{
@@ -13410,23 +13394,79 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
- 35,
+ 0,
0
},
{
- 36,
+ 3,
0
},
{
- 35,
+ 3,
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -13442,11 +13482,19 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -13461,10 +13509,46 @@ local arena_board = {
0,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -13473,6 +13557,58 @@ local arena_board = {
0,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
0
@@ -13486,147 +13622,11 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
+ 3,
0
}
}
@@ -13634,79 +13634,7 @@ local arena_board = {
[49]={
["board"]={
{
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -13730,7 +13658,91 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -13790,7 +13802,7 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
@@ -13798,7 +13810,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -13806,7 +13818,7 @@ local arena_board = {
0
},
{
- 0,
+ 2,
0
},
{
@@ -13814,7 +13826,11 @@ local arena_board = {
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -13838,15 +13854,39 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 36,
+ 0,
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -13862,7 +13902,7 @@ local arena_board = {
0
},
{
- 35,
+ 0,
0
},
{
@@ -13870,47 +13910,7 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
+ 3,
0
}
}
@@ -13918,19 +13918,7 @@ local arena_board = {
[50]={
["board"]={
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -13954,15 +13942,39 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
- 36,
+ 2,
0
},
{
- 35,
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -13974,23 +13986,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
+ 2,
0
},
{
@@ -14002,7 +13998,11 @@ local arena_board = {
0
},
{
- 0,
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -14010,15 +14010,27 @@ local arena_board = {
0
},
{
- 35,
+ 2,
0
},
{
- 36,
+ 0,
0
},
{
- 35,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -14042,7 +14054,11 @@ local arena_board = {
0
},
{
- 35,
+ 2,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -14065,12 +14081,96 @@ local arena_board = {
0,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
0
},
{
- 35,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -14094,117 +14194,97 @@ local arena_board = {
0
},
{
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 2,
0
}
}
},
[51]={
["board"]={
+ {
+ 35,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
35,
0
@@ -14234,23 +14314,59 @@ local arena_board = {
0
},
{
- 36,
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
35,
0
},
- {
- 36,
- 0
- },
{
35,
0
},
{
- 36,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -14282,7 +14398,7 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
@@ -14290,7 +14406,7 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
@@ -14298,7 +14414,7 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
@@ -14306,7 +14422,15 @@ local arena_board = {
0
},
{
- 0,
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -14314,7 +14438,7 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
@@ -14322,63 +14446,15 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
- 0,
+ 35,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 35,
0
},
{
@@ -14404,159 +14480,11 @@ local arena_board = {
{
35,
0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
}
}
},
[52]={
["board"]={
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
{
35,
0
@@ -14585,6 +14513,14 @@ local arena_board = {
35,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -14597,6 +14533,70 @@ local arena_board = {
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
0,
0
@@ -14661,10 +14661,82 @@ local arena_board = {
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
35,
0
@@ -14692,89 +14764,17 @@ local arena_board = {
{
35,
0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
}
}
},
[53]={
["board"]={
{
- 0,
+ 2,
0
},
{
- 35,
+ 3,
0
},
{
@@ -14782,7 +14782,7 @@ local arena_board = {
0
},
{
- 0,
+ 3,
0
},
{
@@ -14790,231 +14790,15 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 0,
+ 2,
0
},
{
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
+ 2,
0
},
{
@@ -15033,10 +14817,190 @@ local arena_board = {
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -15048,17 +15012,105 @@ local arena_board = {
{
0,
0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
}
}
},
[54]={
["board"]={
{
- 35,
+ 0,
0
},
{
- 36,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -15074,7 +15126,15 @@ local arena_board = {
0
},
{
- 36,
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 35,
0
},
{
@@ -15117,78 +15177,6 @@ local arena_board = {
0,
0
},
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
{
0,
0
@@ -15242,15 +15230,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 35,
0
},
{
@@ -15262,7 +15242,7 @@ local arena_board = {
0
},
{
- 36,
+ 0,
0
},
{
@@ -15270,15 +15250,7 @@ local arena_board = {
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 35,
0
},
{
@@ -15301,20 +15273,12 @@ local arena_board = {
35,
0
},
- {
- 0,
- 0
- },
{
35,
0
},
{
- 36,
- 0
- },
- {
- 35,
+ 3,
0
},
{
@@ -15322,21 +15286,65 @@ local arena_board = {
0
},
{
- 35,
+ 3,
0
},
{
- 36,
+ 0,
0
},
{
- 35,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
0
}
}
},
[55]={
["board"]={
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
0,
0
@@ -15349,6 +15357,98 @@ local arena_board = {
0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
35,
0
@@ -15377,66 +15477,6 @@ local arena_board = {
35,
0
},
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
{
35,
0
@@ -15465,10 +15505,38 @@ local arena_board = {
35,
0
},
+ {
+ 3,
+ 0
+ },
{
0,
0
},
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -15478,7 +15546,7 @@ local arena_board = {
0
},
{
- 0,
+ 35,
0
},
{
@@ -15493,6 +15561,38 @@ local arena_board = {
35,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 35,
+ 0
+ },
{
0,
0
@@ -15516,106 +15616,6 @@ local arena_board = {
{
35,
0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 36,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 35,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
}
}
},
diff --git a/lua/app/config/arena_bounty_level.lua b/lua/app/config/arena_bounty_level.lua
index 2b4dd2bf..82bee2dd 100644
--- a/lua/app/config/arena_bounty_level.lua
+++ b/lua/app/config/arena_bounty_level.lua
@@ -3253,8 +3253,8 @@ local arena_bounty_level = {
["reward_pro"]={
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=23,
- ["id_for_nothing"]="VAs=",
+ ["id"]=1400101,
+ ["id_for_nothing"]="VwxcA2RRfg==",
["num"]=1,
["num_for_nothing"]="Vw=="
}
diff --git a/lua/app/config/arena_rank.lua b/lua/app/config/arena_rank.lua
index 5fc25d3a..aaaf7bdf 100644
--- a/lua/app/config/arena_rank.lua
+++ b/lua/app/config/arena_rank.lua
@@ -4162,6 +4162,8 @@ local arena_rank = {
[301]={
["season"]=3,
["score"]=900,
+ ["reset_rank"]=401,
+ ["inactive_reset_rank"]=401,
["min_point"]=4,
["k1"]=40,
["k2"]=350,
@@ -4320,6 +4322,8 @@ local arena_rank = {
[302]={
["season"]=3,
["score"]=1000,
+ ["reset_rank"]=401,
+ ["inactive_reset_rank"]=401,
["min_point"]=4,
["k1"]=35,
["k2"]=290,
@@ -4456,11 +4460,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 6,
- 7,
- 8,
- 9,
- 10
+ 1,
+ 2,
+ 3,
+ 4,
+ 5
},
["effect"]={
{
@@ -4486,6 +4490,2082 @@ local arena_rank = {
[303]={
["season"]=3,
["score"]=1100,
+ ["reset_rank"]=401,
+ ["inactive_reset_rank"]=401,
+ ["min_point"]=4,
+ ["k1"]=30,
+ ["k2"]=200,
+ ["k3"]=15,
+ ["k4"]=15,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=7000,
+ ["num_for_nothing"]="UQhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=40,
+ ["num_for_nothing"]="Ugg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=280,
+ ["num_for_nothing"]="VABc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["rand_board"]={
+ 1,
+ 2,
+ 3,
+ 4,
+ 5
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_01",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_3",
+ ["rank_show"]="arena_num_bronze_1",
+ ["rank_icon"]="arena_dan_1"
+ },
+ [304]={
+ ["season"]=3,
+ ["score"]=1200,
+ ["reset_rank"]=404,
+ ["inactive_reset_rank"]=401,
+ ["min_point"]=4,
+ ["k1"]=30,
+ ["k2"]=300,
+ ["k3"]=15,
+ ["k4"]=15,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=53,
+ ["id_for_nothing"]="Uws=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=10000,
+ ["num_for_nothing"]="VwhcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=50,
+ ["num_for_nothing"]="Uwg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=320,
+ ["num_for_nothing"]="VQpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=210,
+ ["num_for_nothing"]="VAlc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["rand_board"]={
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_02",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_4",
+ ["rank_show"]="arena_num_silver_4",
+ ["rank_icon"]="arena_dan_2"
+ },
+ [305]={
+ ["season"]=3,
+ ["score"]=1400,
+ ["reset_rank"]=404,
+ ["inactive_reset_rank"]=401,
+ ["min_point"]=4,
+ ["k1"]=28,
+ ["k2"]=250,
+ ["k3"]=14,
+ ["k4"]=14,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=53,
+ ["id_for_nothing"]="Uws=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=15000,
+ ["num_for_nothing"]="Vw1cA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=60,
+ ["num_for_nothing"]="UAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=360,
+ ["num_for_nothing"]="VQ5c"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=230,
+ ["num_for_nothing"]="VAtc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["rand_board"]={
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_02",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_5",
+ ["rank_show"]="arena_num_silver_3",
+ ["rank_icon"]="arena_dan_2"
+ },
+ [306]={
+ ["season"]=3,
+ ["score"]=1600,
+ ["reset_rank"]=404,
+ ["inactive_reset_rank"]=401,
+ ["min_point"]=4,
+ ["k1"]=25,
+ ["k2"]=200,
+ ["k3"]=12,
+ ["k4"]=12,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=53,
+ ["id_for_nothing"]="Uws=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=18000,
+ ["num_for_nothing"]="VwBcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=80,
+ ["num_for_nothing"]="Xgg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=260,
+ ["num_for_nothing"]="VA5c"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["rand_board"]={
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_02",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_6",
+ ["rank_show"]="arena_num_silver_2",
+ ["rank_icon"]="arena_dan_2"
+ },
+ [307]={
+ ["season"]=3,
+ ["score"]=1800,
+ ["reset_rank"]=404,
+ ["inactive_reset_rank"]=401,
+ ["min_point"]=4,
+ ["k1"]=23,
+ ["k2"]=150,
+ ["k3"]=11,
+ ["k4"]=11,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=53,
+ ["id_for_nothing"]="Uws=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=20000,
+ ["num_for_nothing"]="VAhcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=440,
+ ["num_for_nothing"]="Ugxc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=290,
+ ["num_for_nothing"]="VAFc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=400,
+ ["num_for_nothing"]="Ughc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["rand_board"]={
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_02",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_7",
+ ["rank_show"]="arena_num_silver_1",
+ ["rank_icon"]="arena_dan_2"
+ },
+ [308]={
+ ["season"]=3,
+ ["score"]=2000,
+ ["reset_rank"]=408,
+ ["inactive_reset_rank"]=404,
+ ["min_point"]=4,
+ ["k1"]=21,
+ ["k2"]=250,
+ ["k3"]=10,
+ ["k4"]=10,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54,
+ ["id_for_nothing"]="Uww=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=54000,
+ ["num_for_nothing"]="UwxcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=480,
+ ["num_for_nothing"]="UgBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=310,
+ ["num_for_nothing"]="VQlc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["rand_board"]={
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_03",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_8",
+ ["rank_show"]="arena_num_gold_5",
+ ["rank_icon"]="arena_dan_3"
+ },
+ [309]={
+ ["season"]=3,
+ ["score"]=2200,
+ ["reset_rank"]=408,
+ ["inactive_reset_rank"]=404,
+ ["min_point"]=4,
+ ["k1"]=20,
+ ["k2"]=180,
+ ["k3"]=10,
+ ["k4"]=10,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54,
+ ["id_for_nothing"]="Uww=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=30000,
+ ["num_for_nothing"]="VQhcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=140,
+ ["num_for_nothing"]="Vwxc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=520,
+ ["num_for_nothing"]="Uwpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=340,
+ ["num_for_nothing"]="VQxc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["rand_board"]={
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_03",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_9",
+ ["rank_show"]="arena_num_gold_4",
+ ["rank_icon"]="arena_dan_3"
+ },
+ [310]={
+ ["season"]=3,
+ ["score"]=2500,
+ ["reset_rank"]=408,
+ ["inactive_reset_rank"]=404,
+ ["min_point"]=4,
+ ["k1"]=18,
+ ["k2"]=150,
+ ["k3"]=9,
+ ["k4"]=9,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54,
+ ["id_for_nothing"]="Uww=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=35000,
+ ["num_for_nothing"]="VQ1cA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=160,
+ ["num_for_nothing"]="Vw5c"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=560,
+ ["num_for_nothing"]="Uw5c"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=360,
+ ["num_for_nothing"]="VQ5c"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["rand_board"]={
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_03",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_10",
+ ["rank_show"]="arena_num_gold_3",
+ ["rank_icon"]="arena_dan_3"
+ },
+ [311]={
+ ["season"]=3,
+ ["score"]=2800,
+ ["reset_rank"]=408,
+ ["inactive_reset_rank"]=404,
+ ["min_point"]=4,
+ ["k1"]=16,
+ ["k2"]=130,
+ ["k3"]=8,
+ ["k4"]=8,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54,
+ ["id_for_nothing"]="Uww=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=40000,
+ ["num_for_nothing"]="UghcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=180,
+ ["num_for_nothing"]="VwBc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=600,
+ ["num_for_nothing"]="UAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=390,
+ ["num_for_nothing"]="VQFc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["rand_board"]={
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_03",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_11",
+ ["rank_show"]="arena_num_gold_2",
+ ["rank_icon"]="arena_dan_3"
+ },
+ [312]={
+ ["season"]=3,
+ ["score"]=3100,
+ ["reset_rank"]=408,
+ ["inactive_reset_rank"]=404,
+ ["min_point"]=4,
+ ["k1"]=15,
+ ["k2"]=120,
+ ["k3"]=7,
+ ["k4"]=7,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=54,
+ ["id_for_nothing"]="Uww=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=50000,
+ ["num_for_nothing"]="UwhcA2U="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=47,
+ ["id_for_nothing"]="Ug8=",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=640,
+ ["num_for_nothing"]="UAxc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=420,
+ ["num_for_nothing"]="Ugpc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=500,
+ ["num_for_nothing"]="Uwhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ ["rand_board"]={
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_03",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_12",
+ ["rank_show"]="arena_num_gold_1",
+ ["rank_icon"]="arena_dan_3"
+ },
+ [401]={
+ ["season"]=4,
+ ["score"]=900,
+ ["min_point"]=4,
+ ["k1"]=40,
+ ["k2"]=350,
+ ["k3"]=20,
+ ["k4"]=20,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=3000,
+ ["num_for_nothing"]="VQhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=130,
+ ["num_for_nothing"]="Vwtc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["rand_board"]={
+ 1,
+ 2,
+ 3,
+ 4,
+ 5
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_01",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_1",
+ ["rank_show"]="arena_num_bronze_3",
+ ["rank_icon"]="arena_dan_1"
+ },
+ [402]={
+ ["season"]=4,
+ ["score"]=1000,
+ ["min_point"]=4,
+ ["k1"]=35,
+ ["k2"]=290,
+ ["k3"]=17,
+ ["k4"]=17,
+ ["season_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=5000,
+ ["num_for_nothing"]="UwhcAw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ ["win_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=240,
+ ["num_for_nothing"]="VAxc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=200,
+ ["num_for_nothing"]="VAhc"
+ }
+ },
+ ["lose_reward"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=150,
+ ["num_for_nothing"]="Vw1c"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=21,
+ ["id_for_nothing"]="VAk=",
+ ["num"]=132,
+ ["num_for_nothing"]="Vwte"
+ }
+ },
+ ["win_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ ["lose_adbox"]={
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=5,
+ ["id_for_nothing"]="Uw==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ },
+ {
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=26,
+ ["id_for_nothing"]="VA4=",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ ["rand_board"]={
+ 1,
+ 2,
+ 3,
+ 4,
+ 5
+ },
+ ["effect"]={
+ {
+ ["type"]="hpp_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="end_dmg_dec_all_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["scene"]="pvp_01",
+ ["block_icon"]="battle_hinder_2",
+ ["chess_board"]="chessboard_1",
+ ["name_txt"]="ARENA_RANKNAME_2",
+ ["rank_show"]="arena_num_bronze_2",
+ ["rank_icon"]="arena_dan_1"
+ },
+ [403]={
+ ["season"]=4,
+ ["score"]=1100,
["min_point"]=4,
["k1"]=30,
["k2"]=200,
@@ -4622,11 +6702,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 11,
- 12,
- 13,
- 14,
- 15
+ 1,
+ 2,
+ 3,
+ 4,
+ 5
},
["effect"]={
{
@@ -4649,8 +6729,8 @@ local arena_rank = {
["rank_show"]="arena_num_bronze_1",
["rank_icon"]="arena_dan_1"
},
- [304]={
- ["season"]=3,
+ [404]={
+ ["season"]=4,
["score"]=1200,
["min_point"]=4,
["k1"]=30,
@@ -4796,11 +6876,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 16,
- 17,
- 18,
- 19,
- 20
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
},
["effect"]={
{
@@ -4823,8 +6903,8 @@ local arena_rank = {
["rank_show"]="arena_num_silver_4",
["rank_icon"]="arena_dan_2"
},
- [305]={
- ["season"]=3,
+ [405]={
+ ["season"]=4,
["score"]=1400,
["min_point"]=4,
["k1"]=28,
@@ -4970,11 +7050,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 21,
- 22,
- 23,
- 24,
- 25
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
},
["effect"]={
{
@@ -4997,8 +7077,8 @@ local arena_rank = {
["rank_show"]="arena_num_silver_3",
["rank_icon"]="arena_dan_2"
},
- [306]={
- ["season"]=3,
+ [406]={
+ ["season"]=4,
["score"]=1600,
["min_point"]=4,
["k1"]=25,
@@ -5144,11 +7224,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 26,
- 27,
- 28,
- 29,
- 30
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
},
["effect"]={
{
@@ -5171,8 +7251,8 @@ local arena_rank = {
["rank_show"]="arena_num_silver_2",
["rank_icon"]="arena_dan_2"
},
- [307]={
- ["season"]=3,
+ [407]={
+ ["season"]=4,
["score"]=1800,
["min_point"]=4,
["k1"]=23,
@@ -5318,11 +7398,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 31,
- 32,
- 33,
- 34,
- 35
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
},
["effect"]={
{
@@ -5345,8 +7425,8 @@ local arena_rank = {
["rank_show"]="arena_num_silver_1",
["rank_icon"]="arena_dan_2"
},
- [308]={
- ["season"]=3,
+ [408]={
+ ["season"]=4,
["score"]=2000,
["min_point"]=4,
["k1"]=21,
@@ -5492,11 +7572,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 36,
- 37,
- 38,
- 39,
- 40
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
},
["effect"]={
{
@@ -5519,8 +7599,8 @@ local arena_rank = {
["rank_show"]="arena_num_gold_5",
["rank_icon"]="arena_dan_3"
},
- [309]={
- ["season"]=3,
+ [409]={
+ ["season"]=4,
["score"]=2200,
["min_point"]=4,
["k1"]=20,
@@ -5666,11 +7746,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 41,
- 42,
- 43,
- 44,
- 45
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
},
["effect"]={
{
@@ -5693,8 +7773,8 @@ local arena_rank = {
["rank_show"]="arena_num_gold_4",
["rank_icon"]="arena_dan_3"
},
- [310]={
- ["season"]=3,
+ [410]={
+ ["season"]=4,
["score"]=2500,
["min_point"]=4,
["k1"]=18,
@@ -5840,11 +7920,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 46,
- 47,
- 48,
- 49,
- 50
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
},
["effect"]={
{
@@ -5867,8 +7947,8 @@ local arena_rank = {
["rank_show"]="arena_num_gold_3",
["rank_icon"]="arena_dan_3"
},
- [311]={
- ["season"]=3,
+ [411]={
+ ["season"]=4,
["score"]=2800,
["min_point"]=4,
["k1"]=16,
@@ -6014,11 +8094,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 51,
- 52,
- 53,
- 54,
- 55
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
},
["effect"]={
{
@@ -6041,8 +8121,8 @@ local arena_rank = {
["rank_show"]="arena_num_gold_2",
["rank_icon"]="arena_dan_3"
},
- [312]={
- ["season"]=3,
+ [412]={
+ ["season"]=4,
["score"]=3100,
["min_point"]=4,
["k1"]=15,
@@ -6188,11 +8268,11 @@ local arena_rank = {
}
},
["rand_board"]={
- 56,
- 57,
- 58,
- 59,
- 60
+ 11,
+ 12,
+ 13,
+ 14,
+ 15
},
["effect"]={
{
@@ -6217,6 +8297,6 @@ local arena_rank = {
}
}
local config = {
-data=arena_rank,count=36
+data=arena_rank,count=48
}
return config
\ No newline at end of file
diff --git a/lua/app/config/arena_time.lua b/lua/app/config/arena_time.lua
index 046f8697..806bb1e6 100644
--- a/lua/app/config/arena_time.lua
+++ b/lua/app/config/arena_time.lua
@@ -16,9 +16,15 @@ local arena_time = {
["start_time"]="2023-9-15 00:00:00",
["end_time"]="2023-10-16 00:00:00",
["ui_banner"]="ui_arena_bounty_banner_1"
+ },
+ [4]={
+ ["season"]=4,
+ ["start_time"]="2023-10-16 00:00:00",
+ ["end_time"]="2023-11-15 00:00:00",
+ ["ui_banner"]="ui_arena_bounty_banner_1"
}
}
local config = {
-data=arena_time,count=3
+data=arena_time,count=4
}
return config
\ No newline at end of file
diff --git a/lua/app/config/avatar.lua b/lua/app/config/avatar.lua
index 7d01200a..852d1cff 100644
--- a/lua/app/config/avatar.lua
+++ b/lua/app/config/avatar.lua
@@ -6,7 +6,8 @@ local avatar = {
},
[24]={
["iconId"]="avatar_2",
- ["item"]=44
+ ["item"]=44,
+ ["unlock_show"]=true
},
[1001]={
["iconId"]="1",
diff --git a/lua/app/config/avatar_frame.lua b/lua/app/config/avatar_frame.lua
index b88c5ae5..2e235db8 100644
--- a/lua/app/config/avatar_frame.lua
+++ b/lua/app/config/avatar_frame.lua
@@ -20,9 +20,19 @@ local avatar_frame = {
[27]={
["iconId"]="avatar_frame_5",
["item"]=46
+ },
+ [28]={
+ ["iconId"]="avatar_frame_6",
+ ["item"]=53,
+ ["unlock_show"]=true
+ },
+ [29]={
+ ["iconId"]="avatar_frame_7",
+ ["item"]=54,
+ ["unlock_show"]=true
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/chapter.lua b/lua/app/config/chapter.lua
index 96bedf1a..5a183fbc 100644
--- a/lua/app/config/chapter.lua
+++ b/lua/app/config/chapter.lua
@@ -7580,8 +7580,8 @@ local chapter = {
["num_for_nothing"]="Vw=="
}
},
- ["idle_exp"]=30,
- ["idle_gold"]=55,
+ ["idle_exp"]=35,
+ ["idle_gold"]=87,
["idle_drop"]={
{
["type"]=1,
@@ -7799,8 +7799,8 @@ local chapter = {
["num_for_nothing"]="Vw=="
}
},
- ["idle_exp"]=32,
- ["idle_gold"]=55,
+ ["idle_exp"]=35,
+ ["idle_gold"]=88,
["idle_drop"]={
{
["type"]=1,
@@ -8018,8 +8018,8 @@ local chapter = {
["num_for_nothing"]="Vw=="
}
},
- ["idle_exp"]=32,
- ["idle_gold"]=56,
+ ["idle_exp"]=36,
+ ["idle_gold"]=88,
["idle_drop"]={
{
["type"]=1,
@@ -8237,8 +8237,8 @@ local chapter = {
["num_for_nothing"]="Vw=="
}
},
- ["idle_exp"]=34,
- ["idle_gold"]=56,
+ ["idle_exp"]=36,
+ ["idle_gold"]=89,
["idle_drop"]={
{
["type"]=1,
@@ -8455,8 +8455,8 @@ local chapter = {
["num_for_nothing"]="Vw=="
}
},
- ["idle_exp"]=34,
- ["idle_gold"]=57,
+ ["idle_exp"]=37,
+ ["idle_gold"]=89,
["idle_drop"]={
{
["type"]=1,
diff --git a/lua/app/config/chapter_board_bossrush.lua b/lua/app/config/chapter_board_bossrush.lua
index 46e5a15c..4d3d0e9b 100644
--- a/lua/app/config/chapter_board_bossrush.lua
+++ b/lua/app/config/chapter_board_bossrush.lua
@@ -2,11 +2,67 @@ local chapter_board_bossrush = {
[1]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -15,32 +71,28 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
0,
- 4
+ 2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
- {
- 0,
- 4
- },
{
0,
2
@@ -49,152 +101,100 @@ local chapter_board_bossrush = {
0,
2
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
0,
- 3
+ 2
},
{
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
}
}
@@ -202,39 +202,39 @@ local chapter_board_bossrush = {
[2]={
["board"]={
{
- 1,
+ 3,
0
},
{
2,
0
},
- {
- 0,
- 1
- },
{
0,
2
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 2
},
{
2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -243,27 +243,27 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
},
{
0,
3
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 1
+ 3
},
{
2,
@@ -279,18 +279,18 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
- 1,
+ 3,
0
},
{
- 1,
- 0
+ 0,
+ 3
},
{
- 1,
+ 3,
0
},
{
@@ -306,19 +306,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 0,
+ 3
+ },
+ {
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -326,7 +326,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -334,67 +334,67 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -402,125 +402,17 @@ local chapter_board_bossrush = {
[3]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
2,
0
},
- {
- 0,
- 2
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
0,
1
@@ -529,72 +421,180 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
{
0,
1
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 0,
+ 3
+ },
+ {
+ 2,
0
},
{
- 1,
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -602,13 +602,41 @@ local chapter_board_bossrush = {
[4]={
["board"]={
{
- 1,
+ 3,
0
},
{
2,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
3
@@ -619,18 +647,10 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 3
},
{
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -638,12 +658,16 @@ local chapter_board_bossrush = {
0
},
{
- 0,
- 1
+ 3,
+ 0
},
{
- 0,
- 2
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
@@ -653,14 +677,6 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
2,
0
@@ -669,22 +685,6 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 0,
- 5
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
{
2,
0
@@ -699,7 +699,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
2,
@@ -714,7 +714,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -727,7 +727,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
3,
@@ -738,15 +738,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -755,46 +755,46 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -802,35 +802,11 @@ local chapter_board_bossrush = {
[5]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -839,11 +815,31 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 3
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
},
{
0,
@@ -851,10 +847,70 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -898,7 +954,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -918,7 +974,7 @@ local chapter_board_bossrush = {
0
},
{
- 2,
+ 3,
0
},
{
@@ -926,73 +982,17 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
3,
0
},
- {
- 2,
- 0
- },
{
3,
0
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
3,
0
@@ -1002,45 +1002,41 @@ local chapter_board_bossrush = {
[6]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 5
+ 4
},
{
0,
- 2
+ 3
},
{
0,
- 5
+ 4
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
- {
- 0,
- 2
- },
{
0,
3
@@ -1049,30 +1045,58 @@ local chapter_board_bossrush = {
0,
2
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
{
0,
- 5
- },
- {
- 2,
3
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
5
@@ -1081,14 +1105,6 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
{
3,
0
@@ -1109,6 +1125,14 @@ local chapter_board_bossrush = {
3,
0
},
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
{
2,
0
@@ -1117,6 +1141,46 @@ local chapter_board_bossrush = {
3,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
2,
0
@@ -1125,84 +1189,188 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 14,
- 0
- },
{
3,
0
},
- {
- 2,
- 0
- },
{
3,
0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
}
}
},
[7]={
["board"]={
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -1215,250 +1383,26 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 3
},
{
0,
3
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
{
3,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
3,
0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
}
}
},
[8]={
["board"]={
{
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -1471,7 +1415,23 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
@@ -1482,11 +1442,47 @@ local chapter_board_bossrush = {
2
},
{
- 1,
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
0
},
{
@@ -1510,11 +1506,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -1526,7 +1526,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -1538,11 +1538,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -1566,125 +1566,45 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
},
[9]={
["board"]={
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
3,
0
},
- {
- 0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 7,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
{
3,
0
@@ -1698,19 +1618,99 @@ local chapter_board_bossrush = {
3
},
{
- 2,
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
- 2,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
0
},
{
@@ -1730,7 +1730,7 @@ local chapter_board_bossrush = {
0
},
{
- 7,
+ 2,
0
},
{
@@ -1738,11 +1738,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -1758,23 +1758,23 @@ local chapter_board_bossrush = {
0
},
{
- 7,
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -1786,15 +1786,15 @@ local chapter_board_bossrush = {
0
},
{
- 7,
+ 2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -1802,35 +1802,35 @@ local chapter_board_bossrush = {
[10]={
["board"]={
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
{
0,
3
},
{
0,
- 4
+ 3
},
{
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -1839,11 +1839,39 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -1854,39 +1882,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -1910,11 +1910,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -1926,7 +1926,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -1938,11 +1938,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -1954,7 +1954,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -1966,35 +1966,35 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -2002,44 +2002,40 @@ local chapter_board_bossrush = {
[11]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 1
+ 3
},
{
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
+ 0,
+ 3
},
{
0,
2
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
4,
- 1
- },
- {
- 4,
- 1
+ 3
},
{
4,
@@ -2049,72 +2045,72 @@ local chapter_board_bossrush = {
4,
2
},
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 5
+ },
{
4,
2
},
{
- 1,
+ 4,
+ 5
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 4,
- 4
- },
- {
- 4,
- 4
- },
- {
- 4,
- 3
- },
- {
- 4,
- 4
- },
- {
- 4,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
0,
- 0
+ 5
},
{
0,
- 0
+ 5
},
{
0,
- 0
+ 2
},
{
0,
- 0
+ 5
},
{
0,
- 0
+ 5
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -2138,11 +2134,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -2154,7 +2154,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -2166,15 +2166,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -2190,11 +2190,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -2202,20 +2202,72 @@ local chapter_board_bossrush = {
[12]={
["board"]={
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 1
+ },
{
0,
2
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
3
},
{
0,
- 2
+ 3
},
{
0,
@@ -2223,42 +2275,46 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 2
- },
- {
- 4,
- 2
- },
- {
- 4,
3
},
{
- 4,
- 4
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
4,
- 4
+ 1
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -2266,7 +2322,15 @@ local chapter_board_bossrush = {
0
},
{
- 0,
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -2274,7 +2338,11 @@ local chapter_board_bossrush = {
0
},
{
- 0,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -2282,11 +2350,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -2306,95 +2378,23 @@ local chapter_board_bossrush = {
0
},
{
- 0,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 0,
+ 3,
0
},
{
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
}
}
@@ -2402,93 +2402,97 @@ local chapter_board_bossrush = {
[13]={
["board"]={
{
- 1,
+ 3,
0
},
{
2,
0
},
+ {
+ 0,
+ 1
+ },
{
0,
2
},
{
0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
1
},
{
2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
2
},
{
2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
3
},
{
- 2,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
4
},
{
- 2,
- 5
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 4,
+ 3
+ },
{
4,
1
@@ -2499,22 +2503,18 @@ local chapter_board_bossrush = {
},
{
4,
- 3
+ 1
},
{
4,
4
},
{
- 4,
- 5
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -2538,11 +2538,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -2565,26 +2565,10 @@ local chapter_board_bossrush = {
0,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
{
3,
0
},
- {
- 14,
- 0
- },
{
3,
0
@@ -2594,7 +2578,23 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -2602,7 +2602,7 @@ local chapter_board_bossrush = {
[14]={
["board"]={
{
- 1,
+ 3,
0
},
{
@@ -2611,82 +2611,82 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 0,
- 2
+ 3
},
{
0,
1
},
+ {
+ 0,
+ 3
+ },
{
2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
4,
1
},
- {
- 4,
- 2
- },
- {
- 4,
- 1
- },
- {
- 4,
- 2
- },
- {
- 4,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 2
- },
- {
- 4,
- 4
- },
- {
- 4,
- 5
- },
{
4,
3
},
{
4,
- 2
+ 1
},
{
- 1,
+ 4,
+ 3
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -2698,7 +2698,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -2710,7 +2710,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -2802,59 +2802,59 @@ local chapter_board_bossrush = {
[15]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 2
},
{
0,
- 3
+ 5
},
{
0,
- 4
+ 2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 2
},
{
0,
- 3
+ 5
},
{
- 1,
+ 3,
0
},
{
@@ -2867,7 +2867,7 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 3
},
{
2,
@@ -2882,7 +2882,7 @@ local chapter_board_bossrush = {
0
},
{
- 0,
+ 5,
3
},
{
@@ -2942,7 +2942,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -2966,11 +2966,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -2982,7 +2982,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -2994,7 +2994,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
@@ -3002,48 +3002,20 @@ local chapter_board_bossrush = {
[16]={
["board"]={
{
- 1,
+ 3,
0
},
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
{
0,
2
},
{
0,
- 4
+ 2
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -3051,42 +3023,70 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
4,
- 3
+ 2
},
{
4,
- 4
+ 5
},
{
4,
- 4
+ 5
},
{
4,
- 4
+ 5
},
{
4,
- 3
+ 2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -3110,7 +3110,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -3119,23 +3119,23 @@ local chapter_board_bossrush = {
},
{
5,
- 2
+ 1
},
{
5,
- 4
+ 5
},
{
5,
- 2
+ 1
},
{
5,
- 4
+ 5
},
{
5,
- 2
+ 1
},
{
2,
@@ -3147,23 +3147,23 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 5
},
{
5,
- 2
+ 1
},
{
- 14,
+ 3,
0
},
{
5,
- 2
+ 1
},
{
5,
- 4
+ 5
},
{
2,
@@ -3201,34 +3201,6 @@ local chapter_board_bossrush = {
},
[17]={
["board"]={
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
{
0,
2
@@ -3241,41 +3213,69 @@ local chapter_board_bossrush = {
0,
2
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
- 5,
- 3
+ 0,
+ 1
},
{
- 5,
- 3
+ 0,
+ 1
},
{
- 5,
- 3
- },
- {
- 5,
+ 0,
5
},
{
5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 0,
5
},
{
5,
- 5
- },
- {
- 2,
- 0
- },
- {
- 5,
- 3
+ 2
},
{
3,
@@ -3283,7 +3283,75 @@ local chapter_board_bossrush = {
},
{
5,
- 3
+ 2
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
},
{
5,
@@ -3297,21 +3365,21 @@ local chapter_board_bossrush = {
5,
5
},
+ {
+ 3,
+ 0
+ },
{
2,
0
},
{
- 5,
- 3
+ 2,
+ 0
},
{
- 5,
- 3
- },
- {
- 5,
- 3
+ 2,
+ 0
},
{
5,
@@ -3326,75 +3394,7 @@ local chapter_board_bossrush = {
5
},
{
- 5,
- 4
- },
- {
- 5,
- 4
- },
- {
- 5,
- 4
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 5,
- 4
- },
- {
- 14,
- 0
- },
- {
- 5,
- 4
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 5,
- 4
- },
- {
- 5,
- 4
- },
- {
- 5,
- 4
- },
- {
- 1,
+ 3,
0
}
}
@@ -3402,7 +3402,7 @@ local chapter_board_bossrush = {
[18]={
["board"]={
{
- 1,
+ 3,
0
},
{
@@ -3411,26 +3411,26 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -3439,26 +3439,26 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -3471,7 +3471,7 @@ local chapter_board_bossrush = {
},
{
4,
- 2
+ 1
},
{
2,
@@ -3482,11 +3482,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -3497,90 +3497,86 @@ local chapter_board_bossrush = {
0,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
5,
1
},
{
- 0,
+ 5,
+ 1
+ },
+ {
+ 3,
0
},
{
- 0,
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
+ 3,
0
},
{
5,
1
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 5,
- 2
- },
- {
- 5,
- 2
- },
- {
- 14,
- 0
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 5,
- 2
- },
- {
- 5,
- 2
- },
{
5,
1
@@ -3591,10 +3587,14 @@ local chapter_board_bossrush = {
},
{
5,
- 3
+ 2
},
{
- 1,
+ 5,
+ 2
+ },
+ {
+ 3,
0
}
}
@@ -3602,36 +3602,20 @@ local chapter_board_bossrush = {
[19]={
["board"]={
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 2
+ },
{
0,
3
},
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
+ 3
},
{
0,
@@ -3639,7 +3623,15 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
@@ -3647,14 +3639,22 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 1
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
@@ -3671,7 +3671,7 @@ local chapter_board_bossrush = {
},
{
4,
- 1
+ 3
},
{
3,
@@ -3686,35 +3686,35 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
0,
- 0
+ 3
},
{
0,
- 0
+ 3
},
{
0,
- 0
+ 3
},
{
0,
- 0
+ 3
},
{
0,
+ 3
+ },
+ {
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -3727,7 +3727,7 @@ local chapter_board_bossrush = {
},
{
4,
- 1
+ 3
},
{
3,
@@ -3738,24 +3738,36 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
5,
- 5
+ 4
},
{
5,
- 5
+ 4
},
{
5,
- 1
+ 3
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 3,
+ 0
},
{
5,
@@ -3766,71 +3778,31 @@ local chapter_board_bossrush = {
3
},
{
- 1,
+ 5,
+ 2
+ },
+ {
+ 3,
0
},
- {
- 5,
- 1
- },
- {
- 5,
- 1
- },
- {
- 5,
- 3
- },
- {
- 14,
- 0
- },
- {
- 5,
- 1
- },
{
5,
3
},
{
5,
- 1
+ 2
+ },
+ {
+ 5,
+ 3
}
}
},
[20]={
["board"]={
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
- },
- {
- 0,
- 4
- },
- {
- 0,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -3854,7 +3826,35 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -3866,71 +3866,15 @@ local chapter_board_bossrush = {
0
},
{
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 5,
+ 0,
2
},
{
- 5,
+ 0,
2
},
{
- 5,
+ 0,
2
},
{
@@ -3938,15 +3882,7 @@ local chapter_board_bossrush = {
0
},
{
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
+ 3,
0
},
{
@@ -3961,20 +3897,28 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 3,
+ 0
+ },
{
2,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -3990,11 +3934,67 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -4002,49 +4002,69 @@ local chapter_board_bossrush = {
[21]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
+ 2
},
{
0,
4
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
0,
- 3
- },
- {
- 0,
- 3
+ 4
},
{
0,
5
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
{
0,
4
@@ -4053,36 +4073,16 @@ local chapter_board_bossrush = {
0,
4
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
{
0,
4
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
@@ -4126,7 +4126,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -4202,60 +4202,32 @@ local chapter_board_bossrush = {
[22]={
["board"]={
{
- 1,
+ 3,
0
},
{
5,
+ 1
+ },
+ {
+ 0,
2
},
{
0,
- 3
+ 5
},
{
0,
- 3
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 5,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
+ 5
},
{
3,
@@ -4263,10 +4235,30 @@ local chapter_board_bossrush = {
},
{
5,
+ 1
+ },
+ {
+ 0,
2
},
{
- 2,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -4277,12 +4269,16 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 5,
+ 3
+ },
{
2,
0
},
{
- 1,
+ 2,
0
},
{
@@ -4290,11 +4286,7 @@ local chapter_board_bossrush = {
0
},
{
- 5,
- 2
- },
- {
- 2,
+ 3,
0
},
{
@@ -4305,12 +4297,16 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 5,
+ 3
+ },
{
2,
0
},
{
- 1,
+ 2,
0
},
{
@@ -4318,11 +4314,7 @@ local chapter_board_bossrush = {
0
},
{
- 5,
- 2
- },
- {
- 2,
+ 3,
0
},
{
@@ -4333,12 +4325,16 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 5,
+ 3
+ },
{
2,
0
},
{
- 1,
+ 2,
0
},
{
@@ -4346,11 +4342,7 @@ local chapter_board_bossrush = {
0
},
{
- 5,
- 2
- },
- {
- 14,
+ 3,
0
},
{
@@ -4358,24 +4350,32 @@ local chapter_board_bossrush = {
1
},
{
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
5,
- 2
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 1
},
{
3,
@@ -4394,7 +4394,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
@@ -4402,59 +4402,87 @@ local chapter_board_bossrush = {
[23]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 2
+ 1
},
{
0,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 4,
4
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
@@ -4463,52 +4491,24 @@ local chapter_board_bossrush = {
},
{
4,
- 3
- },
- {
- 0,
2
},
- {
- 0,
- 5
- },
- {
- 4,
- 4
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
{
4,
3
},
{
4,
- 1
+ 3
},
{
4,
- 1
+ 4
},
{
4,
5
},
- {
- 0,
- 0
- },
{
3,
0
@@ -4542,7 +4542,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -4562,153 +4574,141 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
}
}
},
[24]={
["board"]={
- {
- 1,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
{
3,
0
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 4,
- 1
- },
- {
- 4,
- 1
- },
- {
- 2,
- 0
- },
- {
- 4,
+ 0,
5
},
{
- 4,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
5
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 4
+ },
{
2,
0
@@ -4770,11 +4770,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -4782,7 +4782,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -4790,11 +4790,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -4803,19 +4803,19 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
2,
@@ -4825,36 +4825,36 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 1,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
{
3,
0
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -4879,14 +4879,14 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 5
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -4907,14 +4907,14 @@ local chapter_board_bossrush = {
},
{
5,
- 3
+ 2
},
{
0,
0
},
{
- 1,
+ 3,
0
},
{
@@ -4935,18 +4935,18 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 5
},
{
0,
0
},
{
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
@@ -4963,18 +4963,18 @@ local chapter_board_bossrush = {
},
{
5,
- 3
+ 2
},
{
0,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -4991,10 +4991,10 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 5
},
{
- 1,
+ 3,
0
}
}
@@ -5002,44 +5002,44 @@ local chapter_board_bossrush = {
[26]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 2
+ 1
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 5
+ 4
},
{
0,
- 2
+ 1
},
{
2,
@@ -5047,14 +5047,14 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 5
+ 4
},
{
- 1,
+ 3,
0
},
{
@@ -5063,7 +5063,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
2,
@@ -5079,7 +5079,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
2,
@@ -5098,7 +5098,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -5115,15 +5115,15 @@ local chapter_board_bossrush = {
},
{
4,
- 2
+ 1
},
{
4,
- 2
+ 1
},
{
4,
- 4
+ 5
},
{
3,
@@ -5131,7 +5131,59 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 2,
+ 0
},
{
4,
@@ -5141,94 +5193,14 @@ local chapter_board_bossrush = {
4,
2
},
- {
- 4,
- 1
- },
- {
- 0,
- 0
- },
- {
- 4,
- 4
- },
- {
- 2,
- 0
- },
- {
- 4,
- 4
- },
- {
- 0,
- 0
- },
- {
- 4,
- 1
- },
- {
- 4,
- 1
- },
{
4,
3
- },
- {
- 4,
- 3
- },
- {
- 2,
- 0
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 1
}
}
},
[27]={
["board"]={
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
{
2,
0
@@ -5261,6 +5233,34 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
2,
0
@@ -5286,19 +5286,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
- },
- {
- 4,
- 4
- },
- {
- 4,
- 4
- },
- {
- 1,
+ 3,
0
},
{
@@ -5310,7 +5298,19 @@ local chapter_board_bossrush = {
5
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 3,
0
},
{
@@ -5326,7 +5326,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -5370,31 +5370,31 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -5402,7 +5402,39 @@ local chapter_board_bossrush = {
[28]={
["board"]={
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -5411,144 +5443,112 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
+ 5
},
{
0,
2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
3,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
{
0,
3
},
+ {
+ 3,
+ 0
+ },
{
0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
4
},
{
- 0,
+ 4,
+ 4
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
3
},
{
3,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
{
3,
0
},
- {
- 0,
- 1
- },
{
3,
0
},
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 4,
- 1
- },
- {
- 4,
- 5
- },
- {
- 4,
- 5
- },
- {
- 4,
- 5
- },
- {
- 4,
- 1
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
0,
0
@@ -5562,19 +5562,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -5582,7 +5582,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -5590,11 +5590,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -5602,68 +5602,44 @@ local chapter_board_bossrush = {
[29]={
["board"]={
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
{
0,
2
},
{
0,
- 2
+ 5
},
{
0,
- 3
+ 5
},
{
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 2
- },
- {
- 4,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
+ 1
},
{
4,
@@ -5671,18 +5647,42 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
- 4,
- 4
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
- 4
+ 1
},
{
- 1,
+ 4,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
@@ -5699,7 +5699,7 @@ local chapter_board_bossrush = {
},
{
4,
- 3
+ 2
},
{
3,
@@ -5754,7 +5754,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -5802,9 +5802,13 @@ local chapter_board_bossrush = {
[30]={
["board"]={
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 3
+ },
{
0,
1
@@ -5815,24 +5819,52 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
0,
4
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
{
0,
5
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 4,
+ 3
+ },
{
4,
1
@@ -5843,50 +5875,18 @@ local chapter_board_bossrush = {
},
{
4,
- 3
+ 5
},
{
4,
4
},
{
- 4,
- 5
- },
- {
- 1,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 4,
- 1
- },
- {
- 4,
- 2
- },
- {
- 4,
- 3
- },
- {
- 4,
- 4
- },
- {
- 4,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -5910,11 +5910,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -5937,26 +5937,10 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
{
3,
0
},
- {
- 14,
- 0
- },
{
3,
0
@@ -5966,11 +5950,27 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -5994,7 +5994,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
@@ -6002,59 +6002,27 @@ local chapter_board_bossrush = {
[31]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 4,
- 3
- },
- {
- 1,
+ 3,
0
},
{
@@ -6066,15 +6034,23 @@ local chapter_board_bossrush = {
0
},
{
- 4,
+ 0,
2
},
{
- 4,
- 3
+ 0,
+ 2
},
{
- 4,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
2
},
{
@@ -6085,6 +6061,30 @@ local chapter_board_bossrush = {
3,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
0
@@ -6142,7 +6142,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -6166,15 +6166,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -6182,7 +6182,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -6190,11 +6190,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -6202,63 +6202,63 @@ local chapter_board_bossrush = {
[32]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
- {
- 4,
- 1
- },
{
0,
3
},
{
- 4,
+ 0,
2
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
9,
0
},
- {
- 4,
- 1
- },
{
0,
3
},
{
- 4,
+ 0,
2
},
+ {
+ 0,
+ 1
+ },
{
9,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -6267,36 +6267,32 @@ local chapter_board_bossrush = {
},
{
4,
- 1
- },
- {
- 0,
3
},
{
- 4,
+ 0,
2
},
- {
- 7,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 7,
- 0
- },
{
4,
1
},
+ {
+ 7,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 7,
+ 0
+ },
{
4,
3
@@ -6305,16 +6301,20 @@ local chapter_board_bossrush = {
4,
2
},
+ {
+ 4,
+ 1
+ },
{
7,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -6327,7 +6327,7 @@ local chapter_board_bossrush = {
},
{
0,
- 0
+ 5
},
{
0,
@@ -6338,11 +6338,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -6351,26 +6351,26 @@ local chapter_board_bossrush = {
},
{
0,
- 0
+ 5
},
{
0,
- 0
+ 5
},
{
0,
- 0
+ 5
},
{
7,
0
},
{
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
@@ -6378,15 +6378,15 @@ local chapter_board_bossrush = {
0
},
{
- 0,
+ 2,
0
},
{
- 0,
+ 2,
0
},
{
- 0,
+ 2,
0
},
{
@@ -6394,7 +6394,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
}
}
@@ -6402,35 +6402,63 @@ local chapter_board_bossrush = {
[33]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -6454,35 +6482,7 @@ local chapter_board_bossrush = {
0
},
{
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 14,
+ 3,
0
},
{
@@ -6506,11 +6506,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -6518,7 +6514,11 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -6538,7 +6538,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -6562,19 +6562,19 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -6594,7 +6594,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
@@ -6607,11 +6607,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
3,
@@ -6619,11 +6619,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
3,
@@ -6631,7 +6631,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
2,
@@ -6643,7 +6643,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
2,
@@ -6655,11 +6655,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
2,
@@ -6683,11 +6683,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
2,
@@ -6697,61 +6697,13 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
3,
0
},
{
- 0,
- 1
+ 2,
+ 0
},
{
2,
@@ -6759,18 +6711,34 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
3,
0
},
{
- 1,
+ 0,
+ 3
+ },
+ {
+ 2,
0
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
0
},
{
@@ -6783,7 +6751,15 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
},
{
3,
@@ -6794,7 +6770,31 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -6802,87 +6802,55 @@ local chapter_board_bossrush = {
[35]={
["board"]={
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 2
+ },
{
0,
3
},
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
{
0,
5
},
{
- 0,
- 1
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
4
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 4,
+ 0,
3
},
- {
- 3,
- 0
- },
{
0,
5
},
{
- 0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 1,
+ 3,
0
},
{
@@ -6890,8 +6858,8 @@ local chapter_board_bossrush = {
0
},
{
- 4,
- 3
+ 3,
+ 0
},
{
4,
@@ -6901,25 +6869,25 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 0,
- 5
- },
- {
- 0,
- 1
- },
{
0,
4
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
{
3,
0
},
{
- 4,
- 1
+ 3,
+ 0
},
{
4,
@@ -6933,6 +6901,38 @@ local chapter_board_bossrush = {
3,
0
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
{
2,
0
@@ -6950,7 +6950,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -6966,7 +6966,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -6990,11 +6994,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
}
}
@@ -7002,7 +7002,7 @@ local chapter_board_bossrush = {
[36]={
["board"]={
{
- 1,
+ 3,
0
},
{
@@ -7011,55 +7011,47 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
{
2,
0
},
{
0,
- 4
- },
- {
- 2,
- 0
+ 5
},
{
0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
+ 3
},
{
3,
@@ -7067,23 +7059,31 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 3
},
{
0,
- 4
+ 3
},
{
0,
- 4
+ 5
},
{
- 3,
- 0
+ 0,
+ 5
},
{
- 3,
- 0
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
},
{
3,
@@ -7114,11 +7114,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -7134,19 +7134,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -7154,7 +7154,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -7162,15 +7162,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -7182,7 +7182,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -7194,7 +7194,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
@@ -7202,35 +7202,7 @@ local chapter_board_bossrush = {
[37]={
["board"]={
{
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -7239,26 +7211,54 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
},
{
0,
5
},
{
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -7282,11 +7282,27 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -7294,7 +7310,15 @@ local chapter_board_bossrush = {
1
},
{
- 0,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -7302,53 +7326,29 @@ local chapter_board_bossrush = {
0
},
{
- 0,
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
5,
2
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 5,
- 3
- },
{
0,
0
@@ -7363,14 +7363,14 @@ local chapter_board_bossrush = {
},
{
5,
- 5
+ 4
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -7383,7 +7383,7 @@ local chapter_board_bossrush = {
},
{
5,
- 2
+ 1
},
{
2,
@@ -7394,7 +7394,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
@@ -7411,68 +7411,12 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 5,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
+ 1
},
{
0,
1
},
- {
- 5,
- 1
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
- },
{
0,
1
@@ -7491,7 +7435,31 @@ local chapter_board_bossrush = {
},
{
5,
- 5
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
2,
@@ -7499,7 +7467,39 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
},
{
2,
@@ -7507,7 +7507,7 @@ local chapter_board_bossrush = {
},
{
5,
- 1
+ 3
},
{
3,
@@ -7527,44 +7527,44 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 5,
- 5
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 5,
1
},
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 5,
+ 3
+ },
{
3,
0
@@ -7582,7 +7582,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -7602,15 +7602,15 @@ local chapter_board_bossrush = {
[39]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -7619,182 +7619,182 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 13,
- 1
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 13,
- 5
- },
- {
- 13,
- 1
- },
- {
- 13,
2
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 13,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 13,
+ 3
+ },
+ {
+ 13,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -7803,32 +7803,16 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 5
- },
- {
- 0,
- 2
+ 4
},
{
0,
1
},
- {
- 0,
- 4
- },
{
0,
3
},
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
5
@@ -7838,25 +7822,25 @@ local chapter_board_bossrush = {
2
},
{
- 0,
- 1
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
4
},
+ {
+ 0,
+ 1
+ },
{
0,
3
},
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
5
@@ -7866,25 +7850,25 @@ local chapter_board_bossrush = {
2
},
{
- 0,
- 1
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
4
},
+ {
+ 0,
+ 1
+ },
{
0,
3
},
- {
- 3,
- 0
- },
- {
- 14,
- 0
- },
{
0,
5
@@ -7894,17 +7878,33 @@ local chapter_board_bossrush = {
2
},
{
- 0,
- 1
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
4
},
+ {
+ 0,
+ 1
+ },
{
0,
3
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
{
3,
0
@@ -7942,59 +7942,59 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
+ {
+ 13,
+ 1
+ },
+ {
+ 13,
+ 3
+ },
+ {
+ 13,
+ 5
+ },
{
13,
2
},
{
- 13,
- 1
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
13,
- 4
+ 1
},
{
13,
3
},
{
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
+ 13,
+ 5
},
{
13,
2
},
- {
- 13,
- 1
- },
- {
- 13,
- 4
- },
- {
- 13,
- 3
- },
{
2,
0
},
{
- 1,
+ 3,
0
}
}
@@ -8002,35 +8002,7 @@ local chapter_board_bossrush = {
[41]={
["board"]={
{
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 2,
+ 3,
0
},
{
@@ -8039,7 +8011,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
},
{
0,
@@ -8047,14 +8019,14 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
},
{
0,
3
},
{
- 2,
+ 3,
0
},
{
@@ -8062,87 +8034,23 @@ local chapter_board_bossrush = {
0
},
{
- 2,
- 0
+ 0,
+ 2
},
{
- 2,
- 0
+ 0,
+ 3
},
{
- 2,
- 0
+ 0,
+ 2
},
{
- 2,
- 0
+ 0,
+ 3
},
{
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 5
- },
- {
- 2,
- 0
- },
- {
- 13,
- 5
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 5
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 5
- },
- {
- 2,
- 0
- },
- {
- 13,
+ 0,
2
},
{
@@ -8150,8 +8058,36 @@ local chapter_board_bossrush = {
0
},
{
- 13,
- 2
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
},
{
2,
@@ -8159,7 +8095,7 @@ local chapter_board_bossrush = {
},
{
13,
- 2
+ 4
},
{
2,
@@ -8167,14 +8103,78 @@ local chapter_board_bossrush = {
},
{
13,
- 2
+ 4
},
{
- 1,
+ 2,
0
},
{
- 14,
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -8190,11 +8190,11 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -8202,37 +8202,101 @@ local chapter_board_bossrush = {
[42]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
{
0,
4
@@ -8242,84 +8306,64 @@ local chapter_board_bossrush = {
4
},
{
- 0,
- 3
- },
- {
- 0,
+ 13,
4
},
{
- 0,
- 4
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 2,
+ 3,
0
},
{
- 2,
+ 3,
0
},
{
- 2,
+ 3,
0
},
{
- 2,
+ 3,
0
},
{
- 2,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
13,
- 5
+ 1
},
{
0,
- 5
+ 1
},
{
0,
- 5
+ 1
},
{
0,
- 5
+ 1
},
{
13,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 14,
- 0
+ 1
},
{
3,
@@ -8333,50 +8377,6 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 13,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 13,
- 2
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
{
3,
0
@@ -8394,13 +8394,41 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
},
[43]={
["board"]={
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
{
0,
2
@@ -8423,39 +8451,11 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 2
},
{
0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 2
},
{
2,
@@ -8495,16 +8495,16 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 2
+ 1
},
{
0,
1
},
+ {
+ 0,
+ 3
+ },
{
2,
0
@@ -8521,80 +8521,80 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
4
},
{
- 14,
- 0
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
+ 13,
+ 4
},
{
13,
- 5
+ 4
},
{
13,
- 5
- },
- {
- 13,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -8611,154 +8611,14 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 1
- },
- {
- 13,
- 3
- },
- {
- 13,
- 3
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
5
},
{
- 13,
- 5
+ 0,
+ 2
},
{
- 13,
+ 0,
3
},
{
@@ -8766,35 +8626,175 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 13,
+ 0,
5
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
13,
3
},
{
13,
- 5
+ 2
},
{
- 1,
+ 13,
+ 2
+ },
+ {
+ 2,
0
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 13,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -8807,175 +8807,67 @@ local chapter_board_bossrush = {
},
{
0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 14,
- 0
- },
- {
- 13,
- 1
- },
- {
- 13,
4
},
{
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
+ 0,
4
},
{
- 13,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 13,
+ 0,
4
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
{
13,
- 1
+ 3
+ },
+ {
+ 13,
+ 5
},
{
2,
@@ -8986,15 +8878,123 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
0
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 5
+ },
+ {
+ 13,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 13,
+ 5
+ },
+ {
+ 13,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -9005,6 +9005,42 @@ local chapter_board_bossrush = {
3,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
{
0,
3
@@ -9017,24 +9053,84 @@ local chapter_board_bossrush = {
0,
1
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
2,
0
},
{
- 0,
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 13,
+ 2
+ },
+ {
+ 13,
5
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
+ 13,
4
},
{
@@ -9042,8 +9138,12 @@ local chapter_board_bossrush = {
0
},
{
- 0,
- 1
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
2,
@@ -9053,114 +9153,14 @@ local chapter_board_bossrush = {
0,
2
},
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 13,
- 3
- },
- {
- 13,
- 4
- },
- {
- 13,
5
},
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
{
0,
4
},
- {
- 0,
- 5
- },
{
2,
0
@@ -9174,23 +9174,23 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
0,
- 3
- },
- {
- 0,
- 4
+ 2
},
{
0,
5
},
{
- 14,
+ 0,
+ 4
+ },
+ {
+ 3,
0
},
{
@@ -9203,15 +9203,27 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -9219,56 +9231,12 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
+ 5
},
{
0,
1
},
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
{
0,
1
@@ -9279,70 +9247,102 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
},
{
0,
3
},
{
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 21,
+ 0,
2
},
{
- 2,
- 0
- },
- {
- 21,
- 4
- },
- {
- 2,
- 0
- },
- {
- 21,
+ 0,
2
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -9366,15 +9366,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -9382,7 +9382,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -9390,11 +9390,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -9403,31 +9403,39 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
},
{
2,
@@ -9443,7 +9451,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 5
+ },
+ {
+ 2,
+ 0
},
{
2,
@@ -9451,11 +9463,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 2,
- 0
+ 2
},
{
2,
@@ -9471,7 +9479,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 5
+ },
+ {
+ 2,
+ 0
},
{
2,
@@ -9479,11 +9491,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 2,
- 0
+ 2
},
{
2,
@@ -9499,14 +9507,34 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 5
},
{
2,
0
},
{
- 0,
+ 2,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
4
},
{
@@ -9518,35 +9546,7 @@ local chapter_board_bossrush = {
0
},
{
- 21,
- 5
- },
- {
- 2,
- 0
- },
- {
- 21,
- 5
- },
- {
- 2,
- 0
- },
- {
- 21,
- 5
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
+ 3,
0
},
{
@@ -9555,14 +9555,14 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
2,
0
},
{
- 14,
+ 3,
0
},
{
@@ -9570,31 +9570,31 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -9602,69 +9602,37 @@ local chapter_board_bossrush = {
[49]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 3
- },
- {
- 0,
- 4
+ 2
},
{
0,
5
},
- {
- 0,
- 3
- },
{
0,
4
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
{
0,
- 4
+ 2
},
{
0,
5
},
{
- 0,
- 3
- },
- {
- 2,
+ 3,
0
},
{
- 1,
+ 3,
0
},
- {
- 1,
- 0
- },
- {
- 21,
- 3
- },
{
2,
0
@@ -9674,107 +9642,51 @@ local chapter_board_bossrush = {
5
},
{
- 2,
- 0
- },
- {
- 21,
+ 0,
4
},
{
- 1,
- 0
- },
- {
- 1,
- 0
+ 0,
+ 2
},
{
2,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
21,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
4
},
{
2,
0
},
- {
- 21,
- 3
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 21,
- 4
- },
{
21,
5
},
{
- 21,
- 3
- },
- {
- 2,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
+ 3,
0
},
{
@@ -9789,12 +9701,100 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 21,
+ 2
+ },
{
2,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 5
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -9803,19 +9803,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
- },
- {
- 0,
- 2
+ 5
},
{
0,
@@ -9823,38 +9819,98 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 9,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 9,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 9,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 9,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
1
},
{
- 9,
+ 3,
0
},
{
- 2,
+ 21,
+ 1
+ },
+ {
+ 3,
0
},
{
- 9,
- 0
+ 21,
+ 1
},
{
- 2,
- 0
- },
- {
- 9,
- 0
- },
- {
- 2,
- 0
- },
- {
- 9,
+ 3,
0
},
{
@@ -9891,7 +9947,7 @@ local chapter_board_bossrush = {
},
{
21,
- 2
+ 1
},
{
3,
@@ -9899,7 +9955,7 @@ local chapter_board_bossrush = {
},
{
21,
- 2
+ 1
},
{
3,
@@ -9907,68 +9963,12 @@ local chapter_board_bossrush = {
},
{
21,
- 2
+ 1
},
{
3,
0
},
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 21,
- 2
- },
- {
- 3,
- 0
- },
- {
- 21,
- 2
- },
- {
- 3,
- 0
- },
- {
- 21,
- 2
- },
- {
- 14,
- 0
- },
{
3,
0
@@ -10003,15 +10003,7 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
+ 1
},
{
0,
@@ -10019,15 +10011,23 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 1
},
{
0,
- 5
+ 3
},
{
0,
- 5
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
},
{
3,
@@ -10115,7 +10115,7 @@ local chapter_board_bossrush = {
},
{
21,
- 1
+ 3
},
{
0,
@@ -10123,7 +10123,7 @@ local chapter_board_bossrush = {
},
{
21,
- 1
+ 3
},
{
0,
@@ -10131,7 +10131,7 @@ local chapter_board_bossrush = {
},
{
21,
- 1
+ 3
},
{
0,
@@ -10139,7 +10139,7 @@ local chapter_board_bossrush = {
},
{
21,
- 1
+ 3
},
{
3,
@@ -10174,7 +10174,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -10190,7 +10190,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -10203,19 +10203,11 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
},
{
0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 1
},
{
0,
@@ -10227,10 +10219,18 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
0
},
{
@@ -10239,16 +10239,16 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 3
+ 1
},
{
0,
2
},
+ {
+ 0,
+ 1
+ },
{
2,
0
@@ -10259,7 +10259,7 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
},
{
3,
@@ -10279,11 +10279,11 @@ local chapter_board_bossrush = {
},
{
3,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
11,
@@ -10291,39 +10291,23 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
},
{
21,
- 3
+ 2
},
{
9,
0
},
- {
- 1,
- 0
- },
- {
- 21,
- 3
- },
- {
- 21,
- 3
- },
- {
- 1,
- 0
- },
{
3,
0
},
{
- 14,
- 0
+ 21,
+ 2
},
{
21,
@@ -10338,12 +10322,12 @@ local chapter_board_bossrush = {
0
},
{
- 21,
- 3
+ 3,
+ 0
},
{
- 1,
- 0
+ 21,
+ 1
},
{
3,
@@ -10362,7 +10346,31 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 3,
0
},
{
@@ -10370,8 +10378,8 @@ local chapter_board_bossrush = {
3
},
{
- 1,
- 0
+ 21,
+ 3
},
{
21,
@@ -10379,19 +10387,11 @@ local chapter_board_bossrush = {
},
{
21,
- 1
+ 3
},
{
21,
- 2
- },
- {
- 21,
- 1
- },
- {
- 21,
- 1
+ 3
},
{
10,
@@ -10403,20 +10403,20 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 4
+ 5
},
{
0,
- 4
- },
- {
- 21,
- 3
- },
- {
- 21,
5
},
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 4
+ },
{
3,
0
@@ -10426,25 +10426,25 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 21,
3
},
{
- 21,
+ 0,
5
},
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 4
+ },
{
3,
0
@@ -10455,23 +10455,23 @@ local chapter_board_bossrush = {
},
{
21,
- 3
- },
- {
- 0,
- 1
+ 2
},
{
0,
3
},
{
- 21,
+ 0,
2
},
{
21,
- 5
+ 1
+ },
+ {
+ 21,
+ 4
},
{
9,
@@ -10479,28 +10479,32 @@ local chapter_board_bossrush = {
},
{
21,
- 2
- },
- {
- 21,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
1
},
{
21,
2
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 21,
+ 1
+ },
{
8,
0
},
+ {
+ 21,
+ 3
+ },
{
21,
1
@@ -10510,16 +10514,12 @@ local chapter_board_bossrush = {
2
},
{
- 21,
+ 0,
3
},
{
0,
- 1
- },
- {
- 0,
- 1
+ 3
},
{
8,
@@ -10529,6 +10529,10 @@ local chapter_board_bossrush = {
3,
0
},
+ {
+ 21,
+ 3
+ },
{
21,
1
@@ -10537,44 +10541,40 @@ local chapter_board_bossrush = {
21,
2
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
21,
3
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
{
21,
1
},
- {
- 21,
- 2
- },
{
8,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -10587,14 +10587,14 @@ local chapter_board_bossrush = {
},
{
21,
- 1
+ 3
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -10602,17 +10602,9 @@ local chapter_board_bossrush = {
[54]={
["board"]={
{
- 1,
+ 3,
0
},
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
{
0,
3
@@ -10623,42 +10615,50 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 2
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
9,
0
},
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
- 0,
- 2
- },
- {
- 1,
+ 3,
0
},
{
@@ -10682,12 +10682,12 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
21,
- 3
+ 2
},
{
0,
@@ -10698,7 +10698,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -10710,16 +10710,16 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
21,
- 3
+ 2
},
{
0,
@@ -10742,17 +10742,41 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
11,
0
},
+ {
+ 21,
+ 3
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 2
+ },
{
21,
1
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
21,
3
@@ -10761,22 +10785,6 @@ local chapter_board_bossrush = {
21,
3
},
- {
- 21,
- 2
- },
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
21,
1
@@ -10786,15 +10794,7 @@ local chapter_board_bossrush = {
1
},
{
- 21,
- 2
- },
- {
- 21,
- 2
- },
- {
- 1,
+ 3,
0
}
}
@@ -10805,46 +10805,6 @@ local chapter_board_bossrush = {
18,
0
},
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 0,
- 1
- },
{
0,
3
@@ -10855,7 +10815,47 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
},
{
18,
@@ -10910,63 +10910,71 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 22,
1
},
{
0,
+ 0
+ },
+ {
+ 22,
+ 2
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 22,
1
},
{
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 22,
- 2
- },
- {
- 0,
- 2
- },
- {
- 22,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -10974,27 +10982,19 @@ local chapter_board_bossrush = {
2
},
{
- 14,
+ 3,
0
},
{
22,
- 3
+ 2
},
{
- 14,
+ 3,
0
},
{
- 22,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
}
}
@@ -11003,62 +11003,90 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 5
},
{
0,
- 4
+ 1
},
{
0,
- 2
+ 5
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 22,
3
},
{
- 0,
+ 4,
1
},
{
- 0,
+ 4,
1
},
{
- 0,
- 2
+ 3,
+ 0
},
{
- 0,
- 4
- },
- {
- 1,
+ 3,
0
},
{
@@ -11069,30 +11097,6 @@ local chapter_board_bossrush = {
4,
3
},
- {
- 4,
- 1
- },
- {
- 4,
- 2
- },
- {
- 4,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 2
- },
{
4,
2
@@ -11106,53 +11110,41 @@ local chapter_board_bossrush = {
5
},
{
- 4,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
5
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 22,
- 3
- },
- {
- 22,
- 3
- },
{
22,
2
@@ -11166,35 +11158,43 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 22,
+ 1
+ },
+ {
+ 22,
+ 3
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 22,
+ 4
+ },
{
22,
5
},
{
22,
- 4
+ 5
},
{
- 22,
- 4
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -11205,77 +11205,165 @@ local chapter_board_bossrush = {
19,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
{
19,
0
},
+ {
+ 19,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
{
0,
4
},
- {
- 0,
- 2
- },
{
0,
1
},
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
{
0,
2
},
- {
- 0,
- 5
- },
- {
- 0,
- 2
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
{
19,
0
},
{
4,
+ 5
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 22,
+ 2
+ },
+ {
+ 22,
+ 2
+ },
+ {
+ 22,
+ 2
+ },
+ {
+ 22,
+ 1
+ },
+ {
+ 22,
4
},
{
- 4,
- 2
+ 19,
+ 0
},
{
- 4,
- 5
+ 19,
+ 0
+ },
+ {
+ 22,
+ 1
+ },
+ {
+ 22,
+ 3
+ },
+ {
+ 22,
+ 4
+ },
+ {
+ 22,
+ 1
+ },
+ {
+ 22,
+ 3
},
{
19,
@@ -11286,35 +11374,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 19,
0
},
{
@@ -11323,78 +11383,18 @@ local chapter_board_bossrush = {
},
{
22,
- 3
- },
- {
- 22,
- 3
- },
- {
- 22,
- 2
- },
- {
- 22,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 22,
- 2
+ 4
},
{
22,
1
},
{
- 22,
- 5
- },
- {
- 22,
- 2
- },
- {
- 22,
- 1
- },
- {
- 1,
+ 19,
0
},
{
- 1,
- 0
- },
- {
- 14,
- 0
- },
- {
- 22,
- 1
- },
- {
- 22,
- 5
- },
- {
- 22,
- 2
- },
- {
- 14,
- 0
- },
- {
- 1,
+ 19,
0
}
}
@@ -11402,56 +11402,28 @@ local chapter_board_bossrush = {
[58]={
["board"]={
{
- 1,
+ 19,
0
},
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
{
0,
5
},
+ {
+ 0,
+ 3
+ },
{
0,
5
},
{
- 1,
- 0
+ 0,
+ 3
},
{
- 1,
- 0
- },
- {
- 19,
- 0
- },
- {
- 4,
- 4
- },
- {
- 4,
- 1
- },
- {
- 4,
- 4
- },
- {
- 4,
- 4
+ 0,
+ 5
},
{
19,
@@ -11462,8 +11434,24 @@ local chapter_board_bossrush = {
0
},
{
- 19,
- 0
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
},
{
19,
@@ -11477,6 +11465,18 @@ local chapter_board_bossrush = {
4,
5
},
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 3
+ },
{
19,
0
@@ -11487,7 +11487,7 @@ local chapter_board_bossrush = {
},
{
22,
- 1
+ 3
},
{
0,
@@ -11514,12 +11514,12 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 19,
0
},
{
22,
- 1
+ 3
},
{
0,
@@ -11543,39 +11543,11 @@ local chapter_board_bossrush = {
},
{
22,
- 1
+ 3
},
{
22,
- 1
- },
- {
- 22,
- 2
- },
- {
- 22,
- 2
- },
- {
- 22,
- 2
- },
- {
- 19,
- 0
- },
- {
- 1,
- 0
- },
- {
- 14,
- 0
- },
- {
- 22,
- 1
+ 3
},
{
22,
@@ -11594,7 +11566,35 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 22,
+ 3
+ },
+ {
+ 22,
+ 3
+ },
+ {
+ 22,
+ 3
+ },
+ {
+ 22,
+ 3
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
0
}
}
@@ -11607,7 +11607,11 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
+ },
+ {
+ 0,
+ 1
},
{
0,
@@ -11615,12 +11619,32 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
},
{
0,
2
},
+ {
+ 0,
+ 1
+ },
{
0,
2
@@ -11638,36 +11662,68 @@ local chapter_board_bossrush = {
0
},
{
- 0,
- 3
- },
- {
- 0,
+ 4,
2
},
{
- 0,
+ 4,
+ 5
+ },
+ {
+ 4,
2
},
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 1,
- 0
- },
{
4,
3
},
{
4,
- 4
+ 2
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 1
},
{
4,
@@ -11682,119 +11738,63 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 2
- },
- {
- 4,
- 2
- },
- {
- 4,
- 1
- },
- {
- 4,
- 2
- },
- {
- 4,
- 2
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
{
0,
3
},
{
- 14,
- 0
+ 0,
+ 2
},
{
- 0,
- 4
+ 19,
+ 0
},
{
0,
5
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
- {
- 22,
- 1
- },
{
22,
3
},
{
22,
- 5
+ 2
},
{
- 1,
+ 22,
+ 4
+ },
+ {
+ 19,
0
},
{
- 1,
+ 19,
0
}
}
@@ -11802,52 +11802,24 @@ local chapter_board_bossrush = {
[60]={
["board"]={
{
- 1,
+ 19,
0
},
- {
- 1,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
{
0,
4
},
{
0,
- 2
- },
- {
- 19,
- 0
- },
- {
- 1,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
+ 1
},
{
0,
- 2
+ 4
},
{
0,
- 5
+ 1
},
{
0,
@@ -11862,55 +11834,55 @@ local chapter_board_bossrush = {
0
},
{
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
+ 0,
+ 1
},
{
0,
4
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 19,
0
},
{
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 2
- },
- {
- 4,
- 2
- },
- {
- 1,
+ 18,
0
},
{
- 1,
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
0
},
{
@@ -11926,55 +11898,55 @@ local chapter_board_bossrush = {
0
},
{
- 4,
- 2
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
},
{
22,
- 2
- },
- {
- 22,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 14,
- 0
- },
- {
- 0,
- 0
- },
- {
- 4,
1
},
{
22,
- 2
+ 5
},
{
- 22,
- 4
- },
- {
- 22,
- 4
- },
- {
- 1,
+ 19,
0
},
{
- 1,
+ 19,
+ 0
+ },
+ {
+ 19,
0
},
{
@@ -11982,20 +11954,48 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 19,
0
},
{
22,
- 2
+ 1
},
{
22,
- 4
+ 5
},
{
22,
- 4
+ 5
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 22,
+ 1
+ },
+ {
+ 22,
+ 5
+ },
+ {
+ 22,
+ 5
}
}
},
@@ -12005,6 +12005,14 @@ local chapter_board_bossrush = {
18,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
{
0,
3
@@ -12015,19 +12023,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 5
},
{
0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
+ 5
},
{
18,
@@ -12039,7 +12039,15 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
},
{
0,
@@ -12047,15 +12055,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
+ 5
},
{
18,
@@ -12085,66 +12085,38 @@ local chapter_board_bossrush = {
18,
0
},
- {
- 22,
- 1
- },
{
22,
3
},
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
{
22,
2
},
{
- 22,
- 4
+ 18,
+ 0
},
{
18,
0
},
{
- 4,
- 5
- },
- {
- 4,
- 5
- },
- {
- 4,
- 5
- },
- {
- 4,
- 4
- },
- {
- 14,
+ 18,
0
},
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 22,
+ 1
+ },
{
22,
5
@@ -12170,17 +12142,49 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 22,
+ 4
+ },
+ {
+ 18,
0
},
{
- 1,
+ 0,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 22,
+ 3
+ },
{
22,
1
@@ -12191,11 +12195,7 @@ local chapter_board_bossrush = {
},
{
22,
- 3
- },
- {
- 22,
- 4
+ 5
}
}
},
@@ -12203,7 +12203,7 @@ local chapter_board_bossrush = {
["board"]={
{
22,
- 5
+ 4
},
{
19,
@@ -12219,16 +12219,100 @@ local chapter_board_bossrush = {
},
{
4,
+ 2
+ },
+ {
+ 0,
3
},
+ {
+ 0,
+ 2
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
{
0,
1
},
- {
- 0,
- 3
- },
{
19,
0
@@ -12241,45 +12325,17 @@ local chapter_board_bossrush = {
19,
0
},
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 14,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
{
19,
0
},
{
4,
- 5
+ 1
},
{
0,
- 4
+ 3
},
{
0,
@@ -12299,75 +12355,27 @@ local chapter_board_bossrush = {
},
{
4,
- 5
+ 1
},
{
4,
- 5
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 14,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 4,
- 2
- },
- {
- 0,
1
},
{
0,
- 2
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 4,
- 2
- },
- {
- 4,
- 2
+ 5
},
{
0,
- 4
+ 3
},
{
- 0,
- 1
+ 22,
+ 3
+ },
+ {
+ 19,
+ 0
},
{
22,
@@ -12379,22 +12387,14 @@ local chapter_board_bossrush = {
},
{
22,
- 2
+ 4
},
{
19,
0
},
{
- 22,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 19,
0
}
}
@@ -12403,7 +12403,7 @@ local chapter_board_bossrush = {
["board"]={
{
12,
- 2
+ 1
},
{
18,
@@ -12411,82 +12411,82 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 1,
- 0
- },
- {
- 18,
- 0
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
+ 1
},
{
0,
4
},
+ {
+ 0,
+ 1
+ },
{
18,
0
},
{
- 12,
- 2
- },
- {
- 12,
- 2
+ 18,
+ 0
},
{
19,
0
},
{
- 0,
- 5
- },
- {
- 0,
- 5
+ 18,
+ 0
},
{
0,
4
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 12,
+ 1
+ },
+ {
+ 12,
+ 1
+ },
{
19,
0
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 19,
0
},
{
- 1,
+ 19,
+ 0
+ },
+ {
+ 19,
0
},
{
@@ -12511,11 +12511,11 @@ local chapter_board_bossrush = {
},
{
12,
- 2
+ 1
},
{
12,
- 2
+ 1
},
{
19,
@@ -12538,11 +12538,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
@@ -12554,7 +12554,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
@@ -12567,26 +12567,26 @@ local chapter_board_bossrush = {
},
{
12,
- 2
+ 1
},
{
12,
- 2
+ 1
},
{
20,
0
},
{
- 14,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 14,
+ 19,
0
},
{
@@ -12594,7 +12594,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
}
}
@@ -12603,198 +12603,198 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 0,
- 5
- },
- {
- 18,
- 0
- },
- {
- 0,
- 5
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 12,
- 1
- },
- {
- 12,
- 1
- },
- {
- 12,
- 1
- },
- {
- 14,
- 0
- },
- {
- 14,
- 0
- },
- {
- 12,
2
},
{
- 12,
+ 0,
+ 4
+ },
+ {
+ 0,
2
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 18,
0
},
{
- 1,
+ 18,
0
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 18,
0
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 12,
+ 3
+ },
+ {
+ 12,
+ 3
+ },
+ {
+ 12,
+ 3
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 12,
+ 1
+ },
+ {
+ 12,
+ 1
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
0
}
}
@@ -12809,6 +12809,14 @@ local chapter_board_bossrush = {
19,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
{
0,
1
@@ -12819,74 +12827,66 @@ local chapter_board_bossrush = {
},
{
0,
+ 3
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 4,
2
},
{
- 0,
+ 4,
2
},
- {
- 0,
- 1
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 19,
- 0
- },
- {
- 18,
- 0
- },
- {
- 19,
- 0
- },
- {
- 18,
- 0
- },
{
4,
3
},
{
- 4,
- 3
- },
- {
- 4,
- 1
- },
- {
- 14,
+ 19,
0
},
{
@@ -12929,21 +12929,45 @@ local chapter_board_bossrush = {
18,
0
},
+ {
+ 12,
+ 5
+ },
+ {
+ 12,
+ 4
+ },
+ {
+ 12,
+ 4
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
{
12,
4
},
{
12,
- 5
- },
- {
- 12,
- 5
- },
- {
- 18,
- 0
+ 4
},
{
19,
@@ -12957,44 +12981,20 @@ local chapter_board_bossrush = {
19,
0
},
- {
- 18,
- 0
- },
- {
- 12,
- 5
- },
- {
- 12,
- 5
- },
{
19,
0
},
- {
- 18,
- 0
- },
{
19,
0
},
- {
- 14,
- 0
- },
{
19,
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 19,
0
}
}
@@ -13002,123 +13002,87 @@ local chapter_board_bossrush = {
[66]={
["board"]={
{
- 1,
+ 19,
0
},
{
0,
- 5
+ 4
},
{
0,
- 2
+ 4
},
{
0,
- 2
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 1,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 12,
- 2
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
+ 19,
0
},
{
19,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
{
12,
1
},
{
- 19,
+ 18,
0
},
{
- 19,
+ 18,
0
},
{
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 19,
- 0
- },
- {
- 1,
- 0
- },
- {
- 19,
+ 18,
0
},
{
@@ -13138,11 +13102,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
@@ -13162,23 +13126,15 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 12,
+ 2
+ },
+ {
+ 19,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 14,
+ 19,
0
},
{
@@ -13190,11 +13146,55 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
+ 0
+ },
+ {
+ 19,
0
}
}
@@ -13203,11 +13203,11 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
11,
@@ -13218,7 +13218,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 19,
0
},
{
@@ -13231,35 +13231,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 0,
- 4
+ 5
},
{
0,
@@ -13291,7 +13263,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 5
},
{
18,
@@ -13310,7 +13282,31 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 18,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
0
},
{
@@ -13318,8 +13314,12 @@ local chapter_board_bossrush = {
0
},
{
- 19,
- 0
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
},
{
19,
@@ -13382,19 +13382,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
}
}
@@ -13407,52 +13407,52 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 3
+ 1
},
{
0,
2
},
- {
- 0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 18,
- 0
- },
- {
- 18,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
{
0,
1
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 18,
+ 0
+ },
+ {
+ 18,
+ 0
+ },
{
0,
5
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 4
+ },
{
18,
0
@@ -13463,11 +13463,11 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
4,
- 4
+ 5
},
{
19,
@@ -13475,11 +13475,11 @@ local chapter_board_bossrush = {
},
{
4,
- 1
+ 3
},
{
4,
- 1
+ 3
},
{
19,
@@ -13499,7 +13499,7 @@ local chapter_board_bossrush = {
},
{
12,
- 5
+ 4
},
{
0,
@@ -13526,7 +13526,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
@@ -13546,7 +13546,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 19,
0
},
{
@@ -13554,7 +13554,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
@@ -13562,7 +13562,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 19,
0
},
{
@@ -13570,31 +13570,31 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
}
}
@@ -13611,19 +13611,19 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
19,
@@ -13639,15 +13639,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
19,
@@ -13691,7 +13691,7 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
0,
@@ -13699,7 +13699,7 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
0,
@@ -13707,7 +13707,7 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
20,
@@ -13719,7 +13719,7 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
0,
@@ -13727,7 +13727,7 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
0,
@@ -13735,7 +13735,7 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
0,
@@ -13747,7 +13747,7 @@ local chapter_board_bossrush = {
},
{
12,
- 4
+ 5
},
{
20,
@@ -13755,7 +13755,7 @@ local chapter_board_bossrush = {
},
{
12,
- 4
+ 5
},
{
20,
@@ -13763,7 +13763,7 @@ local chapter_board_bossrush = {
},
{
12,
- 4
+ 5
},
{
20,
@@ -13771,47 +13771,43 @@ local chapter_board_bossrush = {
},
{
12,
- 4
+ 5
},
{
- 14,
+ 19,
0
},
{
12,
- 4
+ 5
},
{
12,
- 4
+ 5
},
{
12,
- 4
+ 5
},
{
- 14,
+ 19,
0
},
{
12,
- 4
+ 5
}
}
},
[70]={
["board"]={
{
- 1,
+ 19,
0
},
{
0,
- 2
- },
- {
- 0,
- 1
+ 5
},
{
0,
@@ -13819,18 +13815,18 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 5
},
{
0,
- 2
+ 3
},
{
- 1,
- 0
+ 0,
+ 5
},
{
- 1,
+ 19,
0
},
{
@@ -13838,27 +13834,31 @@ local chapter_board_bossrush = {
0
},
{
- 4,
- 2
- },
- {
- 4,
- 1
- },
- {
- 4,
- 3
+ 19,
+ 0
},
{
0,
- 1
+ 5
},
{
0,
3
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 19,
0
},
{
@@ -13873,21 +13873,21 @@ local chapter_board_bossrush = {
19,
0
},
- {
- 4,
- 2
- },
{
4,
3
},
{
4,
- 2
+ 5
+ },
+ {
+ 4,
+ 3
},
{
12,
- 2
+ 1
},
{
0,
@@ -13911,7 +13911,7 @@ local chapter_board_bossrush = {
},
{
4,
- 2
+ 5
},
{
18,
@@ -13923,7 +13923,7 @@ local chapter_board_bossrush = {
},
{
12,
- 2
+ 1
},
{
0,
@@ -13943,7 +13943,7 @@ local chapter_board_bossrush = {
},
{
12,
- 2
+ 1
},
{
19,
@@ -13967,10 +13967,10 @@ local chapter_board_bossrush = {
},
{
12,
- 2
+ 1
},
{
- 1,
+ 19,
0
},
{
@@ -13978,7 +13978,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 19,
0
},
{
@@ -13986,52 +13986,52 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 19,
0
},
{
- 1,
+ 19,
0
},
{
- 1,
+ 19,
0
}
}
},
[71]={
["board"]={
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 2
+ 5
},
{
0,
- 4
+ 1
},
{
0,
- 2
+ 5
},
{
0,
- 4
+ 1
},
{
- 0,
- 2
- },
- {
- 1,
+ 3,
0
},
{
0,
- 1
+ 3
},
{
11,
@@ -14039,28 +14039,28 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
},
{
12,
- 2
- },
- {
- 0,
1
},
+ {
+ 0,
+ 3
+ },
{
2,
0
@@ -14082,7 +14082,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -14109,10 +14109,6 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 14,
- 0
- },
{
3,
0
@@ -14138,7 +14134,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -14165,10 +14165,6 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 14,
- 0
- },
{
3,
0
@@ -14194,7 +14190,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -14202,13 +14202,17 @@ local chapter_board_bossrush = {
[72]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
4
},
+ {
+ 0,
+ 4
+ },
{
0,
5
@@ -14217,25 +14221,21 @@ local chapter_board_bossrush = {
0,
4
},
- {
- 0,
- 5
- },
{
0,
4
},
{
- 1,
+ 3,
0
},
{
- 12,
- 3
+ 0,
+ 2
},
{
0,
- 4
+ 5
},
{
10,
@@ -14243,7 +14243,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
11,
@@ -14251,15 +14251,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
- 12,
- 3
+ 0,
+ 2
},
{
4,
- 3
+ 2
},
{
2,
@@ -14283,11 +14283,11 @@ local chapter_board_bossrush = {
},
{
4,
- 3
+ 2
},
{
12,
- 3
+ 2
},
{
3,
@@ -14311,7 +14311,7 @@ local chapter_board_bossrush = {
},
{
12,
- 3
+ 2
},
{
7,
@@ -14342,7 +14342,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -14366,11 +14366,11 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -14394,7 +14394,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
@@ -14402,16 +14402,16 @@ local chapter_board_bossrush = {
[73]={
["board"]={
{
- 1,
- 0
+ 0,
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
9,
@@ -14419,27 +14419,27 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
},
{
2,
@@ -14447,18 +14447,18 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
- 1,
- 0
+ 0,
+ 3
},
{
- 1,
+ 3,
0
},
{
@@ -14482,35 +14482,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 4,
- 1
- },
- {
- 4,
- 1
- },
- {
- 2,
- 0
- },
- {
- 4,
- 1
- },
- {
- 4,
- 1
- },
- {
- 1,
+ 3,
0
},
{
@@ -14521,18 +14497,10 @@ local chapter_board_bossrush = {
4,
3
},
- {
- 1,
- 0
- },
{
2,
0
},
- {
- 1,
- 0
- },
{
4,
3
@@ -14542,15 +14510,19 @@ local chapter_board_bossrush = {
3
},
{
- 14,
+ 3,
0
},
{
- 1,
- 0
+ 4,
+ 2
},
{
- 1,
+ 4,
+ 2
+ },
+ {
+ 3,
0
},
{
@@ -14558,27 +14530,27 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -14586,15 +14558,43 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -14602,7 +14602,7 @@ local chapter_board_bossrush = {
[74]={
["board"]={
{
- 1,
+ 3,
0
},
{
@@ -14619,18 +14619,18 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 0,
- 2
+ 3
},
{
0,
1
},
{
- 1,
+ 0,
+ 3
+ },
+ {
+ 3,
0
},
{
@@ -14645,20 +14645,20 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 2
+ 1
},
{
- 0,
- 2
- },
- {
- 1,
+ 3,
0
},
{
@@ -14675,22 +14675,22 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
@@ -14714,7 +14714,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -14742,7 +14742,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -14754,7 +14754,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -14766,35 +14766,35 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -14803,15 +14803,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
2,
@@ -14819,27 +14819,27 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
2,
@@ -14847,15 +14847,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
2,
@@ -14926,7 +14926,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -14954,7 +14954,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -14970,19 +14978,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -15007,12 +15007,40 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 2
},
{
0,
3
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
{
0,
3
@@ -15029,34 +15057,6 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
{
2,
0
@@ -15071,82 +15071,18 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 4,
5
},
{
- 4,
+ 0,
5
},
{
- 4,
- 2
- },
- {
- 4,
- 2
- },
- {
- 4,
- 1
- },
- {
- 4,
- 1
- },
- {
- 10,
- 0
- },
- {
- 11,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 14,
- 0
- },
- {
- 4,
+ 0,
5
},
{
- 4,
+ 0,
5
},
{
@@ -15157,6 +15093,14 @@ local chapter_board_bossrush = {
4,
4
},
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 1
+ },
{
4,
3
@@ -15194,7 +15138,63 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
+ 0
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 10,
+ 0
+ },
+ {
+ 11,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -15203,15 +15203,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 5
},
{
0,
- 1
+ 5
},
{
0,
- 1
+ 5
},
{
2,
@@ -15226,16 +15226,16 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
0,
- 1
+ 3
},
{
0,
- 2
+ 3
},
{
2,
@@ -15254,7 +15254,35 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -15265,34 +15293,6 @@ local chapter_board_bossrush = {
0,
1
},
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 2
- },
- {
- 4,
- 2
- },
{
11,
0
@@ -15306,20 +15306,20 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 0
+ 1
},
{
0,
- 0
+ 1
},
{
7,
@@ -15338,11 +15338,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -15362,19 +15362,19 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -15394,24 +15394,24 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
},
[78]={
["board"]={
- {
- 0,
- 2
- },
{
0,
1
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 3
},
{
9,
@@ -15419,118 +15419,118 @@ local chapter_board_bossrush = {
},
{
0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 4,
- 2
- },
- {
- 0,
- 2
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 4,
- 1
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 4,
- 1
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
4
},
{
- 4,
+ 0,
4
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
4,
3
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
4,
3
},
{
- 1,
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 3,
0
},
{
@@ -15538,7 +15538,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -15550,7 +15550,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -15558,7 +15558,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -15566,19 +15566,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -15586,15 +15586,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -15611,22 +15611,22 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
24,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
@@ -15639,11 +15639,11 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
24,
@@ -15654,7 +15654,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 25,
0
},
{
@@ -15667,11 +15667,11 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
24,
@@ -15695,11 +15695,11 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
24,
@@ -15723,14 +15723,10 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
- 23,
- 3
- },
- {
- 23,
+ 0,
2
},
{
@@ -15739,10 +15735,14 @@ local chapter_board_bossrush = {
},
{
23,
- 5
+ 3
},
{
- 1,
+ 23,
+ 4
+ },
+ {
+ 25,
0
},
{
@@ -15751,11 +15751,7 @@ local chapter_board_bossrush = {
},
{
23,
- 4
- },
- {
- 23,
- 3
+ 5
},
{
23,
@@ -15767,23 +15763,23 @@ local chapter_board_bossrush = {
},
{
23,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
+ 3
},
{
23,
4
},
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
{
23,
- 3
+ 5
},
{
23,
@@ -15795,14 +15791,46 @@ local chapter_board_bossrush = {
},
{
23,
- 5
+ 3
+ },
+ {
+ 23,
+ 4
}
}
},
[80]={
["board"]={
{
- 1,
+ 25,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
0
},
{
@@ -15811,7 +15839,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
},
{
0,
@@ -15826,101 +15854,49 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 25,
0
},
{
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
+ 23,
3
},
{
- 0,
+ 25,
+ 0
+ },
+ {
+ 27,
1
},
{
- 0,
+ 27,
+ 1
+ },
+ {
+ 27,
+ 5
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 23,
3
},
- {
- 0,
- 2
- },
- {
- 1,
- 0
- },
{
23,
- 1
+ 3
},
{
25,
0
},
- {
- 27,
- 2
- },
- {
- 27,
- 2
- },
{
27,
4
},
- {
- 25,
- 0
- },
- {
- 23,
- 1
- },
- {
- 23,
- 1
- },
- {
- 25,
- 0
- },
- {
- 27,
- 5
- },
- {
- 27,
- 4
- },
- {
- 27,
- 4
- },
- {
- 25,
- 0
- },
- {
- 23,
- 1
- },
- {
- 23,
- 1
- },
- {
- 25,
- 0
- },
{
27,
5
@@ -15929,9 +15905,33 @@ local chapter_board_bossrush = {
27,
5
},
+ {
+ 25,
+ 0
+ },
+ {
+ 23,
+ 3
+ },
+ {
+ 23,
+ 3
+ },
+ {
+ 25,
+ 0
+ },
{
27,
- 1
+ 4
+ },
+ {
+ 27,
+ 4
+ },
+ {
+ 27,
+ 3
},
{
25,
@@ -15939,11 +15939,11 @@ local chapter_board_bossrush = {
},
{
23,
- 1
+ 3
},
{
23,
- 1
+ 3
},
{
25,
@@ -15967,76 +15967,40 @@ local chapter_board_bossrush = {
},
{
23,
- 1
+ 3
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 14,
+ 25,
0
},
{
23,
- 1
+ 3
},
{
- 14,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
}
}
},
[81]={
["board"]={
- {
- 1,
- 0
- },
- {
- 23,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
- },
{
25,
0
@@ -16047,23 +16011,23 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
4
},
{
- 1,
- 0
- },
- {
- 1,
- 0
+ 0,
+ 5
},
{
0,
- 5
+ 1
+ },
+ {
+ 25,
+ 0
},
{
25,
@@ -16079,15 +16043,11 @@ local chapter_board_bossrush = {
},
{
23,
- 2
+ 5
},
{
- 1,
- 0
- },
- {
- 1,
- 0
+ 0,
+ 1
},
{
0,
@@ -16097,6 +16057,10 @@ local chapter_board_bossrush = {
25,
0
},
+ {
+ 25,
+ 0
+ },
{
0,
4
@@ -16107,14 +16071,50 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 5
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 23,
+ 1
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
0
},
{
@@ -16127,7 +16127,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
25,
@@ -16135,22 +16135,22 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 14,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
@@ -16163,38 +16163,38 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 14,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
}
}
@@ -16203,72 +16203,32 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 0,
- 4
- },
- {
- 27,
- 2
- },
- {
- 0,
- 4
- },
- {
- 27,
- 1
- },
- {
- 0,
- 1
- },
- {
- 27,
- 1
- },
- {
- 0,
- 4
- },
- {
- 27,
5
},
{
- 0,
- 4
- },
- {
- 27,
- 2
+ 25,
+ 0
},
{
0,
2
},
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
{
27,
1
@@ -16279,12 +16239,52 @@ local chapter_board_bossrush = {
},
{
27,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 27,
+ 3
+ },
+ {
+ 0,
5
},
+ {
+ 27,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 27,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 27,
+ 3
+ },
{
0,
4
},
+ {
+ 27,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
{
24,
0
@@ -16299,7 +16299,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
24,
@@ -16323,15 +16323,15 @@ local chapter_board_bossrush = {
},
{
23,
- 3
+ 2
},
{
23,
- 3
+ 2
},
{
23,
- 3
+ 2
},
{
24,
@@ -16341,38 +16341,10 @@ local chapter_board_bossrush = {
25,
0
},
- {
- 14,
- 0
- },
{
25,
0
},
- {
- 23,
- 3
- },
- {
- 23,
- 2
- },
- {
- 23,
- 3
- },
- {
- 25,
- 0
- },
- {
- 14,
- 0
- },
- {
- 23,
- 3
- },
{
25,
0
@@ -16381,10 +16353,22 @@ local chapter_board_bossrush = {
23,
2
},
+ {
+ 23,
+ 1
+ },
{
23,
2
},
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
{
23,
2
@@ -16395,7 +16379,23 @@ local chapter_board_bossrush = {
},
{
23,
- 3
+ 1
+ },
+ {
+ 23,
+ 1
+ },
+ {
+ 23,
+ 1
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 23,
+ 2
}
}
},
@@ -16403,19 +16403,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
- },
- {
- 0,
- 3
+ 5
},
{
0,
@@ -16423,10 +16419,14 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
},
{
- 14,
+ 0,
+ 2
+ },
+ {
+ 25,
0
},
{
@@ -16439,11 +16439,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 3
+ 2
},
{
0,
@@ -16451,7 +16447,11 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
+ },
+ {
+ 0,
+ 2
},
{
24,
@@ -16511,39 +16511,7 @@ local chapter_board_bossrush = {
},
{
23,
- 2
- },
- {
- 1,
- 0
- },
- {
- 24,
- 0
- },
- {
- 24,
- 0
- },
- {
- 24,
- 0
- },
- {
- 24,
- 0
- },
- {
- 23,
- 2
- },
- {
- 23,
- 2
- },
- {
- 1,
- 0
+ 1
},
{
25,
@@ -16558,23 +16526,23 @@ local chapter_board_bossrush = {
0
},
{
- 23,
- 1
- },
- {
- 23,
- 1
- },
- {
- 23,
- 1
- },
- {
- 1,
+ 24,
0
},
{
- 1,
+ 24,
+ 0
+ },
+ {
+ 23,
+ 1
+ },
+ {
+ 23,
+ 1
+ },
+ {
+ 25,
0
},
{
@@ -16582,69 +16550,89 @@ local chapter_board_bossrush = {
0
},
{
- 23,
- 1
+ 24,
+ 0
+ },
+ {
+ 24,
+ 0
},
{
23,
3
},
{
- 14,
+ 23,
+ 3
+ },
+ {
+ 23,
+ 3
+ },
+ {
+ 25,
0
},
{
- 1,
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 23,
+ 3
+ },
+ {
+ 23,
+ 2
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
0
}
}
},
[84]={
["board"]={
- {
- 0,
- 3
- },
{
0,
2
},
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
{
0,
1
},
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
{
24,
0
},
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
{
0,
2
@@ -16653,6 +16641,18 @@ local chapter_board_bossrush = {
0,
1
},
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
{
24,
0
@@ -16665,10 +16665,6 @@ local chapter_board_bossrush = {
24,
0
},
- {
- 27,
- 3
- },
{
27,
2
@@ -16677,6 +16673,10 @@ local chapter_board_bossrush = {
27,
1
},
+ {
+ 27,
+ 3
+ },
{
24,
0
@@ -16693,10 +16693,6 @@ local chapter_board_bossrush = {
25,
0
},
- {
- 27,
- 3
- },
{
27,
2
@@ -16705,6 +16701,10 @@ local chapter_board_bossrush = {
27,
1
},
+ {
+ 27,
+ 3
+ },
{
25,
0
@@ -16742,16 +16742,16 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 25,
0
},
{
23,
- 1
+ 3
},
{
23,
- 1
+ 3
},
{
26,
@@ -16759,42 +16759,42 @@ local chapter_board_bossrush = {
},
{
23,
- 2
+ 1
},
{
23,
- 2
+ 1
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 14,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 14,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
}
}
@@ -16802,135 +16802,63 @@ local chapter_board_bossrush = {
[85]={
["board"]={
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 23,
- 5
- },
- {
- 24,
- 0
- },
- {
- 27,
- 1
- },
- {
- 27,
- 2
- },
- {
- 27,
- 1
- },
- {
- 24,
- 0
- },
- {
- 23,
- 5
- },
- {
- 23,
- 5
- },
- {
- 23,
- 5
- },
- {
- 27,
3
},
{
- 27,
- 4
+ 0,
+ 1
},
{
- 27,
+ 0,
3
},
{
- 23,
- 5
- },
- {
- 23,
- 5
- },
- {
- 23,
- 5
- },
- {
- 24,
+ 25,
0
},
{
- 27,
- 4
+ 25,
+ 0
},
{
- 27,
+ 25,
+ 0
+ },
+ {
+ 0,
3
},
{
- 27,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 23,
4
},
{
@@ -16938,15 +16866,87 @@ local chapter_board_bossrush = {
0
},
{
- 23,
- 5
+ 27,
+ 3
},
{
- 1,
+ 27,
+ 1
+ },
+ {
+ 27,
+ 3
+ },
+ {
+ 24,
0
},
{
- 1,
+ 23,
+ 4
+ },
+ {
+ 23,
+ 4
+ },
+ {
+ 23,
+ 4
+ },
+ {
+ 27,
+ 2
+ },
+ {
+ 27,
+ 5
+ },
+ {
+ 27,
+ 2
+ },
+ {
+ 23,
+ 4
+ },
+ {
+ 23,
+ 4
+ },
+ {
+ 23,
+ 4
+ },
+ {
+ 24,
+ 0
+ },
+ {
+ 27,
+ 5
+ },
+ {
+ 27,
+ 2
+ },
+ {
+ 27,
+ 5
+ },
+ {
+ 24,
+ 0
+ },
+ {
+ 23,
+ 4
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
0
},
{
@@ -16954,7 +16954,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 25,
0
},
{
@@ -16962,39 +16962,39 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
23,
- 5
+ 4
},
{
23,
- 5
+ 4
},
{
23,
- 5
+ 4
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
}
}
@@ -17002,49 +17002,17 @@ local chapter_board_bossrush = {
[86]={
["board"]={
{
- 14,
+ 25,
0
},
- {
- 27,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 0,
- 4
- },
- {
- 27,
- 4
- },
- {
- 14,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
{
27,
3
},
+ {
+ 0,
+ 1
+ },
{
0,
4
@@ -17053,9 +17021,17 @@ local chapter_board_bossrush = {
0,
1
},
+ {
+ 27,
+ 5
+ },
+ {
+ 25,
+ 0
+ },
{
0,
- 1
+ 3
},
{
0,
@@ -17063,8 +17039,20 @@ local chapter_board_bossrush = {
},
{
0,
+ 4
+ },
+ {
+ 27,
2
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
{
0,
5
@@ -17073,128 +17061,140 @@ local chapter_board_bossrush = {
0,
3
},
- {
- 0,
- 3
- },
{
0,
1
},
- {
- 0,
- 1
- },
- {
- 25,
- 0
- },
- {
- 25,
- 0
- },
- {
- 25,
- 0
- },
- {
- 25,
- 0
- },
- {
- 25,
- 0
- },
- {
- 25,
- 0
- },
- {
- 25,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
{
0,
4
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 25,
+ 0
+ },
+ {
+ 23,
+ 1
+ },
+ {
+ 23,
+ 4
+ },
{
23,
2
},
{
- 23,
- 5
- },
- {
- 23,
- 3
- },
- {
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
},
{
- 1,
+ 25,
0
}
}
@@ -17203,15 +17203,7 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
+ 3
},
{
0,
@@ -17223,23 +17215,31 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 1
+ 2
},
{
0,
- 1
+ 5
},
{
0,
- 1
+ 2
},
{
0,
- 4
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
},
{
28,
@@ -17249,21 +17249,21 @@ local chapter_board_bossrush = {
0,
5
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
{
0,
3
},
{
0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
+ 5
},
{
28,
@@ -17277,18 +17277,18 @@ local chapter_board_bossrush = {
28,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
{
0,
3
},
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
{
28,
0
@@ -17311,7 +17311,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
},
{
28,
@@ -17341,254 +17341,254 @@ local chapter_board_bossrush = {
28,
0
},
- {
- 5,
- 3
- },
- {
- 5,
- 5
- },
- {
- 21,
- 3
- },
- {
- 21,
- 4
- },
- {
- 21,
- 1
- },
{
5,
2
},
{
5,
- 1
- },
- {
- 5,
- 5
- },
- {
- 5,
- 3
- },
- {
- 21,
- 5
- },
- {
- 21,
4
},
{
21,
2
},
+ {
+ 21,
+ 5
+ },
+ {
+ 21,
+ 3
+ },
{
5,
1
},
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 4
+ },
{
5,
2
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 21,
+ 5
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 1
}
}
},
[88]={
["board"]={
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 21,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
- {
- 21,
- 1
- },
- {
- 1,
- 0
- },
- {
- 21,
- 1
- },
- {
- 21,
- 1
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 21,
- 1
- },
- {
- 21,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 5,
- 5
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 14,
- 0
- },
- {
- 30,
- 0
- },
- {
- 5,
- 5
- },
- {
- 5,
2
},
{
- 5,
- 5
+ 0,
+ 3
},
{
- 30,
- 0
- },
- {
- 14,
- 0
- },
- {
- 29,
- 0
- },
- {
- 30,
- 0
- },
- {
- 29,
- 0
- },
- {
- 5,
- 5
- },
- {
- 29,
- 0
- },
- {
- 30,
- 0
- },
- {
- 29,
- 0
- },
- {
- 29,
- 0
- },
- {
- 30,
- 0
- },
- {
- 29,
- 0
- },
- {
- 5,
+ 0,
2
},
{
29,
0
},
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 30,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 30,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 30,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 30,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 30,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 29,
+ 0
+ },
{
30,
0
@@ -17602,96 +17602,96 @@ local chapter_board_bossrush = {
[89]={
["board"]={
{
- 1,
+ 29,
0
},
+ {
+ 0,
+ 1
+ },
{
0,
2
},
{
0,
- 3
+ 1
},
{
0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 28,
+ 0
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 21,
5
},
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 28,
- 0
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 1,
- 0
- },
{
21,
- 4
- },
- {
- 21,
- 4
+ 5
},
{
28,
@@ -17707,19 +17707,19 @@ local chapter_board_bossrush = {
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
29,
@@ -17735,18 +17735,22 @@ local chapter_board_bossrush = {
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
+ 0
+ },
+ {
+ 29,
0
},
{
@@ -17762,39 +17766,35 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 29,
0
}
}
@@ -17803,11 +17803,7 @@ local chapter_board_bossrush = {
["board"]={
{
5,
- 5
- },
- {
- 5,
- 2
+ 4
},
{
5,
@@ -17815,20 +17811,24 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 2
- },
- {
- 0,
- 5
+ 3
},
{
0,
1
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
{
0,
0
@@ -17837,73 +17837,73 @@ local chapter_board_bossrush = {
9,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 28,
+ 0
+ },
{
5,
- 1
+ 3
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
},
{
0,
- 1
+ 0
},
{
- 0,
+ 28,
+ 0
+ },
+ {
+ 21,
2
},
{
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 0
- },
- {
- 28,
- 0
- },
- {
- 5,
- 1
- },
- {
- 5,
- 1
- },
- {
- 5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 0,
- 0
- },
- {
- 28,
- 0
+ 21,
+ 2
},
{
21,
- 3
- },
- {
- 21,
- 3
- },
- {
- 21,
- 3
+ 2
},
{
9,
@@ -17923,15 +17923,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
28,
@@ -17942,7 +17942,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 29,
0
},
{
@@ -17966,11 +17966,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
@@ -17978,7 +17978,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 29,
0
},
{
@@ -17986,7 +17986,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 29,
0
},
{
@@ -17994,7 +17994,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 29,
0
}
}
@@ -18002,12 +18002,36 @@ local chapter_board_bossrush = {
[91]={
["board"]={
{
- 1,
+ 29,
0
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
},
{
0,
@@ -18015,106 +18039,82 @@ local chapter_board_bossrush = {
},
{
0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 28,
+ 0
+ },
+ {
+ 28,
+ 0
+ },
+ {
+ 28,
+ 0
+ },
+ {
+ 28,
+ 0
+ },
+ {
+ 28,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 28,
+ 0
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
5
},
{
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
+ 29,
0
},
{
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 28,
- 0
- },
- {
- 28,
- 0
- },
- {
- 28,
- 0
- },
- {
- 28,
- 0
- },
- {
- 28,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 21,
- 1
- },
- {
- 21,
- 2
- },
- {
- 28,
- 0
- },
- {
- 21,
- 3
- },
- {
- 21,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 29,
0
},
{
@@ -18138,51 +18138,39 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 29,
0
},
{
- 1,
- 0
- },
- {
- 5,
- 1
- },
- {
- 5,
- 2
- },
- {
- 14,
+ 29,
0
},
{
5,
3
},
- {
- 5,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
5,
1
},
+ {
+ 29,
+ 0
+ },
{
5,
2
},
{
- 1,
+ 5,
+ 5
+ },
+ {
+ 29,
+ 0
+ },
+ {
+ 29,
0
},
{
@@ -18191,10 +18179,22 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 1
},
{
- 1,
+ 29,
+ 0
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 29,
0
}
}
@@ -18209,17 +18209,17 @@ local chapter_board_bossrush = {
28,
0
},
+ {
+ 0,
+ 1
+ },
{
0,
2
},
{
0,
- 3
- },
- {
- 0,
- 4
+ 5
},
{
28,
@@ -18237,17 +18237,17 @@ local chapter_board_bossrush = {
28,
0
},
+ {
+ 0,
+ 1
+ },
{
0,
2
},
{
0,
- 3
- },
- {
- 0,
- 4
+ 5
},
{
28,
@@ -18258,85 +18258,85 @@ local chapter_board_bossrush = {
0
},
{
- 5,
+ 0,
1
},
{
- 5,
- 5
+ 0,
+ 1
},
{
21,
- 2
+ 1
},
{
0,
- 3
+ 2
},
{
21,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 5,
4
},
{
5,
- 2
- },
- {
- 5,
- 1
- },
- {
- 5,
- 5
- },
- {
- 5,
- 1
- },
- {
- 21,
- 2
- },
- {
- 0,
3
},
{
21,
- 4
- },
- {
- 5,
1
},
{
- 5,
+ 0,
2
},
{
- 0,
- 0
- },
- {
- 5,
+ 21,
5
},
{
5,
- 1
+ 3
},
{
5,
1
},
+ {
+ 0,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 3
+ },
{
5,
1
},
- {
- 5,
- 2
- },
{
0,
0
@@ -18370,15 +18370,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 29,
0
},
{
- 14,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
@@ -18386,15 +18386,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 29,
0
},
{
- 14,
+ 29,
0
},
{
- 1,
+ 29,
0
}
}
@@ -18403,23 +18403,11 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
},
{
0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 1
},
{
0,
@@ -18430,119 +18418,131 @@ local chapter_board_bossrush = {
2
},
{
- 21,
- 3
- },
- {
- 21,
- 3
- },
- {
- 21,
+ 0,
2
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
{
9,
0
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 29,
+ 0
+ },
{
21,
2
},
{
- 21,
- 3
+ 29,
+ 0
},
{
- 21,
- 3
+ 29,
+ 0
},
{
- 0,
+ 29,
0
},
{
21,
- 3
+ 2
},
{
- 0,
+ 29,
0
},
{
- 1,
- 0
- },
- {
- 0,
+ 29,
0
},
{
21,
- 3
+ 2
},
{
- 0,
+ 29,
0
},
{
- 0,
+ 29,
+ 0
+ },
+ {
+ 29,
0
},
{
21,
- 3
+ 2
},
{
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 21,
- 3
- },
- {
- 0,
+ 29,
0
},
{
5,
- 4
+ 5
},
{
5,
- 4
+ 5
},
{
5,
- 4
+ 5
},
{
- 1,
+ 29,
0
},
{
5,
- 4
+ 5
},
{
5,
- 4
+ 5
},
{
5,
- 4
+ 5
},
{
- 14,
+ 29,
0
},
{
@@ -18566,35 +18566,35 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
},
{
- 1,
+ 29,
0
}
}
@@ -18611,15 +18611,15 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
29,
@@ -18639,15 +18639,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
29,
@@ -18667,15 +18667,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
28,
@@ -18687,115 +18687,115 @@ local chapter_board_bossrush = {
},
{
5,
- 1
- },
- {
- 5,
- 1
- },
- {
- 5,
- 1
- },
- {
- 5,
- 5
- },
- {
- 5,
- 2
- },
- {
- 5,
- 2
- },
- {
- 5,
- 2
- },
- {
- 21,
3
},
{
- 21,
+ 5,
3
},
{
- 21,
- 5
+ 5,
+ 3
},
{
- 1,
+ 5,
+ 4
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 29,
0
},
- {
- 21,
- 5
- },
{
21,
4
},
+ {
+ 21,
+ 5
+ },
+ {
+ 21,
+ 5
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 29,
+ 0
+ },
{
21,
4
},
{
- 21,
- 1
- },
- {
- 1,
+ 29,
0
},
{
21,
- 5
+ 4
},
{
- 1,
+ 29,
0
},
- {
- 21,
- 5
- },
- {
- 1,
- 0
- },
- {
- 21,
- 2
- },
{
21,
1
},
{
- 1,
+ 21,
+ 3
+ },
+ {
+ 29,
0
},
{
21,
- 5
+ 4
},
{
- 14,
+ 29,
0
},
{
21,
- 5
+ 4
},
{
- 1,
+ 29,
0
},
{
21,
- 2
+ 1
}
}
},
@@ -18807,70 +18807,138 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
},
{
35,
- 4
- },
- {
- 0,
5
},
- {
- 0,
- 2
- },
{
31,
0
},
{
- 1,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
+ 35,
5
},
{
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 1,
+ 32,
0
},
+ {
+ 35,
+ 5
+ },
{
31,
0
},
{
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 0,
+ 35,
5
},
{
@@ -18886,75 +18954,7 @@ local chapter_board_bossrush = {
0
},
{
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 35,
- 4
- },
- {
- 31,
- 0
- },
- {
- 35,
- 4
- },
- {
- 1,
- 0
- },
- {
- 35,
- 4
- },
- {
- 31,
- 0
- },
- {
- 35,
- 4
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 1,
+ 32,
0
},
{
@@ -18975,23 +18975,23 @@ local chapter_board_bossrush = {
},
{
35,
- 4
+ 5
},
{
- 14,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 14,
+ 32,
0
},
{
35,
- 4
+ 5
},
{
31,
@@ -19014,8 +19014,8 @@ local chapter_board_bossrush = {
0
},
{
- 31,
- 0
+ 0,
+ 2
},
{
32,
@@ -19033,42 +19033,42 @@ local chapter_board_bossrush = {
32,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 0
- },
- {
- 32,
- 0
- },
- {
- 32,
- 0
- },
- {
- 0,
- 3
- },
{
0,
2
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
{
8,
0
@@ -19079,7 +19079,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 3
},
{
32,
@@ -19091,7 +19091,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 3
},
{
10,
@@ -19107,14 +19107,14 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
31,
0
},
{
- 14,
+ 32,
0
},
{
@@ -19123,7 +19123,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
},
{
9,
@@ -19131,14 +19131,14 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
33,
0
},
{
- 14,
+ 32,
0
},
{
@@ -19155,11 +19155,11 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 3
+ 1
},
{
33,
@@ -19203,23 +19203,11 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
},
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
+ 3
},
{
0,
@@ -19234,24 +19222,12 @@ local chapter_board_bossrush = {
5
},
{
- 4,
- 3
+ 0,
+ 2
},
{
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 4
+ 0,
+ 2
},
{
0,
@@ -19259,11 +19235,35 @@ local chapter_board_bossrush = {
},
{
4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 0,
5
},
{
4,
- 1
+ 4
+ },
+ {
+ 4,
+ 3
},
{
9,
@@ -19279,14 +19279,14 @@ local chapter_board_bossrush = {
},
{
4,
- 1
+ 3
},
{
4,
- 4
+ 5
},
{
- 33,
+ 32,
0
},
{
@@ -19310,12 +19310,12 @@ local chapter_board_bossrush = {
0
},
{
- 33,
+ 32,
0
},
{
35,
- 3
+ 2
},
{
0,
@@ -19339,15 +19339,15 @@ local chapter_board_bossrush = {
},
{
35,
- 3
+ 2
},
{
35,
- 3
+ 2
},
{
35,
- 3
+ 2
},
{
33,
@@ -19363,14 +19363,18 @@ local chapter_board_bossrush = {
},
{
35,
- 3
+ 2
},
{
35,
- 3
+ 2
},
{
- 14,
+ 32,
+ 0
+ },
+ {
+ 32,
0
},
{
@@ -19386,15 +19390,11 @@ local chapter_board_bossrush = {
0
},
{
- 33,
+ 32,
0
},
{
- 33,
- 0
- },
- {
- 14,
+ 32,
0
}
}
@@ -19402,35 +19402,7 @@ local chapter_board_bossrush = {
[98]={
["board"]={
{
- 1,
- 0
- },
- {
- 4,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 4,
- 2
- },
- {
- 1,
- 0
- },
- {
- 0,
+ 32,
0
},
{
@@ -19443,7 +19415,35 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
},
{
0,
@@ -19451,7 +19451,7 @@ local chapter_board_bossrush = {
},
{
4,
- 4
+ 5
},
{
0,
@@ -19462,23 +19462,23 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 32,
0
},
{
0,
- 3
+ 1
},
{
0,
- 4
+ 2
},
{
0,
- 4
+ 5
},
{
- 1,
+ 32,
0
},
{
@@ -19493,17 +19493,17 @@ local chapter_board_bossrush = {
32,
0
},
- {
- 0,
- 4
- },
{
0,
1
},
{
0,
- 4
+ 2
+ },
+ {
+ 0,
+ 5
},
{
32,
@@ -19518,23 +19518,23 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 32,
0
},
- {
- 35,
- 3
- },
{
35,
2
},
{
35,
- 4
+ 1
},
{
- 1,
+ 35,
+ 5
+ },
+ {
+ 32,
0
},
{
@@ -19542,59 +19542,59 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 32,
0
},
{
- 1,
+ 32,
0
},
- {
- 4,
- 2
- },
- {
- 35,
- 2
- },
- {
- 4,
- 1
- },
- {
- 1,
- 0
- },
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 1
- },
{
4,
1
},
{
35,
- 2
+ 1
},
{
4,
- 2
+ 3
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
},
{
4,
- 2
+ 3
},
{
- 1,
+ 4,
+ 3
+ },
+ {
+ 35,
+ 1
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 32,
0
}
}
@@ -19607,23 +19607,23 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
0,
- 1
+ 2
},
{
0,
- 3
+ 4
},
{
0,
- 3
+ 2
},
{
0,
- 1
+ 4
},
{
31,
@@ -19635,79 +19635,43 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 5
+ 4
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 4
},
{
0,
- 3
+ 2
},
{
31,
0
},
+ {
+ 35,
+ 2
+ },
+ {
+ 35,
+ 1
+ },
{
35,
3
},
{
35,
- 2
- },
- {
- 35,
- 1
- },
- {
- 35,
- 1
- },
- {
- 35,
- 1
- },
- {
- 35,
- 2
- },
- {
- 35,
- 2
- },
- {
- 35,
- 5
- },
- {
- 4,
- 5
- },
- {
- 4,
- 1
- },
- {
- 1,
- 0
- },
- {
- 4,
- 1
- },
- {
- 4,
- 5
+ 3
},
{
35,
@@ -19718,24 +19682,32 @@ local chapter_board_bossrush = {
1
},
{
- 4,
+ 35,
1
},
{
- 4,
- 5
+ 35,
+ 4
},
{
- 1,
+ 4,
+ 4
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 32,
0
},
{
4,
- 5
+ 3
},
{
4,
- 1
+ 4
},
{
35,
@@ -19743,26 +19715,30 @@ local chapter_board_bossrush = {
},
{
35,
- 1
+ 3
},
{
4,
- 1
+ 3
},
{
4,
- 5
+ 4
+ },
+ {
+ 32,
+ 0
},
{
4,
- 1
+ 4
},
{
4,
- 5
+ 3
},
{
- 4,
+ 35,
1
},
{
@@ -19770,31 +19746,55 @@ local chapter_board_bossrush = {
3
},
{
- 14,
+ 4,
+ 3
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 35,
+ 2
+ },
+ {
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 14,
+ 32,
0
}
}
@@ -19802,68 +19802,12 @@ local chapter_board_bossrush = {
[100]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 4,
- 5
- },
- {
- 0,
- 2
- },
- {
- 35,
- 2
- },
- {
- 14,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 4,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 4
+ 1
},
{
0,
@@ -19877,110 +19821,110 @@ local chapter_board_bossrush = {
4,
4
},
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
- },
- {
- 4,
- 5
- },
{
0,
1
},
{
- 0,
- 5
+ 35,
+ 1
},
{
- 0,
- 5
- },
- {
- 14,
+ 3,
0
},
- {
- 35,
- 5
- },
{
0,
5
},
- {
- 4,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
{
0,
2
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
- 0
+ 0,
+ 5
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
},
{
4,
5
},
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 4,
+ 4
+ },
{
0,
3
@@ -19990,11 +19934,67 @@ local chapter_board_bossrush = {
4
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 3,
0
},
{
- 1,
+ 35,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -20007,7 +20007,35 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 4
},
{
0,
@@ -20015,7 +20043,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 4
},
{
0,
@@ -20023,7 +20051,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
32,
@@ -20035,51 +20063,23 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
0,
- 3
+ 4
},
{
0,
- 5
+ 2
},
{
0,
- 3
+ 4
},
{
0,
- 5
- },
- {
- 32,
- 0
- },
- {
- 32,
- 0
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
+ 4
},
{
32,
@@ -20114,44 +20114,28 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 32,
0
},
{
35,
+ 3
+ },
+ {
+ 4,
1
},
{
4,
- 4
+ 2
},
{
4,
- 4
- },
- {
- 4,
- 4
- },
- {
- 35,
3
},
- {
- 14,
- 0
- },
{
35,
- 1
- },
- {
- 35,
- 1
- },
- {
- 35,
- 1
+ 2
},
{
32,
@@ -20170,23 +20154,23 @@ local chapter_board_bossrush = {
3
},
{
- 1,
+ 32,
0
},
{
35,
- 1
+ 2
},
{
- 1,
- 0
+ 35,
+ 2
},
{
- 1,
- 0
+ 35,
+ 2
},
{
- 1,
+ 32,
0
},
{
@@ -20194,7 +20178,23 @@ local chapter_board_bossrush = {
3
},
{
- 1,
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 35,
+ 2
+ },
+ {
+ 32,
0
}
}
@@ -20207,23 +20207,79 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 33,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 33,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 33,
+ 0
+ },
+ {
+ 0,
+ 5
},
{
32,
@@ -20239,7 +20295,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
33,
@@ -20247,68 +20303,12 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 32,
- 0
- },
- {
- 32,
- 0
- },
- {
- 0,
- 4
- },
- {
- 33,
- 0
- },
- {
- 14,
- 0
- },
- {
- 33,
- 0
- },
- {
- 0,
- 3
- },
- {
- 32,
- 0
- },
- {
- 32,
- 0
+ 5
},
{
0,
2
},
- {
- 0,
- 4
- },
- {
- 33,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
- },
{
32,
0
@@ -20317,22 +20317,6 @@ local chapter_board_bossrush = {
32,
0
},
- {
- 4,
- 2
- },
- {
- 0,
- 4
- },
- {
- 4,
- 3
- },
- {
- 0,
- 1
- },
{
4,
1
@@ -20342,39 +20326,55 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
+ 4,
+ 3
},
{
- 0,
+ 32,
0
},
{
4,
2
},
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
{
4,
3
},
{
4,
- 3
+ 2
},
{
0,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
@@ -20390,11 +20390,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
}
}
@@ -20403,32 +20403,20 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
},
{
0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 32,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
+ 2
},
{
0,
3
},
+ {
+ 32,
+ 0
+ },
{
0,
3
@@ -20439,11 +20427,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 32,
- 0
+ 3
},
{
0,
@@ -20451,19 +20435,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
+ 3
},
{
0,
@@ -20473,10 +20445,38 @@ local chapter_board_bossrush = {
32,
0
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
{
0,
2
},
+ {
+ 0,
+ 3
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
{
0,
1
@@ -20487,7 +20487,19 @@ local chapter_board_bossrush = {
},
{
34,
- 2
+ 1
+ },
+ {
+ 34,
+ 3
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 32,
+ 0
},
{
34,
@@ -20495,24 +20507,12 @@ local chapter_board_bossrush = {
},
{
34,
- 2
- },
- {
- 32,
- 0
- },
- {
- 34,
- 2
+ 3
},
{
34,
1
},
- {
- 34,
- 2
- },
{
32,
0
@@ -20523,7 +20523,7 @@ local chapter_board_bossrush = {
},
{
34,
- 2
+ 1
},
{
32,
@@ -20531,7 +20531,7 @@ local chapter_board_bossrush = {
},
{
34,
- 2
+ 1
},
{
32,
@@ -20550,7 +20550,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 32,
0
},
{
@@ -20558,7 +20558,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 32,
0
},
{
@@ -20607,24 +20607,24 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
+ 2
},
{
0,
2
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
{
32,
0
@@ -20633,6 +20633,14 @@ local chapter_board_bossrush = {
32,
0
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
{
0,
3
@@ -20643,15 +20651,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
+ 3
},
{
32,
@@ -20751,7 +20751,7 @@ local chapter_board_bossrush = {
},
{
34,
- 1
+ 3
},
{
33,
@@ -20759,7 +20759,7 @@ local chapter_board_bossrush = {
},
{
34,
- 1
+ 3
},
{
32,
@@ -20771,14 +20771,14 @@ local chapter_board_bossrush = {
},
{
34,
- 1
+ 3
},
{
32,
0
},
{
- 14,
+ 32,
0
},
{
@@ -20786,7 +20786,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 32,
0
},
{
@@ -20795,7 +20795,7 @@ local chapter_board_bossrush = {
},
{
34,
- 2
+ 1
}
}
},
@@ -20819,11 +20819,11 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
32,
@@ -20839,47 +20839,79 @@ local chapter_board_bossrush = {
},
{
0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 5
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 34,
3
},
{
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 32,
- 0
- },
- {
- 32,
- 0
- },
- {
- 4,
+ 34,
3
},
{
- 4,
- 2
- },
- {
- 4,
+ 34,
3
},
{
- 4,
- 4
+ 32,
+ 0
},
{
- 4,
- 4
+ 32,
+ 0
},
{
32,
@@ -20890,7 +20922,31 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 34,
+ 3
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 3
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
0
},
{
@@ -20906,7 +20962,11 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 32,
+ 0
+ },
+ {
+ 32,
0
},
{
@@ -20918,24 +20978,12 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 32,
0
},
{
34,
- 1
- },
- {
- 34,
- 2
- },
- {
- 34,
- 1
- },
- {
- 1,
- 0
+ 3
},
{
32,
@@ -20945,57 +20993,9 @@ local chapter_board_bossrush = {
32,
0
},
- {
- 1,
- 0
- },
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 1,
- 0
- },
{
32,
0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 14,
- 0
- },
- {
- 34,
- 1
- },
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
}
}
},
@@ -21003,11 +21003,11 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
@@ -21015,59 +21015,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 5
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
+ 2
},
{
0,
@@ -21078,28 +21026,68 @@ local chapter_board_bossrush = {
4
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
+ 0,
4
},
{
- 4,
- 4
+ 32,
+ 0
},
{
- 4,
- 1
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
},
{
4,
@@ -21110,7 +21098,19 @@ local chapter_board_bossrush = {
3
},
{
- 1,
+ 4,
+ 5
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 32,
0
},
{
@@ -21145,22 +21145,6 @@ local chapter_board_bossrush = {
0,
0
},
- {
- 34,
- 5
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
{
34,
4
@@ -21170,15 +21154,19 @@ local chapter_board_bossrush = {
0
},
{
- 34,
- 3
- },
- {
- 14,
+ 0,
0
},
{
- 1,
+ 0,
+ 0
+ },
+ {
+ 34,
+ 5
+ },
+ {
+ 0,
0
},
{
@@ -21186,31 +21174,35 @@ local chapter_board_bossrush = {
2
},
{
- 1,
+ 32,
0
},
{
- 14,
+ 32,
0
},
{
34,
1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 34,
+ 3
}
}
},
[107]={
["board"]={
{
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 1,
+ 32,
0
},
{
@@ -21218,81 +21210,13 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 32,
0
},
{
0,
- 5
- },
- {
- 1,
- 0
- },
- {
- 31,
- 0
- },
- {
- 0,
- 2
- },
- {
- 31,
- 0
- },
- {
- 0,
- 4
- },
- {
- 31,
- 0
- },
- {
- 0,
- 5
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 0,
- 2
- },
- {
- 4,
3
},
- {
- 0,
- 1
- },
- {
- 4,
- 3
- },
- {
- 0,
- 5
- },
- {
- 31,
- 0
- },
- {
- 31,
- 0
- },
- {
- 34,
- 2
- },
{
32,
0
@@ -21306,13 +21230,89 @@ local chapter_board_bossrush = {
0
},
{
- 34,
+ 31,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 0,
5
},
{
31,
0
},
+ {
+ 0,
+ 4
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 34,
+ 4
+ },
+ {
+ 31,
+ 0
+ },
{
31,
0
@@ -21323,15 +21323,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 1
+ 3
},
{
0,
- 4
+ 5
},
{
33,
@@ -21345,42 +21345,6 @@ local chapter_board_bossrush = {
31,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 0
- },
- {
- 31,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
{
0,
1
@@ -21396,6 +21360,42 @@ local chapter_board_bossrush = {
{
0,
5
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
}
}
},
@@ -21439,7 +21439,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
33,
@@ -21463,7 +21463,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
33,
@@ -21471,7 +21471,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
33,
@@ -21487,7 +21487,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
33,
@@ -21495,7 +21495,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
33,
@@ -21503,7 +21503,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
33,
@@ -21511,7 +21511,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
33,
@@ -21519,7 +21519,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
33,
@@ -21527,7 +21527,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
33,
@@ -21535,7 +21535,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
33,
@@ -21543,7 +21543,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
33,
@@ -21551,7 +21551,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
33,
@@ -21559,7 +21559,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
33,
@@ -21567,15 +21567,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 33,
- 0
- },
- {
- 14,
- 0
+ 3
},
{
33,
@@ -21583,16 +21575,24 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 3
},
{
33,
0
},
{
- 14,
+ 0,
+ 5
+ },
+ {
+ 33,
0
},
+ {
+ 0,
+ 3
+ },
{
33,
0
@@ -21603,31 +21603,31 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
32,
@@ -21635,30 +21635,22 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 2
- },
- {
- 32,
- 0
- },
- {
- 34,
1
},
{
@@ -21666,16 +21658,24 @@ local chapter_board_bossrush = {
0
},
{
- 0,
- 2
+ 34,
+ 3
+ },
+ {
+ 32,
+ 0
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
+ },
+ {
+ 0,
+ 1
},
{
32,
@@ -21683,15 +21683,15 @@ local chapter_board_bossrush = {
},
{
34,
- 1
+ 3
},
{
34,
- 1
+ 3
},
{
34,
- 1
+ 3
},
{
32,
@@ -21707,23 +21707,11 @@ local chapter_board_bossrush = {
},
{
34,
- 1
+ 3
},
{
34,
- 1
- },
- {
- 1,
- 0
- },
- {
- 34,
- 1
- },
- {
- 34,
- 1
+ 3
},
{
32,
@@ -21731,26 +21719,26 @@ local chapter_board_bossrush = {
},
{
34,
- 1
+ 3
},
{
34,
- 1
+ 3
},
{
- 1,
+ 32,
0
},
{
- 1,
- 0
+ 34,
+ 3
},
{
- 1,
- 0
+ 34,
+ 3
},
{
- 14,
+ 32,
0
},
{
@@ -21758,27 +21746,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 32,
0
},
{
@@ -21786,15 +21754,47 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
0
}
}
@@ -21803,150 +21803,178 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 34,
- 3
- },
- {
- 34,
4
},
{
- 34,
- 3
- },
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 33,
- 0
- },
- {
- 33,
- 0
- },
- {
- 34,
- 3
- },
- {
- 34,
+ 0,
4
},
{
- 34,
- 3
- },
- {
- 33,
- 0
- },
- {
- 33,
- 0
- },
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 14,
- 0
- },
- {
- 34,
+ 0,
4
},
{
- 14,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 2
+ },
+ {
+ 34,
+ 5
+ },
+ {
+ 34,
+ 2
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 33,
+ 0
+ },
+ {
+ 33,
0
},
{
34,
2
},
+ {
+ 34,
+ 5
+ },
{
34,
2
},
{
- 1,
+ 33,
0
},
{
- 1,
+ 33,
+ 0
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 34,
+ 5
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 2
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
0
},
{
@@ -21955,46 +21983,18 @@ local chapter_board_bossrush = {
},
{
4,
- 3
+ 1
},
{
4,
2
},
{
- 1,
+ 32,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 4,
- 3
- },
- {
- 4,
- 2
- },
- {
- 4,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 32,
0
}
}
@@ -22002,103 +22002,75 @@ local chapter_board_bossrush = {
[111]={
["board"]={
{
- 1,
+ 32,
0
},
- {
- 0,
- 2
- },
{
0,
1
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 34,
- 2
- },
- {
- 34,
- 5
- },
- {
- 34,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
+ 3
},
{
0,
5
},
- {
- 34,
- 1
- },
- {
- 1,
- 0
- },
{
32,
0
},
- {
- 1,
- 0
- },
- {
- 34,
- 2
- },
{
0,
- 1
+ 5
},
{
0,
5
},
+ {
+ 34,
+ 1
+ },
{
34,
4
},
+ {
+ 34,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 34,
+ 3
+ },
{
32,
0
},
{
- 14,
+ 32,
0
},
{
@@ -22111,18 +22083,18 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 3
},
{
0,
- 5
+ 4
},
{
34,
- 1
+ 5
},
{
- 1,
+ 32,
0
},
{
@@ -22130,11 +22102,47 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 32,
0
},
{
34,
+ 3
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 34,
+ 3
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 34,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
5
},
{
@@ -22142,23 +22150,31 @@ local chapter_board_bossrush = {
5
},
{
- 0,
+ 34,
+ 1
+ },
+ {
+ 34,
+ 5
+ },
+ {
+ 34,
4
},
+ {
+ 0,
+ 3
+ },
{
0,
4
},
{
- 34,
- 2
+ 32,
+ 0
},
{
- 34,
- 4
- },
- {
- 34,
+ 0,
5
},
{
@@ -22167,34 +22183,18 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 1
},
{
- 1,
- 0
+ 0,
+ 1
},
{
0,
4
},
{
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 1,
+ 32,
0
}
}
@@ -22203,7 +22203,7 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
},
{
0,
@@ -22211,22 +22211,22 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 1
},
{
0,
- 3
+ 1
},
{
31,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
@@ -22235,54 +22235,54 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 31,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
+ 2
},
{
0,
2
},
+ {
+ 0,
+ 2
+ },
+ {
+ 31,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
{
0,
3
},
{
0,
- 5
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
},
{
31,
0
},
{
- 14,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
@@ -22306,95 +22306,95 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 3
+ },
{
34,
2
},
{
34,
- 1
+ 2
},
{
34,
3
},
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
{
34,
3
},
{
- 34,
- 1
- },
- {
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
0
},
{
34,
- 1
+ 3
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
+ 32,
0
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 34,
- 1
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
+ 32,
0
}
}
@@ -22403,26 +22403,30 @@ local chapter_board_bossrush = {
["board"]={
{
0,
+ 3
+ },
+ {
+ 34,
1
},
{
34,
- 2
+ 1
},
{
34,
- 2
+ 1
},
{
34,
- 2
+ 1
},
{
34,
- 2
+ 1
},
{
- 34,
+ 0,
2
},
{
@@ -22430,19 +22434,15 @@ local chapter_board_bossrush = {
3
},
{
- 0,
+ 34,
1
},
{
- 34,
- 2
- },
- {
- 1,
+ 32,
0
},
{
- 14,
+ 32,
0
},
{
@@ -22451,126 +22451,138 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 34,
- 4
- },
- {
- 34,
2
},
- {
- 34,
- 2
- },
- {
- 34,
- 4
- },
- {
- 34,
- 4
- },
{
0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 33,
- 0
- },
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 34,
2
},
{
0,
3
},
- {
- 0,
- 1
- },
{
34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 34,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 34,
- 2
- },
- {
- 1,
- 0
- },
- {
- 0,
5
},
{
- 33,
- 0
+ 34,
+ 1
},
{
- 0,
+ 34,
+ 1
+ },
+ {
+ 34,
+ 5
+ },
+ {
+ 34,
5
},
+ {
+ 0,
+ 2
+ },
{
0,
3
},
{
0,
+ 3
+ },
+ {
+ 33,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 33,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 34,
+ 3
+ },
+ {
+ 34,
+ 1
+ },
+ {
+ 34,
1
},
{
@@ -22581,66 +22593,18 @@ local chapter_board_bossrush = {
34,
2
},
- {
- 34,
- 2
- },
- {
- 34,
- 2
- },
- {
- 34,
- 3
- },
{
0,
- 3
+ 2
}
}
},
[114]={
["board"]={
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
{
0,
3
},
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 32,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
{
0,
2
@@ -22651,14 +22615,50 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
},
{
32,
0
},
{
- 14,
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
0
},
{
@@ -22667,7 +22667,7 @@ local chapter_board_bossrush = {
},
{
34,
- 1
+ 3
},
{
32,
@@ -22675,14 +22675,14 @@ local chapter_board_bossrush = {
},
{
34,
- 4
+ 5
},
{
32,
0
},
{
- 14,
+ 32,
0
},
{
@@ -22721,6 +22721,10 @@ local chapter_board_bossrush = {
0,
0
},
+ {
+ 34,
+ 3
+ },
{
34,
1
@@ -22729,17 +22733,37 @@ local chapter_board_bossrush = {
34,
2
},
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
34,
- 3
+ 1
},
{
0,
+ 5
+ },
+ {
+ 32,
0
},
{
0,
- 0
+ 1
+ },
+ {
+ 34,
+ 5
},
{
0,
@@ -22754,7 +22778,15 @@ local chapter_board_bossrush = {
5
},
{
- 1,
+ 32,
+ 0
+ },
+ {
+ 32,
+ 0
+ },
+ {
+ 32,
0
},
{
@@ -22764,38 +22796,6 @@ local chapter_board_bossrush = {
{
34,
4
- },
- {
- 0,
- 0
- },
- {
- 34,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 34,
- 5
}
}
},
@@ -22803,11 +22803,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
+ },
+ {
+ 0,
+ 3
},
{
0,
@@ -22819,7 +22823,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
0,
@@ -22827,11 +22831,11 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 3
},
{
0,
- 1
+ 3
},
{
0,
@@ -22843,46 +22847,42 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
+ },
+ {
+ 0,
+ 5
},
{
0,
4
},
- {
- 0,
- 4
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
{
0,
2
},
{
0,
- 5
+ 2
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 3,
0
},
{
@@ -22890,11 +22890,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -22910,7 +22906,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -22918,11 +22918,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -22938,7 +22938,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -22990,11 +22990,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -23003,20 +23003,32 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 5
+ 4
},
{
0,
- 1
- },
- {
- 0,
- 5
+ 3
},
{
0,
4
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
{
0,
3
@@ -23031,7 +23043,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
@@ -23039,23 +23051,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
},
{
0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 2
},
{
2,
@@ -23086,7 +23086,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -23110,11 +23110,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -23138,11 +23138,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -23166,7 +23166,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -23182,7 +23182,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -23203,31 +23203,59 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
},
{
0,
- 5
+ 4
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
},
{
2,
@@ -23250,39 +23278,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 2,
0
},
{
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -23310,7 +23310,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -23334,19 +23334,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -23366,15 +23366,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -23382,7 +23382,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -23390,11 +23390,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -23403,11 +23403,11 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
3,
@@ -23423,7 +23423,35 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -23438,81 +23466,53 @@ local chapter_board_bossrush = {
1
},
{
- 3,
- 0
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
},
{
3,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
3,
0
},
- {
- 0,
- 4
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
{
36,
0
@@ -23541,14 +23541,6 @@ local chapter_board_bossrush = {
36,
0
},
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
{
3,
0
@@ -23566,7 +23558,15 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -23582,7 +23582,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -23602,11 +23602,95 @@ local chapter_board_bossrush = {
[119]={
["board"]={
{
- 1,
+ 3,
0
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 36,
0
},
{
@@ -23615,107 +23699,71 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 3
},
{
0,
- 4
+ 3
+ },
+ {
+ 36,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
5
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 36,
0
},
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
{
0,
5
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 36,
- 0
- },
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 36,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
+ 5
},
{
3,
@@ -23733,46 +23781,6 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 36,
- 0
- },
- {
- 0,
- 3
- },
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
3,
0
@@ -23788,138 +23796,58 @@ local chapter_board_bossrush = {
{
3,
0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
}
}
},
[120]={
["board"]={
{
- 1,
+ 3,
0
},
{
36,
0
},
- {
- 0,
- 1
- },
{
0,
3
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 2
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 2
+ 1
},
{
0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 36,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
+ 1
},
{
0,
@@ -23929,12 +23857,56 @@ local chapter_board_bossrush = {
36,
0
},
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
0,
1
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
0
},
{
@@ -23946,7 +23918,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 2,
0
},
{
@@ -23954,13 +23926,41 @@ local chapter_board_bossrush = {
4
},
{
- 14,
+ 36,
0
},
{
0,
3
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
{
2,
0
@@ -23974,11 +23974,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -24003,7 +24003,11 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 3
},
{
0,
@@ -24013,13 +24017,29 @@ local chapter_board_bossrush = {
0,
3
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 2
+ 1
},
{
0,
@@ -24027,7 +24047,19 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 36,
+ 0
},
{
0,
@@ -24035,66 +24067,38 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 5
},
{
0,
- 3
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
+ 5
},
{
36,
0
},
{
- 0,
- 2
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 36,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -24114,11 +24118,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -24142,7 +24142,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -24178,36 +24178,40 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
},
[122]={
["board"]={
+ {
+ 0,
+ 3
+ },
{
0,
1
},
{
0,
- 2
+ 1
},
{
0,
@@ -24217,10 +24221,30 @@ local chapter_board_bossrush = {
0,
3
},
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
{
0,
1
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 36,
+ 0
+ },
{
0,
5
@@ -24231,15 +24255,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 0,
- 3
+ 4
},
{
36,
@@ -24247,11 +24263,19 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 2
},
{
0,
- 4
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -24261,34 +24285,10 @@ local chapter_board_bossrush = {
36,
0
},
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
{
3,
0
},
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 36,
- 0
- },
- {
- 1,
- 0
- },
{
3,
0
@@ -24310,7 +24310,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -24354,7 +24354,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -24370,11 +24370,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -24390,11 +24390,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -24402,156 +24402,140 @@ local chapter_board_bossrush = {
[123]={
["board"]={
{
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 1,
+ 3,
0
},
{
0,
3
},
+ {
+ 0,
+ 1
+ },
{
0,
5
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
{
0,
2
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
0,
3
},
+ {
+ 0,
+ 1
+ },
{
0,
5
},
{
- 1,
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 4,
+ 3
+ },
{
4,
1
},
{
4,
- 2
+ 5
},
{
4,
- 3
+ 2
},
{
4,
4
},
{
- 4,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
5
},
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 14,
- 0
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
{
5,
4
},
{
5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
+ 4
},
{
5,
@@ -24570,7 +24554,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 5,
+ 5
+ },
+ {
+ 0,
0
},
{
@@ -24582,7 +24570,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -24594,7 +24582,19 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
0
}
}
@@ -24603,11 +24603,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 3
},
{
0,
@@ -24619,20 +24623,20 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
0,
- 4
+ 2
},
{
- 0,
- 3
- },
- {
- 1,
+ 3,
0
},
+ {
+ 0,
+ 3
+ },
{
0,
1
@@ -24643,7 +24647,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
},
{
0,
@@ -24651,44 +24655,48 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
- 0,
- 4
+ 3,
+ 0
},
{
- 1,
+ 5,
+ 1
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 3,
0
},
{
5,
2
},
- {
- 5,
- 3
- },
- {
- 1,
- 0
- },
- {
- 5,
- 3
- },
- {
- 5,
- 4
- },
{
5,
5
},
+ {
+ 5,
+ 4
+ },
+ {
+ 4,
+ 1
+ },
{
4,
2
},
+ {
+ 4,
+ 5
+ },
{
4,
3
@@ -24698,48 +24706,52 @@ local chapter_board_bossrush = {
4
},
{
- 4,
+ 5,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
1
},
- {
- 4,
- 5
- },
{
5,
- 5
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 5,
- 5
- },
- {
- 1,
- 0
+ 1
},
{
5,
@@ -24758,43 +24770,31 @@ local chapter_board_bossrush = {
2
},
{
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -24803,7 +24803,51 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 5
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
},
{
0,
@@ -24815,7 +24859,23 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
0,
@@ -24826,23 +24886,51 @@ local chapter_board_bossrush = {
5
},
{
- 0,
+ 3,
+ 0
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
5
},
{
5,
- 3
+ 4
},
{
- 1,
+ 5,
+ 5
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 3,
0
},
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 5
+ },
{
5,
2
},
{
- 4,
+ 5,
+ 5
+ },
+ {
+ 5,
2
},
{
@@ -24850,104 +24938,20 @@ local chapter_board_bossrush = {
2
},
{
- 1,
- 3
- },
- {
- 5,
- 3
- },
- {
- 0,
+ 3,
0
},
{
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 1,
+ 3,
0
},
{
5,
- 5
+ 2
},
{
5,
- 4
- },
- {
- 5,
- 5
- },
- {
- 5,
- 4
- },
- {
- 5,
- 5
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 5,
- 4
- },
- {
- 5,
- 3
- },
- {
- 5,
- 4
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 5,
- 3
+ 1
},
{
5,
@@ -24962,88 +24966,80 @@ local chapter_board_bossrush = {
1
},
{
- 5,
- 2
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
- {
- 5,
- 2
- },
{
5,
1
},
{
- 14,
+ 5,
+ 3
+ },
+ {
+ 3,
0
},
{
5,
- 2
+ 1
},
{
5,
- 2
+ 1
},
{
- 1,
+ 3,
0
}
}
},
[126]={
["board"]={
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
{
0,
2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
- {
- 0,
- 2
- },
{
0,
3
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
{
0,
4
},
+ {
+ 0,
+ 2
+ },
{
0,
5
},
{
0,
- 2
+ 4
},
{
0,
@@ -25055,32 +25051,16 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 1
},
{
- 4,
+ 0,
4
},
{
4,
5
},
- {
- 4,
- 5
- },
- {
- 1,
- 0
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
{
4,
4
@@ -25090,37 +25070,13 @@ local chapter_board_bossrush = {
4
},
{
- 1,
+ 3,
0
},
{
4,
2
},
- {
- 1,
- 0
- },
- {
- 4,
- 2
- },
- {
- 1,
- 0
- },
- {
- 4,
- 4
- },
- {
- 4,
- 3
- },
- {
- 4,
- 3
- },
{
4,
2
@@ -25129,17 +25085,61 @@ local chapter_board_bossrush = {
4,
1
},
+ {
+ 4,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 4,
+ 1
+ },
{
4,
2
},
{
4,
- 5
+ 2
},
{
4,
- 5
+ 1
+ },
+ {
+ 4,
+ 3
+ },
+ {
+ 4,
+ 1
+ },
+ {
+ 4,
+ 4
+ },
+ {
+ 4,
+ 4
},
{
3,
@@ -25171,31 +25171,31 @@ local chapter_board_bossrush = {
},
{
5,
- 3
+ 2
},
{
5,
- 3
+ 2
},
{
- 1,
+ 3,
0
},
{
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
5,
- 3
+ 2
},
{
5,
- 3
+ 2
}
}
},
@@ -25203,7 +25203,11 @@ local chapter_board_bossrush = {
["board"]={
{
21,
- 1
+ 3
+ },
+ {
+ 0,
+ 3
},
{
0,
@@ -25215,19 +25219,27 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 3
- },
- {
- 0,
- 4
+ 5
},
{
21,
- 4
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
},
{
0,
@@ -25243,32 +25255,12 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 5
},
{
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 1,
+ 3,
0
},
- {
- 5,
- 1
- },
- {
- 5,
- 1
- },
{
5,
3
@@ -25279,11 +25271,19 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 2
},
{
5,
- 4
+ 2
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 5
},
{
37,
@@ -25299,7 +25299,7 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
0,
@@ -25310,11 +25310,11 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -25323,15 +25323,15 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
- 14,
+ 3,
0
},
{
21,
- 5
+ 4
},
{
0,
@@ -25343,59 +25343,59 @@ local chapter_board_bossrush = {
},
{
5,
- 3
- },
- {
- 5,
- 3
+ 2
},
{
5,
2
},
+ {
+ 5,
+ 1
+ },
{
21,
- 5
+ 4
},
{
5,
- 5
+ 4
},
{
5,
- 5
+ 4
},
{
- 1,
+ 3,
0
},
{
5,
- 4
+ 5
},
{
5,
- 4
+ 5
},
{
5,
- 2
+ 1
},
{
- 1,
+ 3,
0
},
{
5,
- 4
+ 5
},
{
5,
- 4
+ 5
},
{
5,
- 4
+ 5
}
}
},
@@ -25403,47 +25403,47 @@ local chapter_board_bossrush = {
["board"]={
{
21,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
5,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
21,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
5,
- 2
+ 1
},
{
37,
@@ -25451,92 +25451,92 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
- 4
- },
- {
- 5,
5
},
{
- 1,
+ 5,
+ 4
+ },
+ {
+ 3,
0
},
{
0,
- 1
+ 3
},
{
0,
- 4
+ 5
},
{
- 1,
+ 3,
0
},
{
21,
- 3
- },
- {
- 0,
- 5
- },
- {
- 5,
- 5
- },
- {
- 5,
- 1
- },
- {
- 5,
- 4
+ 2
},
{
0,
4
},
{
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 14,
- 0
+ 5,
+ 4
},
{
5,
3
},
+ {
+ 5,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 2
+ },
{
37,
0
@@ -25553,65 +25553,65 @@ local chapter_board_bossrush = {
0,
0
},
+ {
+ 5,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
5,
5
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
+ 5,
+ 5
},
{
5,
- 4
- },
- {
- 5,
- 4
- },
- {
- 5,
- 4
+ 5
},
{
0,
- 3
+ 2
}
}
},
[129]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
37,
@@ -25619,24 +25619,16 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
- 1,
+ 3,
0
},
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
{
0,
1
@@ -25654,67 +25646,19 @@ local chapter_board_bossrush = {
3
},
{
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 5,
- 1
- },
- {
- 5,
- 1
- },
- {
- 1,
- 0
- },
- {
- 21,
+ 0,
2
},
{
- 21,
+ 0,
2
},
{
- 21,
- 2
- },
- {
- 21,
- 3
- },
- {
- 21,
- 3
- },
- {
- 21,
- 3
- },
- {
- 14,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
@@ -25727,7 +25671,51 @@ local chapter_board_bossrush = {
},
{
5,
- 5
+ 4
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
},
{
5,
@@ -25738,41 +25726,61 @@ local chapter_board_bossrush = {
5
},
{
- 1,
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 5,
+ 4
+ },
+ {
+ 3,
0
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
21,
- 1
+ 3
},
{
21,
- 1
+ 3
},
{
21,
- 1
+ 3
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 5,
+ 1
+ },
+ {
+ 5,
+ 1
+ },
{
5,
2
@@ -25783,18 +25791,10 @@ local chapter_board_bossrush = {
},
{
5,
- 3
+ 2
},
{
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 1,
+ 3,
0
}
}
@@ -25803,7 +25803,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
},
{
0,
@@ -25815,23 +25823,23 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 3
},
{
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 1,
+ 3,
0
},
{
0,
- 2
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
},
{
0,
@@ -25843,35 +25851,15 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 3
},
{
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 1,
+ 3,
0
},
{
5,
- 2
- },
- {
- 5,
- 2
- },
- {
- 5,
- 2
- },
- {
- 5,
- 5
+ 1
},
{
5,
@@ -25882,16 +25870,36 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 5,
+ 4
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 3,
0
},
+ {
+ 5,
+ 1
+ },
{
5,
2
},
{
5,
- 3
+ 2
+ },
+ {
+ 5,
+ 4
},
{
5,
@@ -25899,18 +25907,10 @@ local chapter_board_bossrush = {
},
{
5,
- 5
+ 3
},
{
- 5,
- 1
- },
- {
- 5,
- 1
- },
- {
- 1,
+ 3,
0
},
{
@@ -25919,82 +25919,82 @@ local chapter_board_bossrush = {
},
{
21,
- 1
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
- },
- {
- 1,
- 0
- },
- {
- 21,
- 1
- },
- {
- 1,
- 0
- },
- {
- 14,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 37,
- 0
- },
- {
- 0,
3
},
{
- 1,
+ 3,
0
},
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 37,
- 0
- },
- {
- 0,
- 3
- },
{
0,
4
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 37,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 37,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
0
}
}
@@ -26010,20 +26010,20 @@ local chapter_board_bossrush = {
3
},
{
- 5,
- 1
- },
- {
- 5,
- 1
- },
- {
- 5,
- 1
+ 0,
+ 3
},
{
0,
- 5
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
},
{
37,
@@ -26042,7 +26042,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -26051,54 +26051,38 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 3
},
{
0,
+ 3
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
5
},
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
- {
- 5,
- 3
- },
{
5,
4
},
{
5,
- 5
+ 4
},
{
5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 21,
4
},
{
@@ -26113,32 +26097,48 @@ local chapter_board_bossrush = {
0,
0
},
- {
- 1,
- 0
- },
- {
- 21,
- 3
- },
- {
- 21,
- 3
- },
- {
- 1,
- 0
- },
{
21,
5
},
{
- 21,
- 5
+ 0,
+ 0
},
{
- 1,
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 3,
0
},
{
@@ -26202,16 +26202,44 @@ local chapter_board_bossrush = {
[132]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -26219,71 +26247,51 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
- 0,
- 3
- },
- {
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
4
},
{
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 1,
- 0
+ 5,
+ 4
},
{
5,
@@ -26295,35 +26303,27 @@ local chapter_board_bossrush = {
},
{
5,
- 4
+ 2
},
{
5,
- 4
+ 2
},
{
5,
3
},
{
- 5,
- 3
- },
- {
- 5,
- 1
- },
- {
- 1,
+ 3,
0
},
{
21,
- 3
+ 2
},
{
5,
- 4
+ 5
},
{
37,
@@ -26331,70 +26331,70 @@ local chapter_board_bossrush = {
},
{
5,
- 3
+ 2
},
{
21,
- 3
+ 2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
5,
- 4
+ 5
},
{
- 14,
+ 3,
0
},
{
5,
- 3
+ 2
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
0,
0
},
- {
- 5,
- 4
- },
{
5,
5
},
{
5,
- 3
+ 4
+ },
+ {
+ 5,
+ 2
},
{
0,
0
},
{
- 1,
+ 3,
0
}
}
@@ -26402,13 +26402,9 @@ local chapter_board_bossrush = {
[133]={
["board"]={
{
- 1,
+ 3,
0
},
- {
- 0,
- 2
- },
{
0,
3
@@ -26426,13 +26422,21 @@ local chapter_board_bossrush = {
1
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
+ {
+ 0,
+ 3
+ },
{
0,
1
@@ -26443,28 +26447,16 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
0,
- 4
+ 5
},
{
- 0,
- 4
- },
- {
- 1,
+ 3,
0
},
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
{
0,
3
@@ -26475,23 +26467,31 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 2
},
{
0,
- 4
+ 2
},
{
- 1,
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
},
{
5,
- 1
+ 3
},
{
37,
@@ -26499,22 +26499,50 @@ local chapter_board_bossrush = {
},
{
5,
- 5
+ 4
},
{
5,
- 5
+ 4
},
{
5,
- 5
+ 4
},
{
37,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
0
},
{
@@ -26522,79 +26550,51 @@ local chapter_board_bossrush = {
1
},
{
- 5,
- 3
+ 3,
+ 0
},
{
5,
- 3
- },
- {
- 21,
5
},
{
- 5,
- 3
- },
- {
- 1,
- 0
- },
- {
- 1,
- 0
+ 21,
+ 4
},
{
5,
2
},
- {
- 14,
- 0
- },
- {
- 5,
- 4
- },
{
21,
5
},
- {
- 5,
- 3
- },
- {
- 21,
- 4
- },
{
37,
0
},
{
5,
- 2
+ 1
},
{
- 1,
+ 3,
0
},
{
5,
- 4
+ 5
},
{
5,
- 2
+ 1
},
{
5,
- 2
+ 1
},
{
- 1,
+ 3,
0
}
}
@@ -26602,36 +26602,36 @@ local chapter_board_bossrush = {
[134]={
["board"]={
{
- 1,
- 0
+ 0,
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
- 1,
- 0
+ 0,
+ 1
},
{
- 1,
- 0
+ 0,
+ 3
},
{
37,
@@ -26639,22 +26639,74 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
37,
0
},
{
- 14,
+ 0,
+ 3
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 2
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 5
+ },
+ {
+ 5,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
0
},
{
@@ -26662,13 +26714,45 @@ local chapter_board_bossrush = {
3
},
{
- 5,
- 3
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
},
{
5,
3
},
+ {
+ 3,
+ 0
+ },
+ {
+ 5,
+ 1
+ },
+ {
+ 5,
+ 1
+ },
{
5,
4
@@ -26682,101 +26766,9 @@ local chapter_board_bossrush = {
4
},
{
- 5,
- 1
- },
- {
- 0,
+ 3,
0
},
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 5,
- 1
- },
- {
- 1,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 5,
- 1
- },
- {
- 1,
- 0
- },
- {
- 5,
- 2
- },
- {
- 5,
- 2
- },
- {
- 5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 5,
- 5
- },
- {
- 1,
- 0
- },
- {
- 21,
- 2
- },
- {
- 21,
- 2
- },
{
21,
1
@@ -26787,14 +26779,22 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 3
},
{
- 1,
+ 21,
+ 3
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 3,
0
},
{
- 1,
+ 3,
0
}
}
@@ -26831,7 +26831,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -26841,110 +26849,102 @@ local chapter_board_bossrush = {
0,
4
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 21,
+ 4
+ },
{
0,
1
},
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
{
0,
1
},
{
- 0,
- 3
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
+ 21,
+ 4
},
{
21,
- 3
- },
- {
- 0,
2
},
- {
- 0,
- 2
- },
- {
- 21,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 2
- },
- {
- 21,
- 5
- },
- {
- 21,
- 3
- },
{
37,
0
@@ -26967,7 +26967,7 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
2,
@@ -27003,11 +27003,31 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -27023,44 +27043,96 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 2
},
{
0,
- 4
+ 5
},
{
0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 21,
1
},
{
0,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 21,
1
},
{
- 0,
+ 21,
1
},
{
- 0,
- 3
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
},
{
0,
4
},
{
- 0,
- 4
+ 2,
+ 0
},
{
0,
4
},
- {
- 1,
- 0
- },
{
2,
0
@@ -27078,87 +27150,15 @@ local chapter_board_bossrush = {
0
},
{
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 21,
- 2
- },
- {
- 21,
- 2
- },
- {
- 0,
- 5
- },
- {
- 14,
+ 3,
0
},
{
0,
- 5
+ 4
},
{
- 21,
- 2
- },
- {
- 21,
- 2
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 5
- },
- {
- 2,
- 0
- },
- {
- 0,
- 5
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
- },
- {
- 1,
+ 3,
0
},
{
@@ -27178,7 +27178,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -27186,8 +27186,8 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 2
+ 3,
+ 1
},
{
2,
@@ -27203,15 +27203,7 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
+ 1
},
{
0,
@@ -27223,14 +27215,10 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
},
{
- 0,
- 2
- },
- {
- 1,
+ 2,
0
},
{
@@ -27239,7 +27227,15 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
},
{
0,
@@ -27247,112 +27243,116 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
},
{
0,
2
},
{
- 1,
+ 0,
+ 1
+ },
+ {
+ 3,
0
},
{
21,
- 5
- },
- {
- 2,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 2
- },
- {
- 2,
- 0
- },
- {
- 21,
- 5
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 14,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 21,
- 5
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 21,
- 5
- },
- {
- 1,
- 0
- },
- {
- 0,
4
},
{
2,
0
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
{
37,
0
@@ -27363,31 +27363,23 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
- 1,
+ 3,
0
},
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
{
0,
5
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -27395,7 +27387,15 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
}
}
},
@@ -27403,166 +27403,70 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
2,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 3,
- 0
- },
- {
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 1,
- 0
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 1
- },
- {
- 14,
- 0
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
+ 4
},
{
0,
4
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 3,
0
},
{
3,
0
},
+ {
+ 0,
+ 3
+ },
{
0,
1
},
+ {
+ 0,
+ 3
+ },
{
3,
0
},
{
- 1,
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
1
},
{
@@ -27571,7 +27475,103 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
},
{
37,
@@ -27579,7 +27579,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
3,
@@ -27587,7 +27587,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
37,
@@ -27595,7 +27595,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
}
}
},
@@ -27607,7 +27607,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
2,
@@ -27623,7 +27623,23 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
},
{
2,
@@ -27633,10 +27649,34 @@ local chapter_board_bossrush = {
0,
1
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
{
3,
0
},
+ {
+ 2,
+ 0
+ },
{
0,
1
@@ -27645,48 +27685,20 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 0,
- 2
- },
{
3,
0
},
- {
- 0,
- 2
- },
{
2,
0
},
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
{
2,
0
},
{
- 0,
- 2
- },
- {
- 2,
- 0
- },
- {
- 1,
+ 3,
0
},
{
@@ -27698,37 +27710,53 @@ local chapter_board_bossrush = {
0
},
{
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
+ 3,
0
},
{
21,
- 3
+ 2
},
{
2,
0
},
+ {
+ 0,
+ 1
+ },
{
0,
2
},
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 4
+ },
+ {
+ 21,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
{
0,
3
},
+ {
+ 37,
+ 0
+ },
{
0,
4
@@ -27739,38 +27767,10 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
- 21,
- 3
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 37,
- 0
- },
- {
- 0,
- 5
- },
- {
- 2,
- 0
- },
- {
- 21,
- 5
- },
- {
- 1,
+ 3,
0
},
{
@@ -27782,7 +27782,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
},
{
@@ -27794,13 +27794,21 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
}
}
},
[140]={
["board"]={
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
{
2,
0
@@ -27813,6 +27821,14 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
{
0,
4
@@ -27823,7 +27839,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 4
},
{
2,
@@ -27831,7 +27847,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 3
},
{
2,
@@ -27839,34 +27855,10 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 3
},
{
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 14,
- 0
- },
- {
- 0,
- 5
- },
- {
- 1,
+ 3,
0
},
{
@@ -27874,15 +27866,7 @@ local chapter_board_bossrush = {
4
},
{
- 1,
- 0
- },
- {
- 0,
- 1
- },
- {
- 14,
+ 3,
0
},
{
@@ -27890,12 +27874,20 @@ local chapter_board_bossrush = {
5
},
{
- 2,
+ 3,
0
},
{
0,
- 5
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 4
},
{
2,
@@ -27903,6 +27895,30 @@ local chapter_board_bossrush = {
},
{
0,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
1
},
{
@@ -27910,11 +27926,19 @@ local chapter_board_bossrush = {
0
},
{
- 0,
+ 21,
1
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 3,
0
},
{
@@ -27937,54 +27961,6 @@ local chapter_board_bossrush = {
21,
2
},
- {
- 1,
- 0
- },
- {
- 21,
- 3
- },
- {
- 2,
- 0
- },
- {
- 21,
- 3
- },
- {
- 2,
- 0
- },
- {
- 21,
- 3
- },
- {
- 2,
- 0
- },
- {
- 21,
- 3
- },
- {
- 2,
- 0
- },
- {
- 21,
- 2
- },
- {
- 2,
- 0
- },
- {
- 21,
- 2
- },
{
2,
0
@@ -27993,6 +27969,30 @@ local chapter_board_bossrush = {
21,
2
},
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
{
2,
0
@@ -28003,19 +28003,7 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 1,
- 0
+ 3
},
{
0,
@@ -28023,115 +28011,27 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 1
+ 3
},
{
3,
0
},
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 2
- },
- {
- 0,
- 1
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 1,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 2
- },
{
0,
3
},
{
0,
- 4
- },
- {
- 14,
- 0
+ 1
},
{
0,
- 2
+ 3
+ },
+ {
+ 3,
+ 0
},
{
0,
@@ -28139,27 +28039,127 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 1
+ },
+ {
+ 0,
+ 3
},
{
0,
1
},
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
{
37,
0
},
{
0,
- 5
+ 4
},
{
21,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
37,
@@ -28167,7 +28167,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
},
{
2,
@@ -28182,7 +28182,7 @@ local chapter_board_bossrush = {
0
},
{
- 1,
+ 3,
0
},
{
@@ -28203,147 +28203,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 37,
- 0
- },
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 21,
- 2
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 21,
3
},
- {
- 2,
- 0
- },
{
0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 14,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 0
- },
- {
- 2,
- 0
- },
- {
- 21,
- 2
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 21,
3
},
- {
- 2,
- 0
- },
{
0,
- 0
+ 3
},
{
2,
@@ -28353,6 +28221,26 @@ local chapter_board_bossrush = {
0,
5
},
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
{
37,
0
@@ -28367,6 +28255,22 @@ local chapter_board_bossrush = {
},
{
0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
0
},
{
@@ -28381,6 +28285,46 @@ local chapter_board_bossrush = {
2,
0
},
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
{
2,
0
@@ -28391,7 +28335,63 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 37,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 21,
+ 2
},
{
2,
@@ -28403,7 +28403,23 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 1
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
},
{
2,
@@ -28415,30 +28431,6 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 0
- },
- {
- 0,
- 1
- },
- {
- 2,
0
},
{
@@ -28451,23 +28443,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 1
+ 2
},
{
2,
@@ -28475,7 +28451,31 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
},
{
0,
@@ -28499,7 +28499,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
@@ -28545,6 +28545,22 @@ local chapter_board_bossrush = {
0,
0
},
+ {
+ 21,
+ 4
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
21,
5
@@ -28554,20 +28570,20 @@ local chapter_board_bossrush = {
0
},
{
- 14,
- 0
- },
- {
- 0,
- 0
+ 21,
+ 4
},
{
21,
4
},
{
- 0,
- 0
+ 21,
+ 4
+ },
+ {
+ 21,
+ 3
},
{
21,
@@ -28580,22 +28596,6 @@ local chapter_board_bossrush = {
{
21,
5
- },
- {
- 21,
- 1
- },
- {
- 21,
- 4
- },
- {
- 21,
- 4
- },
- {
- 21,
- 4
}
},
["grid_edge"]={
@@ -28669,12 +28669,60 @@ local chapter_board_bossrush = {
[144]={
["board"]={
{
- 1,
+ 3,
0
},
{
0,
- 5
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
},
{
0,
@@ -28686,23 +28734,7 @@ local chapter_board_bossrush = {
},
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 1,
- 0
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
+ 1
},
{
0,
@@ -28714,15 +28746,11 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 1
},
{
0,
- 3
- },
- {
- 0,
- 3
+ 5
},
{
0,
@@ -28730,11 +28758,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 2
+ 1
},
{
0,
@@ -28742,11 +28766,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 2
+ 4
},
{
0,
@@ -28754,7 +28774,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 1
},
{
0,
@@ -28766,19 +28786,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
- },
- {
- 0,
- 3
+ 1
},
{
0,
@@ -28786,83 +28794,75 @@ local chapter_board_bossrush = {
},
{
0,
- 2
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 2
+ 4
},
{
0,
4
},
{
- 21,
+ 0,
+ 1
+ },
+ {
+ 0,
5
},
{
21,
- 2
+ 4
},
{
21,
- 2
+ 1
},
{
- 14,
+ 21,
+ 1
+ },
+ {
+ 3,
0
},
- {
- 21,
- 5
- },
- {
- 21,
- 2
- },
- {
- 21,
- 3
- },
{
21,
4
},
{
21,
- 2
+ 1
},
{
- 1,
- 0
+ 21,
+ 2
},
{
21,
5
},
{
- 1,
+ 21,
+ 1
+ },
+ {
+ 3,
0
},
{
21,
- 2
+ 4
+ },
+ {
+ 3,
+ 0
},
{
21,
- 4
+ 1
+ },
+ {
+ 21,
+ 5
}
},
["grid_edge"]={
@@ -29003,17 +29003,17 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 0,
- 3
- },
{
0,
2
},
{
0,
- 3
+ 1
+ },
+ {
+ 0,
+ 2
},
{
2,
@@ -29033,11 +29033,31 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
0,
- 4
+ 5
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
},
{
0,
@@ -29045,7 +29065,11 @@ local chapter_board_bossrush = {
},
{
0,
- 0
+ 3
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -29059,17 +29083,25 @@ local chapter_board_bossrush = {
0,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 21,
+ 1
+ },
{
0,
2
},
{
0,
- 1
- },
- {
- 0,
- 4
+ 2
},
{
0,
@@ -29077,15 +29109,7 @@ local chapter_board_bossrush = {
},
{
0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 1
+ 3
},
{
0,
@@ -29095,14 +29119,54 @@ local chapter_board_bossrush = {
21,
2
},
+ {
+ 3,
+ 0
+ },
+ {
+ 21,
+ 1
+ },
+ {
+ 0,
+ 2
+ },
{
0,
3
},
{
0,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 21,
3
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
{
0,
0
@@ -29111,78 +29175,14 @@ local chapter_board_bossrush = {
0,
1
},
- {
- 0,
- 2
- },
- {
- 21,
- 3
- },
- {
- 14,
- 0
- },
- {
- 21,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 1
- },
- {
- 0,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 2
- },
{
21,
1
},
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
{
0,
2
},
- {
- 21,
- 2
- },
- {
- 0,
- 3
- },
{
0,
0
@@ -29319,27 +29319,23 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 3
- },
- {
- 0,
- 4
+ 2
},
{
0,
5
},
{
- 1,
+ 0,
+ 4
+ },
+ {
+ 3,
0
},
{
0,
- 2
- },
- {
- 0,
- 3
+ 1
},
{
0,
@@ -29347,32 +29343,24 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 1
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
+ },
+ {
+ 0,
+ 5
},
{
2,
0
},
- {
- 0,
- 2
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
{
0,
1
@@ -29386,8 +29374,8 @@ local chapter_board_bossrush = {
2
},
{
- 2,
- 0
+ 0,
+ 3
},
{
0,
@@ -29395,11 +29383,7 @@ local chapter_board_bossrush = {
},
{
0,
- 4
- },
- {
- 0,
- 3
+ 1
},
{
2,
@@ -29407,7 +29391,11 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 3
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -29431,24 +29419,36 @@ local chapter_board_bossrush = {
},
{
0,
- 0
- },
- {
- 2,
- 0
+ 3
},
{
0,
3
},
{
- 1,
+ 2,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 2,
0
},
{
0,
2
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
{
2,
0
@@ -29471,7 +29471,7 @@ local chapter_board_bossrush = {
},
{
0,
- 2
+ 1
},
{
2,
@@ -29485,33 +29485,33 @@ local chapter_board_bossrush = {
0,
0
},
+ {
+ 21,
+ 1
+ },
{
21,
2
},
{
21,
- 3
+ 5
},
{
- 21,
- 4
- },
- {
- 14,
+ 3,
0
},
{
21,
- 4
- },
- {
- 21,
- 3
+ 5
},
{
21,
2
+ },
+ {
+ 21,
+ 1
}
},
["grid_edge"]={
@@ -29579,6 +29579,22 @@ local chapter_board_bossrush = {
},
[147]={
["board"]={
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
{
2,
0
@@ -29591,38 +29607,30 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 2,
- 0
- },
- {
- 0,
- 2
- },
{
0,
1
},
{
0,
- 1
+ 3
+ },
+ {
+ 0,
+ 3
},
{
2,
0
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 1
+ },
{
0,
1
@@ -29631,6 +29639,18 @@ local chapter_board_bossrush = {
0,
2
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 2,
+ 0
+ },
{
0,
2
@@ -29641,56 +29661,36 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
3
},
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
{
2,
0
},
{
0,
- 3
+ 2
},
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
+ 5
},
{
0,
3
},
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
{
0,
0
@@ -29701,7 +29701,7 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
},
{
3,
@@ -29709,7 +29709,7 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
},
{
0,
@@ -29729,15 +29729,15 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
},
{
- 14,
+ 3,
0
},
{
21,
- 3
+ 2
},
{
0,
@@ -29757,15 +29757,15 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
},
{
21,
- 3
+ 2
},
{
21,
- 3
+ 2
},
{
0,
@@ -29822,43 +29822,39 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 4
+ 5
},
{
0,
- 1
+ 3
},
{
7,
0
},
+ {
+ 0,
+ 2
+ },
{
0,
3
},
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
+ 3
},
{
0,
@@ -29870,19 +29866,11 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
+ 2
},
{
0,
@@ -29890,7 +29878,23 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
},
{
0,
@@ -29898,15 +29902,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 5
},
{
0,
- 4
- },
- {
- 0,
- 4
+ 5
},
{
7,
@@ -29922,11 +29922,11 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 2
},
{
0,
- 3
+ 2
},
{
0,
@@ -29958,7 +29958,7 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
0,
@@ -29982,22 +29982,22 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
21,
- 5
+ 4
},
{
21,
- 5
+ 4
},
{
0,
0
},
{
- 14,
+ 3,
0
},
{
@@ -30006,11 +30006,11 @@ local chapter_board_bossrush = {
},
{
21,
- 5
+ 4
},
{
21,
- 5
+ 4
}
},
["grid_edge"]={
@@ -30073,6 +30073,34 @@ local chapter_board_bossrush = {
},
[149]={
["board"]={
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
{
0,
5
@@ -30085,30 +30113,10 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
{
0,
5
},
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
{
2,
0
@@ -30117,13 +30125,9 @@ local chapter_board_bossrush = {
0,
4
},
- {
- 2,
- 0
- },
{
0,
- 5
+ 2
},
{
0,
@@ -30133,6 +30137,38 @@ local chapter_board_bossrush = {
0,
1
},
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
{
0,
2
@@ -30141,54 +30177,26 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
{
0,
5
},
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 0,
- 3
- },
- {
- 2,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
{
0,
2
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 2,
+ 0
+ },
{
0,
2
@@ -30201,49 +30209,41 @@ local chapter_board_bossrush = {
0,
3
},
- {
- 2,
- 0
- },
{
0,
- 1
- },
- {
- 0,
- 1
+ 3
},
{
3,
0
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 5
+ },
{
0,
2
},
{
0,
- 4
+ 5
},
{
0,
3
},
- {
- 0,
- 4
- },
- {
- 0,
- 1
- },
{
3,
0
},
{
21,
- 2
+ 1
},
{
2,
@@ -30251,15 +30251,15 @@ local chapter_board_bossrush = {
},
{
0,
- 4
+ 5
},
{
- 14,
+ 3,
0
},
{
0,
- 4
+ 5
},
{
2,
@@ -30267,7 +30267,7 @@ local chapter_board_bossrush = {
},
{
21,
- 2
+ 1
}
},
["grid_edge"]={
@@ -30347,56 +30347,24 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 2
+ 1
},
{
0,
- 2
+ 1
},
{
3,
0
},
- {
- 14,
- 0
- },
{
3,
0
},
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
{
3,
0
},
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 0,
- 3
- },
{
0,
2
@@ -30411,20 +30379,32 @@ local chapter_board_bossrush = {
},
{
0,
- 3
+ 5
},
{
- 0,
- 3
- },
- {
- 0,
- 3
+ 3,
+ 0
},
{
0,
2
},
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
{
0,
4
@@ -30433,10 +30413,30 @@ local chapter_board_bossrush = {
0,
2
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 1
+ },
{
0,
5
},
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
{
2,
0
@@ -30451,6 +30451,58 @@ local chapter_board_bossrush = {
},
{
0,
+ 2
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 21,
+ 3
+ },
+ {
+ 21,
3
},
{
@@ -30467,79 +30519,27 @@ local chapter_board_bossrush = {
},
{
0,
- 0
+ 5
},
{
- 0,
- 0
+ 21,
+ 3
},
{
- 0,
- 0
+ 21,
+ 3
},
{
- 0,
+ 21,
3
},
{
0,
- 4
+ 2
},
{
0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 21,
- 1
- },
- {
- 21,
- 1
- },
- {
- 21,
- 1
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 3
- },
- {
- 0,
- 4
- },
- {
- 21,
- 1
- },
- {
- 21,
- 1
- },
- {
- 21,
- 1
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 2
}
},
["grid_edge"]={
@@ -30619,15 +30619,15 @@ local chapter_board_bossrush = {
["board"]={
{
0,
- 4
+ 5
},
{
0,
- 1
+ 3
},
{
0,
- 1
+ 3
},
{
3,
@@ -30635,23 +30635,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 1
+ 3
},
{
0,
@@ -30659,7 +30643,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 5
+ },
+ {
+ 0,
+ 5
},
{
0,
@@ -30667,23 +30655,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
- },
- {
- 0,
- 4
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 1
+ 2
},
{
0,
@@ -30691,7 +30663,35 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 3
},
{
2,
@@ -30715,7 +30715,7 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
2,
@@ -30787,18 +30787,18 @@ local chapter_board_bossrush = {
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
},
{
2,
0
},
{
- 14,
+ 3,
0
},
{
@@ -30807,11 +30807,11 @@ local chapter_board_bossrush = {
},
{
21,
- 4
+ 5
},
{
21,
- 4
+ 5
}
},
["grid_edge"]={
@@ -30935,15 +30935,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 5
- },
- {
- 0,
- 1
+ 4
},
{
0,
@@ -30951,7 +30947,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 2
+ },
+ {
+ 0,
+ 3
},
{
3,
@@ -30959,11 +30959,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 3
},
{
0,
- 5
+ 4
},
{
2,
@@ -30977,14 +30977,6 @@ local chapter_board_bossrush = {
2,
0
},
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
{
0,
3
@@ -30993,12 +30985,20 @@ local chapter_board_bossrush = {
0,
3
},
+ {
+ 0,
+ 2
+ },
+ {
+ 0,
+ 2
+ },
{
2,
0
},
{
- 14,
+ 3,
0
},
{
@@ -31007,7 +31007,35 @@ local chapter_board_bossrush = {
},
{
0,
- 5
+ 4
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 2,
+ 0
+ },
+ {
+ 0,
+ 4
},
{
0,
@@ -31019,23 +31047,7 @@ local chapter_board_bossrush = {
},
{
0,
- 5
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 2,
- 0
- },
- {
- 0,
- 5
+ 2
},
{
0,
@@ -31051,23 +31063,11 @@ local chapter_board_bossrush = {
},
{
0,
- 1
+ 4
},
{
0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 5
- },
- {
- 0,
- 3
+ 2
},
{
3,
@@ -31103,7 +31103,7 @@ local chapter_board_bossrush = {
},
{
21,
- 2
+ 1
},
{
3,
@@ -31111,7 +31111,7 @@ local chapter_board_bossrush = {
},
{
21,
- 2
+ 1
},
{
3,
@@ -31119,7 +31119,7 @@ local chapter_board_bossrush = {
},
{
21,
- 2
+ 1
},
{
3,
@@ -31179,6 +31179,10 @@ local chapter_board_bossrush = {
3,
0
},
+ {
+ 0,
+ 1
+ },
{
0,
2
@@ -31187,30 +31191,42 @@ local chapter_board_bossrush = {
0,
3
},
+ {
+ 0,
+ 5
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
{
0,
1
},
{
0,
- 4
+ 1
+ },
+ {
+ 0,
+ 1
},
{
3,
0
},
- {
- 3,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
{
0,
2
@@ -31223,25 +31239,9 @@ local chapter_board_bossrush = {
0,
2
},
- {
- 3,
- 0
- },
{
0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
+ 2
},
{
3,
@@ -31277,7 +31277,7 @@ local chapter_board_bossrush = {
},
{
21,
- 1
+ 3
},
{
3,
@@ -31364,7 +31364,7 @@ local chapter_board_bossrush = {
0
},
{
- 14,
+ 3,
0
}
},
@@ -31421,118 +31421,6 @@ local chapter_board_bossrush = {
3,
0
},
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 0,
- 3
- },
- {
- 3,
- 0
- },
- {
- 3,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 4
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 5
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 1
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
- {
- 0,
- 0
- },
{
0,
2
@@ -31545,6 +31433,118 @@ local chapter_board_bossrush = {
0,
2
},
+ {
+ 3,
+ 0
+ },
+ {
+ 3,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 5
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 4
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 3
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 0
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
+ {
+ 0,
+ 1
+ },
{
0,
0
@@ -31587,23 +31587,23 @@ local chapter_board_bossrush = {
},
{
21,
- 3
+ 2
},
{
21,
- 3
+ 2
},
{
- 14,
+ 3,
0
},
{
21,
- 3
+ 2
},
{
21,
- 3
+ 2
},
{
3,
diff --git a/lua/app/config/const.lua b/lua/app/config/const.lua
index 2a438c42..19d3ae20 100644
--- a/lua/app/config/const.lua
+++ b/lua/app/config/const.lua
@@ -405,9 +405,12 @@ local const = {
},
["activity_boss_rush_atk_add"]={
["value"]=100
+ },
+ ["activity_recurring_day"]={
+ ["value"]=15
}
}
local config = {
-data=const,count=82
+data=const,count=83
}
return config
\ No newline at end of file
diff --git a/lua/app/config/item.lua b/lua/app/config/item.lua
index 10114ac2..49db49f9 100644
--- a/lua/app/config/item.lua
+++ b/lua/app/config/item.lua
@@ -1560,6 +1560,16 @@ local item = {
["qlt"]=4,
["icon"]="52"
},
+ [53]={
+ ["type"]=10,
+ ["qlt"]=4,
+ ["icon"]="53"
+ },
+ [54]={
+ ["type"]=10,
+ ["qlt"]=5,
+ ["icon"]="54"
+ },
[1001]={
["type"]=2,
["qlt"]=1,
@@ -2388,6 +2398,6 @@ local item = {
}
}
local config = {
-data=item,count=114
+data=item,count=116
}
return config
\ No newline at end of file
diff --git a/lua/app/config/localization/localization_global_const.lua b/lua/app/config/localization/localization_global_const.lua
index 11a12f58..f6f3e7ac 100644
--- a/lua/app/config/localization/localization_global_const.lua
+++ b/lua/app/config/localization/localization_global_const.lua
@@ -461,8 +461,8 @@ local LocalizationGlobalConst =
ARENA_DESC_40 = "ARENA_DESC_40",
ARENA_DESC_41 = "ARENA_DESC_41",
ARENA_DESC_42 = "ARENA_DESC_42",
- EQUIP_DESC_26 = "EQUIP_DESC_26",
EQUIP_DESC_27 = "EQUIP_DESC_27",
+ EQUIP_DESC_28 = "EQUIP_DESC_28",
SEIZED_DESC_1 = "SEIZED_DESC_1",
SEIZED_DESC_2 = "SEIZED_DESC_2",
SEIZED_DESC_3 = "SEIZED_DESC_3",
@@ -478,6 +478,39 @@ local LocalizationGlobalConst =
ACT_FOURTEEN_DESC_7 = "ACT_FOURTEEN_DESC_7",
ACT_FOURTEEN_DESC_8 = "ACT_FOURTEEN_DESC_8",
ACT_FOURTEEN_DESC_9 = "ACT_FOURTEEN_DESC_9",
+ ACT_BOSS_RUSH_DESC_1 = "ACT_BOSS_RUSH_DESC_1",
+ ACT_BOSS_RUSH_DESC_2 = "ACT_BOSS_RUSH_DESC_2",
+ ACT_BOSS_RUSH_DESC_3 = "ACT_BOSS_RUSH_DESC_3",
+ ACT_BOSS_RUSH_DESC_4 = "ACT_BOSS_RUSH_DESC_4",
+ ACT_BOSS_RUSH_DESC_5 = "ACT_BOSS_RUSH_DESC_5",
+ ACT_BOSS_RUSH_DESC_6 = "ACT_BOSS_RUSH_DESC_6",
+ ACT_BOSS_RUSH_DESC_7 = "ACT_BOSS_RUSH_DESC_7",
+ ACT_BOSS_RUSH_DESC_8 = "ACT_BOSS_RUSH_DESC_8",
+ ACT_BOSS_RUSH_DESC_9 = "ACT_BOSS_RUSH_DESC_9",
+ ACT_BOSS_RUSH_DESC_10 = "ACT_BOSS_RUSH_DESC_10",
+ ACT_BOSS_RUSH_DESC_11 = "ACT_BOSS_RUSH_DESC_11",
+ ACT_BOSS_RUSH_DESC_12 = "ACT_BOSS_RUSH_DESC_12",
+ ACT_BOSS_RUSH_DESC_13 = "ACT_BOSS_RUSH_DESC_13",
+ ACT_BOSS_RUSH_DESC_14 = "ACT_BOSS_RUSH_DESC_14",
+ ACT_BOSS_RUSH_DESC_15 = "ACT_BOSS_RUSH_DESC_15",
+ ACT_BOSS_RUSH_DESC_16 = "ACT_BOSS_RUSH_DESC_16",
+ ACT_BOSS_RUSH_DESC_17 = "ACT_BOSS_RUSH_DESC_17",
+ ACT_BOSS_RUSH_DESC_18 = "ACT_BOSS_RUSH_DESC_18",
+ ACT_BOSS_RUSH_DESC_19 = "ACT_BOSS_RUSH_DESC_19",
+ ACT_BOSS_RUSH_DESC_20 = "ACT_BOSS_RUSH_DESC_20",
+ ACT_BOSS_RUSH_DESC_21 = "ACT_BOSS_RUSH_DESC_21",
+ ACT_BOSS_RUSH_DESC_22 = "ACT_BOSS_RUSH_DESC_22",
+ ACT_BOSS_RUSH_DESC_23 = "ACT_BOSS_RUSH_DESC_23",
+ ACT_BOSS_RUSH_DESC_24 = "ACT_BOSS_RUSH_DESC_24",
+ ACT_BOSS_RUSH_DESC_25 = "ACT_BOSS_RUSH_DESC_25",
+ ACT_BOSS_RUSH_DESC_26 = "ACT_BOSS_RUSH_DESC_26",
+ ACT_BOSS_RUSH_DESC_27 = "ACT_BOSS_RUSH_DESC_27",
+ ACT_BOSS_RUSH_DESC_28 = "ACT_BOSS_RUSH_DESC_28",
+ ACT_BOSS_RUSH_DESC_29 = "ACT_BOSS_RUSH_DESC_29",
+ ACT_BOSS_RUSH_DESC_30 = "ACT_BOSS_RUSH_DESC_30",
+ ACT_BOSS_RUSH_DESC_31 = "ACT_BOSS_RUSH_DESC_31",
+ ACT_BOSS_RUSH_DESC_32 = "ACT_BOSS_RUSH_DESC_32",
+ ACT_BOSS_RUSH_DESC_33 = "ACT_BOSS_RUSH_DESC_33",
}
return LocalizationGlobalConst
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/avatar.lua b/lua/app/config/strings/cn/avatar.lua
index 7e5b67a3..d10a6a1e 100644
--- a/lua/app/config/strings/cn/avatar.lua
+++ b/lua/app/config/strings/cn/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="激活刀姬翩然起舞皮肤获得。"
+ },
+ [1400101]={
+ ["desc"]="遗迹战甲"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/avatar_frame.lua b/lua/app/config/strings/cn/avatar_frame.lua
index 9f6c5019..3d34ff77 100644
--- a/lua/app/config/strings/cn/avatar_frame.lua
+++ b/lua/app/config/strings/cn/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="S2竞技场黄金头像框,英雄的光辉。"
+ },
+ [28]={
+ ["desc"]="S3竞技场白银头像,勇气的代表。"
+ },
+ [29]={
+ ["desc"]="S3竞技场黄金头像,实力的证明。"
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/buff.lua b/lua/app/config/strings/cn/buff.lua
index 433a76e5..f535d32e 100644
--- a/lua/app/config/strings/cn/buff.lua
+++ b/lua/app/config/strings/cn/buff.lua
@@ -225,18 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="重生",
["desc"]="重生:持续期间被击败则会触发重生并恢复生命,回合结束时未触发重生也会恢复生命。",
["tips_desc"]="重生:持续期间被击败则会触发重生并恢复生命,回合结束时未触发重生也会恢复生命。",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="海洋护盾",
["desc"]="海洋护盾:承受一定伤害,免疫所有负面效果。",
+ ["tips_desc"]="海洋护盾:承受一定伤害,免疫所有负面效果。",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="自愈",
["desc"]="自愈:回合结束时恢复生命。",
+ ["tips_desc"]="自愈:回合结束时恢复生命。",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua
index 166322f4..14028b13 100644
--- a/lua/app/config/strings/cn/global.lua
+++ b/lua/app/config/strings/cn/global.lua
@@ -461,8 +461,8 @@ local localization_global =
["ARENA_DESC_40"] = "升段奖励",
["ARENA_DESC_41"] = "结算奖励",
["ARENA_DESC_42"] = "未领取奖励",
- ["EQUIP_DESC_26"] = "武器直升{0}级礼包",
["EQUIP_DESC_27"] = "防具直升{0}级礼包",
+ ["EQUIP_DESC_28"] = "武器直升{0}级礼包",
["SEIZED_DESC_1"] = "检测到你的账号存在异常,请联系客服或删除账号使用新建账号继续游戏。",
["SEIZED_DESC_2"] = "联系客服",
["SEIZED_DESC_3"] = "删除账号",
@@ -478,6 +478,39 @@ local localization_global =
["ACT_FOURTEEN_DESC_7"] = "尚未解锁,请明日再来~",
["ACT_FOURTEEN_DESC_8"] = "完成当前阶段所有任务可获得:",
["ACT_FOURTEEN_DESC_9"] = "活动期间,每完成1个任务可获得100个【挑战点】",
+ ["ACT_BOSS_RUSH_DESC_1"] = "是否消耗{0}钻石战斗?",
+ ["ACT_BOSS_RUSH_DESC_2"] = "首领公开赛",
+ ["ACT_BOSS_RUSH_DESC_3"] = "今日高手",
+ ["ACT_BOSS_RUSH_DESC_4"] = "我今日最高:",
+ ["ACT_BOSS_RUSH_DESC_5"] = "我今日挑战:{0}次",
+ ["ACT_BOSS_RUSH_DESC_6"] = "今日剩余免费挑战次数:{0}",
+ ["ACT_BOSS_RUSH_DESC_7"] = "消耗:",
+ ["ACT_BOSS_RUSH_DESC_8"] = "虚位以待",
+ ["ACT_BOSS_RUSH_DESC_9"] = "参赛阵容",
+ ["ACT_BOSS_RUSH_DESC_10"] = "排行榜",
+ ["ACT_BOSS_RUSH_DESC_11"] = "首领巡礼",
+ ["ACT_BOSS_RUSH_DESC_12"] = "活动商店",
+ ["ACT_BOSS_RUSH_DESC_13"] = "首领公开赛弹窗描述",
+ ["ACT_BOSS_RUSH_DESC_14"] = "立即前往",
+ ["ACT_BOSS_RUSH_DESC_15"] = "首领巡礼",
+ ["ACT_BOSS_RUSH_DESC_16"] = "累计公开赛挑战波次,可领取首领巡礼奖励。",
+ ["ACT_BOSS_RUSH_DESC_17"] = "首领巡礼中获得【首领金币】兑换奖励,活动结束时【首领金币】奖杯回收,请尽快兑换。",
+ ["ACT_BOSS_RUSH_DESC_18"] = "兑换",
+ ["ACT_BOSS_RUSH_DESC_19"] = "剩余次数:{0}",
+ ["ACT_BOSS_RUSH_DESC_20"] = "昨日",
+ ["ACT_BOSS_RUSH_DESC_21"] = "今日",
+ ["ACT_BOSS_RUSH_DESC_22"] = "奖励",
+ ["ACT_BOSS_RUSH_DESC_23"] = "排名:{0}",
+ ["ACT_BOSS_RUSH_DESC_24"] = "排名",
+ ["ACT_BOSS_RUSH_DESC_25"] = "玩家",
+ ["ACT_BOSS_RUSH_DESC_26"] = "记录",
+ ["ACT_BOSS_RUSH_DESC_27"] = "1.排行榜将以当日最大波数进行排名,波数相同的玩家将对比最小回合数。\n2.排行榜每日0点(UTC-0)刷新重置,重置后可根据前一天的排名领取奖励,奖励过期未领将不会补发。",
+ ["ACT_BOSS_RUSH_DESC_28"] = "新纪录",
+ ["ACT_BOSS_RUSH_DESC_29"] = "巡回积分",
+ ["ACT_BOSS_RUSH_DESC_30"] = "挑战完成",
+ ["ACT_BOSS_RUSH_DESC_31"] = "1.首领出场顺序和地图每日都将进行变化。\n2.战斗开始后,您的英雄技能默认已激活,但强化技能还需要升级获得,战斗内最多提升60级。\n3.每日公开赛的排名都将结算一次,结算可获得大量【首领金币】,可用于活动商店兑换奖励。\n4.首领巡礼将根据您参与公开赛战斗的累计波次给与奖励。\n5.每日可免费挑战1次,后续挑战需要消耗钻石,请节准备好再开始挑战。",
+ ["ACT_BOSS_RUSH_DESC_32"] = "限时礼包,倾情回馈!",
+ ["ACT_BOSS_RUSH_DESC_33"] = "阶段{0}解锁",
}
return localization_global
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/item.lua b/lua/app/config/strings/cn/item.lua
index 2c058d38..fe447514 100644
--- a/lua/app/config/strings/cn/item.lua
+++ b/lua/app/config/strings/cn/item.lua
@@ -195,6 +195,14 @@ local item = {
["name"]="首领金币",
["desc"]="首领公开赛可以进行兑换。"
},
+ [53]={
+ ["name"]="S3赛季白银头像框",
+ ["desc"]="S3竞技场白银头像框,勇气的代表。"
+ },
+ [54]={
+ ["name"]="S3赛季黄金头像框",
+ ["desc"]="S3竞技场黄金头像框,实力的证明。"
+ },
[1001]={
["name"]="暗淡陨铁",
["desc"]="一块暗淡的陨铁,蕴含着神秘的能量。"
@@ -453,6 +461,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/task_type.lua b/lua/app/config/strings/cn/task_type.lua
index 2dc2d5cb..f7ad1c36 100644
--- a/lua/app/config/strings/cn/task_type.lua
+++ b/lua/app/config/strings/cn/task_type.lua
@@ -90,31 +90,31 @@ local task_type = {
["desc"]="竞技场挑战次数"
},
[31]={
- ["desc"]="竞技场段位达到X"
+ ["desc"]="竞技场段位达到{0}"
},
[32]={
- ["desc"]="深渊挑战 通关X"
+ ["desc"]="深渊挑战通关{0}"
},
[33]={
- ["desc"]="时空裂隙 通关X"
+ ["desc"]="时空裂隙通关{0}-{1}"
},
[34]={
- ["desc"]="矿车拦截 通关X"
+ ["desc"]="矿车拦截通关{0}"
},
[35]={
- ["desc"]="灯神之塔 通关X"
+ ["desc"]="灯神之塔通关{0}"
},
[36]={
- ["desc"]="每日挑战 胜利x次"
+ ["desc"]="每日挑战胜利{0}次"
},
[37]={
- ["desc"]="开启主线宝箱 x个"
+ ["desc"]="开启主线宝箱{0}个"
},
[38]={
- ["desc"]="武器升级 x次"
+ ["desc"]="武器升级{0}次"
},
[39]={
- ["desc"]="防具升级 x次"
+ ["desc"]="防具升级{0}次"
}
}
local config = {
diff --git a/lua/app/config/strings/de/avatar.lua b/lua/app/config/strings/de/avatar.lua
index 9e50f952..e55df79f 100644
--- a/lua/app/config/strings/de/avatar.lua
+++ b/lua/app/config/strings/de/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
+ },
+ [1400101]={
+
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/de/avatar_frame.lua b/lua/app/config/strings/de/avatar_frame.lua
index 924596db..43ceb019 100644
--- a/lua/app/config/strings/de/avatar_frame.lua
+++ b/lua/app/config/strings/de/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
+ },
+ [28]={
+
+ },
+ [29]={
+
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/de/item.lua b/lua/app/config/strings/de/item.lua
index b7138f5a..cdc4654a 100644
--- a/lua/app/config/strings/de/item.lua
+++ b/lua/app/config/strings/de/item.lua
@@ -145,6 +145,12 @@ local item = {
},
[52]={
+ },
+ [53]={
+
+ },
+ [54]={
+
},
[1001]={
@@ -340,6 +346,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/avatar.lua b/lua/app/config/strings/en/avatar.lua
index 6dc4d2d6..e390ea18 100644
--- a/lua/app/config/strings/en/avatar.lua
+++ b/lua/app/config/strings/en/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="Obtained after activating Graceful Dance."
+ },
+ [1400101]={
+ ["desc"]="Relic Armor"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/avatar_frame.lua b/lua/app/config/strings/en/avatar_frame.lua
index cd268d22..d7311d5f 100644
--- a/lua/app/config/strings/en/avatar_frame.lua
+++ b/lua/app/config/strings/en/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="S2 Gold Arena Avatar Frame, shining with heroic radiance."
+ },
+ [28]={
+ ["desc"]="S3 Silver Arena Avatar Frame. It is reversed for hero."
+ },
+ [29]={
+ ["desc"]="S3 Gold Arena Avatar Frame. Proof of your prowess."
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/buff.lua b/lua/app/config/strings/en/buff.lua
index a5adf638..ffe8b912 100644
--- a/lua/app/config/strings/en/buff.lua
+++ b/lua/app/config/strings/en/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="Rebirth",
+ ["desc"]="Rebirth: During the Rebirth, when you are defeated or the turn ends, it will trigger to restore HP.",
+ ["tips_desc"]="Rebirth: During the Rebirth, when you are defeated or the turn ends, it will trigger to restore HP.",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="Ocean Shield",
+ ["desc"]="Ocean Shield: Can take a certain amount of damage and stay immune to all debuffs.",
+ ["tips_desc"]="Ocean Shield: Can take a certain amount of damage and stay immune to all debuffs.",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="Self-healing",
+ ["desc"]="Self-healing: Restore HP at the end of the turn.",
+ ["tips_desc"]="Self-healing: Restore HP at the end of the turn.",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/en/global.lua b/lua/app/config/strings/en/global.lua
index 444267f4..32e874df 100644
--- a/lua/app/config/strings/en/global.lua
+++ b/lua/app/config/strings/en/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "Promotion Rewards",
["ARENA_DESC_41"] = "Settlement Rewards",
["ARENA_DESC_42"] = "Unclaimed Rewards",
- ["EQUIP_DESC_26"] = "Weapon Upgrade Lv.{0} Pack",
["EQUIP_DESC_27"] = "Armor Upgrade Lv.{0} Pack",
+ ["EQUIP_DESC_28"] = "Weapon Upgrade Lv.{0} Pack",
["SEIZED_DESC_1"] = "Detected abnormality on your account. Please contact customer service or delete the account and continue playing with a new account.",
["SEIZED_DESC_2"] = "Customer Service",
["SEIZED_DESC_3"] = "Delete Account",
diff --git a/lua/app/config/strings/en/item.lua b/lua/app/config/strings/en/item.lua
index 5f6283a6..a4f43c08 100644
--- a/lua/app/config/strings/en/item.lua
+++ b/lua/app/config/strings/en/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="S3 Silver Avatar Frame",
+ ["desc"]="S3 Silver Arena Avatar Frame. It is reversed for hero."
+ },
+ [54]={
+ ["name"]="S3 Gold Avatar Frame",
+ ["desc"]="S3 Gold Arena Avatar Frame. Proof of your prowess."
},
[1001]={
["name"]="Dim Meteorite",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/avatar.lua b/lua/app/config/strings/es/avatar.lua
index 88562730..0c6bc694 100644
--- a/lua/app/config/strings/es/avatar.lua
+++ b/lua/app/config/strings/es/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="Se obtiene tras activar Danza Elegante."
+ },
+ [1400101]={
+ ["desc"]="Armadura de Ruinas"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/avatar_frame.lua b/lua/app/config/strings/es/avatar_frame.lua
index 82126b48..ad5e70cf 100644
--- a/lua/app/config/strings/es/avatar_frame.lua
+++ b/lua/app/config/strings/es/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="Marco de avatar de oro de Arena S1, gloria del héroe."
+ },
+ [28]={
+ ["desc"]="Marco de avatar de plata Temporada S3, símbolo de valentía."
+ },
+ [29]={
+ ["desc"]="Marco de avatar de oro Temporada S3, prueba de fuerza."
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/buff.lua b/lua/app/config/strings/es/buff.lua
index c7008d72..9dc0d33c 100644
--- a/lua/app/config/strings/es/buff.lua
+++ b/lua/app/config/strings/es/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="Resucitación",
+ ["desc"]="Resucitación: se activa y restaura HP cuando el héroe es derrotado durante el efecto, o cuando llega el final de la ronda.",
+ ["tips_desc"]="Resucitación: se activa y restaura HP cuando el héroe es derrotado durante el efecto, o cuando llega el final de la ronda.",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="Escudo Marino",
+ ["desc"]="Escudo Marino: Soporta una cierta cantidad de daño y es inmune a todos los debuffs.",
+ ["tips_desc"]="Escudo Marino: Soporta una cierta cantidad de daño y es inmune a todos los debuffs.",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="Autocura",
+ ["desc"]="Autocura: Restaura HP al final de la ronda.",
+ ["tips_desc"]="Autocura: Restaura HP al final de la ronda.",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/es/global.lua b/lua/app/config/strings/es/global.lua
index 3f1b18f4..6e0b7f4e 100644
--- a/lua/app/config/strings/es/global.lua
+++ b/lua/app/config/strings/es/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "Recompensas de Subida de Ranking",
["ARENA_DESC_41"] = "Recompensas de Clasificación",
["ARENA_DESC_42"] = "Recompensas no colectadas",
- ["EQUIP_DESC_26"] = "Paquete de Mejora de Arma al Nv. {0}",
["EQUIP_DESC_27"] = "Paquete de Mejora de Armadura al Nv. {0}",
+ ["EQUIP_DESC_28"] = "Paquete de Mejora de Arma al Nv. {0}",
["SEIZED_DESC_1"] = "Se ha detectado una anomalía en tu cuenta. Por favor contacta con Atención al Cliente, o elimina la cuenta actual y crear una nueva para continuar el juego.",
["SEIZED_DESC_2"] = "Atención al Cliente",
["SEIZED_DESC_3"] = "Eliminar Cuenta",
diff --git a/lua/app/config/strings/es/item.lua b/lua/app/config/strings/es/item.lua
index 580791ae..ffbbe890 100644
--- a/lua/app/config/strings/es/item.lua
+++ b/lua/app/config/strings/es/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="Marco de avatar de plata Temporada S3",
+ ["desc"]="Marco de avatar de plata Temporada S3, símbolo de valentía."
+ },
+ [54]={
+ ["name"]="Marco de avatar de oro Temporada S3",
+ ["desc"]="Marco de avatar de oro Temporada S3, prueba de fuerza."
},
[1001]={
["name"]="Meteorito Opaco",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/avatar.lua b/lua/app/config/strings/fr/avatar.lua
index 9e50f952..e55df79f 100644
--- a/lua/app/config/strings/fr/avatar.lua
+++ b/lua/app/config/strings/fr/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
+ },
+ [1400101]={
+
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/avatar_frame.lua b/lua/app/config/strings/fr/avatar_frame.lua
index 924596db..43ceb019 100644
--- a/lua/app/config/strings/fr/avatar_frame.lua
+++ b/lua/app/config/strings/fr/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
+ },
+ [28]={
+
+ },
+ [29]={
+
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/item.lua b/lua/app/config/strings/fr/item.lua
index b7138f5a..cdc4654a 100644
--- a/lua/app/config/strings/fr/item.lua
+++ b/lua/app/config/strings/fr/item.lua
@@ -145,6 +145,12 @@ local item = {
},
[52]={
+ },
+ [53]={
+
+ },
+ [54]={
+
},
[1001]={
@@ -340,6 +346,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/avatar.lua b/lua/app/config/strings/id/avatar.lua
index cde4380c..6f29e561 100644
--- a/lua/app/config/strings/id/avatar.lua
+++ b/lua/app/config/strings/id/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="Dapat setelah lolos Tarian Anggun"
+ },
+ [1400101]={
+ ["desc"]="Armor Relik"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/avatar_frame.lua b/lua/app/config/strings/id/avatar_frame.lua
index bf1de6b5..43d6503a 100644
--- a/lua/app/config/strings/id/avatar_frame.lua
+++ b/lua/app/config/strings/id/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="Bingkai Avatar Emas Arena S2.Pahlawan mulia."
+ },
+ [28]={
+ ["desc"]="Bingkai Avatar Silver S3. Simbol keberanian."
+ },
+ [29]={
+ ["desc"]="Bingkai Avatar Emas S3. Bukti kekuatan!"
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/buff.lua b/lua/app/config/strings/id/buff.lua
index 2ccf97f2..4c8cd9fb 100644
--- a/lua/app/config/strings/id/buff.lua
+++ b/lua/app/config/strings/id/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="Lahir Kembali",
+ ["desc"]="Lahir Kembali: Kelahiran kembali dipicu dan memulihkan HP jika dikalahkan selama durasi, dan juga memulihkan HP jika tidak dipicu di akhir giliran.",
+ ["tips_desc"]="Lahir Kembali: Kelahiran kembali dipicu dan memulihkan HP jika dikalahkan selama durasi, dan juga memulihkan HP jika tidak dipicu di akhir giliran.",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="Perisai Samudra",
+ ["desc"]="Perisai Samudra: Menahan sejumlah DMG dan kebal terhadap semua efek negatif.",
+ ["tips_desc"]="Perisai Samudra: Menahan sejumlah DMG dan kebal terhadap semua efek negatif.",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="Pemulihan Diri",
+ ["desc"]="Pemulihan Diri: Mengembalikan HP di akhir giliran.",
+ ["tips_desc"]="Pemulihan Diri: Mengembalikan HP di akhir giliran.",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua
index 2a87a07f..140dded5 100644
--- a/lua/app/config/strings/id/global.lua
+++ b/lua/app/config/strings/id/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "Hadiah Promosi",
["ARENA_DESC_41"] = "Hadiah Penyelesaian",
["ARENA_DESC_42"] = "Hadiah yang belum diklaim",
- ["EQUIP_DESC_26"] = "Pack Peningkatan Senjata Lv.{0}",
["EQUIP_DESC_27"] = "Pack upgrade Armor Lv.{0}",
+ ["EQUIP_DESC_28"] = "Pack Peningkatan Senjata Lv.{0}",
["SEIZED_DESC_1"] = "Telah terdeteksi kondisi tidak normal pada akunmuu. Silakan hubungi layanan pelanggan atau hapus akun, dan gunakan akun baru untuk melanjutkan permainan.",
["SEIZED_DESC_2"] = "Hubungi Layanan Pelanggan",
["SEIZED_DESC_3"] = "Hapus Akun",
diff --git a/lua/app/config/strings/id/item.lua b/lua/app/config/strings/id/item.lua
index 24de67ac..e1da76c5 100644
--- a/lua/app/config/strings/id/item.lua
+++ b/lua/app/config/strings/id/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="Bingkai Avatar Silver Musim S3",
+ ["desc"]="Bingkai Avatar Silver S3. Simbol keberanian."
+ },
+ [54]={
+ ["name"]="Bingkai Avatar Emas Musim S3",
+ ["desc"]="Bingkai Avatar Emas S3. Bukti kekuatan!"
},
[1001]={
["name"]="Chondrite",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/avatar.lua b/lua/app/config/strings/ja/avatar.lua
index c14c66d4..ef9960af 100644
--- a/lua/app/config/strings/ja/avatar.lua
+++ b/lua/app/config/strings/ja/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="グレイスフルダンスをアクティブ化後獲得できる。"
+ },
+ [1400101]={
+ ["desc"]="レリックアーマー"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/avatar_frame.lua b/lua/app/config/strings/ja/avatar_frame.lua
index 57c5abb8..f81b1f09 100644
--- a/lua/app/config/strings/ja/avatar_frame.lua
+++ b/lua/app/config/strings/ja/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="S2闘技場ゴールドフレーム。ヒーローの輝き。"
+ },
+ [28]={
+ ["desc"]="S3闘技場シルバーフレーム。勇気の証。"
+ },
+ [29]={
+ ["desc"]="S3闘技場ゴールドフレーム。実力の証。"
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/buff.lua b/lua/app/config/strings/ja/buff.lua
index 8dd6a504..af276468 100644
--- a/lua/app/config/strings/ja/buff.lua
+++ b/lua/app/config/strings/ja/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="再生",
+ ["desc"]="再生:持続期間中に撃破されると、再生を発動してHPを回復する。ターン終了時に再生を発動してもHPが回復される。",
+ ["tips_desc"]="再生:持続期間中に撃破されると、再生を発動してHPを回復する。ターン終了時に再生を発動してもHPが回復される。",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="オーシャンシールド",
+ ["desc"]="オーシャンシールド:一定量のダメージには耐えられ、全てのデバフ効果を無効化する。",
+ ["tips_desc"]="オーシャンシールド:一定量のダメージには耐えられ、全てのデバフ効果を無効化する。",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="自己回復",
+ ["desc"]="自己回復:ターン終了時にHPを回復する。",
+ ["tips_desc"]="自己回復:ターン終了時にHPを回復する。",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua
index 75b48475..d12c50cd 100644
--- a/lua/app/config/strings/ja/global.lua
+++ b/lua/app/config/strings/ja/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "ランクアップ報酬",
["ARENA_DESC_41"] = "決算報酬",
["ARENA_DESC_42"] = "未受取の報酬",
- ["EQUIP_DESC_26"] = "武器Lv{0}レベルアップパック",
["EQUIP_DESC_27"] = "防具Lv{0}レベルアップパック",
+ ["EQUIP_DESC_28"] = "武器Lv{0}レベルアップパック",
["SEIZED_DESC_1"] = "アカウントに異常が検出されました。サポートセンターに連絡するか、アカウントを削除し、新しいアカウントを作成してゲームを続行してください。",
["SEIZED_DESC_2"] = "サポートセンターに連絡する",
["SEIZED_DESC_3"] = "アカウントを削除する",
diff --git a/lua/app/config/strings/ja/item.lua b/lua/app/config/strings/ja/item.lua
index 071eff44..5156e22d 100644
--- a/lua/app/config/strings/ja/item.lua
+++ b/lua/app/config/strings/ja/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="S3シーズンシルバーフレーム",
+ ["desc"]="S3闘技場シルバーフレーム。勇気の証。"
+ },
+ [54]={
+ ["name"]="S3シーズンゴールドフレーム",
+ ["desc"]="S3闘技場ゴールドフレーム。実力の証。"
},
[1001]={
["name"]="薄暗い隕石",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/avatar.lua b/lua/app/config/strings/ko/avatar.lua
index a5eaca0f..43b37c0b 100644
--- a/lua/app/config/strings/ko/avatar.lua
+++ b/lua/app/config/strings/ko/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="날아오르는 춤(를) 활성화한 후, 획득할 수 있습니다."
+ },
+ [1400101]={
+ ["desc"]="유적 갑옷"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/avatar_frame.lua b/lua/app/config/strings/ko/avatar_frame.lua
index 88909731..97343e9a 100644
--- a/lua/app/config/strings/ko/avatar_frame.lua
+++ b/lua/app/config/strings/ko/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="S2 아레나 골드 아이콘 프레임, 영웅의 눈부신 업적입니다."
+ },
+ [28]={
+ ["desc"]="S3 아레나 실버 아이콘 프레임, 용기를 대표합니다."
+ },
+ [29]={
+ ["desc"]="S3 아레나 골드 아이콘 프레임, 검증받은 실력입니다."
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/buff.lua b/lua/app/config/strings/ko/buff.lua
index 18f0344a..5101a916 100644
--- a/lua/app/config/strings/ko/buff.lua
+++ b/lua/app/config/strings/ko/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="부활",
+ ["desc"]="부활: 지속 시간 동안 패배하면 부활하여 HP를 회복하며 턴 종료 시 부활이 발동되지 않아도 HP를 회복합니다.",
+ ["tips_desc"]="부활: 지속 시간 동안 패배하면 부활하여 HP를 회복하며 턴 종료 시 부활이 발동되지 않아도 HP를 회복합니다.",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="해양 방패",
+ ["desc"]="해양 방패: 일정량의 피해를 감내하고 모든 부정적인 효과에 면역이 됩니다.",
+ ["tips_desc"]="해양 방패: 일정량의 피해를 감내하고 모든 부정적인 효과에 면역이 됩니다.",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="자가 치유",
+ ["desc"]="자가 치유: 턴이 끝날 때 HP를 회복합니다.",
+ ["tips_desc"]="자가 치유: 턴이 끝날 때 HP를 회복합니다.",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/ko/global.lua b/lua/app/config/strings/ko/global.lua
index 8c6a59c2..4d2ea710 100644
--- a/lua/app/config/strings/ko/global.lua
+++ b/lua/app/config/strings/ko/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "승급 보상",
["ARENA_DESC_41"] = "정산 보상",
["ARENA_DESC_42"] = "미수령 보상",
- ["EQUIP_DESC_26"] = "무기 {0}레벨 업그레이드 패키지",
["EQUIP_DESC_27"] = "방어구 {0}레벨 업그레이드 패키지",
+ ["EQUIP_DESC_28"] = "무기 {0}레벨 업그레이드 패키지",
["SEIZED_DESC_1"] = "계정에 이상이 발견되었습니다. 문제 해결을 위해 고객 서비스에 문의하거나 계정을 삭제하시고 새 계정을 사용하여 게임을 계속 진행하시기 바랍니다.",
["SEIZED_DESC_2"] = "고객 서비스 문의",
["SEIZED_DESC_3"] = "계정 삭제",
diff --git a/lua/app/config/strings/ko/item.lua b/lua/app/config/strings/ko/item.lua
index 828f1568..d3a91438 100644
--- a/lua/app/config/strings/ko/item.lua
+++ b/lua/app/config/strings/ko/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="S3 시즌 실버 아이콘 프레임",
+ ["desc"]="S3 아레나 실버 아이콘 프레임, 용기를 대표합니다."
+ },
+ [54]={
+ ["name"]="S3 시즌 골드 아이콘 프레임",
+ ["desc"]="S3 아레나 골드 아이콘 프레임, 검증받은 실력입니다."
},
[1001]={
["name"]="알렌데 운석",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/avatar.lua b/lua/app/config/strings/pt/avatar.lua
index caef2762..5288ae0f 100644
--- a/lua/app/config/strings/pt/avatar.lua
+++ b/lua/app/config/strings/pt/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="Ativar Dança Fluida para obter."
+ },
+ [1400101]={
+ ["desc"]="Armadura das Ruínas"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/avatar_frame.lua b/lua/app/config/strings/pt/avatar_frame.lua
index 14a6246e..b8057287 100644
--- a/lua/app/config/strings/pt/avatar_frame.lua
+++ b/lua/app/config/strings/pt/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="Moldura de avatar de ouro da Arena S2, o brilho de um herói."
+ },
+ [28]={
+ ["desc"]="Moldura de avatar de prata da Arena S3, um símbolo de coragem."
+ },
+ [29]={
+ ["desc"]="Moldura de avatar de ouro da Arena S3, uma testemunha do poder."
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/buff.lua b/lua/app/config/strings/pt/buff.lua
index 8bde60c1..d96608ab 100644
--- a/lua/app/config/strings/pt/buff.lua
+++ b/lua/app/config/strings/pt/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="Renascimento",
+ ["desc"]="Renascimento: ser derrotado enquanto o efeito durar desencadeará o renascimento e restaurará a vida. A vida também é restaurada se o renascimento não for acionado no final do turno.",
+ ["tips_desc"]="Renascimento: ser derrotado enquanto o efeito durar desencadeará o renascimento e restaurará a vida. A vida também é restaurada se o renascimento não for acionado no final do turno.",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="Escudo Marinho",
+ ["desc"]="Escudo Marinho: pode aguentar uma certa quantidade de dano e garantir imunidade a todas as penalidades.",
+ ["tips_desc"]="Escudo Marinho: pode aguentar uma certa quantidade de dano e garantir imunidade a todas as penalidades.",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="Autocura",
+ ["desc"]="Autocura: Restaura a vida no final do turno.",
+ ["tips_desc"]="Autocura: Restaura a vida no final do turno.",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/pt/global.lua b/lua/app/config/strings/pt/global.lua
index 64419409..4f663332 100644
--- a/lua/app/config/strings/pt/global.lua
+++ b/lua/app/config/strings/pt/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "Recompensas pela subida de ranque",
["ARENA_DESC_41"] = "Recompensas de classificação",
["ARENA_DESC_42"] = "Recompensas não coletadas",
- ["EQUIP_DESC_26"] = "Pacote de Melhoria de Arma a Nv.{0}",
["EQUIP_DESC_27"] = "Pacote de Melhoria de Armadura a Nv.{0}",
+ ["EQUIP_DESC_28"] = "Pacote de Melhoria de Arma a Nv.{0}",
["SEIZED_DESC_1"] = "Foi detectada alguma anormalidade com sua conta. Entre em contato com o atendimento ao cliente ou exclua a conta atual e crie uma nova conta para continuar jogando.",
["SEIZED_DESC_2"] = "Atendimento ao Cliente",
["SEIZED_DESC_3"] = "Excluir Conta",
diff --git a/lua/app/config/strings/pt/item.lua b/lua/app/config/strings/pt/item.lua
index b0e835eb..930dd112 100644
--- a/lua/app/config/strings/pt/item.lua
+++ b/lua/app/config/strings/pt/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="Moldura de Avatar de Prata da S3",
+ ["desc"]="Moldura de avatar de prata da Arena S3, um símbolo de coragem."
+ },
+ [54]={
+ ["name"]="Moldura de Avatar de Ouro da S3",
+ ["desc"]="Moldura de avatar de ouro da Arena S3, uma testemunha do poder."
},
[1001]={
["name"]="Ferro Meteórico Opaco",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/avatar.lua b/lua/app/config/strings/ru/avatar.lua
index 9e50f952..e55df79f 100644
--- a/lua/app/config/strings/ru/avatar.lua
+++ b/lua/app/config/strings/ru/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
+ },
+ [1400101]={
+
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/avatar_frame.lua b/lua/app/config/strings/ru/avatar_frame.lua
index 924596db..43ceb019 100644
--- a/lua/app/config/strings/ru/avatar_frame.lua
+++ b/lua/app/config/strings/ru/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
+ },
+ [28]={
+
+ },
+ [29]={
+
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/item.lua b/lua/app/config/strings/ru/item.lua
index b7138f5a..cdc4654a 100644
--- a/lua/app/config/strings/ru/item.lua
+++ b/lua/app/config/strings/ru/item.lua
@@ -145,6 +145,12 @@ local item = {
},
[52]={
+ },
+ [53]={
+
+ },
+ [54]={
+
},
[1001]={
@@ -340,6 +346,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/avatar.lua b/lua/app/config/strings/th/avatar.lua
index 0bae4ea9..02341f1a 100644
--- a/lua/app/config/strings/th/avatar.lua
+++ b/lua/app/config/strings/th/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="หลังจากการเปิดใช้งานเยื้องกรายเต้นรำจะได้รับ"
+ },
+ [1400101]={
+ ["desc"]="เกราะรบซาก"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/avatar_frame.lua b/lua/app/config/strings/th/avatar_frame.lua
index 42a168d4..e396c15c 100644
--- a/lua/app/config/strings/th/avatar_frame.lua
+++ b/lua/app/config/strings/th/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="กรอบรูปทองของอารีน่า S2 ความรุ่งโรจน์ของฮีโร่"
+ },
+ [28]={
+ ["desc"]="กรอบรูปเงินของอารีน่า S3 ตัวแทนแห่งความกล้าหาญ"
+ },
+ [29]={
+ ["desc"]="กรอบรูปทองของอารีน่า S3 พิสูจน์ความแข็งแกร่ง"
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/buff.lua b/lua/app/config/strings/th/buff.lua
index 83d0656a..65402e1a 100644
--- a/lua/app/config/strings/th/buff.lua
+++ b/lua/app/config/strings/th/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="เกิดใหม่",
+ ["desc"]="เกิดใหม่: ถูกเอาชนะระหว่างเวลาต่อเนื่องจะปลดปล่อยเกิดใหม่และฟื้นฟู HP เมื่อสิ้นสุดรอบ ยังไม่ปลดปล่อยเกิดใหม่ก็สามารถฟื้นฟู HP",
+ ["tips_desc"]="เกิดใหม่: ถูกเอาชนะระหว่างเวลาต่อเนื่องจะปลดปล่อยเกิดใหม่และฟื้นฟู HP เมื่อสิ้นสุดรอบ ยังไม่ปลดปล่อยเกิดใหม่ก็สามารถฟื้นฟู HP",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="โล่ทะเล",
+ ["desc"]="โล่ทะเล: สามารถรับดาเมจที่กำหนดได้ ภูมิคุ้มกันเอฟเฟกต์เชิงลบทั้งหมด",
+ ["tips_desc"]="โล่ทะเล: สามารถรับดาเมจที่กำหนดได้ ภูมิคุ้มกันเอฟเฟกต์เชิงลบทั้งหมด",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="ฮีลออล",
+ ["desc"]="ฮีลออล: ฟื้นฟู HP เมื่อสิ้นสุดรอบ",
+ ["tips_desc"]="ฮีลออล: ฟื้นฟู HP เมื่อสิ้นสุดรอบ",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua
index 2f55a840..a5c7a95a 100644
--- a/lua/app/config/strings/th/global.lua
+++ b/lua/app/config/strings/th/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "รางวัลอัประดับ",
["ARENA_DESC_41"] = "รางวัลคำนวณ",
["ARENA_DESC_42"] = "รางวัลที่ยังไม่ได้รับ",
- ["EQUIP_DESC_26"] = "แพ็คอัปอาวุธ {0} เลเวล",
["EQUIP_DESC_27"] = "แพ็คอัปเกราะ {0} เลเวล",
+ ["EQUIP_DESC_28"] = "แพ็คอัปอาวุธ {0} เลเวล",
["SEIZED_DESC_1"] = "ตรวจพบบัญชีของคุณผิดปกติ โปรดติดต่อฝ่ายบริการลูกค้าหรือลบบัญชีและใช้บัญชีใหม่เพื่อเล่นเกมต่อ",
["SEIZED_DESC_2"] = "ติดต่อฝ่ายบริการลูกค้า",
["SEIZED_DESC_3"] = "ลบบัญชี",
diff --git a/lua/app/config/strings/th/item.lua b/lua/app/config/strings/th/item.lua
index 4ff35298..88a2f8be 100644
--- a/lua/app/config/strings/th/item.lua
+++ b/lua/app/config/strings/th/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="กรอบรูปเงินซีซั่น S3",
+ ["desc"]="กรอบรูปเงินของอารีน่า S3 ตัวแทนแห่งความกล้าหาญ"
+ },
+ [54]={
+ ["name"]="กรอบรูปทองซีซั่น S3",
+ ["desc"]="กรอบรูปทองของอารีน่า S3 พิสูจน์ความแข็งแกร่ง"
},
[1001]={
["name"]="อุกกาบาตทื่อ",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/avatar.lua b/lua/app/config/strings/vi/avatar.lua
index ee88216c..dfe57233 100644
--- a/lua/app/config/strings/vi/avatar.lua
+++ b/lua/app/config/strings/vi/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="Kích hoạt Nhảy Múa Nhanh Nhẹn nhận được."
+ },
+ [1400101]={
+ ["desc"]="Giáp Di Tích"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/avatar_frame.lua b/lua/app/config/strings/vi/avatar_frame.lua
index 9a7507dc..86fe00c2 100644
--- a/lua/app/config/strings/vi/avatar_frame.lua
+++ b/lua/app/config/strings/vi/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="Khung Avatar Vàng Đấu Trường S2, anh hùng tỏa sáng."
+ },
+ [28]={
+ ["desc"]="Khung Avatar Bạc Đấu Trường S3, biểu tượng gan dạ."
+ },
+ [29]={
+ ["desc"]="Khung Avatar Vàng Đấu Trường S3, biểu tượng thực lực."
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/buff.lua b/lua/app/config/strings/vi/buff.lua
index e227e9c0..f185a5f9 100644
--- a/lua/app/config/strings/vi/buff.lua
+++ b/lua/app/config/strings/vi/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="Trùng Sinh",
+ ["desc"]="Trùng Sinh: Khi bị hạ gục trong thời gian duy trì sẽ kích hoạt Trùng Sinh và hồi HP, khi kết thúc hiệp chưa kích hoạt Trùng Sinh cũng sẽ hồi HP.",
+ ["tips_desc"]="Trùng Sinh: Khi bị hạ gục trong thời gian duy trì sẽ kích hoạt Trùng Sinh và hồi HP, khi kết thúc hiệp chưa kích hoạt Trùng Sinh cũng sẽ hồi HP.",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="Khiên Hải Dương",
+ ["desc"]="Khiên Hải Dương: Chịu một lượng ST nhất định, miễn dịch mọi debuff.",
+ ["tips_desc"]="Khiên Hải Dương: Chịu một lượng ST nhất định, miễn dịch mọi debuff.",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="Chữa Trị",
+ ["desc"]="Chữa Trị: Khi kết thúc hiệp sẽ hồi HP.",
+ ["tips_desc"]="Chữa Trị: Khi kết thúc hiệp sẽ hồi HP.",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/vi/global.lua b/lua/app/config/strings/vi/global.lua
index 7f16b8b2..a2326fa4 100644
--- a/lua/app/config/strings/vi/global.lua
+++ b/lua/app/config/strings/vi/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "Thưởng Tăng Bậc",
["ARENA_DESC_41"] = "Thưởng Tổng Kết",
["ARENA_DESC_42"] = "Chưa nhận quà",
- ["EQUIP_DESC_26"] = "Quà Tăng Ngay Vũ Khí Lv{0}",
["EQUIP_DESC_27"] = "Quà Tăng Ngay Phòng Cụ Lv{0}",
+ ["EQUIP_DESC_28"] = "Quà Tăng Ngay Vũ Khí Lv{0}",
["SEIZED_DESC_1"] = "Đã phát hiện tài khoản có bất thường, vui lòng liên hệ CSKH hoặc xóa TK và sử dụng TK mới để tiếp tục trò chơi.",
["SEIZED_DESC_2"] = "Liên hệ CSKH",
["SEIZED_DESC_3"] = "Xóa TK",
diff --git a/lua/app/config/strings/vi/item.lua b/lua/app/config/strings/vi/item.lua
index 95d5ed9a..3845654d 100644
--- a/lua/app/config/strings/vi/item.lua
+++ b/lua/app/config/strings/vi/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="Khung Avatar Bạc S3",
+ ["desc"]="Khung Avatar Bạc Đấu Trường S3, biểu tượng gan dạ."
+ },
+ [54]={
+ ["name"]="Khung Avatar Vàng S3",
+ ["desc"]="Khung Avatar Vàng Đấu Trường S3, biểu tượng thực lực."
},
[1001]={
["name"]="Thiên Thạch Ảm Đạm",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/avatar.lua b/lua/app/config/strings/zh/avatar.lua
index 625a3ad2..a20467e9 100644
--- a/lua/app/config/strings/zh/avatar.lua
+++ b/lua/app/config/strings/zh/avatar.lua
@@ -106,9 +106,12 @@ local avatar = {
},
[5400101]={
["desc"]="啟動刀姬翩然起舞皮膚後獲得。"
+ },
+ [1400101]={
+ ["desc"]="遺跡戰甲"
}
}
local config = {
-data=avatar,count=36
+data=avatar,count=37
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/avatar_frame.lua b/lua/app/config/strings/zh/avatar_frame.lua
index 550322f7..c5abd9aa 100644
--- a/lua/app/config/strings/zh/avatar_frame.lua
+++ b/lua/app/config/strings/zh/avatar_frame.lua
@@ -13,9 +13,15 @@ local avatar_frame = {
},
[27]={
["desc"]="S2競技場黃金頭像框,英雄的光輝。"
+ },
+ [28]={
+ ["desc"]="S3競技場白銀頭像框,勇氣的代表。"
+ },
+ [29]={
+ ["desc"]="S3競技場黃金頭像框,實力的證明。"
}
}
local config = {
-data=avatar_frame,count=5
+data=avatar_frame,count=7
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/buff.lua b/lua/app/config/strings/zh/buff.lua
index 1ea833d4..e76faf21 100644
--- a/lua/app/config/strings/zh/buff.lua
+++ b/lua/app/config/strings/zh/buff.lua
@@ -225,14 +225,23 @@ local buff = {
},
[84]={
["id"]=84,
+ ["show_name"]="重生",
+ ["desc"]="重生:持續期間被擊敗則會觸發重生並回復生命,回合結束時未觸發重生也會回復生命。",
+ ["tips_desc"]="重生:持續期間被擊敗則會觸發重生並回復生命,回合結束時未觸發重生也會回復生命。",
["name"]="rebirth"
},
[85]={
["id"]=85,
+ ["show_name"]="海洋護盾",
+ ["desc"]="海洋護盾:承受一定傷害,免疫所有負面效果。",
+ ["tips_desc"]="海洋護盾:承受一定傷害,免疫所有負面效果。",
["name"]="ocean_shield"
},
[86]={
["id"]=86,
+ ["show_name"]="自癒",
+ ["desc"]="自癒:回合結束時回復生命。",
+ ["tips_desc"]="自癒:回合結束時回復生命。",
["name"]="self_heal"
}
}
diff --git a/lua/app/config/strings/zh/global.lua b/lua/app/config/strings/zh/global.lua
index dae7df04..4caae48a 100644
--- a/lua/app/config/strings/zh/global.lua
+++ b/lua/app/config/strings/zh/global.lua
@@ -460,8 +460,8 @@ local localization_global =
["ARENA_DESC_40"] = "升段獎勵",
["ARENA_DESC_41"] = "結算獎勵",
["ARENA_DESC_42"] = "未領取獎勵",
- ["EQUIP_DESC_26"] = "武器直升{0}級禮包",
["EQUIP_DESC_27"] = "防具直升{0}級禮包",
+ ["EQUIP_DESC_28"] = "武器直升{0}級禮包",
["SEIZED_DESC_1"] = "檢測到你的賬號存在異常,請聯繫客服或刪除賬號使用新建賬號繼續遊戲。",
["SEIZED_DESC_2"] = "聯繫客服",
["SEIZED_DESC_3"] = "刪除賬號",
diff --git a/lua/app/config/strings/zh/item.lua b/lua/app/config/strings/zh/item.lua
index 772722e8..df126892 100644
--- a/lua/app/config/strings/zh/item.lua
+++ b/lua/app/config/strings/zh/item.lua
@@ -192,6 +192,14 @@ local item = {
},
[52]={
+ },
+ [53]={
+ ["name"]="S3賽季白銀頭像框",
+ ["desc"]="S3競技場白銀頭像框,勇氣的代表。"
+ },
+ [54]={
+ ["name"]="S3賽季黃金頭像框",
+ ["desc"]="S3競技場黃金頭像框,實力的證明。"
},
[1001]={
["name"]="暗淡隕鐵",
@@ -451,6 +459,6 @@ local item = {
}
}
local config = {
-data=item,count=113
+data=item,count=115
}
return config
\ No newline at end of file
diff --git a/lua/app/global/global_const.lua b/lua/app/global/global_const.lua
index 0a148c5c..1077ce5f 100644
--- a/lua/app/global/global_const.lua
+++ b/lua/app/global/global_const.lua
@@ -20,6 +20,7 @@ local CONST_PATHS = {
GameSettingConst = "app/module/game_setting/game_setting_const",
CollectionConst = "app/module/collection/collection_const",
ActivityConst = "app/module/activity/activity_const",
+ FourteenDayConst = "app/module/activity/fourteen_day/fourteen_day_const",
}
if EDITOR_MODE then
@@ -181,6 +182,7 @@ GConst.TYPEOF_LUA_CLASS = {
PLAYER_INFO_CELL = "app/ui/common/cell/player_info_cell",
PLAYER_HEAD_CELL = "app/ui/common/cell/player_head_cell",
REWARD_CELL = "app/ui/common/cell/reward_cell",
+ BOUNTY_REWARD_CELL = "app/ui/common/cell/bounty_reward_cell",
LARGE_HERO_CELL = "app/ui/common/cell/large_hero_cell",
POP_HERO_CELL = "app/ui/shop/cell/pop_hero_cell",
POP_REWARD_CELL = "app/ui/shop/cell/pop_reward_cell",
@@ -194,6 +196,7 @@ GConst.TYPEOF_LUA_CLASS = {
GConst.ATLAS_PATH = {
COMMON = "assets/arts/atlas/ui/common.asset",
+ ACT_COMMON = "assets/arts/atlas/ui/act_common.asset",
MAIN = "assets/arts/atlas/ui/main.asset",
BATTLE = "assets/arts/atlas/ui/battle.asset",
DAILY_CHALLENGE = "assets/arts/atlas/ui/daily_challenge.asset",
diff --git a/lua/app/module/activity/fourteen_day.meta b/lua/app/module/activity/fourteen_day.meta
new file mode 100644
index 00000000..a95d6f9c
--- /dev/null
+++ b/lua/app/module/activity/fourteen_day.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: a8cccd7f512852a408f6f2ced012eb95
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/module/activity/fourteen_day/fourteen_day_const.lua b/lua/app/module/activity/fourteen_day/fourteen_day_const.lua
new file mode 100644
index 00000000..d65149d8
--- /dev/null
+++ b/lua/app/module/activity/fourteen_day/fourteen_day_const.lua
@@ -0,0 +1,12 @@
+local FourteenDayConst = {}
+
+-- 战令档位
+FourteenDayConst.BOUNTY_GRADE_TYPE = {
+ FREE = 0,
+ PAY = 1,
+}
+
+-- 战令礼包id
+FourteenDayConst.BOUNTY_GIFT_ID = 140405
+
+return FourteenDayConst
\ No newline at end of file
diff --git a/lua/app/ui/bounty/cell/bounty_reward_cell.lua.meta b/lua/app/module/activity/fourteen_day/fourteen_day_const.lua.meta
similarity index 86%
rename from lua/app/ui/bounty/cell/bounty_reward_cell.lua.meta
rename to lua/app/module/activity/fourteen_day/fourteen_day_const.lua.meta
index 1398823b..865ce302 100644
--- a/lua/app/ui/bounty/cell/bounty_reward_cell.lua.meta
+++ b/lua/app/module/activity/fourteen_day/fourteen_day_const.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 07151d06bce0c5e488135947541210e0
+guid: 0598bbbceeebf3444bc6ac70ab44861a
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/module/activity/fourteen_day/fourteen_day_manager.lua b/lua/app/module/activity/fourteen_day/fourteen_day_manager.lua
new file mode 100644
index 00000000..7cc7d982
--- /dev/null
+++ b/lua/app/module/activity/fourteen_day/fourteen_day_manager.lua
@@ -0,0 +1,56 @@
+local FourteenDayManager = class("FourteenDayManager", BaseModule)
+
+function FourteenDayManager:showFourteenDayUI()
+ local time = DataManager.FourteenDayData:getEndRemainTime()
+ if time > 0 then
+ UIManager:showUI("app/ui/activity/fourteen_day/fourteen_day_entrance_ui")
+ else
+ UIManager:showUI("app/ui/activity/fourteen_day/fourteen_day_task_ui")
+ end
+end
+
+-- 购买活动战令
+function FourteenDayManager:buyBounty()
+ PayManager:purchasePackage(GConst.FourteenDayConst.BOUNTY_GIFT_ID, PayManager.PURCHARSE_TYPE.ACT_GIFT)
+end
+
+-- 请求任务奖励
+function FourteenDayManager:reqTaskReward(id)
+ self:sendMessage(ProtoMsgType.FromMsgEnum.FourteenBountyTaskAwardReq, {id = id}, {}, self.rspTaskReward, BIReport.ITEM_GET_TYPE.ACT_FOURTEEN_DAY_TASK)
+end
+
+function FourteenDayManager:rspTaskReward(result)
+ if result.err_code == GConst.ERROR_STR.SUCCESS then
+ DataManager.FourteenDayData:onReceivedTaskReward(result.reqData.id)
+ end
+end
+
+-- 请求战令奖励
+function FourteenDayManager:reqBountyReward(id, grade)
+ local list = {}
+ table.insert(list, {id = id, grade = grade})
+ self:sendMessage(ProtoMsgType.FromMsgEnum.FourteenBountyAwardReq, {id_with_lv = list}, {}, self.rspBountyReward, BIReport.ITEM_GET_TYPE.ACT_FOURTEEN_DAY_BOUNTY)
+end
+
+function FourteenDayManager:rspBountyReward(result)
+ if result.err_code == GConst.ERROR_STR.SUCCESS then
+ DataManager.FourteenDayData:onReceivedBountyReward(result.id_with_lv)
+
+ GFunc.showRewardBox(result.rewards)
+ end
+end
+
+-- 请求兑换奖励
+function FourteenDayManager:reqExchangeReward(id)
+ self:sendMessage(ProtoMsgType.FromMsgEnum.FourteenBountyExchangeAwardReq, {id = id}, {}, self.rspExchangeReward, BIReport.ITEM_GET_TYPE.ACT_FOURTEEN_DAY_EXCHANGE)
+end
+
+function FourteenDayManager:rspExchangeReward(result)
+ if result.err_code == GConst.ERROR_STR.SUCCESS then
+ DataManager.FourteenDayData:onReceivedExchangeReward(result.reqData.id)
+
+ GFunc.showRewardBox(result.rewards)
+ end
+end
+
+return FourteenDayManager
\ No newline at end of file
diff --git a/lua/app/module/activity/fourteen_day/fourteen_day_manager.lua.meta b/lua/app/module/activity/fourteen_day/fourteen_day_manager.lua.meta
new file mode 100644
index 00000000..b28b60eb
--- /dev/null
+++ b/lua/app/module/activity/fourteen_day/fourteen_day_manager.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 3f6a2e3ef3d3e3045b4c3cc0fda335bc
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/module/chapter/chapter_manager.lua b/lua/app/module/chapter/chapter_manager.lua
index add2c3c2..afcad13c 100644
--- a/lua/app/module/chapter/chapter_manager.lua
+++ b/lua/app/module/chapter/chapter_manager.lua
@@ -19,6 +19,8 @@ function ChapterManager:openBoxFinish(result)
DataManager.ChapterData:openBox(reqData.chapter_id, reqData.wave)
BIReport:postChapterOpenBox(reqData.chapter_id, DataManager.ChapterData:getChapterBoxNum(reqData.chapter_id, reqData.wave), result.rewards)
+
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_OPEN_CHAPTER_BOX)
end
end
diff --git a/lua/app/module/daily_challenge/daily_challenge_manager.lua b/lua/app/module/daily_challenge/daily_challenge_manager.lua
index c196ea15..95faab0e 100644
--- a/lua/app/module/daily_challenge/daily_challenge_manager.lua
+++ b/lua/app/module/daily_challenge/daily_challenge_manager.lua
@@ -126,6 +126,8 @@ function DailyChallengeManager:endChallengeFinish(result)
end
end
BIReport:postDailyChallengeTaskState(completedCount, taskInfo)
+
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_DAILY_CHALLENGE_SUCCESS)
end
end
diff --git a/lua/app/module/equip/equip_manager.lua b/lua/app/module/equip/equip_manager.lua
index cfab2b57..c03c69f9 100644
--- a/lua/app/module/equip/equip_manager.lua
+++ b/lua/app/module/equip/equip_manager.lua
@@ -81,6 +81,12 @@ end
function EquipManager:rspUpgrade(result)
if result.err_code == GConst.ERROR_STR.SUCCESS then
DataManager.EquipData:onUpgradeEquip(result.reqData.hero_id, result.reqData.position)
+
+ if result.reqData.position == GConst.EquipConst.PART_TYPE.WEAPON then
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_UPGRADE_WEAPON)
+ else
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_UPGRADE_ARMOR)
+ end
end
end
diff --git a/lua/app/module/item/item_const.lua b/lua/app/module/item/item_const.lua
index bdb09876..560531a4 100644
--- a/lua/app/module/item/item_const.lua
+++ b/lua/app/module/item/item_const.lua
@@ -16,6 +16,7 @@ ItemConst.ITEM_ID_BOX_LV_5 = 18
ItemConst.ITEM_ID_RANDOM_FRAGMENT = 19
ItemConst.ITEM_ID_ARENA_BOUNTY_EXP = 21
ItemConst.ITEM_ID_ARENA_TICKET = 22
+ItemConst.ITEM_ID_FOURTEEN_DAY_EXCHANGE = 51
ItemConst.ITEM_TYPE = {
RES = 1,
diff --git a/lua/app/module/maincity/maincity_const.lua b/lua/app/module/maincity/maincity_const.lua
index db1c2537..1846eb17 100644
--- a/lua/app/module/maincity/maincity_const.lua
+++ b/lua/app/module/maincity/maincity_const.lua
@@ -30,6 +30,7 @@ MainCityConst.MAIN_MODULE = {
MainCityConst.LEFT_SIDE_BARS = {
"app/ui/main_city/cell/side_bar_idle_cell",
"app/ui/main_city/cell/side_bar_growth_fund_cell",
+ "app/ui/main_city/cell/side_bar_fourteen_day_cell",
"app/ui/main_city/cell/side_bar_hero_fund_cell",
"app/ui/main_city/cell/side_bar_seven_days_cell",
"app/ui/main_city/cell/side_bar_activity_cell",
diff --git a/lua/app/module/task/task_const.lua b/lua/app/module/task/task_const.lua
index c3a7c27a..c2a102d5 100644
--- a/lua/app/module/task/task_const.lua
+++ b/lua/app/module/task/task_const.lua
@@ -31,6 +31,15 @@ TaskConst.TASK_TYPE = {
X_OPEN_SHOP_BOX_LEVEL_1 = 28, -- 商城里的1级抽卡宝箱
X_OPEN_SHOP_BOX_LEVEL_2 = 29, -- 商城里的2级抽卡宝箱
X_ARENA_CHALLENGE = 30, -- 竞技场挑战
+ X_ARENA_GRADING = 31, -- 竞技场段位
+ X_DUNGEON_SHARDS = 32, -- 副本通x关:碎片
+ X_DUNGEON_ARMOR = 33, -- 副本通x关:防具
+ X_DUNGEON_GOLD = 34, -- 副本通x关:金币
+ X_DUNGEON_WEAPON = 35, -- 副本通x关:武器
+ X_DAILY_CHALLENGE_SUCCESS = 36, -- 每日挑战通关次数
+ X_OPEN_CHAPTER_BOX = 37, -- 开启主线宝箱x个
+ X_UPGRADE_WEAPON = 38, -- 武器升级x次
+ X_UPGRADE_ARMOR = 39, -- 防具升级x次
}
return TaskConst
\ No newline at end of file
diff --git a/lua/app/module/task/task_manager.lua b/lua/app/module/task/task_manager.lua
index 38f6b677..0f6ad958 100644
--- a/lua/app/module/task/task_manager.lua
+++ b/lua/app/module/task/task_manager.lua
@@ -274,6 +274,42 @@ function TaskManager:xArenaChallenge()
self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_ARENA_CHALLENGE, 1)
end
+function TaskManager:xArenaGradingScore(count)
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING, count)
+end
+
+function TaskManager:xDungeonShards(count)
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_DUNGEON_SHARDS, count)
+end
+
+function TaskManager:xDungeonGold(count)
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_DUNGEON_GOLD, count)
+end
+
+function TaskManager:xDungeonWeapon(count)
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_DUNGEON_WEAPON, count)
+end
+
+function TaskManager:xDungeonArmor(count)
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_DUNGEON_ARMOR, count)
+end
+
+function TaskManager:xDailyChallengeSuccess()
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_DAILY_CHALLENGE_SUCCESS, 1)
+end
+
+function TaskManager:xOpenChapterBox()
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_OPEN_CHAPTER_BOX, 1)
+end
+
+function TaskManager:xUpgradeWeapon()
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_UPGRADE_WEAPON, 1)
+end
+
+function TaskManager:xUpgradeArmor()
+ self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_UPGRADE_ARMOR, 1)
+end
+
---- 没有特殊说明,方法均返回任务增量
TaskManager.TYPE_DEAL_FUNC = {
[GConst.TaskConst.TASK_TYPE.X_WATCH_AD] = TaskManager.xWatchAd,
@@ -304,6 +340,15 @@ TaskManager.TYPE_DEAL_FUNC = {
[GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_2] = TaskManager.xOpenShopBoxLevel2,
[GConst.TaskConst.TASK_TYPE.X_OPEN_SHOP_BOX_LEVEL_3] = TaskManager.xOpenShopBoxLevel3,
[GConst.TaskConst.TASK_TYPE.X_ARENA_CHALLENGE] = TaskManager.xArenaChallenge,
+ [GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING] = TaskManager.xArenaGradingScore,
+ [GConst.TaskConst.TASK_TYPE.X_DUNGEON_SHARDS] = TaskManager.xDungeonShards,
+ [GConst.TaskConst.TASK_TYPE.X_DUNGEON_ARMOR] = TaskManager.xDungeonArmor,
+ [GConst.TaskConst.TASK_TYPE.X_DUNGEON_GOLD] = TaskManager.xDungeonGold,
+ [GConst.TaskConst.TASK_TYPE.X_DUNGEON_WEAPON] = TaskManager.xDungeonWeapon,
+ [GConst.TaskConst.TASK_TYPE.X_DAILY_CHALLENGE_SUCCESS] = TaskManager.xDailyChallengeSuccess,
+ [GConst.TaskConst.TASK_TYPE.X_OPEN_CHAPTER_BOX] = TaskManager.xOpenChapterBox,
+ [GConst.TaskConst.TASK_TYPE.X_UPGRADE_WEAPON] = TaskManager.xUpgradeWeapon,
+ [GConst.TaskConst.TASK_TYPE.X_UPGRADE_ARMOR] = TaskManager.xUpgradeArmor,
}
function TaskManager:taskGoto(taskType)
diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua
index da3adff9..a7fa41b9 100644
--- a/lua/app/proto/proto_msg_type.lua
+++ b/lua/app/proto/proto_msg_type.lua
@@ -26,6 +26,8 @@ local ProtoMsgType = {
[448797406] = "ChapterArmorChallengeHeroesRsp",
[516281556] = "GuideFundMarkReq",
[516283389] = "GuideFundMarkRsp",
+ [524551468] = "FourteenBountyAwardReq",
+ [524553301] = "FourteenBountyAwardRsp",
[531558517] = "PigPlayUpdateNtf",
[554454681] = "EnergyByDiamondReq",
[554456514] = "EnergyByDiamondRsp",
@@ -33,6 +35,8 @@ local ProtoMsgType = {
[606210585] = "DailyChallengeTaskAwardRsp",
[613793796] = "WatchADReq",
[613795629] = "WatchADRsp",
+ [697000709] = "FourteenBountyTaskAwardReq",
+ [697002542] = "FourteenBountyTaskAwardRsp",
[737107384] = "BuyMallIdleReq",
[737109217] = "BuyMallIdleRsp",
[822916593] = "MatchReq",
@@ -53,6 +57,8 @@ local ProtoMsgType = {
[1068771132] = "ReconnectRsp",
[1070841461] = "LoginReq",
[1070843294] = "LoginRsp",
+ [1326064687] = "FourteenBountyExchangeAwardReq",
+ [1326066520] = "FourteenBountyExchangeAwardRsp",
[1371198132] = "ChapterShardsChallengeSettlementReq",
[1371199965] = "ChapterShardsChallengeSettlementRsp",
[1433352538] = "ChapterDailyChallengeResetReq",
@@ -242,6 +248,8 @@ local ProtoMsgType = {
ChapterArmorChallengeHeroesRsp = 448797406,
GuideFundMarkReq = 516281556,
GuideFundMarkRsp = 516283389,
+ FourteenBountyAwardReq = 524551468,
+ FourteenBountyAwardRsp = 524553301,
PigPlayUpdateNtf = 531558517,
EnergyByDiamondReq = 554454681,
EnergyByDiamondRsp = 554456514,
@@ -249,6 +257,8 @@ local ProtoMsgType = {
DailyChallengeTaskAwardRsp = 606210585,
WatchADReq = 613793796,
WatchADRsp = 613795629,
+ FourteenBountyTaskAwardReq = 697000709,
+ FourteenBountyTaskAwardRsp = 697002542,
BuyMallIdleReq = 737107384,
BuyMallIdleRsp = 737109217,
MatchReq = 822916593,
@@ -269,6 +279,8 @@ local ProtoMsgType = {
ReconnectRsp = 1068771132,
LoginReq = 1070841461,
LoginRsp = 1070843294,
+ FourteenBountyExchangeAwardReq = 1326064687,
+ FourteenBountyExchangeAwardRsp = 1326066520,
ChapterShardsChallengeSettlementReq = 1371198132,
ChapterShardsChallengeSettlementRsp = 1371199965,
ChapterDailyChallengeResetReq = 1433352538,
@@ -458,6 +470,8 @@ local ProtoMsgType = {
ChapterArmorChallengeHeroesRsp = "ChapterArmorChallengeHeroesRsp",
GuideFundMarkReq = "GuideFundMarkReq",
GuideFundMarkRsp = "GuideFundMarkRsp",
+ FourteenBountyAwardReq = "FourteenBountyAwardReq",
+ FourteenBountyAwardRsp = "FourteenBountyAwardRsp",
PigPlayUpdateNtf = "PigPlayUpdateNtf",
EnergyByDiamondReq = "EnergyByDiamondReq",
EnergyByDiamondRsp = "EnergyByDiamondRsp",
@@ -465,6 +479,8 @@ local ProtoMsgType = {
DailyChallengeTaskAwardRsp = "DailyChallengeTaskAwardRsp",
WatchADReq = "WatchADReq",
WatchADRsp = "WatchADRsp",
+ FourteenBountyTaskAwardReq = "FourteenBountyTaskAwardReq",
+ FourteenBountyTaskAwardRsp = "FourteenBountyTaskAwardRsp",
BuyMallIdleReq = "BuyMallIdleReq",
BuyMallIdleRsp = "BuyMallIdleRsp",
MatchReq = "MatchReq",
@@ -485,6 +501,8 @@ local ProtoMsgType = {
ReconnectRsp = "ReconnectRsp",
LoginReq = "LoginReq",
LoginRsp = "LoginRsp",
+ FourteenBountyExchangeAwardReq = "FourteenBountyExchangeAwardReq",
+ FourteenBountyExchangeAwardRsp = "FourteenBountyExchangeAwardRsp",
ChapterShardsChallengeSettlementReq = "ChapterShardsChallengeSettlementReq",
ChapterShardsChallengeSettlementRsp = "ChapterShardsChallengeSettlementRsp",
ChapterDailyChallengeResetReq = "ChapterDailyChallengeResetReq",
diff --git a/lua/app/ui/activity/fourteen_day.meta b/lua/app/ui/activity/fourteen_day.meta
new file mode 100644
index 00000000..13ae4c1a
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e405abdcb4030e64dba3631b38b997ee
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/ui/activity/fourteen_day/cell.meta b/lua/app/ui/activity/fourteen_day/cell.meta
new file mode 100644
index 00000000..60d3bf36
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 1c817462bfb12094bab1174e31e48e1d
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_bounty_cell.lua b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_bounty_cell.lua
new file mode 100644
index 00000000..03c67103
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_bounty_cell.lua
@@ -0,0 +1,52 @@
+local FourteenDayBountyCell = class("FourteenDayBountyCell", BaseCell)
+
+function FourteenDayBountyCell:init()
+ local uiMap = self:getUIMap()
+ self.imgLevel = uiMap["fourteen_day_bounty_cell.level"]
+ self.txLevel = uiMap["fourteen_day_bounty_cell.level.tx_level"]
+ self.line = uiMap["fourteen_day_bounty_cell.line"]
+ self.bountyRewardCell1 = uiMap["fourteen_day_bounty_cell.bounty_reward_cell_1"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.BOUNTY_REWARD_CELL)
+ self.bountyRewardCell2 = uiMap["fourteen_day_bounty_cell.bounty_reward_cell_2"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.BOUNTY_REWARD_CELL)
+end
+
+function FourteenDayBountyCell:refresh(id)
+ self.txLevel:setText(id)
+ self.line:setActive(id < #DataManager.FourteenDayData:getBountyCfg())
+
+ self.bountyRewardCell1:refresh(
+ DataManager.FourteenDayData:getBountyGradeReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE), false,
+ not DataManager.FourteenDayData:isBountyGradeUnlock(GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE),
+ DataManager.FourteenDayData:isReceivedBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE))
+ self.bountyRewardCell2:refresh(
+ DataManager.FourteenDayData:getBountyGradeReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY), true,
+ not DataManager.FourteenDayData:isBountyGradeUnlock(GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY),
+ DataManager.FourteenDayData:isReceivedBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY))
+
+ if DataManager.FourteenDayData:getActiveDays() >= id then
+ self.imgLevel:setImageGray(false)
+ if DataManager.FourteenDayData:canGetBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE) then
+ self.bountyRewardCell1:showLight()
+ self.bountyRewardCell1:addClickListener(function()
+ ModuleManager.FourteenDayManager:reqBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE)
+ end)
+ else
+ self.bountyRewardCell1:hideLight()
+ self.bountyRewardCell1:addClickListener(nil)
+ end
+ if DataManager.FourteenDayData:canGetBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY) then
+ self.bountyRewardCell2:showLight()
+ self.bountyRewardCell2:addClickListener(function()
+ ModuleManager.FourteenDayManager:reqBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY)
+ end)
+ else
+ self.bountyRewardCell2:hideLight()
+ self.bountyRewardCell2:addClickListener(nil)
+ end
+ else
+ self.imgLevel:setImageGray(true)
+ self.bountyRewardCell1:hideLight()
+ self.bountyRewardCell2:hideLight()
+ end
+end
+
+return FourteenDayBountyCell
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_bounty_cell.lua.meta b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_bounty_cell.lua.meta
new file mode 100644
index 00000000..531d75f4
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_bounty_cell.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: b719a1636ad4d83438f07408ff008528
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_exchange_cell.lua b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_exchange_cell.lua
new file mode 100644
index 00000000..00fc915b
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_exchange_cell.lua
@@ -0,0 +1,52 @@
+local FourteenDayExchangeCell = class("FourteenDayExchangeCell", BaseCell)
+
+function FourteenDayExchangeCell:init()
+ local uiMap = self:getUIMap()
+ self.rewardCell = uiMap["fourteen_day_exchange_cell.reward_cell"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL)
+ self.txLimit = uiMap["fourteen_day_exchange_cell.tx_limit"]
+ self.cost = uiMap["fourteen_day_exchange_cell.cost"]
+ self.imgCost = uiMap["fourteen_day_exchange_cell.cost.img_cost"]
+ self.txCost = uiMap["fourteen_day_exchange_cell.cost.tx_num"]
+ self.lock = uiMap["fourteen_day_exchange_cell.lock"]
+ self.txLock = uiMap["fourteen_day_exchange_cell.lock.tx_lock"]
+
+ self:addClickListener(function()
+ if DataManager.FourteenDayData:canExchange(self.id) then
+ ModuleManager.FourteenDayManager:reqExchangeReward(self.id)
+ end
+ end)
+end
+
+function FourteenDayExchangeCell:refresh(id)
+ self.id = id
+
+ if DataManager.FourteenDayData:isExchangeUnlock(self.id) then
+ -- 已解锁
+ self.cost:setActive(true)
+ self.txLimit:setActive(true)
+ self.lock:setActive(false)
+ local time = DataManager.FourteenDayData:getExchangeRemainTime(self.id)
+ if time > 0 then
+ self.txLimit:setText(I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_18, time))
+ else
+ self.txLimit:setText(I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_18, ""..time..""))
+ end
+ local costNum = DataManager.FourteenDayData:getExchangeCostNum(self.id)
+ if DataManager.FourteenDayData:getExchangeItemNum() >= costNum then
+ self.txCost:setText(costNum)
+ else
+ self.txCost:setText(""..costNum.."")
+ end
+ GFunc.centerImgAndTx(self.imgCost, self.txCost)
+ else
+ -- 未解锁
+ self.cost:setActive(false)
+ self.txLimit:setActive(false)
+ self.lock:setActive(true)
+ self.txLock:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_33, DataManager.FourteenDayData:getExchangeUnlockCondition(self.id)))
+ end
+
+ self.rewardCell:refreshByConfig(DataManager.FourteenDayData:getExchangeReward(self.id))
+end
+
+return FourteenDayExchangeCell
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_exchange_cell.lua.meta b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_exchange_cell.lua.meta
new file mode 100644
index 00000000..a8e780f6
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_exchange_cell.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: e9fe8f4f82483f947b15fccafcee78c3
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_gift_cell.lua b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_gift_cell.lua
new file mode 100644
index 00000000..d81ebe95
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_gift_cell.lua
@@ -0,0 +1,56 @@
+local FourteenDayExchangeCell = class("FourteenDayExchangeCell", BaseCell)
+
+function FourteenDayExchangeCell:init()
+ local uiMap = self:getUIMap()
+
+ self.txLimit = uiMap["fourteen_day_gift_cell.tx_limit"]
+ self.txBuy = uiMap["fourteen_day_gift_cell.tx_buy"]
+ self.imgOff = uiMap["fourteen_day_gift_cell.off_img"]
+ self.txOff = uiMap["fourteen_day_gift_cell.off_img.tx_off"]
+ self.rewards = {}
+ for i = 1, 3 do
+ table.insert(self.rewards, uiMap["fourteen_day_gift_cell.reward_cell_"..i]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL))
+ end
+
+ self:addClickListener(function()
+ if DataManager.FourteenDayData:getGiftRemainTime(self.id) > 0 then
+ PayManager:purchasePackage(self.id, PayManager.PURCHARSE_TYPE.ACT_GIFT)
+ end
+ end)
+end
+
+function FourteenDayExchangeCell:refresh(id)
+ self.id = id
+ local cfg = DataManager.ShopData:getActGiftConfig()[self.id]
+ local time = DataManager.FourteenDayData:getGiftRemainTime(self.id)
+
+ self.txLimit:setText(I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_18, time))
+
+ for idx, reward in ipairs(self.rewards) do
+ if cfg.reward[idx] then
+ reward:setVisible(true)
+ reward:refreshByConfig(cfg.reward[idx])
+ else
+ reward:setVisible(false)
+ end
+ end
+
+ local buyStr
+ if cfg.recharge_id then
+ self.baseObject:setSprite(GConst.ATLAS_PATH.ACT_COMMON, "act_common_bg_6")
+ self.imgOff:setActive(true)
+ self.txOff:setText(cfg.value .. "%")
+ buyStr = GFunc.getFormatPrice(cfg.recharge_id)
+ else
+ self.baseObject:setSprite(GConst.ATLAS_PATH.ACT_COMMON, "act_common_bg_5")
+ self.imgOff:setActive(false)
+ buyStr = I18N:getGlobalText(I18N.GlobalConst.STR_FREE)
+ end
+
+ if time <= 0 then
+ buyStr = I18N:getGlobalText(I18N.GlobalConst.SHOP_DESC_20)
+ end
+ self.txBuy:setText(buyStr)
+end
+
+return FourteenDayExchangeCell
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_gift_cell.lua.meta b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_gift_cell.lua.meta
new file mode 100644
index 00000000..8f606933
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_gift_cell.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 6c0949220f56e2a4888eb9d2106a949e
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_task_cell.lua b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_task_cell.lua
new file mode 100644
index 00000000..b48bb5d5
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_task_cell.lua
@@ -0,0 +1,60 @@
+local FourteenDayTaskCell = class("FourteenDayTaskCell", BaseCell)
+local TASK_BG = {
+ "act_common_bg_2",
+ "act_common_bg_3",
+}
+local TASK_ICON_BG = {
+ "act_common_board_3",
+ "act_common_board_4",
+}
+
+function FourteenDayTaskCell:init()
+ local uiMap = self:getUIMap()
+ self.imgTaskBg = uiMap["fourteen_day_task_cell.img_task_bg"]
+ self.imgTask = uiMap["fourteen_day_task_cell.img_task_bg.img_task"]
+ self.txDesc = uiMap["fourteen_day_task_cell.tx_desc"]
+ self.imgProg = uiMap["fourteen_day_task_cell.prog.img_prog"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER)
+ self.txProg = uiMap["fourteen_day_task_cell.prog.tx_prog"]
+ self.txNum = uiMap["fourteen_day_task_cell.tx_num"]
+ self.finish = uiMap["fourteen_day_task_cell.finish"]
+ self.txFinish = uiMap["fourteen_day_task_cell.finish.bg.tx_finish"]
+
+ self:addClickListener(function()
+ if DataManager.FourteenDayData:canGetTaskReward(self.taskId) then
+ ModuleManager.FourteenDayManager:reqTaskReward(self.taskId)
+ end
+ end)
+end
+
+function FourteenDayTaskCell:refresh(id)
+ self.taskId = id
+ local total = DataManager.FourteenDayData:getTaskTarget(self.taskId)
+ local cur = DataManager.FourteenDayData:getTaskProgress(self.taskId)
+ if DataManager.FourteenDayData:getTaskType(self.taskId) == GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING then
+ local minScore = DataManager.ArenaData:getSeasonGradingMinScore()
+ total = total - minScore
+ cur = cur - minScore
+ end
+ self.imgTask:setSprite(GConst.ATLAS_PATH.ICON_TASK, tostring(DataManager.FourteenDayData:getTaskIcon(self.taskId)))
+ self.txDesc:setText(DataManager.FourteenDayData:getTaskDesc(self.taskId))
+ self.imgProg.value = cur / total
+ self.txProg:setText(cur .. "/" .. total)
+ self.txNum:setText(GFunc.getRewardNum(DataManager.FourteenDayData:getTaskRewards(self.taskId)[1]))
+ self.txFinish:setText(I18N:getGlobalText(I18N.GlobalConst.STR_COMPLETED))
+
+ self.finish:setActive(false)
+ self.baseObject:removeRedPoint()
+ if DataManager.FourteenDayData:canGetTaskReward(self.taskId) then
+ -- 可领取
+ self.baseObject:setSprite(GConst.ATLAS_PATH.ACT_COMMON, TASK_BG[2])
+ self.imgTaskBg:setSprite(GConst.ATLAS_PATH.ACT_COMMON, TASK_ICON_BG[2])
+ self.baseObject:addRedPoint(260, 70, 0.8)
+ else
+ -- 未完成 or 已领取
+ self.baseObject:setSprite(GConst.ATLAS_PATH.ACT_COMMON, TASK_BG[1])
+ self.imgTaskBg:setSprite(GConst.ATLAS_PATH.ACT_COMMON, TASK_ICON_BG[1])
+ self.finish:setActive(DataManager.FourteenDayData:isReceivedTaskReward(self.taskId))
+ end
+end
+
+return FourteenDayTaskCell
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/cell/fourteen_day_task_cell.lua.meta b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_task_cell.lua.meta
new file mode 100644
index 00000000..568dfd12
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/cell/fourteen_day_task_cell.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 41f7aa194192dd641bc09fbb49698a9b
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_bounty_ui.lua b/lua/app/ui/activity/fourteen_day/fourteen_day_bounty_ui.lua
new file mode 100644
index 00000000..9aea69b7
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_bounty_ui.lua
@@ -0,0 +1,132 @@
+local FourteenDayBountyUI = class("FourteenDayBountyUI", BaseUI)
+
+function FourteenDayBountyUI:isFullScreen()
+ return false
+end
+
+function FourteenDayBountyUI:getPrefabPath()
+ return "assets/prefabs/ui/activity/fourteen_day/fourteen_day_bounty_ui.prefab"
+end
+
+function FourteenDayBountyUI:onPressBackspace()
+ self:closeUI()
+end
+
+function FourteenDayBountyUI:onClose()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+end
+
+function FourteenDayBountyUI:ctor()
+end
+
+function FourteenDayBountyUI:onLoadRootComplete()
+ local uiMap = self.root:genAllChildren()
+ self.txTitle = uiMap["fourteen_day_bounty_ui.content.title.tx_title"]
+ self.btnClose = uiMap["fourteen_day_bounty_ui.content.btn_close"]
+ self.scrollrectComp = uiMap["fourteen_day_bounty_ui.content.list_bounty"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE)
+ self.prog = uiMap["fourteen_day_bounty_ui.content.list_bounty.viewport.content.prog"]
+ self.imgProg = uiMap["fourteen_day_bounty_ui.content.list_bounty.viewport.content.prog.img_prog"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER)
+ self.imgMask = uiMap["fourteen_day_bounty_ui.content.list_bounty.viewport.content.mask_img"]
+ self.imgLine = uiMap["fourteen_day_bounty_ui.content.list_bounty.viewport.content.line"]
+ -- 购买
+ self.btnBuy = uiMap["fourteen_day_bounty_ui.content.btn_buy"]
+ self.txBuy = uiMap["fourteen_day_bounty_ui.content.btn_buy.tx_buy"]
+ self.txTips = uiMap["fourteen_day_bounty_ui.content.tx_tips"]
+ self.txCountdown = uiMap["fourteen_day_bounty_ui.content.countdown.tx_countdown"]
+ self.bought = uiMap["fourteen_day_bounty_ui.content.bought"]
+ self.txBought = uiMap["fourteen_day_bounty_ui.content.bought.tx_bought"]
+
+ self.bountyList = DataManager.FourteenDayData:getBountyCfg()
+
+ self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_1))
+ self.txTips:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_5))
+ self.txBought:setText(I18N:getGlobalText(I18N.GlobalConst.ALREADY_ACTIVE))
+ self.scrollrectComp:addInitCallback(function()
+ self.imgMask:getTransform():SetAsLastSibling()
+ self.imgLine:getTransform():SetAsLastSibling()
+ return "app/ui/activity/fourteen_day/cell/fourteen_day_bounty_cell"
+ end)
+ self.scrollrectComp:addRefreshCallback(function(index, cell)
+ cell:refresh(index)
+ end)
+ self.scrollrectComp:clearCells()
+ self.scrollrectComp:refillCells(#self.bountyList)
+
+ self.btnBuy:addClickListener(function()
+ ModuleManager.FourteenDayManager:buyBounty()
+ end)
+ self.btnClose:addClickListener(function()
+ self:closeUI()
+ end)
+ self:bind(DataManager.FourteenDayData, "isDirty", function()
+ self:onRefresh()
+ end)
+ self:bind(DataManager.ShopData, "isDirty", function()
+ self:refreshBuy()
+ self:refreshBountyList()
+ end)
+end
+
+function FourteenDayBountyUI:onRefresh()
+ self:refreshBuy()
+ self:refreshBountyList()
+ self:refreshCountdown()
+end
+
+-- 刷新倒计时
+function FourteenDayBountyUI:refreshCountdown()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+ self.countdownSid = self:scheduleGlobal(function()
+ local time = DataManager.FourteenDayData:getEndRemainTime()
+ if time < 0 then
+ self:closeUI()
+ return
+ end
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ end, 1)
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(DataManager.FourteenDayData:getEndRemainTime()))
+end
+
+-- 刷新购买
+function FourteenDayBountyUI:refreshBuy()
+ if not DataManager.FourteenDayData:isBountyGradeUnlock(GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY) then
+ self.bought:setActive(false)
+ self.btnBuy:setActive(true)
+ local gift = DataManager.ShopData:getActGiftConfig()[GConst.FourteenDayConst.BOUNTY_GIFT_ID]
+ self.txBuy:setText(GFunc.getFormatPrice(gift.recharge_id))
+ else
+ self.bought:setActive(true)
+ self.btnBuy:setActive(false)
+ end
+end
+
+-- 刷新战令列表
+function FourteenDayBountyUI:refreshBountyList()
+ self.scrollrectComp:updateAllCell()
+ local maxLevel = #self.bountyList
+ local curLevel = DataManager.FourteenDayData:getActiveDays()
+ local topRecoveryOffset = self.scrollrectComp:getTopRecoveryOffset()
+ local downRecoveryOffset = self.scrollrectComp:getDownRecoveryOffset()
+ local cellHeight = self.scrollrectComp:getCellHeight()
+ if curLevel >= maxLevel then
+ self.imgLine:setVisible(false)
+ else
+ self.imgLine:setVisible(true)
+ self.imgLine:setAnchoredPositionY(-topRecoveryOffset - curLevel * cellHeight)
+ end
+ self.prog:setAnchoredPositionY((topRecoveryOffset + downRecoveryOffset) / 2 - cellHeight / 2 - 10)
+ self.prog:setSizeDeltaY(cellHeight * (maxLevel - 1))
+ local percent = (curLevel - 1) / (maxLevel - 1)
+ if percent < 0 then
+ percent = 0
+ end
+ self.imgProg.value = percent
+ self.imgMask:setAnchoredPositionY(-topRecoveryOffset - curLevel * cellHeight)
+ self.imgMask:setSizeDeltaY(cellHeight * maxLevel + GConst.UI_SCREEN_HEIGHT)
+end
+
+return FourteenDayBountyUI
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_bounty_ui.lua.meta b/lua/app/ui/activity/fourteen_day/fourteen_day_bounty_ui.lua.meta
new file mode 100644
index 00000000..18b4da8f
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_bounty_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 4855e5b248c94bb4cabd7c39b659352a
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_entrance_ui.lua b/lua/app/ui/activity/fourteen_day/fourteen_day_entrance_ui.lua
new file mode 100644
index 00000000..6caea960
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_entrance_ui.lua
@@ -0,0 +1,160 @@
+local FourteenDayEntranceUI = class("FourteenDayEntranceUI", BaseUI)
+
+function FourteenDayEntranceUI:isFullScreen()
+ return false
+end
+
+function FourteenDayEntranceUI:getPrefabPath()
+ return "assets/prefabs/ui/activity/fourteen_day/fourteen_day_entrance_ui.prefab"
+end
+
+function FourteenDayEntranceUI:onPressBackspace()
+ self:closeUI()
+end
+
+function FourteenDayEntranceUI:onClose()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+ if self.animsAppear then
+ for idx, anim in pairs(self.animsAppear) do
+ if anim then
+ anim:Kill()
+ end
+ end
+ end
+end
+
+function FourteenDayEntranceUI:ctor()
+end
+
+function FourteenDayEntranceUI:onLoadRootComplete()
+ local uiMap = self.root:genAllChildren()
+ self.btnClose = uiMap["fourteen_day_entrance_ui.btn_close"]
+ self.flyPos = uiMap["fourteen_day_entrance_ui.fly_posx"]
+ -- 战令
+ self.itemBounty = uiMap["fourteen_day_entrance_ui.item_bounty"]
+ self.txBountyTitle = uiMap["fourteen_day_entrance_ui.item_bounty.tx_title"]
+ self.txBountyDesc = uiMap["fourteen_day_entrance_ui.item_bounty.tx_desc"]
+ self.txBountyCountdown = uiMap["fourteen_day_entrance_ui.item_bounty.countdown.tx_countdown"]
+ -- 任务
+ self.itemTask = uiMap["fourteen_day_entrance_ui.item_task"]
+ self.txTaskTitle = uiMap["fourteen_day_entrance_ui.item_task.tx_title"]
+ self.txTaskDesc = uiMap["fourteen_day_entrance_ui.item_task.tx_desc"]
+ self.txTaskCountdown = uiMap["fourteen_day_entrance_ui.item_task.countdown.tx_countdown"]
+ -- 兑换
+ self.itemExchange = uiMap["fourteen_day_entrance_ui.item_exchange"]
+ self.txExchangeTitle = uiMap["fourteen_day_entrance_ui.item_exchange.tx_title"]
+ self.txExchangeDesc = uiMap["fourteen_day_entrance_ui.item_exchange.tx_desc"]
+ self.txExchangeCountdown = uiMap["fourteen_day_entrance_ui.item_exchange.countdown.tx_countdown"]
+ -- 礼包
+ self.itemGift = uiMap["fourteen_day_entrance_ui.item_gift"]
+ self.txGiftTitle = uiMap["fourteen_day_entrance_ui.item_gift.tx_title"]
+ self.txGiftDesc = uiMap["fourteen_day_entrance_ui.item_gift.tx_desc"]
+ self.txGiftCountdown = uiMap["fourteen_day_entrance_ui.item_gift.countdown.tx_countdown"]
+
+ self.txBountyTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_1))
+ self.txBountyDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_1))
+ self.txTaskTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_2))
+ self.txTaskDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_2))
+ self.txExchangeTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_3))
+ self.txExchangeDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_3))
+ self.txGiftTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_4))
+ self.txGiftDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_BOSS_RUSH_DESC_32))
+ if self.animsAppear then
+ for idx, anim in pairs(self.animsAppear) do
+ if anim then
+ anim:Kill()
+ end
+ end
+ end
+ self.animsAppear = {}
+ table.insert(self.animsAppear, self:showAppearAnim(1, self.itemBounty))
+ table.insert(self.animsAppear, self:showAppearAnim(2, self.itemTask))
+ table.insert(self.animsAppear, self:showAppearAnim(3, self.itemExchange))
+ table.insert(self.animsAppear, self:showAppearAnim(4, self.itemGift))
+
+ self.itemBounty:addClickListener(function()
+ UIManager:showUI("app/ui/activity/fourteen_day/fourteen_day_bounty_ui")
+ end)
+ self.itemTask:addClickListener(function()
+ UIManager:showUI("app/ui/activity/fourteen_day/fourteen_day_task_ui")
+ end)
+ self.itemExchange:addClickListener(function()
+ UIManager:showUI("app/ui/activity/fourteen_day/fourteen_day_exchange_ui")
+ end)
+ self.itemGift:addClickListener(function()
+ UIManager:showUI("app/ui/activity/fourteen_day/fourteen_day_gift_ui")
+ end)
+ self.btnClose:addClickListener(function()
+ self:closeUI()
+ end)
+ self:bind(DataManager.FourteenDayData, "isDirty", function()
+ self:onRefresh()
+ end)
+end
+
+function FourteenDayEntranceUI:onRefresh()
+ -- 倒计时
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+ self.countdownSid = self:scheduleGlobal(function()
+ local time = DataManager.FourteenDayData:getEndRemainTime()
+ if time < 0 then
+ self:closeUI()
+ return
+ end
+ self.txBountyCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ self.txTaskCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ self.txExchangeCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ self.txGiftCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ end, 1)
+ local time = DataManager.FourteenDayData:getEndRemainTime()
+ self.txBountyCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ self.txTaskCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ self.txExchangeCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ self.txGiftCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+
+ self:refreshRedPoint()
+end
+
+-- 刷新红点
+function FourteenDayEntranceUI:refreshRedPoint()
+ if DataManager.FourteenDayData:hasBountyRedPoint() then
+ self.itemBounty:addRedPoint(300, 75, 0.6)
+ else
+ self.itemBounty:removeRedPoint()
+ end
+ if DataManager.FourteenDayData:hasTaskRedPoint() then
+ self.itemTask:addRedPoint(300, 75, 0.6)
+ else
+ self.itemTask:removeRedPoint()
+ end
+ if DataManager.FourteenDayData:hasExchangeRedPoint() then
+ self.itemExchange:addRedPoint(300, 75, 0.6)
+ else
+ self.itemExchange:removeRedPoint()
+ end
+ if DataManager.FourteenDayData:hasGiftRedPoint() then
+ self.itemGift:addRedPoint(300, 75, 0.6)
+ else
+ self.itemGift:removeRedPoint()
+ end
+end
+
+-- 展示出现动画
+function FourteenDayEntranceUI:showAppearAnim(idx, item)
+ item:setTouchEnable(false)
+ item:setPosition(self.flyPos:getPosition().x, item:getPosition().y, item:getPosition().z)
+
+ local delay = (idx - 1) * 0.1
+ local animAppear = item:createBindTweenSequence()
+ animAppear:Insert(delay, item:getTransform():DOMove(CS.UnityEngine.Vector3(0, item:getPosition().y, item:getPosition().z), 0.5))
+ animAppear:OnComplete(function()
+ item:setTouchEnable(true)
+ end)
+ return animAppear
+end
+
+return FourteenDayEntranceUI
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_entrance_ui.lua.meta b/lua/app/ui/activity/fourteen_day/fourteen_day_entrance_ui.lua.meta
new file mode 100644
index 00000000..732999d1
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_entrance_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: fbd9d20a63c9fe94583d988bb8d253e2
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_exchange_ui.lua b/lua/app/ui/activity/fourteen_day/fourteen_day_exchange_ui.lua
new file mode 100644
index 00000000..c70bf78f
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_exchange_ui.lua
@@ -0,0 +1,84 @@
+local FourteenDayExchangeUI = class("FourteenDayExchangeUI", BaseUI)
+
+function FourteenDayExchangeUI:isFullScreen()
+ return false
+end
+
+function FourteenDayExchangeUI:getPrefabPath()
+ return "assets/prefabs/ui/activity/fourteen_day/fourteen_day_exchange_ui.prefab"
+end
+
+function FourteenDayExchangeUI:onPressBackspace()
+ self:closeUI()
+end
+
+function FourteenDayExchangeUI:onClose()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+end
+
+function FourteenDayExchangeUI:ctor()
+end
+
+function FourteenDayExchangeUI:onLoadRootComplete()
+ local uiMap = self.root:genAllChildren()
+ self.txTitle = uiMap["fourteen_day_exchange_ui.content.img_title.tx_title"]
+ self.btnClose = uiMap["fourteen_day_exchange_ui.content.btn_close"]
+ self.txCountdown = uiMap["fourteen_day_exchange_ui.content.countdown.tx_countdown"]
+ self.txDesc = uiMap["fourteen_day_exchange_ui.content.tx_desc"]
+ self.scrollrectComp = uiMap["fourteen_day_exchange_ui.content.scrollrect"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE)
+ self.txNum = uiMap["fourteen_day_exchange_ui.content.item.tx_num"]
+ self.btnAdd = uiMap["fourteen_day_exchange_ui.content.item"]
+
+ self.exchangeList = DataManager.FourteenDayData:getExchangeShowIds()
+
+ self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_3))
+ self.txDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_9))
+
+ self.scrollrectComp:addInitCallback(function()
+ return "app/ui/activity/fourteen_day/cell/fourteen_day_exchange_cell"
+ end)
+ self.scrollrectComp:addRefreshCallback(function(index, cell)
+ cell:refresh(self.exchangeList[index])
+ end)
+ self.scrollrectComp:clearCells()
+ self.scrollrectComp:refillCells(#self.exchangeList)
+
+ self.btnAdd:addClickListener(function()
+ UIManager:showUI("app/ui/activity/fourteen_day/fourteen_day_task_ui")
+ self:closeUI()
+ end)
+ self.btnClose:addClickListener(function()
+ self:closeUI()
+ end)
+ self:bind(DataManager.FourteenDayData, "isDirty", function()
+ self:onRefresh()
+ end)
+end
+
+function FourteenDayExchangeUI:onRefresh()
+ LocalData:recordTodayFourteenDayExchangeWatched()
+
+ self.txNum:setText(DataManager.FourteenDayData:getExchangeItemNum())
+ self.scrollrectComp:updateAllCell()
+ self:refreshCountdown()
+end
+
+-- 刷新倒计时
+function FourteenDayExchangeUI:refreshCountdown()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+ self.countdownSid = self:scheduleGlobal(function()
+ local time = DataManager.FourteenDayData:getEndRemainTime()
+ if time < 0 then
+ self:closeUI()
+ return
+ end
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ end, 1)
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(DataManager.FourteenDayData:getEndRemainTime()))
+end
+
+return FourteenDayExchangeUI
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_exchange_ui.lua.meta b/lua/app/ui/activity/fourteen_day/fourteen_day_exchange_ui.lua.meta
new file mode 100644
index 00000000..636449e8
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_exchange_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 68f6d93df63aa1248864fba73ced6424
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_gift_ui.lua b/lua/app/ui/activity/fourteen_day/fourteen_day_gift_ui.lua
new file mode 100644
index 00000000..37982fff
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_gift_ui.lua
@@ -0,0 +1,75 @@
+local FourteenDayGiftUI = class("FourteenDayGiftUI", BaseUI)
+
+function FourteenDayGiftUI:isFullScreen()
+ return false
+end
+
+function FourteenDayGiftUI:getPrefabPath()
+ return "assets/prefabs/ui/activity/fourteen_day/fourteen_day_gift_ui.prefab"
+end
+
+function FourteenDayGiftUI:onPressBackspace()
+ self:closeUI()
+end
+
+function FourteenDayGiftUI:onClose()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+end
+
+function FourteenDayGiftUI:ctor()
+end
+
+function FourteenDayGiftUI:onLoadRootComplete()
+ local uiMap = self.root:genAllChildren()
+ self.txTitle = uiMap["fourteen_day_gift_ui.content.img_title.tx_title"]
+ self.btnClose = uiMap["fourteen_day_gift_ui.content.btn_close"]
+ self.txCountdown = uiMap["fourteen_day_gift_ui.content.countdown.tx_countdown"]
+ self.scrollrectComp = uiMap["fourteen_day_gift_ui.content.scrollrect"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE)
+
+ self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_4))
+
+ self.scrollrectComp:addInitCallback(function()
+ return "app/ui/activity/fourteen_day/cell/fourteen_day_gift_cell"
+ end)
+ self.scrollrectComp:addRefreshCallback(function(index, cell)
+ cell:refresh(self.giftList[index])
+ end)
+
+ self.btnClose:addClickListener(function()
+ self:closeUI()
+ end)
+ self:bind(DataManager.FourteenDayData, "isDirty", function()
+ self:onRefresh()
+ end)
+ self:bind(DataManager.ShopData, "isDirty", function()
+ self:onRefresh()
+ end)
+end
+
+function FourteenDayGiftUI:onRefresh()
+ self.giftList = DataManager.FourteenDayData:getGiftIdsSort()
+ self.scrollrectComp:clearCells()
+ self.scrollrectComp:refillCells(#self.giftList)
+
+ self:refreshCountdown()
+end
+
+-- 刷新倒计时
+function FourteenDayGiftUI:refreshCountdown()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+ self.countdownSid = self:scheduleGlobal(function()
+ local time = DataManager.FourteenDayData:getEndRemainTime()
+ if time < 0 then
+ self:closeUI()
+ return
+ end
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(time))
+ end, 1)
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(DataManager.FourteenDayData:getEndRemainTime()))
+end
+
+return FourteenDayGiftUI
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_gift_ui.lua.meta b/lua/app/ui/activity/fourteen_day/fourteen_day_gift_ui.lua.meta
new file mode 100644
index 00000000..43609044
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_gift_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: a171fec6561af8045b52689025759620
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_task_ui.lua b/lua/app/ui/activity/fourteen_day/fourteen_day_task_ui.lua
new file mode 100644
index 00000000..603a3318
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_task_ui.lua
@@ -0,0 +1,122 @@
+local FourteenDayTaskUI = class("FourteenDayTaskUI", BaseUI)
+
+function FourteenDayTaskUI:isFullScreen()
+ return false
+end
+
+function FourteenDayTaskUI:getPrefabPath()
+ return "assets/prefabs/ui/activity/fourteen_day/fourteen_day_task_ui.prefab"
+end
+
+function FourteenDayTaskUI:onPressBackspace()
+ self:closeUI()
+end
+
+function FourteenDayTaskUI:onClose()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+end
+
+function FourteenDayTaskUI:ctor()
+ self.curStage = DataManager.FourteenDayData:getTaskShowStage()
+end
+
+function FourteenDayTaskUI:onLoadRootComplete()
+ local uiMap = self.root:genAllChildren()
+ self.txTitle = uiMap["fourteen_day_task_ui.content.img_title.tx_title"]
+ self.txCountdown = uiMap["fourteen_day_task_ui.content.countdown.tx_countdown"]
+ self.txDesc = uiMap["fourteen_day_task_ui.content.stage.tx_desc"]
+ self.rewardsNode = uiMap["fourteen_day_task_ui.content.stage.rewards"]
+ self.rewards = {}
+ for i = 1, 4 do
+ table.insert(self.rewards, uiMap["fourteen_day_task_ui.content.stage.rewards.reward_cell_" .. i]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.REWARD_CELL))
+ end
+ self.btnRight = uiMap["fourteen_day_task_ui.content.stage.select.btn_right"]
+ self.btnLeft = uiMap["fourteen_day_task_ui.content.stage.select.btn_left"]
+ self.txStage = uiMap["fourteen_day_task_ui.content.stage.select.tx_stage"]
+ self.txSelect = uiMap["fourteen_day_task_ui.content.stage.select.tx_select"]
+ self.scrollrectComp = uiMap["fourteen_day_task_ui.content.list_task"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE)
+ self.btnClose = uiMap["fourteen_day_task_ui.content.btn_close"]
+
+ self.txTitle:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_TITLE_2))
+ self.txStage:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_6))
+
+ self.scrollrectComp:addInitCallback(function()
+ return "app/ui/activity/fourteen_day/cell/fourteen_day_task_cell"
+ end)
+ self.scrollrectComp:addRefreshCallback(function(index, cell)
+ cell:refresh(self.taskList[index])
+ end)
+
+ self.btnRight:addClickListener(function()
+ if self.curStage + 1 > DataManager.FourteenDayData:getActiveDays() then
+ GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_7))
+ return
+ end
+ self.curStage = self.curStage + 1
+ self:onRefresh()
+ end)
+ self.btnLeft:addClickListener(function()
+ self.curStage = self.curStage - 1
+ self:onRefresh()
+ end)
+ self.btnClose:addClickListener(function()
+ self:closeUI()
+ end)
+ self:bind(DataManager.FourteenDayData, "isDirty", function()
+ self:onRefresh()
+ end)
+end
+
+function FourteenDayTaskUI:onRefresh()
+ self.taskStage = DataManager.FourteenDayData:getStageTaskId(self.curStage)
+ self.taskList = DataManager.FourteenDayData:getStageSubTaskIdsSort(self.curStage)
+ Logger.printTable(self.curStage)
+ Logger.printTable(self.taskList)
+ self.scrollrectComp:clearCells()
+ self.scrollrectComp:refillCells(#self.taskList)
+
+ self.txDesc:setText(I18N:getGlobalText(I18N.GlobalConst.ACT_FOURTEEN_DESC_8))
+ self.txSelect:setText(self.curStage .. "/" .. DataManager.FourteenDayData:getTaskMaxStage())
+ self.btnRight:setActive(self.curStage < DataManager.FourteenDayData:getTaskMaxStage())
+ self.btnLeft:setActive(self.curStage > 1)
+
+ self:refreshStageRewards()
+ self:refreshCountdown()
+end
+
+-- 刷新阶段奖励显示
+function FourteenDayTaskUI:refreshStageRewards()
+ local stageRewards = DataManager.FourteenDayData:getTaskRewards(self.taskStage)
+ local canGet = DataManager.FourteenDayData:canGetTaskReward(self.taskStage)
+ local isReceived = DataManager.FourteenDayData:isReceivedTaskReward(self.taskStage)
+ for idx, reward in ipairs(self.rewards) do
+ if stageRewards[idx] then
+ reward:setVisible(true)
+ reward:refreshByConfig(stageRewards[idx], isReceived, isReceived)
+ if canGet then
+ reward:addClickListener(function()
+ ModuleManager.FourteenDayManager:reqTaskReward(self.taskStage)
+ end)
+ else
+ reward:addClickListener(nil)
+ end
+ else
+ reward:setVisible(false)
+ end
+ end
+end
+
+-- 刷新倒计时
+function FourteenDayTaskUI:refreshCountdown()
+ if self.countdownSid then
+ self:unscheduleGlobal(self.countdownSid)
+ end
+ self.countdownSid = self:scheduleGlobal(function()
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(DataManager.FourteenDayData:getEndRemainTime()))
+ end, 1)
+ self.txCountdown:setText(GFunc.getTimeStrWithHMS2(DataManager.FourteenDayData:getEndRemainTime()))
+end
+
+return FourteenDayTaskUI
\ No newline at end of file
diff --git a/lua/app/ui/activity/fourteen_day/fourteen_day_task_ui.lua.meta b/lua/app/ui/activity/fourteen_day/fourteen_day_task_ui.lua.meta
new file mode 100644
index 00000000..15067fcb
--- /dev/null
+++ b/lua/app/ui/activity/fourteen_day/fourteen_day_task_ui.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 70750f44a076f274eabff37f134cc6b0
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/ui/arena/cell/bounty_cell.lua b/lua/app/ui/arena/cell/bounty_cell.lua
index b0078e43..b78b544a 100644
--- a/lua/app/ui/arena/cell/bounty_cell.lua
+++ b/lua/app/ui/arena/cell/bounty_cell.lua
@@ -1,14 +1,12 @@
local BountyCell = class("BountyCell", BaseCell)
-local BOUNTY_REWARD_CELL = "app/ui/arena/cell/bounty_reward_cell"
-
function BountyCell:init()
local uiMap = self:getUIMap()
self.uiMap = uiMap
uiMap["cell.bg.bounty_reward_cell_1"]:setAnchoredPositionX(-GConst.UI_SCREEN_WIDTH/4)
- self.bountyRewardCell1 = uiMap["cell.bg.bounty_reward_cell_1"]:addLuaComponent(BOUNTY_REWARD_CELL)
+ self.bountyRewardCell1 = uiMap["cell.bg.bounty_reward_cell_1"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.BOUNTY_REWARD_CELL)
uiMap["cell.bg.bounty_reward_cell_2"]:setAnchoredPositionX(GConst.UI_SCREEN_WIDTH/4)
- self.bountyRewardCell2 = uiMap["cell.bg.bounty_reward_cell_2"]:addLuaComponent(BOUNTY_REWARD_CELL)
+ self.bountyRewardCell2 = uiMap["cell.bg.bounty_reward_cell_2"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.BOUNTY_REWARD_CELL)
self.lvBg = uiMap["cell.bg.lv_bg"]
self.lvTx = uiMap["cell.bg.lv_bg.lv_tx"]
diff --git a/lua/app/ui/bounty/cell/bounty_cell.lua b/lua/app/ui/bounty/cell/bounty_cell.lua
index 7a3e4188..a3cc053f 100644
--- a/lua/app/ui/bounty/cell/bounty_cell.lua
+++ b/lua/app/ui/bounty/cell/bounty_cell.lua
@@ -1,14 +1,12 @@
local BountyCell = class("BountyCell", BaseCell)
-local BOUNTY_REWARD_CELL = "app/ui/bounty/cell/bounty_reward_cell"
-
function BountyCell:init()
local uiMap = self:getUIMap()
self.uiMap = uiMap
uiMap["cell.bg.bounty_reward_cell_1"]:setAnchoredPositionX(-GConst.UI_SCREEN_WIDTH/4)
- self.bountyRewardCell1 = uiMap["cell.bg.bounty_reward_cell_1"]:addLuaComponent(BOUNTY_REWARD_CELL)
+ self.bountyRewardCell1 = uiMap["cell.bg.bounty_reward_cell_1"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.BOUNTY_REWARD_CELL)
uiMap["cell.bg.bounty_reward_cell_2"]:setAnchoredPositionX(GConst.UI_SCREEN_WIDTH/4)
- self.bountyRewardCell2 = uiMap["cell.bg.bounty_reward_cell_2"]:addLuaComponent(BOUNTY_REWARD_CELL)
+ self.bountyRewardCell2 = uiMap["cell.bg.bounty_reward_cell_2"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.BOUNTY_REWARD_CELL)
self.lvBg = uiMap["cell.bg.lv_bg"]
self.lvTx = uiMap["cell.bg.lv_bg.lv_tx"]
diff --git a/lua/app/ui/bounty/cell/bounty_reward_cell.lua b/lua/app/ui/bounty/cell/bounty_reward_cell.lua
deleted file mode 100644
index 2906ba47..00000000
--- a/lua/app/ui/bounty/cell/bounty_reward_cell.lua
+++ /dev/null
@@ -1,101 +0,0 @@
-local BountyRewardCell = class("BountyRewardCell", BaseCell)
-
-function BountyRewardCell:init()
- local uiMap = self:getUIMap()
- self.bg = uiMap["bounty_reward_cell.bg"]
- self.icon = uiMap["bounty_reward_cell.icon"]
- self.numTx = uiMap["bounty_reward_cell.num"]
- self.check = uiMap["bounty_reward_cell.check"]
- self.fragment = uiMap["bounty_reward_cell.fragment"]
- self.light = uiMap["bounty_reward_cell.light"]
- self.lock = uiMap["bounty_reward_cell.lock"]
- self.matchImg = uiMap["bounty_reward_cell.match_img"]
- self.sImg = uiMap["bounty_reward_cell.s"]
-
- self:hideLight()
- self.baseObject:addClickListener(function()
- if self.clickCallback then
- self.clickCallback()
- elseif self.rewardId ~= nil then
- ModuleManager.TipsManager:showRewardTips(self.rewardId, self.rewardType, self.baseObject)
- end
- end)
-end
-
-function BountyRewardCell:refresh(reward, isPro, isLock, showCheck)
- self:showCheck(showCheck)
- if isPro then
- self.bg:setSprite(GConst.ATLAS_PATH.BOUNTY, "bounty_board_2")
- else
- self.bg:setSprite(GConst.ATLAS_PATH.BOUNTY, "bounty_board_1")
- end
- if isLock then
- self.lock:setVisible(true)
- else
- self.lock:setVisible(false)
- end
- if reward.type == GConst.REWARD_TYPE.ITEM then
- self:_refreshItem(reward)
- self.rewardId = reward.id
- self.rewardType = reward.type
- else
- self.rewardId = nil
- end
-end
-
-function BountyRewardCell:_refreshItem(item)
- local info = ConfigManager:getConfig("item")[item.id]
- if info == nil then
- return
- end
- self.numTx:setText(item.count or item.num)
- if info.type == GConst.ItemConst.ITEM_TYPE.HERO_FRAGMENT then
- local heroInfo = ConfigManager:getConfig("hero")[info.parameter]
- if heroInfo then
- self.icon:setSprite(GConst.ATLAS_PATH.ICON_HERO, heroInfo.icon)
- self.matchImg:setSprite(GConst.ATLAS_PATH.ICON_HERO, GConst.HeroConst.MATCH_ICON_NAME[heroInfo.position])
- self.matchImg:setVisible(true)
- self.sImg:setVisible(heroInfo.qlt >= 4)
- else
- self.icon:setSprite(GConst.ATLAS_PATH.COMMON, "common_alpha")
- self.matchImg:setVisible(false)
- self.sImg:setVisible(false)
- end
- self.fragment:setVisible(true)
- else
- self.icon:setSprite(GConst.ATLAS_PATH.ICON_ITEM, info.icon)
- self.fragment:setVisible(false)
- self.matchImg:setVisible(false)
- self.sImg:setVisible(false)
- end
-end
-
-function BountyRewardCell:showCheck(show)
- self.check:setVisible(show == true)
-end
-
-function BountyRewardCell:setVisible(visible)
- self.baseObject:setActive(visible)
-end
-
-function BountyRewardCell:setAnchoredPositionX(x)
- self.baseObject:setAnchoredPositionX(x)
-end
-
-function BountyRewardCell:setTouchEnable(enable)
- self.baseObject:setTouchEnable(enable)
-end
-
-function BountyRewardCell:addClickListener(callback)
- self.clickCallback = callback
-end
-
-function BountyRewardCell:showLight()
- self.light:setVisible(true)
-end
-
-function BountyRewardCell:hideLight()
- self.light:setVisible(false)
-end
-
-return BountyRewardCell
\ No newline at end of file
diff --git a/lua/app/ui/arena/cell/bounty_reward_cell.lua b/lua/app/ui/common/cell/bounty_reward_cell.lua
similarity index 95%
rename from lua/app/ui/arena/cell/bounty_reward_cell.lua
rename to lua/app/ui/common/cell/bounty_reward_cell.lua
index 2906ba47..6eedad15 100644
--- a/lua/app/ui/arena/cell/bounty_reward_cell.lua
+++ b/lua/app/ui/common/cell/bounty_reward_cell.lua
@@ -25,9 +25,9 @@ end
function BountyRewardCell:refresh(reward, isPro, isLock, showCheck)
self:showCheck(showCheck)
if isPro then
- self.bg:setSprite(GConst.ATLAS_PATH.BOUNTY, "bounty_board_2")
+ self.bg:setSprite(GConst.ATLAS_PATH.ACT_COMMON, "act_common_board_2")
else
- self.bg:setSprite(GConst.ATLAS_PATH.BOUNTY, "bounty_board_1")
+ self.bg:setSprite(GConst.ATLAS_PATH.ACT_COMMON, "act_common_board_1")
end
if isLock then
self.lock:setVisible(true)
diff --git a/lua/app/ui/arena/cell/bounty_reward_cell.lua.meta b/lua/app/ui/common/cell/bounty_reward_cell.lua.meta
similarity index 86%
rename from lua/app/ui/arena/cell/bounty_reward_cell.lua.meta
rename to lua/app/ui/common/cell/bounty_reward_cell.lua.meta
index b6490bbc..837ec9d1 100644
--- a/lua/app/ui/arena/cell/bounty_reward_cell.lua.meta
+++ b/lua/app/ui/common/cell/bounty_reward_cell.lua.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 4208111e8330d6046aa5e366b6be1f9a
+guid: 95ea42e6f8c253144bfbcc09b3d76e89
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
diff --git a/lua/app/ui/main_city/cell/side_bar_fourteen_day_cell.lua b/lua/app/ui/main_city/cell/side_bar_fourteen_day_cell.lua
new file mode 100644
index 00000000..7c03a0f0
--- /dev/null
+++ b/lua/app/ui/main_city/cell/side_bar_fourteen_day_cell.lua
@@ -0,0 +1,43 @@
+local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell"
+local SideBarFourteenDayCell = class("SideBarFourteenDayCell", SideBarBaseCellComp)
+
+function SideBarFourteenDayCell:getIsOpen()
+ return DataManager.FourteenDayData:isOpen() and DataManager.FourteenDayData:isActiveTime()
+end
+
+function SideBarFourteenDayCell:getSpineName()
+ return "ui_act_fourteen_mainbtn"
+end
+
+function SideBarFourteenDayCell:onClick()
+ ModuleManager.FourteenDayManager:showFourteenDayUI()
+end
+
+function SideBarFourteenDayCell:getIsShowRedPoint()
+ return DataManager.FourteenDayData:hasRedPoint()
+end
+
+function SideBarFourteenDayCell:onRefresh()
+ self:_refreshTime()
+end
+
+function SideBarFourteenDayCell:updateTime()
+ if self:getIsOpen() then
+ self:_refreshTime()
+ else
+ self:closeBtn()
+ end
+end
+
+function SideBarFourteenDayCell:_refreshTime()
+ local remainTime = DataManager.FourteenDayData:getEndRemainTime()
+ if remainTime >= 0 then
+ self.timeBg:setVisible(true)
+ self.timeTx:setText(GFunc.getTimeStr(remainTime))
+ else
+ self.timeBg:setVisible(false)
+ self.timeTx:setText("00:00:00")
+ end
+end
+
+return SideBarFourteenDayCell
\ No newline at end of file
diff --git a/lua/app/ui/main_city/cell/side_bar_fourteen_day_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_fourteen_day_cell.lua.meta
new file mode 100644
index 00000000..54ee3446
--- /dev/null
+++ b/lua/app/ui/main_city/cell/side_bar_fourteen_day_cell.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 51bd15e742f644046a5d918498f2a4c2
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/userdata/activity/fourteen_day.meta b/lua/app/userdata/activity/fourteen_day.meta
new file mode 100644
index 00000000..4a046450
--- /dev/null
+++ b/lua/app/userdata/activity/fourteen_day.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: e7b314b845f319d4fa788528c141dc54
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/lua/app/userdata/activity/fourteen_day/fourteen_day_data.lua b/lua/app/userdata/activity/fourteen_day/fourteen_day_data.lua
new file mode 100644
index 00000000..abdda6d5
--- /dev/null
+++ b/lua/app/userdata/activity/fourteen_day/fourteen_day_data.lua
@@ -0,0 +1,579 @@
+local FourteenDayData = class("FourteenDayData", BaseData)
+
+-- 新玩家开启
+local OPEN_DAYS = 7
+-- 活动持续时间
+local ACTIVE_DAYS = 14
+
+function FourteenDayData:ctor()
+ self:clear()
+end
+
+function FourteenDayData:clear()
+ self.data.isDirty = false
+ DataManager:unregisterCrossDayFunc("FourteenDayData")
+ DataManager:unregisterTryOpenFunc("FourteenDayData")
+end
+
+function FourteenDayData:setDirty()
+ self.data.isDirty = not self.data.isDirty
+end
+
+function FourteenDayData:init(data)
+ data = data or GConst.EMPTY_TABLE
+
+ Logger.logHighlight("新手14天乐数据初始化")
+ Logger.printTable(data)
+
+ self.openTs = data.open_at // 1000
+ self.activeDays = data.active_days or 0-- 活动开启后的登陆天数、阶段数
+ self.bountyStatus = data.funds
+ self.tasksStatus = data.tasks
+ self.exchangeStatus = data.exchange_info
+
+ -- 活动开启
+ DataManager:registerTryOpenFunc("FourteenDayData", function()
+ if self:isOpen() then
+ DataManager:unregisterTryOpenFunc("FourteenDayData")
+ self:setDirty()
+ end
+ end)
+ -- 跨天
+ DataManager:registerCrossDayFunc("FourteenDayData", function()
+ if not self:isOpen() then
+ return
+ end
+ if not self:isActiveTime() then
+ return
+ end
+ Logger.logHighlight("14天乐跨天")
+
+ self.activeDays = self.activeDays + 1
+ self:getExchangeShowIds()
+ self:setDirty()
+ end)
+ -- 注册任务进度监听
+ for id, data in ipairs(self:getTaskCfg()) do
+ if data.quest then
+ ModuleManager.TaskManager:registerTask("FourteenDayData", data.quest, function(count)
+ self:addTaskProgress(data.quest, count)
+ end)
+ end
+ end
+end
+
+function FourteenDayData:isOpen()
+ -- 开启条件同七天乐
+ if not ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SEVEN_DAY, true) then
+ return false
+ end
+
+ return true
+end
+
+-- 是否在活动时间内
+function FourteenDayData:isActiveTime()
+ local openTime = self:getOpenTime()
+ local endTime = self:getEndTime()
+ local nowTime = Time:getServerTime()
+
+ return nowTime >= openTime and nowTime < endTime
+end
+
+-- 获取开启时间
+function FourteenDayData:getOpenTime()
+ local result
+ if self.openTs and self.openTs > 0 then
+ result = math.floor(Time:getBeginningOfOneDay(self.openTs))
+ else
+ local registerBeginTs = Time:getBeginningOfOneDay(DataManager:getRegisterTs())
+ result = math.floor(registerBeginTs + (OPEN_DAYS - 1) * 24 * 60 * 60)
+ end
+
+ -- Logger.logHighlight("开始时间:"..result)
+ return result
+end
+
+-- 获取结束时间
+function FourteenDayData:getEndTime()
+ if self.endTs == nil or self.endTs <= 0 then
+ self.endTs = math.floor(self:getOpenTime() + ACTIVE_DAYS * 24 * 60 * 60)
+ end
+
+ return self.endTs
+end
+
+-- 获取活动结束剩余时间(秒)
+function FourteenDayData:getEndRemainTime()
+ return self:getEndTime() - Time:getServerTime()
+end
+
+-- 获取活动开启时的活跃天数
+function FourteenDayData:getActiveDays()
+ return self.activeDays
+end
+
+-- 是否有红点
+function FourteenDayData:hasRedPoint()
+ if not self:isActiveTime() then
+ return false
+ end
+
+ return self:hasBountyRedPoint() or self:hasTaskRedPoint() or self:hasExchangeRedPoint() or self:hasGiftRedPoint()
+end
+
+-- 战令----------------------------------------------------------------------------------------------------------------
+
+-- 是否有战令红点
+function FourteenDayData:hasBountyRedPoint()
+ for id, data in ipairs(self:getBountyCfg()) do
+ if self:canGetBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE) then
+ return true
+ end
+ if self:canGetBountyReward(id, GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY) then
+ return true
+ end
+ end
+
+ return false
+end
+
+-- 获取战令配置
+function FourteenDayData:getBountyCfg()
+ return ConfigManager:getConfig("act_fourteen_bounty")
+end
+
+-- 档位是否已解锁
+function FourteenDayData:isBountyGradeUnlock(grade)
+ if grade == GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY then
+ return DataManager.ShopData:getGiftBoughtNum(PayManager.PURCHARSE_TYPE.ACT_GIFT, GConst.FourteenDayConst.BOUNTY_GIFT_ID) > 0
+ else
+ return true
+ end
+end
+
+-- 获取战令档位奖励
+function FourteenDayData:getBountyGradeReward(id, grade)
+ local cfg = self:getBountyCfg()[id]
+ local result
+ if cfg ~= nil then
+ if grade == GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE then
+ result = cfg.reward
+ elseif grade == GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY then
+ result = cfg.reward_pro
+ end
+ end
+
+ return result
+end
+
+-- 战令奖励可领取
+function FourteenDayData:canGetBountyReward(id, grade)
+ return self:isReachBountyReward(id, grade) and not self:isReceivedBountyReward(id, grade)
+end
+
+-- 战令奖励是否满足领取条件
+function FourteenDayData:isReachBountyReward(id, grade)
+ if self:getActiveDays() >= id then
+ return self:isBountyGradeUnlock(grade)
+ else
+ return false
+ end
+end
+
+-- 战令奖励是否已领取
+function FourteenDayData:isReceivedBountyReward(id, grade)
+ if self.bountyStatus == nil or self.bountyStatus.free_awarded == nil or self.bountyStatus.pay_awarded == nil then
+ return false
+ end
+
+ if grade == GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE then
+ return table.containValue(self.bountyStatus.free_awarded, id)
+ elseif grade == GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY then
+ return table.containValue(self.bountyStatus.pay_awarded, id)
+ end
+
+ return false
+end
+
+-- 战令奖励领取成功
+function FourteenDayData:onReceivedBountyReward(successMap)
+ for index, data in ipairs(successMap) do
+ if data.grade == GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.FREE then
+ table.insert(self.bountyStatus.free_awarded, data.id)
+ elseif data.grade == GConst.FourteenDayConst.BOUNTY_GRADE_TYPE.PAY then
+ table.insert(self.bountyStatus.pay_awarded, data.id)
+ end
+ end
+
+ self:setDirty()
+end
+
+-- 任务----------------------------------------------------------------------------------------------------------------
+
+-- 是否有任务红点
+function FourteenDayData:hasTaskRedPoint()
+ for id, data in ipairs(self:getTaskCfg()) do
+ if self:canGetTaskReward(id) then
+ return true
+ end
+ end
+
+ return false
+end
+
+-- 获取当前应该显示的阶段
+function FourteenDayData:getTaskShowStage()
+ for id, data in ipairs(self:getTaskCfg()) do
+ if self:canGetTaskReward(id) then
+ return data.stage
+ end
+ end
+
+ local curStage = self:getActiveDays()
+ local maxStage = self:getTaskMaxStage()
+ if curStage > maxStage then
+ curStage = maxStage
+ end
+
+ return curStage
+end
+
+
+-- 获取任务配置
+function FourteenDayData:getTaskCfg()
+ return ConfigManager:getConfig("act_fourteen_quest")
+end
+
+-- 获取任务id map结构
+function FourteenDayData:getTaskMap()
+ if self.taskMap == nil then
+ self.taskMap = {}
+ for id, data in ipairs(ConfigManager:getConfig("act_fourteen_quest")) do
+ if self.taskMap[data.stage] == nil then
+ self.taskMap[data.stage] = {}
+ end
+
+ if data.quest ~= nil then
+ if self.taskMap[data.stage].task == nil then
+ self.taskMap[data.stage].task = {}
+ end
+ table.insert(self.taskMap[data.stage].task, id)
+ else
+ self.taskMap[data.stage].stage = id
+ end
+ end
+ end
+
+ return self.taskMap
+end
+
+-- 获取任务最大阶段值
+function FourteenDayData:getTaskMaxStage()
+ return #self:getTaskMap()
+end
+
+-- 获取阶段任务id
+function FourteenDayData:getStageTaskId(stage)
+ local taskMap = self:getTaskMap()
+
+ return taskMap[stage] and taskMap[stage].stage or nil
+end
+
+-- 获取阶段子任务id列表
+function FourteenDayData:getStageSubTaskIdsSort(stage)
+ local taskMap = self:getTaskMap()
+ if taskMap[stage] == nil or taskMap[stage].task == nil then
+ return nil
+ end
+
+ local canGet = {}
+ local unfinish = {}
+ local result = {}
+ for index, id in ipairs(taskMap[stage].task) do
+ if self:isTaskFinish(id) then
+ -- 已完成
+ if self:isReceivedTaskReward(id) then
+ -- 已领取
+ table.insert(result, id)
+ else
+ -- 未领取
+ table.insert(canGet, id)
+ end
+ else
+ --未完成
+ table.insert(unfinish, id)
+ end
+ end
+
+ unfinish = table.addArray(canGet, unfinish)
+ result = table.addArray(unfinish, result)
+
+ return result
+end
+
+-- 获取任务目标
+function FourteenDayData:getTaskTarget(id)
+ return self:getTaskCfg()[id].num
+end
+
+-- 获取任务类型
+function FourteenDayData:getTaskType(id)
+ return self:getTaskCfg()[id].quest
+end
+
+-- 获取任务阶段
+function FourteenDayData:getTaskStage(id)
+ return self:getTaskCfg()[id].stage
+end
+
+-- 获取任务奖励
+function FourteenDayData:getTaskRewards(id)
+ return self:getTaskCfg()[id].reward
+end
+
+-- 获取任务icon
+function FourteenDayData:getTaskIcon(id)
+ return self:getTaskCfg()[id].icon
+end
+
+-- 获取任务描述
+function FourteenDayData:getTaskDesc(id)
+ local taskType = self:getTaskType(id)
+ if taskType == GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING then
+ local grading = DataManager.ArenaData:getGradingName(DataManager.ArenaData:getGradingIdFromScore(self:getTaskTarget(id)))
+ return I18N:getText("task_type", taskType, "desc", grading)
+ elseif taskType == GConst.TaskConst.TASK_TYPE.X_DUNGEON_ARMOR then
+ local cfg = DataManager.DungeonData:getDungeonDataByType(ModuleManager.MODULE_KEY.DUNGEON_ARMOR):getConfig(id)
+ return I18N:getText("task_type", taskType, "desc", cfg.chapter, cfg.stage)
+ else
+ return I18N:getText("task_type", taskType, "desc", self:getTaskTarget(id))
+ end
+end
+
+-- 任务奖励是否可领取
+function FourteenDayData:canGetTaskReward(id)
+ return self:isTaskFinish(id) and not self:isReceivedTaskReward(id)
+end
+
+-- 任务是否完成
+function FourteenDayData:isTaskFinish(id)
+ if self:getTaskType(id) ~= nil then
+ return self:getTaskProgress(id) >= self:getTaskTarget(id)
+ else
+ local ids = self:getStageSubTaskIdsSort(self:getTaskStage(id))
+
+ local isFinish = true
+ for idx, taskId in ipairs(ids) do
+ if not self:isTaskFinish(taskId) then
+ isFinish = false
+ break
+ end
+ end
+
+ return isFinish
+ end
+end
+
+-- 任务奖励是否已领取
+function FourteenDayData:isReceivedTaskReward(id)
+ return self.tasksStatus[id] and self.tasksStatus[id].claimed or false
+end
+
+-- 获取任务进度
+function FourteenDayData:getTaskProgress(id)
+ return self.tasksStatus[id] and self.tasksStatus[id].progress or 0
+end
+
+-- 添加任务进度
+function FourteenDayData:addTaskProgress(taskType, count)
+ -- Logger.logHighlight("任务进度改变:"..tostring(taskType)..","..tostring(count))
+
+ for id, data in ipairs(self:getTaskCfg()) do
+ if data.quest == taskType then
+ if self.tasksStatus[id] == nil then
+ self.tasksStatus[id] = {}
+ self.tasksStatus[id].progress = 0
+ end
+ self.tasksStatus[id].progress = self.tasksStatus[id].progress + count
+ end
+ end
+
+ self:setDirty()
+end
+
+-- 任务奖励领取成功
+function FourteenDayData:onReceivedTaskReward(id)
+ if self.tasksStatus[id] == nil then
+ self.tasksStatus[id] = {}
+ end
+
+ self.tasksStatus[id].claimed = true
+ self:setDirty()
+end
+
+-- 兑换商店--------------------------------------------------------------------------------------------------------------
+
+-- 是否有兑换红点
+function FourteenDayData:hasExchangeRedPoint()
+ local isFullUnlock = true
+ for index, id in ipairs(self:getExchangeShowIds()) do
+ if not self:isExchangeUnlock(id) then
+ isFullUnlock = false
+ break
+ end
+ end
+ if not isFullUnlock then
+ return not LocalData:getTodayFourteenDayExchangeWatched()
+ else
+ return self:getExchangeItemNum() >= self:getExchangeMinNum()
+ end
+end
+
+-- 获取拥有的兑换道具个数
+function FourteenDayData:getExchangeItemNum()
+ return DataManager.BagData.ItemData:getItemNumById(GConst.ItemConst.ITEM_ID_FOURTEEN_DAY_EXCHANGE)
+end
+
+-- 获取兑换配置
+function FourteenDayData:getExchangeCfg()
+ return ConfigManager:getConfig("act_fourteen_exchange")
+end
+
+-- 获取显示的id列表
+function FourteenDayData:getExchangeShowIds()
+ local unlock = {}
+ local lock = {}
+ local soldOut = {}
+ for id, data in ipairs(self:getExchangeCfg()) do
+ if self:getExchangeRemainTime(id) <= 0 then
+ table.insert(soldOut, id)
+ elseif not self:isExchangeUnlock(id) then
+ table.insert(lock, id)
+ else
+ table.insert(unlock, id)
+ end
+ end
+ table.sort(unlock)
+ table.sort(lock)
+ table.sort(soldOut)
+
+ return table.addArray(unlock, table.addArray(lock, soldOut))
+end
+
+-- 获取兑换所需最小道具数
+function FourteenDayData:getExchangeMinNum()
+ local minExchange
+ for index, id in ipairs(self:getExchangeShowIds()) do
+ local temp = self:getExchangeCostNum(id)
+ if minExchange == nil or minExchange > temp then
+ minExchange = temp
+ end
+ end
+
+ return minExchange
+end
+
+-- 物品是否可以兑换
+function FourteenDayData:canExchange(id)
+ return self:isExchangeUnlock(id) and self:getExchangeRemainTime(id) > 0 and self:getExchangeItemNum() >= self:getExchangeCostNum(id)
+end
+
+-- 兑换物品是否解锁
+function FourteenDayData:isExchangeUnlock(id)
+ return self:getActiveDays() >= self:getExchangeUnlockCondition(id)
+end
+
+-- 兑换物品的解锁条件
+function FourteenDayData:getExchangeUnlockCondition(id)
+ return self:getExchangeCfg()[id].stage
+end
+
+-- 兑换物品剩余兑换次数
+function FourteenDayData:getExchangeRemainTime(id)
+ return self:getExchangeCfg()[id].limit - (self.exchangeStatus[id] or 0)
+end
+
+-- 获取兑换的消耗道具个数
+function FourteenDayData:getExchangeCostNum(id)
+ return GFunc.getRewardNum(self:getExchangeCfg()[id].cost)
+end
+
+-- 获取兑换的奖励道具
+function FourteenDayData:getExchangeReward(id)
+ return self:getExchangeCfg()[id].reward
+end
+
+-- 兑换奖励领取成功
+function FourteenDayData:onReceivedExchangeReward(id)
+ if self.exchangeStatus[id] == nil then
+ self.exchangeStatus[id] = 0
+ end
+
+ self.exchangeStatus[id] = self.exchangeStatus[id] + 1
+ self:getExchangeShowIds()
+ self:setDirty()
+end
+
+-- 礼包----------------------------------------------------------------------------------------------------------------
+
+-- 是否有礼包红点
+function FourteenDayData:hasGiftRedPoint()
+ local gifts = DataManager.ShopData:getGiftsByType(PayManager.PURCHARSE_ACT_TYPE.FOURTEEN_DAY_GIFT)
+ for id, data in pairs(gifts) do
+ if data.recharge_id == nil and self:getGiftRemainTime(id) > 0 then
+ return true
+ end
+ end
+
+ return false
+end
+
+-- 是否是免费礼包
+function FourteenDayData:isFreeGift(id)
+ return DataManager.ShopData:getActGiftConfig()[id].recharge_id == nil
+end
+
+-- 获取礼包id列表
+function FourteenDayData:getGiftIdsSort()
+ local gifts = DataManager.ShopData:getGiftsByType(PayManager.PURCHARSE_ACT_TYPE.FOURTEEN_DAY_GIFT)
+
+ local free = {}
+ local unSoldOut = {}
+ local soldOut = {}
+
+ for id, data in pairs(gifts) do
+ if data.recharge_id then
+ if self:getGiftRemainTime(id) > 0 then
+ table.insert(unSoldOut, id)
+ else
+ table.insert(soldOut, id)
+ end
+ else
+ table.insert(free, id)
+ end
+ end
+
+ table.sort(free)
+ table.sort(unSoldOut)
+ table.sort(soldOut)
+
+ return table.addArray(free, table.addArray(unSoldOut, soldOut))
+end
+
+-- 礼包剩余购买次数
+function FourteenDayData:getGiftRemainTime(giftId)
+ if self:isFreeGift(giftId) then
+ local giftData = DataManager.ShopData:getActGiftDetailData(PayManager.PURCHARSE_TYPE.ACT_GIFT, giftId)
+ if giftData and giftData.latest_buy_at then
+ if Time:getBeginningOfOneDay(Time:getServerTime()) == Time:getBeginningOfOneDay(giftData.latest_buy_at // 1000) then
+ return 0
+ end
+ end
+ return 1
+ else
+ return DataManager.ShopData:getGiftRemainBuyNum(giftId)
+ end
+end
+
+return FourteenDayData
\ No newline at end of file
diff --git a/lua/app/userdata/activity/fourteen_day/fourteen_day_data.lua.meta b/lua/app/userdata/activity/fourteen_day/fourteen_day_data.lua.meta
new file mode 100644
index 00000000..cdbca31c
--- /dev/null
+++ b/lua/app/userdata/activity/fourteen_day/fourteen_day_data.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: bfb514a5b5b3c8c43a855a2fd5139977
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/userdata/arena/arena_data.lua b/lua/app/userdata/arena/arena_data.lua
index 802c5f6b..5d5e04d3 100644
--- a/lua/app/userdata/arena/arena_data.lua
+++ b/lua/app/userdata/arena/arena_data.lua
@@ -715,12 +715,14 @@ function ArenaData:onBattleResultReceived(settlement, result)
self.score = self.score + settlement.incr_score
self.curGradingId = self:getGradingIdFromScore(self.score)
- local beforeMaxGradingId = self:getGradingIdFromScore(self.maxScore)
+ local beforeMaxGrading = self.maxScore
self.maxScore = result.highest_score_in_history
- local curMaxGradingId = self:getGradingIdFromScore(self.maxScore)
- if beforeMaxGradingId ~= curMaxGradingId then
+ if self:getGradingIdFromScore(beforeMaxGrading) ~= self:getGradingIdFromScore(self.maxScore) then
DataManager.HeroData:checkIfCanShowHeroUnlockDan(self:getFormartMaxGrading())
end
+ if beforeMaxGrading > self.maxScore then
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_ARENA_GRADING, self.maxScore - beforeMaxGrading)
+ end
self:setDirty()
end
diff --git a/lua/app/userdata/dungeon/dungeon_armor_entity.lua b/lua/app/userdata/dungeon/dungeon_armor_entity.lua
index 73e9dd95..1ce92885 100644
--- a/lua/app/userdata/dungeon/dungeon_armor_entity.lua
+++ b/lua/app/userdata/dungeon/dungeon_armor_entity.lua
@@ -30,6 +30,9 @@ function DungeonArmorEntity:init(data)
end
function DungeonArmorEntity:refreshInfoOnSettlement(chapterId, result)
+ if result.max_id > self.maxPassedId then
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_DUNGEON_ARMOR, result.max_id - self.maxPassedId)
+ end
self.totalChallengeCount[chapterId] = (self.totalChallengeCount[chapterId] or 0) + 1
self.maxPassedId = result.max_id
self.armorInfo[chapterId] = result.armor_info
diff --git a/lua/app/userdata/dungeon/dungeon_gold_entity.lua b/lua/app/userdata/dungeon/dungeon_gold_entity.lua
index 45ccfd2e..861db60a 100644
--- a/lua/app/userdata/dungeon/dungeon_gold_entity.lua
+++ b/lua/app/userdata/dungeon/dungeon_gold_entity.lua
@@ -4,6 +4,9 @@ local DungeonGoldEntity = class("DungeonGoldEntity", DungeonBaseEntity)
-- 金币副本数据
function DungeonGoldEntity:init(data)
+ if self.maxPassedId then
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_DUNGEON_GOLD, data.max_chapter_gold_id - self.maxPassedId)
+ end
self.totalChallengeCount = data.total_challenge_count
self.todayChallengeCount = data.today_challenge_count
self.maxPassedId = data.max_chapter_gold_id
diff --git a/lua/app/userdata/dungeon/dungeon_shards_entity.lua b/lua/app/userdata/dungeon/dungeon_shards_entity.lua
index 73cafe00..0e7eae8f 100644
--- a/lua/app/userdata/dungeon/dungeon_shards_entity.lua
+++ b/lua/app/userdata/dungeon/dungeon_shards_entity.lua
@@ -4,6 +4,9 @@ local DungeonShardsEntity = class("DungeonShardsEntity", DungeonBaseEntity)
-- 碎片副本数据
function DungeonShardsEntity:init(data)
+ if self.maxPassedId then
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_DUNGEON_SHARDS, data.max_chapter_shards_id - self.maxPassedId)
+ end
self.totalChallengeCount = data.total_challenge_count
self.todayChallengeCount = data.today_challenge_count
self.maxPassedId = data.max_chapter_shards_id
diff --git a/lua/app/userdata/dungeon/dungeon_weapon_entity.lua b/lua/app/userdata/dungeon/dungeon_weapon_entity.lua
index c407e845..4db7637e 100644
--- a/lua/app/userdata/dungeon/dungeon_weapon_entity.lua
+++ b/lua/app/userdata/dungeon/dungeon_weapon_entity.lua
@@ -25,6 +25,9 @@ function DungeonWeaponEntity:init(data)
end
function DungeonWeaponEntity:refreshInfoOnSettlement(chapterId, result)
+ if result.max_id > self.maxPassedId then
+ ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_DUNGEON_WEAPON, result.max_id - self.maxPassedId)
+ end
self.totalChallengeCount[chapterId] = (self.totalChallengeCount[chapterId] or 0) + 1
self.maxPassedId = result.max_id
self:updateGift(result.gift_info)
diff --git a/lua/app/userdata/equip/equip_data.lua b/lua/app/userdata/equip/equip_data.lua
index 579096fd..8a3a0c01 100644
--- a/lua/app/userdata/equip/equip_data.lua
+++ b/lua/app/userdata/equip/equip_data.lua
@@ -283,7 +283,7 @@ function EquipData:getGiftTitle(giftId)
end
if gift.type == PayManager.PURCHARSE_ACT_TYPE.WEAPON_UPGRADE_GIFT then
- return I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_26, gift.parameter_pro[1] + 20)
+ return I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_28, gift.parameter_pro[1] + 20)
elseif gift.type == PayManager.PURCHARSE_ACT_TYPE.ARMOR_UPGRADE_GIFT then
return I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_27, gift.parameter_pro[1] + 20)
end
diff --git a/lua/app/userdata/shop/shop_data.lua b/lua/app/userdata/shop/shop_data.lua
index a9d06896..5640b1a2 100644
--- a/lua/app/userdata/shop/shop_data.lua
+++ b/lua/app/userdata/shop/shop_data.lua
@@ -56,10 +56,10 @@ function ShopData:getActGiftConfig()
return ConfigManager:getConfig("act_gift")
end
--- 获取配置的所有该类型的礼包
+-- 获取通用礼包配置的所有该类型的礼包
function ShopData:getGiftsByType(giftType)
local gifts = {}
- for id, data in pairs(DataManager.ShopData:getActGiftConfig()) do
+ for id, data in pairs(self:getActGiftConfig()) do
if data.type == giftType then
gifts[id] = data
end