From 3f40b646ffa936e45d6f0387b8989dcd687697cc Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Tue, 6 May 2025 20:42:51 +0800
Subject: [PATCH 1/9] spine
---
lua/app/module/login/test_login_ui.lua | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/lua/app/module/login/test_login_ui.lua b/lua/app/module/login/test_login_ui.lua
index 7b9049a5..5135741c 100644
--- a/lua/app/module/login/test_login_ui.lua
+++ b/lua/app/module/login/test_login_ui.lua
@@ -21,6 +21,10 @@ function TestLoginUI:onLoadRootComplete()
local uiMap = self.root:genAllChildren()
self.uiMap = uiMap
+ uiMap["test_login_ui.ui_spine_obj"]:playAnimComplete("open", false, true, function()
+ uiMap["test_login_ui.ui_spine_obj"]:playAnim("idle", true, true)
+ end)
+
self.versionTx = uiMap["test_login_ui.version"]
local version = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion()
self.versionTx:setText(I18N:getGlobalText(I18N.GlobalConst.APP) .. version)
From 1e897016441020d8fb803e061e0f4335ddf61cd3 Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Mon, 19 May 2025 22:11:29 +0800
Subject: [PATCH 2/9] proto
---
lua/app/proto/proto_msg_type.lua | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua
index 560b92fd..bd8f7514 100644
--- a/lua/app/proto/proto_msg_type.lua
+++ b/lua/app/proto/proto_msg_type.lua
@@ -138,6 +138,9 @@ local ProtoMsgType = {
[2194306819] = "FullMoonTaskClaimReq",
[2194308652] = "FullMoonTaskClaimRsp",
[2198847028] = "BossRushBoughtNtf",
+ [2199526631] = "TeamSyncMatchNtf",
+ [2199593321] = "TeamSyncMatchReq",
+ [2199595154] = "TeamSyncMatchRsp",
[2224825865] = "ChapterRuneChallengeSettlementReq",
[2224827698] = "ChapterRuneChallengeSettlementRsp",
[2247710148] = "ActivityPVPBountyClaimReq",
@@ -462,6 +465,9 @@ local ProtoMsgType = {
FullMoonTaskClaimReq = 2194306819,
FullMoonTaskClaimRsp = 2194308652,
BossRushBoughtNtf = 2198847028,
+ TeamSyncMatchNtf = 2199526631,
+ TeamSyncMatchReq = 2199593321,
+ TeamSyncMatchRsp = 2199595154,
ChapterRuneChallengeSettlementReq = 2224825865,
ChapterRuneChallengeSettlementRsp = 2224827698,
ActivityPVPBountyClaimReq = 2247710148,
@@ -786,6 +792,9 @@ local ProtoMsgType = {
FullMoonTaskClaimReq = "FullMoonTaskClaimReq",
FullMoonTaskClaimRsp = "FullMoonTaskClaimRsp",
BossRushBoughtNtf = "BossRushBoughtNtf",
+ TeamSyncMatchNtf = "TeamSyncMatchNtf",
+ TeamSyncMatchReq = "TeamSyncMatchReq",
+ TeamSyncMatchRsp = "TeamSyncMatchRsp",
ChapterRuneChallengeSettlementReq = "ChapterRuneChallengeSettlementReq",
ChapterRuneChallengeSettlementRsp = "ChapterRuneChallengeSettlementRsp",
ActivityPVPBountyClaimReq = "ActivityPVPBountyClaimReq",
From 102b4bb6b23eef5e4825099e2ef979e0bd651266 Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Tue, 20 May 2025 23:11:46 +0800
Subject: [PATCH 3/9] fix bug
---
lua/app/global/global_const.lua | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lua/app/global/global_const.lua b/lua/app/global/global_const.lua
index 894e95fa..8a6fd738 100644
--- a/lua/app/global/global_const.lua
+++ b/lua/app/global/global_const.lua
@@ -304,7 +304,8 @@ GConst.DOTWEEN_IDS = {
TUTORIAL = 5,
TASK_TOAST = 6,
BATTLE_UI = 7,
- WAIT_PAY = 8
+ WAIT_PAY = 8,
+ CHAPTER_MONSTER = 9
}
GConst.MESSAGE_BOX_TYPE = {
From faa94296f7627ee6b3017e59e75c3f290684e94c Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Thu, 22 May 2025 22:53:07 +0800
Subject: [PATCH 4/9] ..
---
lua/app/ui/main_city/cell/side_bar_base_cell.lua | 6 ++++--
lua/app/ui/main_city/main_city_ui.lua | 10 +++++-----
2 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/lua/app/ui/main_city/cell/side_bar_base_cell.lua b/lua/app/ui/main_city/cell/side_bar_base_cell.lua
index cbcc1868..d6c7e940 100644
--- a/lua/app/ui/main_city/cell/side_bar_base_cell.lua
+++ b/lua/app/ui/main_city/cell/side_bar_base_cell.lua
@@ -21,7 +21,8 @@ end
-- icon图标资源路径,为空时不显示
function SideBarBaseCellComp:getIconRes()
- return nil
+ -- return nil
+ return "maincity_gm"
end
-- 图标动画资源路径,为空时不显示
@@ -83,7 +84,8 @@ function SideBarBaseCellComp:refreshIcon()
end
function SideBarBaseCellComp:refreshSpine()
- if not self:getSpineName() then
+ -- if not self:getSpineName() then
+ if true then
self.spine:getSkeletonGraphic().enabled = false
return
end
diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua
index d8e05a10..6a69cff1 100644
--- a/lua/app/ui/main_city/main_city_ui.lua
+++ b/lua/app/ui/main_city/main_city_ui.lua
@@ -315,11 +315,11 @@ function MainCityUI:initBottomUI()
BIReport:postHomeBtnCilck(BIReport.CLICK_BTN_TYPE[MainCityUI.CLICK_BTN_TYPE[i]])
end
- self.bottomBtnSpines[i]:playAnimComplete("born1", false, false, function()
- self.bottomBtnSpines[i]:playAnimComplete("born2", false, false, function()
- self.bottomBtnSpines[i]:playAnim("idle", false, false)
- end)
- end)
+ -- self.bottomBtnSpines[i]:playAnimComplete("born1", false, false, function()
+ -- self.bottomBtnSpines[i]:playAnimComplete("born2", false, false, function()
+ -- self.bottomBtnSpines[i]:playAnim("idle", false, false)
+ -- end)
+ -- end)
self:refreshBottom(i, true)
end)
table.insert(self.bottomBtnCells, cellCom)
From aaad211b7b48088bd63fc71e0279b1565f695c37 Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Fri, 23 May 2025 22:40:51 +0800
Subject: [PATCH 5/9] gm
---
lua/app/ui/gm/gm_tool_ui.lua | 1 +
1 file changed, 1 insertion(+)
diff --git a/lua/app/ui/gm/gm_tool_ui.lua b/lua/app/ui/gm/gm_tool_ui.lua
index cc175801..f844489d 100644
--- a/lua/app/ui/gm/gm_tool_ui.lua
+++ b/lua/app/ui/gm/gm_tool_ui.lua
@@ -155,6 +155,7 @@ function GMToolUI:sendMsg(gmCommand)
DataManager.ChapterData:setDirty()
self:closeUI()
else
+ args.args = {gmCommand}
ModuleManager.DevToolManager:dealGM(args)
end
end
From 97d6b03c53ec9ddc341d0f387586f13ffa854499 Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Sat, 24 May 2025 09:58:12 +0800
Subject: [PATCH 6/9] =?UTF-8?q?=E3=80=82=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
lua/app/config/monster_base.lua | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lua/app/config/monster_base.lua b/lua/app/config/monster_base.lua
index 7c0dfbd0..e321d10c 100644
--- a/lua/app/config/monster_base.lua
+++ b/lua/app/config/monster_base.lua
@@ -695,7 +695,7 @@ local monster_base = {
["model_ui"]=1.0
},
[30006]={
- ["model_id"]="p0006",
+ ["model_id"]="p0005",
["body"]=2,
["model_ui"]=1.0
},
@@ -715,7 +715,7 @@ local monster_base = {
["model_ui"]=1.0
},
[30010]={
- ["model_id"]="p0010",
+ ["model_id"]="p0005",
["body"]=2,
["model_ui"]=1.0
},
@@ -730,7 +730,7 @@ local monster_base = {
["model_ui"]=1.0
},
[30014]={
- ["model_id"]="p0014",
+ ["model_id"]="p0005",
["body"]=2,
["model_ui"]=1.0
},
From 219073fb9dddcff140982cb9b96a9b9b66d323fc Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Sat, 24 May 2025 09:58:21 +0800
Subject: [PATCH 7/9] =?UTF-8?q?=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
lua/app/config/skin.lua | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lua/app/config/skin.lua b/lua/app/config/skin.lua
index ba1f760d..66f5989b 100644
--- a/lua/app/config/skin.lua
+++ b/lua/app/config/skin.lua
@@ -6,7 +6,7 @@ local skin = {
["hero_id"]=12001
},
[13001]={
- ["model_id"]="p0014",
+ ["model_id"]="p0005",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=13001
@@ -100,7 +100,7 @@ local skin = {
["hero_id"]=22001
},
[23001]={
- ["model_id"]="p0010",
+ ["model_id"]="p0005",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=23001
@@ -194,7 +194,7 @@ local skin = {
["hero_id"]=32001
},
[33001]={
- ["model_id"]="p0006",
+ ["model_id"]="p0005",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=33001
From 5fd176f477280120f7d142a7f27c33347b295ce8 Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Sat, 24 May 2025 12:00:09 +0800
Subject: [PATCH 8/9] config
---
lua/app/config/activity.lua | 42 +-
lua/app/config/activity_boss_rush_rank.lua | 352 +-
lua/app/config/activity_bounty_level.lua | 5544 +-------
lua/app/config/activity_exchange.lua | 362 +-
lua/app/config/activity_rank.lua | 852 +-
lua/app/config/arena_bounty_level.lua | 3242 +----
lua/app/config/arena_rank.lua | 4018 +-----
lua/app/config/arena_time.lua | 14 +-
lua/app/config/attr.lua | 9 +-
lua/app/config/bounty_level.lua | 3242 +----
lua/app/config/bounty_time.lua | 16 +-
lua/app/config/buff.lua | 49 +-
lua/app/config/chapter.lua | 2488 ++--
lua/app/config/const.lua | 83 +-
lua/app/config/hero.lua | 9697 ++++++++++---
lua/app/config/hero_fund.lua | 606 +
lua/app/config/hero_fund.lua.meta | 10 +
lua/app/config/hero_level.lua | 1389 +-
lua/app/config/hero_star.lua | 276 +
lua/app/config/hero_star.lua.meta | 10 +
lua/app/config/item.lua | 301 +-
.../localization_global_const.lua | 6 +
lua/app/config/mall_daily.lua | 4050 +-----
lua/app/config/monster_base.lua | 42 +-
lua/app/config/player_initial.lua | 12 +-
lua/app/config/skill.lua | 11581 ++++++----------
lua/app/config/skill_rogue.lua | 7884 ++++++-----
lua/app/config/strings/cn/global.lua | 6 +
lua/app/config/strings/cn/item.lua | 160 +-
lua/app/config/strings/de/item.lua | 100 +-
lua/app/config/strings/en/item.lua | 158 +-
lua/app/config/strings/es/item.lua | 158 +-
lua/app/config/strings/fr/item.lua | 100 +-
lua/app/config/strings/id/item.lua | 158 +-
lua/app/config/strings/ja/item.lua | 158 +-
lua/app/config/strings/ko/item.lua | 158 +-
lua/app/config/strings/pt/item.lua | 158 +-
lua/app/config/strings/ru/item.lua | 100 +-
lua/app/config/strings/th/item.lua | 158 +-
lua/app/config/strings/vi/item.lua | 158 +-
lua/app/config/strings/zh/item.lua | 158 +-
lua/app/userdata/hero/hero_data.lua | 28 +-
lua/app/userdata/hero/hero_entity.lua | 13 +-
43 files changed, 20641 insertions(+), 37465 deletions(-)
create mode 100644 lua/app/config/hero_fund.lua
create mode 100644 lua/app/config/hero_fund.lua.meta
create mode 100644 lua/app/config/hero_star.lua
create mode 100644 lua/app/config/hero_star.lua.meta
diff --git a/lua/app/config/activity.lua b/lua/app/config/activity.lua
index 87d0d2e7..a4644802 100644
--- a/lua/app/config/activity.lua
+++ b/lua/app/config/activity.lua
@@ -323,49 +323,9 @@ local activity = {
["act_type"]=6,
["start_time"]="2024-12-24 00:00:00",
["end_time"]="2025-01-02 00:00:00"
- },
- [6606]={
- ["act_type"]=3,
- ["start_time"]="2025-01-01 00:00:00",
- ["end_time"]="2025-01-09 00:00:00"
- },
- [6706]={
- ["act_type"]=5,
- ["start_time"]="2025-01-08 00:00:00",
- ["end_time"]="2025-01-17 00:00:00"
- },
- [6806]={
- ["act_type"]=2,
- ["start_time"]="2025-01-16 00:00:00",
- ["end_time"]="2025-01-24 00:00:00"
- },
- [6906]={
- ["act_type"]=6,
- ["start_time"]="2025-01-23 00:00:00",
- ["end_time"]="2025-02-01 00:00:00"
- },
- [7006]={
- ["act_type"]=3,
- ["start_time"]="2025-01-31 00:00:00",
- ["end_time"]="2025-02-08 00:00:00"
- },
- [7106]={
- ["act_type"]=5,
- ["start_time"]="2025-02-07 00:00:00",
- ["end_time"]="2025-02-16 00:00:00"
- },
- [7206]={
- ["act_type"]=2,
- ["start_time"]="2025-02-15 00:00:00",
- ["end_time"]="2025-02-23 00:00:00"
- },
- [7306]={
- ["act_type"]=6,
- ["start_time"]="2025-02-22 00:00:00",
- ["end_time"]="2025-03-03 00:00:00"
}
}
local config = {
-data=activity,count=73
+data=activity,count=65
}
return config
\ No newline at end of file
diff --git a/lua/app/config/activity_boss_rush_rank.lua b/lua/app/config/activity_boss_rush_rank.lua
index 478a07f5..706bb377 100644
--- a/lua/app/config/activity_boss_rush_rank.lua
+++ b/lua/app/config/activity_boss_rush_rank.lua
@@ -2973,359 +2973,9 @@ local activity_boss_rush_rank = {
["num_for_nothing"]="VAg="
}
}
- },
- [1701]={
- ["activity"]=6806,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- }
- }
- },
- [1702]={
- ["activity"]=6806,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [1703]={
- ["activity"]=6806,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=70,
- ["num_for_nothing"]="UQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [1704]={
- ["activity"]=6806,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [1705]={
- ["activity"]=6806,
- ["ranking"]={
- 11,
- 50
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- }
- },
- [1706]={
- ["activity"]=6806,
- ["ranking"]={
- 51,
- 500
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [1707]={
- ["activity"]=6806,
- ["ranking"]={
- 501,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- }
- },
- [1801]={
- ["activity"]=7206,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- }
- }
- },
- [1802]={
- ["activity"]=7206,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=80,
- ["num_for_nothing"]="Xgg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [1803]={
- ["activity"]=7206,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=70,
- ["num_for_nothing"]="UQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [1804]={
- ["activity"]=7206,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [1805]={
- ["activity"]=7206,
- ["ranking"]={
- 11,
- 50
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- }
- },
- [1806]={
- ["activity"]=7206,
- ["ranking"]={
- 51,
- 500
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [1807]={
- ["activity"]=7206,
- ["ranking"]={
- 501,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- }
}
}
local config = {
-data=activity_boss_rush_rank,count=133
+data=activity_boss_rush_rank,count=119
}
return config
\ No newline at end of file
diff --git a/lua/app/config/activity_bounty_level.lua b/lua/app/config/activity_bounty_level.lua
index de8a04dd..909f5fa5 100644
--- a/lua/app/config/activity_bounty_level.lua
+++ b/lua/app/config/activity_bounty_level.lua
@@ -44529,5551 +44529,9 @@ local activity_bounty_level = {
["num"]=3,
["num_for_nothing"]="VQ=="
}
- },
- [6401]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6402]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6403]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6404]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6405]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6406]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6407]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6408]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6409]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6410]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6411]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6412]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6413]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6414]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6415]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6416]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6417]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6418]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6419]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6420]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6421]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6422]={
- ["act_id"]=6606,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6423]={
- ["act_id"]=6606,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6424]={
- ["act_id"]=6606,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6425]={
- ["act_id"]=6606,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6426]={
- ["act_id"]=6606,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6427]={
- ["act_id"]=6606,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6428]={
- ["act_id"]=6606,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6429]={
- ["act_id"]=6606,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6430]={
- ["act_id"]=6606,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54004,
- ["id_for_nothing"]="UwxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6501]={
- ["act_id"]=6706,
- ["exp"]=0,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6502]={
- ["act_id"]=6706,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6503]={
- ["act_id"]=6706,
- ["exp"]=60,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6504]={
- ["act_id"]=6706,
- ["exp"]=90,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6505]={
- ["act_id"]=6706,
- ["exp"]=120,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6506]={
- ["act_id"]=6706,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6507]={
- ["act_id"]=6706,
- ["exp"]=180,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6508]={
- ["act_id"]=6706,
- ["exp"]=210,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6509]={
- ["act_id"]=6706,
- ["exp"]=240,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6510]={
- ["act_id"]=6706,
- ["exp"]=270,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6511]={
- ["act_id"]=6706,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6512]={
- ["act_id"]=6706,
- ["exp"]=330,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6513]={
- ["act_id"]=6706,
- ["exp"]=360,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6514]={
- ["act_id"]=6706,
- ["exp"]=390,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6515]={
- ["act_id"]=6706,
- ["exp"]=420,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6516]={
- ["act_id"]=6706,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6517]={
- ["act_id"]=6706,
- ["exp"]=480,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6518]={
- ["act_id"]=6706,
- ["exp"]=510,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6519]={
- ["act_id"]=6706,
- ["exp"]=540,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6520]={
- ["act_id"]=6706,
- ["exp"]=570,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6521]={
- ["act_id"]=6706,
- ["exp"]=600,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6522]={
- ["act_id"]=6706,
- ["exp"]=630,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6523]={
- ["act_id"]=6706,
- ["exp"]=660,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6601]={
- ["act_id"]=6806,
- ["exp"]=0,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6602]={
- ["act_id"]=6806,
- ["exp"]=15,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6603]={
- ["act_id"]=6806,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6604]={
- ["act_id"]=6806,
- ["exp"]=45,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [6605]={
- ["act_id"]=6806,
- ["exp"]=60,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6606]={
- ["act_id"]=6806,
- ["exp"]=75,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6607]={
- ["act_id"]=6806,
- ["exp"]=90,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [6608]={
- ["act_id"]=6806,
- ["exp"]=105,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6609]={
- ["act_id"]=6806,
- ["exp"]=120,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6610]={
- ["act_id"]=6806,
- ["exp"]=135,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6611]={
- ["act_id"]=6806,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [6612]={
- ["act_id"]=6806,
- ["exp"]=165,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6613]={
- ["act_id"]=6806,
- ["exp"]=180,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [6614]={
- ["act_id"]=6806,
- ["exp"]=195,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6615]={
- ["act_id"]=6806,
- ["exp"]=210,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6616]={
- ["act_id"]=6806,
- ["exp"]=225,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6617]={
- ["act_id"]=6806,
- ["exp"]=240,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [6618]={
- ["act_id"]=6806,
- ["exp"]=255,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6619]={
- ["act_id"]=6806,
- ["exp"]=270,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6620]={
- ["act_id"]=6806,
- ["exp"]=285,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6621]={
- ["act_id"]=6806,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [6622]={
- ["act_id"]=6806,
- ["exp"]=315,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6623]={
- ["act_id"]=6806,
- ["exp"]=330,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6701]={
- ["act_id"]=6906,
- ["exp"]=0,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6702]={
- ["act_id"]=6906,
- ["exp"]=3,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6703]={
- ["act_id"]=6906,
- ["exp"]=6,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6704]={
- ["act_id"]=6906,
- ["exp"]=9,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6705]={
- ["act_id"]=6906,
- ["exp"]=12,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6706]={
- ["act_id"]=6906,
- ["exp"]=15,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6707]={
- ["act_id"]=6906,
- ["exp"]=18,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6708]={
- ["act_id"]=6906,
- ["exp"]=21,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6709]={
- ["act_id"]=6906,
- ["exp"]=24,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6710]={
- ["act_id"]=6906,
- ["exp"]=27,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6711]={
- ["act_id"]=6906,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6712]={
- ["act_id"]=6906,
- ["exp"]=33,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6713]={
- ["act_id"]=6906,
- ["exp"]=36,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6714]={
- ["act_id"]=6906,
- ["exp"]=39,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6715]={
- ["act_id"]=6906,
- ["exp"]=42,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6716]={
- ["act_id"]=6906,
- ["exp"]=45,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6717]={
- ["act_id"]=6906,
- ["exp"]=48,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6718]={
- ["act_id"]=6906,
- ["exp"]=51,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6719]={
- ["act_id"]=6906,
- ["exp"]=54,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6720]={
- ["act_id"]=6906,
- ["exp"]=57,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6721]={
- ["act_id"]=6906,
- ["exp"]=60,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6722]={
- ["act_id"]=6906,
- ["exp"]=63,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6723]={
- ["act_id"]=6906,
- ["exp"]=66,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6801]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6802]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6803]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6804]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6805]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6806]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6807]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6808]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6809]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6810]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6811]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6812]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6813]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6814]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6815]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6816]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6817]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6818]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6819]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6820]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6821]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6822]={
- ["act_id"]=7006,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6823]={
- ["act_id"]=7006,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6824]={
- ["act_id"]=7006,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6825]={
- ["act_id"]=7006,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6826]={
- ["act_id"]=7006,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=5000,
- ["num_for_nothing"]="UwhcAw=="
- }
- },
- [6827]={
- ["act_id"]=7006,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6828]={
- ["act_id"]=7006,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6829]={
- ["act_id"]=7006,
- ["exp"]=40,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6830]={
- ["act_id"]=7006,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34004,
- ["id_for_nothing"]="VQxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6901]={
- ["act_id"]=7106,
- ["exp"]=0,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6902]={
- ["act_id"]=7106,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6903]={
- ["act_id"]=7106,
- ["exp"]=60,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6904]={
- ["act_id"]=7106,
- ["exp"]=90,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [6905]={
- ["act_id"]=7106,
- ["exp"]=120,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6906]={
- ["act_id"]=7106,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6907]={
- ["act_id"]=7106,
- ["exp"]=180,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6908]={
- ["act_id"]=7106,
- ["exp"]=210,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6909]={
- ["act_id"]=7106,
- ["exp"]=240,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [6910]={
- ["act_id"]=7106,
- ["exp"]=270,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6911]={
- ["act_id"]=7106,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6912]={
- ["act_id"]=7106,
- ["exp"]=330,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6913]={
- ["act_id"]=7106,
- ["exp"]=360,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6914]={
- ["act_id"]=7106,
- ["exp"]=390,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6915]={
- ["act_id"]=7106,
- ["exp"]=420,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6916]={
- ["act_id"]=7106,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6917]={
- ["act_id"]=7106,
- ["exp"]=480,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6918]={
- ["act_id"]=7106,
- ["exp"]=510,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [6919]={
- ["act_id"]=7106,
- ["exp"]=540,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [6920]={
- ["act_id"]=7106,
- ["exp"]=570,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6921]={
- ["act_id"]=7106,
- ["exp"]=600,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [6922]={
- ["act_id"]=7106,
- ["exp"]=630,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [6923]={
- ["act_id"]=7106,
- ["exp"]=660,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7001]={
- ["act_id"]=7206,
- ["exp"]=0,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7002]={
- ["act_id"]=7206,
- ["exp"]=15,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7003]={
- ["act_id"]=7206,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [7004]={
- ["act_id"]=7206,
- ["exp"]=45,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [7005]={
- ["act_id"]=7206,
- ["exp"]=60,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7006]={
- ["act_id"]=7206,
- ["exp"]=75,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7007]={
- ["act_id"]=7206,
- ["exp"]=90,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [7008]={
- ["act_id"]=7206,
- ["exp"]=105,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7009]={
- ["act_id"]=7206,
- ["exp"]=120,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [7010]={
- ["act_id"]=7206,
- ["exp"]=135,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7011]={
- ["act_id"]=7206,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [7012]={
- ["act_id"]=7206,
- ["exp"]=165,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [7013]={
- ["act_id"]=7206,
- ["exp"]=180,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [7014]={
- ["act_id"]=7206,
- ["exp"]=195,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- [7015]={
- ["act_id"]=7206,
- ["exp"]=210,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7016]={
- ["act_id"]=7206,
- ["exp"]=225,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7017]={
- ["act_id"]=7206,
- ["exp"]=240,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [7018]={
- ["act_id"]=7206,
- ["exp"]=255,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [7019]={
- ["act_id"]=7206,
- ["exp"]=270,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7020]={
- ["act_id"]=7206,
- ["exp"]=285,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7021]={
- ["act_id"]=7206,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=40,
- ["num_for_nothing"]="Ugg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=60,
- ["num_for_nothing"]="UAg="
- }
- },
- [7022]={
- ["act_id"]=7206,
- ["exp"]=315,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7023]={
- ["act_id"]=7206,
- ["exp"]=330,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7101]={
- ["act_id"]=7306,
- ["exp"]=0,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7102]={
- ["act_id"]=7306,
- ["exp"]=3,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7103]={
- ["act_id"]=7306,
- ["exp"]=6,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [7104]={
- ["act_id"]=7306,
- ["exp"]=9,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [7105]={
- ["act_id"]=7306,
- ["exp"]=12,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7106]={
- ["act_id"]=7306,
- ["exp"]=15,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7107]={
- ["act_id"]=7306,
- ["exp"]=18,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [7108]={
- ["act_id"]=7306,
- ["exp"]=21,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7109]={
- ["act_id"]=7306,
- ["exp"]=24,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [7110]={
- ["act_id"]=7306,
- ["exp"]=27,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7111]={
- ["act_id"]=7306,
- ["exp"]=30,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [7112]={
- ["act_id"]=7306,
- ["exp"]=33,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [7113]={
- ["act_id"]=7306,
- ["exp"]=36,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7114]={
- ["act_id"]=7306,
- ["exp"]=39,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [7115]={
- ["act_id"]=7306,
- ["exp"]=42,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7116]={
- ["act_id"]=7306,
- ["exp"]=45,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7117]={
- ["act_id"]=7306,
- ["exp"]=48,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [7118]={
- ["act_id"]=7306,
- ["exp"]=51,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [7119]={
- ["act_id"]=7306,
- ["exp"]=54,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [7120]={
- ["act_id"]=7306,
- ["exp"]=57,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7121]={
- ["act_id"]=7306,
- ["exp"]=60,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [7122]={
- ["act_id"]=7306,
- ["exp"]=63,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4000,
- ["num_for_nothing"]="UghcAw=="
- }
- },
- [7123]={
- ["act_id"]=7306,
- ["exp"]=66,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- },
- ["reward_pro_max"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
}
}
local config = {
-data=activity_bounty_level,count=1789
+data=activity_bounty_level,count=1591
}
return config
\ No newline at end of file
diff --git a/lua/app/config/activity_exchange.lua b/lua/app/config/activity_exchange.lua
index 56b9c276..380557a2 100644
--- a/lua/app/config/activity_exchange.lua
+++ b/lua/app/config/activity_exchange.lua
@@ -3058,369 +3058,9 @@ local activity_exchange = {
["num_for_nothing"]="Uw=="
},
["limit"]=999
- },
- [1801]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- ["limit"]=10
- },
- [1802]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34003,
- ["id_for_nothing"]="VQxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["limit"]=10
- },
- [1803]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24001,
- ["id_for_nothing"]="VAxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["limit"]=10
- },
- [1804]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14001,
- ["id_for_nothing"]="VwxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["limit"]=10
- },
- [1805]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=15,
- ["id_for_nothing"]="Vw0=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=240,
- ["num_for_nothing"]="VAxc"
- },
- ["limit"]=3
- },
- [1806]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14,
- ["id_for_nothing"]="Vww=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- ["limit"]=3
- },
- [1807]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- ["limit"]=10
- },
- [1808]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- ["limit"]=999
- },
- [1809]={
- ["activity"]=6806,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- ["limit"]=999
- },
- [1901]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24004,
- ["id_for_nothing"]="VAxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- ["limit"]=10
- },
- [1902]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34001,
- ["id_for_nothing"]="VQxcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["limit"]=10
- },
- [1903]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44002,
- ["id_for_nothing"]="UgxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["limit"]=10
- },
- [1904]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54002,
- ["id_for_nothing"]="UwxcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["limit"]=10
- },
- [1905]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=15,
- ["id_for_nothing"]="Vw0=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=240,
- ["num_for_nothing"]="VAxc"
- },
- ["limit"]=3
- },
- [1906]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14,
- ["id_for_nothing"]="Vww=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- ["limit"]=3
- },
- [1907]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- ["limit"]=10
- },
- [1908]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- ["limit"]=999
- },
- [1909]={
- ["activity"]=7206,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["cost"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52,
- ["id_for_nothing"]="Uwo=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- ["limit"]=999
}
}
local config = {
-data=activity_exchange,count=171
+data=activity_exchange,count=153
}
return config
\ No newline at end of file
diff --git a/lua/app/config/activity_rank.lua b/lua/app/config/activity_rank.lua
index 9470c86e..8f951a14 100644
--- a/lua/app/config/activity_rank.lua
+++ b/lua/app/config/activity_rank.lua
@@ -6548,859 +6548,9 @@ local activity_rank = {
["num_for_nothing"]="VwhcA2U="
}
}
- },
- [4701]={
- ["act_id"]=6606,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=1200,
- ["num_for_nothing"]="VwpcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- }
- }
- },
- [4702]={
- ["act_id"]=6606,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [4703]={
- ["act_id"]=6606,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [4704]={
- ["act_id"]=6606,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [4705]={
- ["act_id"]=6606,
- ["ranking"]={
- 11,
- 50
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=400,
- ["num_for_nothing"]="Ughc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- }
- },
- [4706]={
- ["act_id"]=6606,
- ["ranking"]={
- 51,
- 500
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [4707]={
- ["act_id"]=6606,
- ["ranking"]={
- 501,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- }
- },
- [4801]={
- ["act_id"]=6706,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [4802]={
- ["act_id"]=6706,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [4803]={
- ["act_id"]=6706,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["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"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [4804]={
- ["act_id"]=6706,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["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"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [4805]={
- ["act_id"]=6706,
- ["ranking"]={
- 11,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=10000,
- ["num_for_nothing"]="VwhcA2U="
- }
- }
- },
- [4901]={
- ["act_id"]=6906,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [4902]={
- ["act_id"]=6906,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [4903]={
- ["act_id"]=6906,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["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"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [4904]={
- ["act_id"]=6906,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["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"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [4905]={
- ["act_id"]=6906,
- ["ranking"]={
- 11,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=10000,
- ["num_for_nothing"]="VwhcA2U="
- }
- }
- },
- [5001]={
- ["act_id"]=7006,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=1200,
- ["num_for_nothing"]="VwpcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- }
- }
- },
- [5002]={
- ["act_id"]=7006,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [5003]={
- ["act_id"]=7006,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [5004]={
- ["act_id"]=7006,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [5005]={
- ["act_id"]=7006,
- ["ranking"]={
- 11,
- 50
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=400,
- ["num_for_nothing"]="Ughc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- }
- },
- [5006]={
- ["act_id"]=7006,
- ["ranking"]={
- 51,
- 500
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [5007]={
- ["act_id"]=7006,
- ["ranking"]={
- 501,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=55,
- ["id_for_nothing"]="Uw0=",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- }
- },
- [5101]={
- ["act_id"]=7106,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [5102]={
- ["act_id"]=7106,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [5103]={
- ["act_id"]=7106,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["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"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [5104]={
- ["act_id"]=7106,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["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"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [5105]={
- ["act_id"]=7106,
- ["ranking"]={
- 11,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=10000,
- ["num_for_nothing"]="VwhcA2U="
- }
- }
- },
- [5201]={
- ["act_id"]=7306,
- ["ranking"]={
- 1,
- 1
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=300,
- ["num_for_nothing"]="VQhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
- }
- },
- [5202]={
- ["act_id"]=7306,
- ["ranking"]={
- 2,
- 2
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=150,
- ["num_for_nothing"]="Vw1c"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=47,
- ["id_for_nothing"]="Ug8=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- }
- }
- },
- [5203]={
- ["act_id"]=7306,
- ["ranking"]={
- 3,
- 3
- },
- ["reward"]={
- {
- ["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"]=3,
- ["num_for_nothing"]="VQ=="
- }
- }
- },
- [5204]={
- ["act_id"]=7306,
- ["ranking"]={
- 4,
- 10
- },
- ["reward"]={
- {
- ["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"]=1,
- ["num_for_nothing"]="Vw=="
- }
- }
- },
- [5205]={
- ["act_id"]=7306,
- ["ranking"]={
- 11,
- 99999999
- },
- ["reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=10000,
- ["num_for_nothing"]="VwhcA2U="
- }
- }
}
}
local config = {
-data=activity_rank,count=296
+data=activity_rank,count=262
}
return config
\ No newline at end of file
diff --git a/lua/app/config/arena_bounty_level.lua b/lua/app/config/arena_bounty_level.lua
index 7cda6a13..67fa098c 100644
--- a/lua/app/config/arena_bounty_level.lua
+++ b/lua/app/config/arena_bounty_level.lua
@@ -29158,3249 +29158,9 @@ local arena_bounty_level = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- },
- [1901]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54003,
- ["id_for_nothing"]="UwxcA2Y=",
- ["num"]=8,
- ["num_for_nothing"]="Xg=="
- }
- },
- [1902]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1903]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1904]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1905]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1906]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1907]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1908]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1909]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1910]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["reward_type"]=1
- },
- [1911]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1912]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1913]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1914]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1915]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1916]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1917]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1918]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1919]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1920]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1921]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1922]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1923]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1924]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1925]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1926]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1927]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1928]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1929]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1930]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1931]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1932]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1933]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1934]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1935]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1936]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1937]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1938]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1939]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1940]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1941]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1942]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1943]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1944]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1945]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1946]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1947]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1948]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1949]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1950]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1951]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1952]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1953]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1954]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1955]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1956]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1957]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1958]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1959]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1960]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1961]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1962]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1963]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1964]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1965]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1966]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1967]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1968]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1969]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- }
- },
- [1970]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1971]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1972]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1973]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1974]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1975]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1976]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [1977]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1978]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1979]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1980]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1981]={
- ["season"]=19,
- ["exp"]=1000,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2001]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34003,
- ["id_for_nothing"]="VQxcA2Y=",
- ["num"]=8,
- ["num_for_nothing"]="Xg=="
- }
- },
- [2002]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2003]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2004]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2005]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2006]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2007]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2008]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2009]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2010]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["reward_type"]=1
- },
- [2011]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2012]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2013]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2014]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2015]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2016]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2017]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2018]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2019]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2020]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2021]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2022]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2023]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2024]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2025]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2026]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2027]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2028]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2029]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2030]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2031]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2032]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2033]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2034]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2035]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2036]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2037]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2038]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2039]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2040]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2041]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2042]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2043]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2044]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2045]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2046]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2047]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2048]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2049]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=2000,
- ["num_for_nothing"]="VAhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2050]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2051]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2052]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2053]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2054]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2055]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2056]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2057]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2058]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2059]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2060]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2061]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2062]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2063]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2064]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2065]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2066]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2067]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2068]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2069]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- }
- },
- [2070]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2071]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2072]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2073]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2074]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2075]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2076]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22,
- ["id_for_nothing"]="VAo=",
- ["num"]=2,
- ["num_for_nothing"]="VA=="
- }
- },
- [2077]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2078]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2079]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2080]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2081]={
- ["season"]=20,
- ["exp"]=1000,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
}
}
local config = {
-data=arena_bounty_level,count=1620
+data=arena_bounty_level,count=1458
}
return config
\ No newline at end of file
diff --git a/lua/app/config/arena_rank.lua b/lua/app/config/arena_rank.lua
index 0bd53316..d608d69e 100644
--- a/lua/app/config/arena_rank.lua
+++ b/lua/app/config/arena_rank.lua
@@ -36718,4025 +36718,9 @@ local arena_rank = {
["name_txt"]="ARENA_RANKNAME_12",
["rank_show"]="arena_num_gold_1",
["rank_icon"]="arena_dan_3"
- },
- [1901]={
- ["season"]=19,
- ["score"]=900,
- ["reset_rank"]=2001,
- ["inactive_reset_rank"]=2001,
- ["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"
- },
- [1902]={
- ["season"]=19,
- ["score"]=1000,
- ["reset_rank"]=2001,
- ["inactive_reset_rank"]=2001,
- ["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"]={
- 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_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"
- },
- [1903]={
- ["season"]=19,
- ["score"]=1100,
- ["reset_rank"]=2001,
- ["inactive_reset_rank"]=2001,
- ["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"]={
- 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_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"
- },
- [1904]={
- ["season"]=19,
- ["score"]=1200,
- ["reset_rank"]=2004,
- ["inactive_reset_rank"]=2001,
- ["min_point"]=4,
- ["k1"]=30,
- ["k2"]=300,
- ["k3"]=15,
- ["k4"]=15,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=10000,
- ["num_for_nothing"]="VwhcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=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"]={
- 16,
- 17,
- 18,
- 19,
- 20
- },
- ["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"
- },
- [1905]={
- ["season"]=19,
- ["score"]=1400,
- ["reset_rank"]=2004,
- ["inactive_reset_rank"]=2001,
- ["min_point"]=4,
- ["k1"]=28,
- ["k2"]=250,
- ["k3"]=14,
- ["k4"]=14,
- ["season_reward"]={
- {
- ["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"]={
- 21,
- 22,
- 23,
- 24,
- 25
- },
- ["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"
- },
- [1906]={
- ["season"]=19,
- ["score"]=1600,
- ["reset_rank"]=2004,
- ["inactive_reset_rank"]=2001,
- ["min_point"]=4,
- ["k1"]=25,
- ["k2"]=200,
- ["k3"]=12,
- ["k4"]=12,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=18000,
- ["num_for_nothing"]="VwBcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=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"]={
- 26,
- 27,
- 28,
- 29,
- 30
- },
- ["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"
- },
- [1907]={
- ["season"]=19,
- ["score"]=1800,
- ["reset_rank"]=2004,
- ["inactive_reset_rank"]=2001,
- ["min_point"]=4,
- ["k1"]=23,
- ["k2"]=150,
- ["k3"]=11,
- ["k4"]=11,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=20000,
- ["num_for_nothing"]="VAhcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=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"]={
- 31,
- 32,
- 33,
- 34,
- 35
- },
- ["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"
- },
- [1908]={
- ["season"]=19,
- ["score"]=2000,
- ["reset_rank"]=2008,
- ["inactive_reset_rank"]=2004,
- ["min_point"]=4,
- ["k1"]=21,
- ["k2"]=250,
- ["k3"]=10,
- ["k4"]=10,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=25000,
- ["num_for_nothing"]="VA1cA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=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"]={
- 36,
- 37,
- 38,
- 39,
- 40
- },
- ["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"
- },
- [1909]={
- ["season"]=19,
- ["score"]=2200,
- ["reset_rank"]=2008,
- ["inactive_reset_rank"]=2004,
- ["min_point"]=4,
- ["k1"]=20,
- ["k2"]=180,
- ["k3"]=10,
- ["k4"]=10,
- ["season_reward"]={
- {
- ["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"]={
- 41,
- 42,
- 43,
- 44,
- 45
- },
- ["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"
- },
- [1910]={
- ["season"]=19,
- ["score"]=2500,
- ["reset_rank"]=2008,
- ["inactive_reset_rank"]=2004,
- ["min_point"]=4,
- ["k1"]=18,
- ["k2"]=150,
- ["k3"]=9,
- ["k4"]=9,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=35000,
- ["num_for_nothing"]="VQ1cA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=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"]={
- 46,
- 47,
- 48,
- 49,
- 50
- },
- ["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"
- },
- [1911]={
- ["season"]=19,
- ["score"]=2800,
- ["reset_rank"]=2008,
- ["inactive_reset_rank"]=2004,
- ["min_point"]=4,
- ["k1"]=16,
- ["k2"]=130,
- ["k3"]=8,
- ["k4"]=8,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=40000,
- ["num_for_nothing"]="UghcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=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"]={
- 51,
- 52,
- 53,
- 54,
- 55
- },
- ["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"
- },
- [1912]={
- ["season"]=19,
- ["score"]=3100,
- ["reset_rank"]=2008,
- ["inactive_reset_rank"]=2004,
- ["min_point"]=4,
- ["k1"]=15,
- ["k2"]=120,
- ["k3"]=7,
- ["k4"]=7,
- ["season_reward"]={
- {
- ["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"]={
- 56,
- 57,
- 58,
- 59,
- 60
- },
- ["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"
- },
- [2001]={
- ["season"]=20,
- ["score"]=900,
- ["reset_rank"]=2101,
- ["inactive_reset_rank"]=2101,
- ["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"]={
- 61,
- 62,
- 63,
- 64,
- 65
- },
- ["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"
- },
- [2002]={
- ["season"]=20,
- ["score"]=1000,
- ["reset_rank"]=2101,
- ["inactive_reset_rank"]=2101,
- ["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"]={
- 61,
- 62,
- 63,
- 64,
- 65
- },
- ["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"
- },
- [2003]={
- ["season"]=20,
- ["score"]=1100,
- ["reset_rank"]=2101,
- ["inactive_reset_rank"]=2101,
- ["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"]={
- 61,
- 62,
- 63,
- 64,
- 65
- },
- ["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"
- },
- [2004]={
- ["season"]=20,
- ["score"]=1200,
- ["reset_rank"]=2104,
- ["inactive_reset_rank"]=2101,
- ["min_point"]=4,
- ["k1"]=30,
- ["k2"]=300,
- ["k3"]=15,
- ["k4"]=15,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=10000,
- ["num_for_nothing"]="VwhcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=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"]={
- 66,
- 67,
- 68,
- 69,
- 70
- },
- ["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"
- },
- [2005]={
- ["season"]=20,
- ["score"]=1400,
- ["reset_rank"]=2104,
- ["inactive_reset_rank"]=2101,
- ["min_point"]=4,
- ["k1"]=28,
- ["k2"]=250,
- ["k3"]=14,
- ["k4"]=14,
- ["season_reward"]={
- {
- ["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"]={
- 66,
- 67,
- 68,
- 69,
- 70
- },
- ["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"
- },
- [2006]={
- ["season"]=20,
- ["score"]=1600,
- ["reset_rank"]=2104,
- ["inactive_reset_rank"]=2101,
- ["min_point"]=4,
- ["k1"]=25,
- ["k2"]=200,
- ["k3"]=12,
- ["k4"]=12,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=18000,
- ["num_for_nothing"]="VwBcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=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"]={
- 66,
- 67,
- 68,
- 69,
- 70
- },
- ["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"
- },
- [2007]={
- ["season"]=20,
- ["score"]=1800,
- ["reset_rank"]=2104,
- ["inactive_reset_rank"]=2101,
- ["min_point"]=4,
- ["k1"]=23,
- ["k2"]=150,
- ["k3"]=11,
- ["k4"]=11,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=20000,
- ["num_for_nothing"]="VAhcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=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"]={
- 66,
- 67,
- 68,
- 69,
- 70
- },
- ["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"
- },
- [2008]={
- ["season"]=20,
- ["score"]=2000,
- ["reset_rank"]=2108,
- ["inactive_reset_rank"]=2104,
- ["min_point"]=4,
- ["k1"]=21,
- ["k2"]=250,
- ["k3"]=10,
- ["k4"]=10,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=25000,
- ["num_for_nothing"]="VA1cA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=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"]={
- 71,
- 72,
- 73,
- 74,
- 75
- },
- ["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"
- },
- [2009]={
- ["season"]=20,
- ["score"]=2200,
- ["reset_rank"]=2108,
- ["inactive_reset_rank"]=2104,
- ["min_point"]=4,
- ["k1"]=20,
- ["k2"]=180,
- ["k3"]=10,
- ["k4"]=10,
- ["season_reward"]={
- {
- ["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"]={
- 71,
- 72,
- 73,
- 74,
- 75
- },
- ["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"
- },
- [2010]={
- ["season"]=20,
- ["score"]=2500,
- ["reset_rank"]=2108,
- ["inactive_reset_rank"]=2104,
- ["min_point"]=4,
- ["k1"]=18,
- ["k2"]=150,
- ["k3"]=9,
- ["k4"]=9,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=35000,
- ["num_for_nothing"]="VQ1cA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=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"]={
- 71,
- 72,
- 73,
- 74,
- 75
- },
- ["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"
- },
- [2011]={
- ["season"]=20,
- ["score"]=2800,
- ["reset_rank"]=2108,
- ["inactive_reset_rank"]=2104,
- ["min_point"]=4,
- ["k1"]=16,
- ["k2"]=130,
- ["k3"]=8,
- ["k4"]=8,
- ["season_reward"]={
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=40000,
- ["num_for_nothing"]="UghcA2U="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=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"]={
- 71,
- 72,
- 73,
- 74,
- 75
- },
- ["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"
- },
- [2012]={
- ["season"]=20,
- ["score"]=3100,
- ["reset_rank"]=2108,
- ["inactive_reset_rank"]=2104,
- ["min_point"]=4,
- ["k1"]=15,
- ["k2"]=120,
- ["k3"]=7,
- ["k4"]=7,
- ["season_reward"]={
- {
- ["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"]={
- 71,
- 72,
- 73,
- 74,
- 75
- },
- ["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"
}
}
local config = {
-data=arena_rank,count=240
+data=arena_rank,count=216
}
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 4c1f3cef..dac96f49 100644
--- a/lua/app/config/arena_time.lua
+++ b/lua/app/config/arena_time.lua
@@ -106,21 +106,9 @@ local arena_time = {
["start_time"]="2024-12-15 00:00:00",
["end_time"]="2025-1-15 00:00:00",
["ui_banner"]="ui_arena_bounty_banner"
- },
- [19]={
- ["season"]=19,
- ["start_time"]="2025-1-15 00:00:00",
- ["end_time"]="2025-2-15 00:00:00",
- ["ui_banner"]="ui_arena_bounty_banner"
- },
- [20]={
- ["season"]=20,
- ["start_time"]="2025-2-15 00:00:00",
- ["end_time"]="2025-3-15 00:00:00",
- ["ui_banner"]="ui_arena_bounty_banner"
}
}
local config = {
-data=arena_time,count=20
+data=arena_time,count=18
}
return config
\ No newline at end of file
diff --git a/lua/app/config/attr.lua b/lua/app/config/attr.lua
index 0c81d525..5fbb43c2 100644
--- a/lua/app/config/attr.lua
+++ b/lua/app/config/attr.lua
@@ -242,6 +242,10 @@ local attr = {
[61]={
["id"]=61,
["name"]="attr_all_hurtp_purple"
+ },
+ [62]={
+ ["id"]=62,
+ ["name"]="attr_atkp_person"
}
}
local keys = {
@@ -306,12 +310,13 @@ local keys = {
["attr_all_hurtp_yellow"]=attr[58],
["attr_all_hurtp_green"]=attr[59],
["attr_all_hurtp_blue"]=attr[60],
- ["attr_all_hurtp_purple"]=attr[61]
+ ["attr_all_hurtp_purple"]=attr[61],
+ ["attr_atkp_person"]=attr[62]
}
}
local config = {
data=attr,
keys=keys,
-count=61
+count=62
}
return config
\ No newline at end of file
diff --git a/lua/app/config/bounty_level.lua b/lua/app/config/bounty_level.lua
index 7fbd3db4..c222ee4c 100644
--- a/lua/app/config/bounty_level.lua
+++ b/lua/app/config/bounty_level.lua
@@ -29158,3249 +29158,9 @@ local bounty_level = {
["num"]=1,
["num_for_nothing"]="Vw=="
}
- },
- [1901]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1902]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1903]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1904]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- }
- },
- [1905]={
- ["season"]=19,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1906]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1907]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1908]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1909]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1910]={
- ["season"]=19,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["reward_type"]=1
- },
- [1911]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1912]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- }
- },
- [1913]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1914]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1915]={
- ["season"]=19,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1916]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1917]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1918]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1919]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1920]={
- ["season"]=19,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1921]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1922]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1923]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1924]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1925]={
- ["season"]=19,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1926]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1927]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1928]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1929]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- }
- },
- [1930]={
- ["season"]=19,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1931]={
- ["season"]=19,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1932]={
- ["season"]=19,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1933]={
- ["season"]=19,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1934]={
- ["season"]=19,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1935]={
- ["season"]=19,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1936]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1937]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1938]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1939]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1940]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1941]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1942]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [1943]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1944]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1945]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1946]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1947]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1948]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1949]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1950]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1951]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1952]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [1953]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1954]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1955]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1956]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1957]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1958]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1959]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1960]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1961]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1962]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [1963]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1964]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1965]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1966]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1967]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [1968]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1969]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- }
- },
- [1970]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1971]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1972]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [1973]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1974]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1975]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [1976]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [1977]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [1978]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1979]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [1980]={
- ["season"]=19,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [1981]={
- ["season"]=19,
- ["exp"]=1000,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2001]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2002]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2003]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2004]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- }
- },
- [2005]={
- ["season"]=20,
- ["exp"]=150,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2006]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2007]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2008]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2009]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2010]={
- ["season"]=20,
- ["exp"]=200,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- ["reward_type"]=1
- },
- [2011]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2012]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=500,
- ["num_for_nothing"]="Uwhc"
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- }
- },
- [2013]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2014]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2015]={
- ["season"]=20,
- ["exp"]=250,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2016]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2017]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2018]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2019]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2020]={
- ["season"]=20,
- ["exp"]=300,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2021]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2022]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2023]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2024]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2025]={
- ["season"]=20,
- ["exp"]=350,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2026]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2027]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2028]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2029]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- }
- },
- [2030]={
- ["season"]=20,
- ["exp"]=400,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2031]={
- ["season"]=20,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2032]={
- ["season"]=20,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2033]={
- ["season"]=20,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2034]={
- ["season"]=20,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2035]={
- ["season"]=20,
- ["exp"]=450,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2036]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2037]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2038]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2039]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2040]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2041]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2042]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1000,
- ["num_for_nothing"]="VwhcAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=3000,
- ["num_for_nothing"]="VQhcAw=="
- }
- },
- [2043]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2044]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2045]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2046]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2047]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2048]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2049]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2050]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2051]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2052]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [2053]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2054]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2055]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2056]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2057]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2058]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2059]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2060]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2061]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2062]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [2063]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2064]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2065]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2066]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2067]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- }
- },
- [2068]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2069]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=50,
- ["num_for_nothing"]="Uwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- }
- },
- [2070]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2071]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2072]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [2073]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2074]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2075]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13,
- ["id_for_nothing"]="Vws=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44004,
- ["id_for_nothing"]="UgxcA2E=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- }
- },
- [2076]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- [2077]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=1500,
- ["num_for_nothing"]="Vw1cAw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=4500,
- ["num_for_nothing"]="Ug1cAw=="
- }
- },
- [2078]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=8,
- ["id_for_nothing"]="Xg==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=9,
- ["id_for_nothing"]="Xw==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2079]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
- },
- [2080]={
- ["season"]=20,
- ["exp"]=500,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=11,
- ["id_for_nothing"]="Vwk=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_pro"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=18,
- ["id_for_nothing"]="VwA=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- ["reward_type"]=1
- },
- [2081]={
- ["season"]=20,
- ["exp"]=1000,
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=10,
- ["id_for_nothing"]="Vwg=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
}
}
local config = {
-data=bounty_level,count=1620
+data=bounty_level,count=1458
}
return config
\ No newline at end of file
diff --git a/lua/app/config/bounty_time.lua b/lua/app/config/bounty_time.lua
index c1abf17d..86ddfffe 100644
--- a/lua/app/config/bounty_time.lua
+++ b/lua/app/config/bounty_time.lua
@@ -124,23 +124,9 @@ local bounty_time = {
["end_time"]="2025-1-1 00:00:00",
["ui_banner"]="ui_bounty_banner_3",
["enter_ui_banner"]="bounty_btn_main_3"
- },
- [19]={
- ["season"]=19,
- ["start_time"]="2025-1-1 00:00:00",
- ["end_time"]="2025-2-1 00:00:00",
- ["ui_banner"]="ui_bounty_banner_4",
- ["enter_ui_banner"]="bounty_btn_main_4"
- },
- [20]={
- ["season"]=20,
- ["start_time"]="2025-2-1 00:00:00",
- ["end_time"]="2025-3-1 00:00:00",
- ["ui_banner"]="ui_bounty_banner_5",
- ["enter_ui_banner"]="bounty_btn_main_5"
}
}
local config = {
-data=bounty_time,count=20
+data=bounty_time,count=18
}
return config
\ No newline at end of file
diff --git a/lua/app/config/buff.lua b/lua/app/config/buff.lua
index b32d6971..df4220bf 100644
--- a/lua/app/config/buff.lua
+++ b/lua/app/config/buff.lua
@@ -925,6 +925,46 @@ local buff = {
["fx_continued"]={
18
}
+ },
+ [98]={
+ ["id"]=98,
+ ["name"]="hpp_red_add",
+ ["buff_type"]=1,
+ ["stack"]=2,
+ ["position"]=1,
+ ["decr"]=1
+ },
+ [99]={
+ ["id"]=99,
+ ["name"]="hpp_yellow_add",
+ ["buff_type"]=1,
+ ["stack"]=2,
+ ["position"]=2,
+ ["decr"]=1
+ },
+ [100]={
+ ["id"]=100,
+ ["name"]="hpp_green_add",
+ ["buff_type"]=1,
+ ["stack"]=2,
+ ["position"]=3,
+ ["decr"]=1
+ },
+ [101]={
+ ["id"]=101,
+ ["name"]="hpp_blue_add",
+ ["buff_type"]=1,
+ ["stack"]=2,
+ ["position"]=4,
+ ["decr"]=1
+ },
+ [102]={
+ ["id"]=102,
+ ["name"]="hpp_purple_add",
+ ["buff_type"]=1,
+ ["stack"]=2,
+ ["position"]=5,
+ ["decr"]=1
}
}
local keys = {
@@ -1025,12 +1065,17 @@ local keys = {
["forever_dec_dmg_blue_add"]=buff[94],
["forever_dec_dmg_purple_add"]=buff[95],
["forever_dec_dmg_all_add"]=buff[96],
- ["forever_thorns"]=buff[97]
+ ["forever_thorns"]=buff[97],
+ ["hpp_red_add"]=buff[98],
+ ["hpp_yellow_add"]=buff[99],
+ ["hpp_green_add"]=buff[100],
+ ["hpp_blue_add"]=buff[101],
+ ["hpp_purple_add"]=buff[102]
}
}
local config = {
data=buff,
keys=keys,
-count=97
+count=102
}
return config
\ No newline at end of file
diff --git a/lua/app/config/chapter.lua b/lua/app/config/chapter.lua
index abe6160c..d1f7fba9 100644
--- a/lua/app/config/chapter.lua
+++ b/lua/app/config/chapter.lua
@@ -1,5 +1,7 @@
local chapter = {
[1]={
+ ["chapter"]=1,
+ ["stage"]=1,
["next_chapter"]=2,
["icon"]="chapter_1",
["scene"]="bg_1",
@@ -14,9 +16,9 @@ local chapter = {
},
["involved_skill"]={
{
- 3200100,
- 2200100,
- 4200100
+ 1,
+ 2,
+ 3
}
},
["not_involved_skill"]={
@@ -49,6 +51,9 @@ local chapter = {
401,
501
},
+ ["mystery_box"]={
+ 0
+ },
["wave_reward"]={
{
["type"]=1,
@@ -132,6 +137,8 @@ local chapter = {
}
},
[2]={
+ ["chapter"]=1,
+ ["stage"]=2,
["before_chapter"]=1,
["next_chapter"]=3,
["icon"]="chapter_2",
@@ -165,6 +172,10 @@ local chapter = {
1401,
1501
},
+ ["mystery_box"]={
+ 0,
+ 0
+ },
["wave_reward"]={
{
["type"]=1,
@@ -283,6 +294,8 @@ local chapter = {
}
},
[3]={
+ ["chapter"]=1,
+ ["stage"]=3,
["before_chapter"]=2,
["next_chapter"]=4,
["icon"]="chapter_3",
@@ -311,6 +324,11 @@ local chapter = {
2901,
3001
},
+ ["mystery_box"]={
+ 0,
+ 0,
+ 0
+ },
["wave_reward"]={
{
["type"]=1,
@@ -429,6 +447,8 @@ local chapter = {
}
},
[4]={
+ ["chapter"]=2,
+ ["stage"]=1,
["before_chapter"]=3,
["next_chapter"]=5,
["icon"]="chapter_4",
@@ -464,29 +484,23 @@ local chapter = {
5001
},
["mystery_box"]={
- 1,
- 4
+ 10000,
+ 0,
+ 0,
+ 10000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=4,
- ["id_for_nothing"]="Ug==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=4,
+ ["num"]=10,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -626,6 +640,8 @@ local chapter = {
}
},
[5]={
+ ["chapter"]=2,
+ ["stage"]=2,
["before_chapter"]=4,
["next_chapter"]=6,
["icon"]="chapter_5",
@@ -661,29 +677,23 @@ local chapter = {
7001
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=4,
- ["id_for_nothing"]="Ug==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=4,
+ ["num"]=10,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -829,6 +839,8 @@ local chapter = {
}
},
[6]={
+ ["chapter"]=2,
+ ["stage"]=3,
["before_chapter"]=5,
["next_chapter"]=7,
["icon"]="chapter_6",
@@ -864,29 +876,23 @@ local chapter = {
9001
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=4,
- ["id_for_nothing"]="Ug==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=4,
+ ["num"]=10,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -1032,6 +1038,8 @@ local chapter = {
}
},
[7]={
+ ["chapter"]=2,
+ ["stage"]=4,
["before_chapter"]=6,
["next_chapter"]=8,
["icon"]="chapter_7",
@@ -1067,29 +1075,23 @@ local chapter = {
11001
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=5,
- ["id_for_nothing"]="Uw==",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
+ ["type"]=1,
+ ["id"]=5,
+ ["num"]=5,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -1251,6 +1253,8 @@ local chapter = {
}
},
[8]={
+ ["chapter"]=2,
+ ["stage"]=5,
["before_chapter"]=7,
["next_chapter"]=9,
["icon"]="chapter_8",
@@ -1286,29 +1290,23 @@ local chapter = {
13001
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=5,
- ["id_for_nothing"]="Uw==",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- }
+ ["type"]=1,
+ ["id"]=5,
+ ["num"]=5,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -1470,6 +1468,8 @@ local chapter = {
}
},
[9]={
+ ["chapter"]=3,
+ ["stage"]=1,
["before_chapter"]=8,
["next_chapter"]=10,
["icon"]="chapter_9",
@@ -1505,29 +1505,23 @@ local chapter = {
15001
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=5,
- ["id_for_nothing"]="Uw==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=5,
+ ["num"]=15,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -1689,6 +1683,8 @@ local chapter = {
}
},
[10]={
+ ["chapter"]=3,
+ ["stage"]=2,
["before_chapter"]=9,
["next_chapter"]=11,
["icon"]="chapter_10",
@@ -1724,29 +1720,23 @@ local chapter = {
17001
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=5,
- ["id_for_nothing"]="Uw==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=5,
+ ["num"]=15,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -1908,6 +1898,8 @@ local chapter = {
}
},
[11]={
+ ["chapter"]=3,
+ ["stage"]=3,
["before_chapter"]=10,
["next_chapter"]=12,
["icon"]="chapter_11",
@@ -1943,29 +1935,23 @@ local chapter = {
19001
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -2127,6 +2113,8 @@ local chapter = {
}
},
[12]={
+ ["chapter"]=3,
+ ["stage"]=4,
["before_chapter"]=11,
["next_chapter"]=13,
["icon"]="chapter_12",
@@ -2162,29 +2150,23 @@ local chapter = {
21001
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -2346,6 +2328,8 @@ local chapter = {
}
},
[13]={
+ ["chapter"]=3,
+ ["stage"]=5,
["before_chapter"]=12,
["next_chapter"]=14,
["icon"]="chapter_13",
@@ -2381,29 +2365,23 @@ local chapter = {
23001
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -2565,6 +2543,8 @@ local chapter = {
}
},
[14]={
+ ["chapter"]=4,
+ ["stage"]=1,
["before_chapter"]=13,
["next_chapter"]=15,
["icon"]="chapter_15",
@@ -2600,29 +2580,23 @@ local chapter = {
25001
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -2784,6 +2758,8 @@ local chapter = {
}
},
[15]={
+ ["chapter"]=4,
+ ["stage"]=2,
["before_chapter"]=14,
["next_chapter"]=16,
["icon"]="chapter_14",
@@ -2819,29 +2795,23 @@ local chapter = {
27001
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -3003,6 +2973,8 @@ local chapter = {
}
},
[16]={
+ ["chapter"]=4,
+ ["stage"]=3,
["before_chapter"]=15,
["next_chapter"]=17,
["icon"]="chapter_16",
@@ -3038,29 +3010,23 @@ local chapter = {
29001
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -3222,6 +3188,8 @@ local chapter = {
}
},
[17]={
+ ["chapter"]=4,
+ ["stage"]=4,
["before_chapter"]=16,
["next_chapter"]=18,
["icon"]="chapter_17",
@@ -3257,29 +3225,23 @@ local chapter = {
31001
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -3441,6 +3403,8 @@ local chapter = {
}
},
[18]={
+ ["chapter"]=4,
+ ["stage"]=5,
["before_chapter"]=17,
["next_chapter"]=19,
["icon"]="chapter_19",
@@ -3476,29 +3440,23 @@ local chapter = {
33001
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -3660,6 +3618,8 @@ local chapter = {
}
},
[19]={
+ ["chapter"]=5,
+ ["stage"]=1,
["before_chapter"]=18,
["next_chapter"]=20,
["icon"]="chapter_18",
@@ -3695,29 +3655,23 @@ local chapter = {
35001
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -3879,6 +3833,8 @@ local chapter = {
}
},
[20]={
+ ["chapter"]=5,
+ ["stage"]=2,
["before_chapter"]=19,
["next_chapter"]=21,
["icon"]="chapter_20",
@@ -3914,29 +3870,23 @@ local chapter = {
37001
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=10,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -4098,6 +4048,8 @@ local chapter = {
}
},
[21]={
+ ["chapter"]=5,
+ ["stage"]=3,
["before_chapter"]=20,
["next_chapter"]=22,
["icon"]="chapter_20",
@@ -4133,29 +4085,23 @@ local chapter = {
39001
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -4317,6 +4263,8 @@ local chapter = {
}
},
[22]={
+ ["chapter"]=5,
+ ["stage"]=4,
["before_chapter"]=21,
["next_chapter"]=23,
["icon"]="chapter_21",
@@ -4352,29 +4300,23 @@ local chapter = {
41001
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -4536,6 +4478,8 @@ local chapter = {
}
},
[23]={
+ ["chapter"]=5,
+ ["stage"]=5,
["before_chapter"]=22,
["next_chapter"]=24,
["icon"]="chapter_22",
@@ -4571,29 +4515,23 @@ local chapter = {
43001
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -4755,6 +4693,8 @@ local chapter = {
}
},
[24]={
+ ["chapter"]=6,
+ ["stage"]=1,
["before_chapter"]=23,
["next_chapter"]=25,
["icon"]="chapter_23",
@@ -4790,29 +4730,23 @@ local chapter = {
45001
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -4974,6 +4908,8 @@ local chapter = {
}
},
[25]={
+ ["chapter"]=6,
+ ["stage"]=2,
["before_chapter"]=24,
["next_chapter"]=26,
["icon"]="chapter_23",
@@ -5009,29 +4945,23 @@ local chapter = {
47001
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -5193,6 +5123,8 @@ local chapter = {
}
},
[26]={
+ ["chapter"]=6,
+ ["stage"]=3,
["before_chapter"]=25,
["next_chapter"]=27,
["icon"]="chapter_24",
@@ -5228,29 +5160,23 @@ local chapter = {
49001
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -5412,6 +5338,8 @@ local chapter = {
}
},
[27]={
+ ["chapter"]=6,
+ ["stage"]=4,
["before_chapter"]=26,
["next_chapter"]=28,
["icon"]="chapter_24",
@@ -5447,29 +5375,23 @@ local chapter = {
51001
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -5631,6 +5553,8 @@ local chapter = {
}
},
[28]={
+ ["chapter"]=6,
+ ["stage"]=5,
["before_chapter"]=27,
["next_chapter"]=29,
["icon"]="chapter_24",
@@ -5666,29 +5590,23 @@ local chapter = {
53001
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -5850,6 +5768,8 @@ local chapter = {
}
},
[29]={
+ ["chapter"]=7,
+ ["stage"]=1,
["before_chapter"]=28,
["next_chapter"]=30,
["icon"]="chapter_25",
@@ -5885,29 +5805,23 @@ local chapter = {
55001
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -6069,6 +5983,8 @@ local chapter = {
}
},
[30]={
+ ["chapter"]=7,
+ ["stage"]=2,
["before_chapter"]=29,
["next_chapter"]=31,
["icon"]="chapter_25",
@@ -6104,29 +6020,23 @@ local chapter = {
57101
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=15,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -6288,6 +6198,8 @@ local chapter = {
}
},
[31]={
+ ["chapter"]=7,
+ ["stage"]=3,
["before_chapter"]=30,
["next_chapter"]=32,
["icon"]="chapter_26",
@@ -6323,29 +6235,23 @@ local chapter = {
59101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -6507,6 +6413,8 @@ local chapter = {
}
},
[32]={
+ ["chapter"]=7,
+ ["stage"]=4,
["before_chapter"]=31,
["next_chapter"]=33,
["icon"]="chapter_27",
@@ -6542,29 +6450,23 @@ local chapter = {
61101
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -6726,6 +6628,8 @@ local chapter = {
}
},
[33]={
+ ["chapter"]=7,
+ ["stage"]=5,
["before_chapter"]=32,
["next_chapter"]=34,
["icon"]="chapter_28",
@@ -6761,29 +6665,23 @@ local chapter = {
63101
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -6945,6 +6843,8 @@ local chapter = {
}
},
[34]={
+ ["chapter"]=8,
+ ["stage"]=1,
["before_chapter"]=33,
["next_chapter"]=35,
["icon"]="chapter_29",
@@ -6980,29 +6880,23 @@ local chapter = {
65101
},
["mystery_box"]={
- 1,
- 2
+ 5000,
+ 5000,
+ 0,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -7164,6 +7058,8 @@ local chapter = {
}
},
[35]={
+ ["chapter"]=8,
+ ["stage"]=2,
["before_chapter"]=34,
["next_chapter"]=36,
["icon"]="chapter_30",
@@ -7199,29 +7095,23 @@ local chapter = {
67101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -7383,6 +7273,8 @@ local chapter = {
}
},
[36]={
+ ["chapter"]=8,
+ ["stage"]=3,
["before_chapter"]=35,
["next_chapter"]=37,
["icon"]="chapter_31",
@@ -7418,29 +7310,23 @@ local chapter = {
69101
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -7602,6 +7488,8 @@ local chapter = {
}
},
[37]={
+ ["chapter"]=8,
+ ["stage"]=4,
["before_chapter"]=36,
["next_chapter"]=38,
["icon"]="chapter_32",
@@ -7637,29 +7525,23 @@ local chapter = {
71101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -7821,6 +7703,8 @@ local chapter = {
}
},
[38]={
+ ["chapter"]=8,
+ ["stage"]=5,
["before_chapter"]=37,
["next_chapter"]=39,
["icon"]="chapter_33",
@@ -7856,29 +7740,23 @@ local chapter = {
73101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -8040,6 +7918,8 @@ local chapter = {
}
},
[39]={
+ ["chapter"]=9,
+ ["stage"]=1,
["before_chapter"]=38,
["next_chapter"]=40,
["icon"]="chapter_34",
@@ -8075,29 +7955,23 @@ local chapter = {
75101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -8259,6 +8133,8 @@ local chapter = {
}
},
[40]={
+ ["chapter"]=9,
+ ["stage"]=2,
["before_chapter"]=39,
["next_chapter"]=41,
["icon"]="chapter_35",
@@ -8294,29 +8170,23 @@ local chapter = {
77101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -8478,6 +8348,8 @@ local chapter = {
}
},
[41]={
+ ["chapter"]=9,
+ ["stage"]=3,
["before_chapter"]=40,
["next_chapter"]=42,
["icon"]="chapter_1",
@@ -8513,29 +8385,23 @@ local chapter = {
79101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -8697,6 +8563,8 @@ local chapter = {
}
},
[42]={
+ ["chapter"]=9,
+ ["stage"]=4,
["before_chapter"]=41,
["next_chapter"]=43,
["icon"]="chapter_2",
@@ -8732,29 +8600,23 @@ local chapter = {
81101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -8916,6 +8778,8 @@ local chapter = {
}
},
[43]={
+ ["chapter"]=9,
+ ["stage"]=5,
["before_chapter"]=42,
["next_chapter"]=44,
["icon"]="chapter_3",
@@ -8951,29 +8815,23 @@ local chapter = {
83101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -9135,6 +8993,8 @@ local chapter = {
}
},
[44]={
+ ["chapter"]=10,
+ ["stage"]=1,
["before_chapter"]=43,
["next_chapter"]=45,
["icon"]="chapter_4",
@@ -9170,29 +9030,23 @@ local chapter = {
85101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -9354,6 +9208,8 @@ local chapter = {
}
},
[45]={
+ ["chapter"]=10,
+ ["stage"]=2,
["before_chapter"]=44,
["next_chapter"]=46,
["icon"]="chapter_5",
@@ -9389,29 +9245,23 @@ local chapter = {
87101
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -9573,6 +9423,8 @@ local chapter = {
}
},
[46]={
+ ["chapter"]=10,
+ ["stage"]=3,
["before_chapter"]=45,
["next_chapter"]=47,
["icon"]="chapter_6",
@@ -9608,29 +9460,23 @@ local chapter = {
89101
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -9792,6 +9638,8 @@ local chapter = {
}
},
[47]={
+ ["chapter"]=10,
+ ["stage"]=4,
["before_chapter"]=46,
["next_chapter"]=48,
["icon"]="chapter_7",
@@ -9827,29 +9675,23 @@ local chapter = {
91101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -10011,6 +9853,8 @@ local chapter = {
}
},
[48]={
+ ["chapter"]=10,
+ ["stage"]=5,
["before_chapter"]=47,
["next_chapter"]=49,
["icon"]="chapter_8",
@@ -10046,29 +9890,23 @@ local chapter = {
93101
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -10230,6 +10068,8 @@ local chapter = {
}
},
[49]={
+ ["chapter"]=11,
+ ["stage"]=1,
["before_chapter"]=48,
["next_chapter"]=50,
["icon"]="chapter_9",
@@ -10265,29 +10105,23 @@ local chapter = {
95101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -10449,6 +10283,8 @@ local chapter = {
}
},
[50]={
+ ["chapter"]=11,
+ ["stage"]=2,
["before_chapter"]=49,
["next_chapter"]=51,
["icon"]="chapter_10",
@@ -10484,29 +10320,23 @@ local chapter = {
97101
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -10668,6 +10498,8 @@ local chapter = {
}
},
[51]={
+ ["chapter"]=11,
+ ["stage"]=3,
["before_chapter"]=50,
["next_chapter"]=52,
["icon"]="chapter_11",
@@ -10703,29 +10535,23 @@ local chapter = {
99101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -10887,6 +10713,8 @@ local chapter = {
}
},
[52]={
+ ["chapter"]=11,
+ ["stage"]=4,
["before_chapter"]=51,
["next_chapter"]=53,
["icon"]="chapter_12",
@@ -10922,29 +10750,23 @@ local chapter = {
101101
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -11106,6 +10928,8 @@ local chapter = {
}
},
[53]={
+ ["chapter"]=11,
+ ["stage"]=5,
["before_chapter"]=52,
["next_chapter"]=54,
["icon"]="chapter_13",
@@ -11141,29 +10965,23 @@ local chapter = {
103101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -11325,6 +11143,8 @@ local chapter = {
}
},
[54]={
+ ["chapter"]=12,
+ ["stage"]=1,
["before_chapter"]=53,
["next_chapter"]=55,
["icon"]="chapter_15",
@@ -11360,29 +11180,23 @@ local chapter = {
105101
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -11544,6 +11358,8 @@ local chapter = {
}
},
[55]={
+ ["chapter"]=12,
+ ["stage"]=2,
["before_chapter"]=54,
["next_chapter"]=56,
["icon"]="chapter_14",
@@ -11579,29 +11395,23 @@ local chapter = {
107101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -11763,6 +11573,8 @@ local chapter = {
}
},
[56]={
+ ["chapter"]=12,
+ ["stage"]=3,
["before_chapter"]=55,
["next_chapter"]=57,
["icon"]="chapter_16",
@@ -11798,29 +11610,23 @@ local chapter = {
109101
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -11982,6 +11788,8 @@ local chapter = {
}
},
[57]={
+ ["chapter"]=12,
+ ["stage"]=4,
["before_chapter"]=56,
["next_chapter"]=58,
["icon"]="chapter_17",
@@ -12017,29 +11825,23 @@ local chapter = {
111101
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -12201,6 +12003,8 @@ local chapter = {
}
},
[58]={
+ ["chapter"]=12,
+ ["stage"]=5,
["before_chapter"]=57,
["next_chapter"]=59,
["icon"]="chapter_19",
@@ -12236,29 +12040,23 @@ local chapter = {
113101
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -12420,6 +12218,8 @@ local chapter = {
}
},
[59]={
+ ["chapter"]=13,
+ ["stage"]=1,
["before_chapter"]=58,
["next_chapter"]=60,
["icon"]="chapter_18",
@@ -12455,29 +12255,23 @@ local chapter = {
115101
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -12639,6 +12433,8 @@ local chapter = {
}
},
[60]={
+ ["chapter"]=13,
+ ["stage"]=2,
["before_chapter"]=59,
["next_chapter"]=61,
["icon"]="chapter_20",
@@ -12674,29 +12470,23 @@ local chapter = {
117101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -12858,6 +12648,8 @@ local chapter = {
}
},
[61]={
+ ["chapter"]=13,
+ ["stage"]=3,
["before_chapter"]=60,
["next_chapter"]=62,
["icon"]="chapter_20",
@@ -12893,29 +12685,23 @@ local chapter = {
119101
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -13077,6 +12863,8 @@ local chapter = {
}
},
[62]={
+ ["chapter"]=13,
+ ["stage"]=4,
["before_chapter"]=61,
["next_chapter"]=63,
["icon"]="chapter_21",
@@ -13112,29 +12900,23 @@ local chapter = {
121101
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -13296,6 +13078,8 @@ local chapter = {
}
},
[63]={
+ ["chapter"]=13,
+ ["stage"]=5,
["before_chapter"]=62,
["next_chapter"]=64,
["icon"]="chapter_22",
@@ -13331,29 +13115,23 @@ local chapter = {
123101
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -13515,6 +13293,8 @@ local chapter = {
}
},
[64]={
+ ["chapter"]=14,
+ ["stage"]=1,
["before_chapter"]=63,
["next_chapter"]=65,
["icon"]="chapter_23",
@@ -13550,29 +13330,23 @@ local chapter = {
125101
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -13734,6 +13508,8 @@ local chapter = {
}
},
[65]={
+ ["chapter"]=14,
+ ["stage"]=2,
["before_chapter"]=64,
["next_chapter"]=66,
["icon"]="chapter_23",
@@ -13769,29 +13545,23 @@ local chapter = {
127201
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -13953,6 +13723,8 @@ local chapter = {
}
},
[66]={
+ ["chapter"]=14,
+ ["stage"]=3,
["before_chapter"]=65,
["next_chapter"]=67,
["icon"]="chapter_24",
@@ -13988,29 +13760,23 @@ local chapter = {
129301
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -14172,6 +13938,8 @@ local chapter = {
}
},
[67]={
+ ["chapter"]=14,
+ ["stage"]=4,
["before_chapter"]=66,
["next_chapter"]=68,
["icon"]="chapter_24",
@@ -14207,29 +13975,23 @@ local chapter = {
131301
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -14391,6 +14153,8 @@ local chapter = {
}
},
[68]={
+ ["chapter"]=14,
+ ["stage"]=5,
["before_chapter"]=67,
["next_chapter"]=69,
["icon"]="chapter_24",
@@ -14426,29 +14190,23 @@ local chapter = {
133301
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -14610,6 +14368,8 @@ local chapter = {
}
},
[69]={
+ ["chapter"]=15,
+ ["stage"]=1,
["before_chapter"]=68,
["next_chapter"]=70,
["icon"]="chapter_25",
@@ -14645,29 +14405,23 @@ local chapter = {
135301
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -14829,6 +14583,8 @@ local chapter = {
}
},
[70]={
+ ["chapter"]=15,
+ ["stage"]=2,
["before_chapter"]=69,
["next_chapter"]=71,
["icon"]="chapter_25",
@@ -14864,29 +14620,23 @@ local chapter = {
137401
},
["mystery_box"]={
- 3,
- 4
+ 0,
+ 0,
+ 5000,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -15048,6 +14798,8 @@ local chapter = {
}
},
[71]={
+ ["chapter"]=15,
+ ["stage"]=3,
["before_chapter"]=70,
["next_chapter"]=72,
["icon"]="chapter_26",
@@ -15083,29 +14835,23 @@ local chapter = {
139401
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -15267,6 +15013,8 @@ local chapter = {
}
},
[72]={
+ ["chapter"]=15,
+ ["stage"]=4,
["before_chapter"]=71,
["next_chapter"]=73,
["icon"]="chapter_27",
@@ -15302,29 +15050,23 @@ local chapter = {
141401
},
["mystery_box"]={
- 2,
- 3
+ 0,
+ 5000,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -15486,6 +15228,8 @@ local chapter = {
}
},
[73]={
+ ["chapter"]=15,
+ ["stage"]=5,
["before_chapter"]=72,
["next_chapter"]=74,
["icon"]="chapter_28",
@@ -15521,29 +15265,23 @@ local chapter = {
143401
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -15705,6 +15443,8 @@ local chapter = {
}
},
[74]={
+ ["chapter"]=16,
+ ["stage"]=1,
["before_chapter"]=73,
["next_chapter"]=75,
["icon"]="chapter_29",
@@ -15740,29 +15480,23 @@ local chapter = {
145401
},
["mystery_box"]={
- 1,
- 2
+ 5000,
+ 5000,
+ 0,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -15924,6 +15658,8 @@ local chapter = {
}
},
[75]={
+ ["chapter"]=16,
+ ["stage"]=2,
["before_chapter"]=74,
["next_chapter"]=76,
["icon"]="chapter_30",
@@ -15959,29 +15695,23 @@ local chapter = {
147401
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -16143,6 +15873,8 @@ local chapter = {
}
},
[76]={
+ ["chapter"]=16,
+ ["stage"]=3,
["before_chapter"]=75,
["next_chapter"]=77,
["icon"]="chapter_31",
@@ -16178,29 +15910,23 @@ local chapter = {
149401
},
["mystery_box"]={
- 1,
- 3
+ 5000,
+ 0,
+ 5000,
+ 0
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -16362,6 +16088,8 @@ local chapter = {
}
},
[77]={
+ ["chapter"]=16,
+ ["stage"]=4,
["before_chapter"]=76,
["next_chapter"]=78,
["icon"]="chapter_32",
@@ -16397,29 +16125,23 @@ local chapter = {
151401
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -16581,6 +16303,8 @@ local chapter = {
}
},
[78]={
+ ["chapter"]=16,
+ ["stage"]=5,
["before_chapter"]=77,
["next_chapter"]=79,
["icon"]="chapter_33",
@@ -16616,29 +16340,23 @@ local chapter = {
153401
},
["mystery_box"]={
- 1,
- 4
+ 5000,
+ 0,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -16800,6 +16518,8 @@ local chapter = {
}
},
[79]={
+ ["chapter"]=17,
+ ["stage"]=1,
["before_chapter"]=78,
["next_chapter"]=80,
["icon"]="chapter_34",
@@ -16835,29 +16555,23 @@ local chapter = {
155401
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
@@ -17019,6 +16733,8 @@ local chapter = {
}
},
[80]={
+ ["chapter"]=17,
+ ["stage"]=2,
["before_chapter"]=79,
["icon"]="chapter_35",
["scene"]="bg_35",
@@ -17053,29 +16769,23 @@ local chapter = {
157401
},
["mystery_box"]={
- 2,
- 4
+ 0,
+ 5000,
+ 0,
+ 5000
},
["mystery_box_reward"]={
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=6,
- ["id_for_nothing"]="UA==",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- }
+ ["type"]=1,
+ ["id"]=6,
+ ["num"]=1,
+ ["weight"]=5000
},
{
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
+ ["type"]=1,
+ ["id"]=2,
+ ["num"]=20,
+ ["weight"]=5000
}
},
["wave_reward"]={
diff --git a/lua/app/config/const.lua b/lua/app/config/const.lua
index fe60a145..90bee7cb 100644
--- a/lua/app/config/const.lua
+++ b/lua/app/config/const.lua
@@ -42,42 +42,6 @@ local const = {
["act_gold_pig_full_cd"]={
["value"]=12
},
- ["stamina_diamond_buy"]={
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- ["stamina_diamond_cost"]={
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- }
- },
- ["stamina_diamond_times"]={
- ["value"]=3
- },
- ["stamina_ad_buy"]={
- ["reward"]={
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=3,
- ["id_for_nothing"]="VQ==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- }
- },
- ["stamina_ad_times"]={
- ["value"]=5
- },
["bounty_buy_cost"]={
["reward"]={
["type"]=1,
@@ -513,9 +477,54 @@ local const = {
},
["act_tourn_rank_pay"]={
["value"]=10
+ },
+ ["stamina_diamond_buy"]={
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
+ }
+ },
+ ["stamina_diamond_cost"]={
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ }
+ },
+ ["stamina_diamond_times"]={
+ ["value"]=2
+ },
+ ["stamina_ad_buy"]={
+ ["reward"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=4,
+ ["id_for_nothing"]="Ug==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
+ }
+ },
+ ["stamina_ad_times"]={
+ ["value"]=2
+ },
+ ["chapter_finish_reward_1"]={
+ ["value"]=40
+ },
+ ["chapter_finish_reward_2"]={
+ ["value"]=80
+ },
+ ["chapter_finish_reward_3"]={
+ ["value"]=100
}
}
local config = {
-data=const,count=104
+data=const,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/hero.lua b/lua/app/config/hero.lua
index 565df7f2..66194d2c 100644
--- a/lua/app/config/hero.lua
+++ b/lua/app/config/hero.lua
@@ -1,68 +1,7 @@
local hero = {
- [12001]={
- ["position"]=1,
- ["qlt"]=2,
- ["hurt_skill"]={
- 1200110,
- 1200111,
- 1200112,
- 1200113
- },
- ["base_skill"]=1200120,
- ["rouge_skill"]=1200100,
- ["rouge_skill_1"]=1200101,
- ["rouge_skill_2"]=1200102,
- ["rouge_skill_3"]=1200103,
- ["rouge_skill_4"]=1200104,
- ["rouge_skill_5"]=1200105,
- ["rouge_skill_6"]=1200106,
- ["rouge_skill_7"]=1200107,
- ["begin_lv"]=1,
- ["hp"]={
- 6000000,
- 7200000,
- 8400000,
- 9660000,
- 10980000,
- 12360000,
- 13860000,
- 15480000,
- 17280000,
- 19260000,
- 21420000,
- 23820000,
- 26520000,
- 29520000,
- 32940000
- },
- ["atk"]={
- 3000000,
- 3600000,
- 4200000,
- 4830000,
- 5490000,
- 6180000,
- 6930000,
- 7740000,
- 8640000,
- 9630000,
- 10710000,
- 11910000,
- 13260000,
- 14760000,
- 16470000
- },
- ["model_id"]="p0005",
- ["icon"]="1",
- ["item_id"]=12001,
- ["unlock_chapter"]=1,
- ["collection_point"]=2,
- ["skin"]={
- 12001
- }
- },
[13001]={
["position"]=1,
+ ["tag"]=3,
["qlt"]=3,
["hurt_skill"]={
1300110,
@@ -71,124 +10,389 @@ local hero = {
1300113
},
["base_skill"]=1300120,
- ["rouge_skill"]=1300100,
- ["rouge_skill_1"]=1300101,
- ["rouge_skill_2"]=1300102,
- ["rouge_skill_3"]=1300103,
- ["rouge_skill_4"]=1300104,
- ["rouge_skill_5"]=1300105,
- ["rouge_skill_6"]=1300106,
- ["rouge_skill_7"]=1300107,
- ["begin_lv"]=3,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 1300111
+ },
+ {
+ 45,
+ 1300112
+ },
+ {
+ 85,
+ 1300113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 1300121
+ },
+ {
+ 55,
+ 1300122
+ },
+ {
+ 95,
+ 1300123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 1300131
+ },
+ {
+ 65,
+ 1300132
+ },
+ {
+ 101,
+ 1300133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 1300141
+ },
+ {
+ 75,
+ 1300142
+ },
+ {
+ 110,
+ 1300143
+ }
+ },
["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0014",
- ["icon"]="6",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=13001,
- ["unlock_chapter"]=5,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 13001
- }
- },
- [13002]={
- ["position"]=1,
- ["qlt"]=3,
- ["hurt_skill"]={
- 1300210,
- 1300211,
- 1300212,
- 1300213
- },
- ["base_skill"]=1300220,
- ["rouge_skill"]=1300200,
- ["rouge_skill_1"]=1300201,
- ["rouge_skill_2"]=1300202,
- ["rouge_skill_3"]=1300203,
- ["rouge_skill_4"]=1300204,
- ["rouge_skill_5"]=1300205,
- ["rouge_skill_6"]=1300206,
- ["rouge_skill_7"]=1300207,
- ["begin_lv"]=3,
- ["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
- },
- ["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
- },
- ["model_id"]="p0009",
- ["icon"]="11",
- ["item_id"]=13002,
- ["unlock_chapter"]=9,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 13002
- }
+ ["level_id"]=68,
+ ["entry"]=73
},
[14001]={
["position"]=1,
+ ["tag"]=3,
["qlt"]=4,
["hurt_skill"]={
1400110,
@@ -197,15 +401,63 @@ local hero = {
1400113
},
["base_skill"]=1400120,
- ["rouge_skill"]=1400100,
- ["rouge_skill_1"]=1400101,
- ["rouge_skill_2"]=1400102,
- ["rouge_skill_3"]=1400103,
- ["rouge_skill_4"]=1400104,
- ["rouge_skill_5"]=1400105,
- ["rouge_skill_6"]=1400106,
- ["rouge_skill_7"]=1400107,
- ["begin_lv"]=5,
+ ["unlock"]=2,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 1400111
+ },
+ {
+ 45,
+ 1400112
+ },
+ {
+ 85,
+ 1400113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 1400121
+ },
+ {
+ 55,
+ 1400122
+ },
+ {
+ 95,
+ 1400123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 1400131
+ },
+ {
+ 65,
+ 1400132
+ },
+ {
+ 101,
+ 1400133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 1400141
+ },
+ {
+ 75,
+ 1400142
+ },
+ {
+ 110,
+ 1400143
+ }
+ },
["hp"]={
12000000,
13680000,
@@ -221,55 +473,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0011",
- ["icon"]="16",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=14001,
- ["unlock_chapter"]=14,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 14001,
- 1400101
- }
+ ["level_id"]=68,
+ ["entry"]=74
},
- [14002]={
+ [15001]={
["position"]=1,
- ["qlt"]=4,
+ ["tag"]=3,
+ ["qlt"]=5,
["hurt_skill"]={
- 1400210,
- 1400211,
- 1400212,
- 1400213
+ 1500110,
+ 1500111,
+ 1500112,
+ 1500113
+ },
+ ["base_skill"]=1500120,
+ ["unlock"]=2,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 1500111
+ },
+ {
+ 45,
+ 1500112
+ },
+ {
+ 85,
+ 1500113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 1500121
+ },
+ {
+ 55,
+ 1500122
+ },
+ {
+ 95,
+ 1500123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 1500131
+ },
+ {
+ 65,
+ 1500132
+ },
+ {
+ 101,
+ 1500133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 1500141
+ },
+ {
+ 75,
+ 1500142
+ },
+ {
+ 110,
+ 1500143
+ }
},
- ["base_skill"]=1400220,
- ["rouge_skill"]=1400200,
- ["rouge_skill_1"]=1400201,
- ["rouge_skill_2"]=1400202,
- ["rouge_skill_3"]=1400203,
- ["rouge_skill_4"]=1400204,
- ["rouge_skill_5"]=1400205,
- ["rouge_skill_6"]=1400206,
- ["rouge_skill_7"]=1400207,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -285,53 +864,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0018",
- ["icon"]="23",
- ["item_id"]=14002,
- ["collection_point"]=5,
- ["skin"]={
- 14002,
- 1400201
- }
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=15001,
+ ["level_id"]=68,
+ ["entry"]=75
},
- [14003]={
+ [15002]={
["position"]=1,
- ["qlt"]=4,
+ ["tag"]=3,
+ ["qlt"]=5,
["hurt_skill"]={
- 1400310,
- 1400311,
- 1400312,
- 1400313
+ 1500210,
+ 1500211,
+ 1500212,
+ 1500213
+ },
+ ["base_skill"]=1500220,
+ ["unlock"]=2,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 1500211
+ },
+ {
+ 45,
+ 1500212
+ },
+ {
+ 85,
+ 1500213
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 1500221
+ },
+ {
+ 55,
+ 1500222
+ },
+ {
+ 95,
+ 1500223
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 1500231
+ },
+ {
+ 65,
+ 1500232
+ },
+ {
+ 101,
+ 1500233
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 1500241
+ },
+ {
+ 75,
+ 1500242
+ },
+ {
+ 110,
+ 1500243
+ }
},
- ["base_skill"]=1400320,
- ["rouge_skill"]=1400300,
- ["rouge_skill_1"]=1400301,
- ["rouge_skill_2"]=1400302,
- ["rouge_skill_3"]=1400303,
- ["rouge_skill_4"]=1400304,
- ["rouge_skill_5"]=1400305,
- ["rouge_skill_6"]=1400306,
- ["rouge_skill_7"]=1400307,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -347,52 +1255,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0028",
- ["icon"]="31",
- ["item_id"]=14003,
- ["collection_point"]=5,
- ["skin"]={
- 14003
- }
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=15002,
+ ["level_id"]=68,
+ ["entry"]=75
},
- [14004]={
+ [16001]={
["position"]=1,
- ["qlt"]=4,
+ ["tag"]=3,
+ ["qlt"]=6,
["hurt_skill"]={
- 1400410,
- 1400411,
- 1400412,
- 1400413
+ 1600110,
+ 1600111,
+ 1600112,
+ 1600113
+ },
+ ["base_skill"]=1600120,
+ ["unlock"]=2,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 1600111
+ },
+ {
+ 45,
+ 1600112
+ },
+ {
+ 85,
+ 1600113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 1600121
+ },
+ {
+ 55,
+ 1600122
+ },
+ {
+ 95,
+ 1600123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 1600131
+ },
+ {
+ 65,
+ 1600132
+ },
+ {
+ 101,
+ 1600133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 1600141
+ },
+ {
+ 75,
+ 1600142
+ },
+ {
+ 110,
+ 1600143
+ }
},
- ["base_skill"]=1400420,
- ["rouge_skill"]=1400400,
- ["rouge_skill_1"]=1400401,
- ["rouge_skill_2"]=1400402,
- ["rouge_skill_3"]=1400403,
- ["rouge_skill_4"]=1400404,
- ["rouge_skill_5"]=1400405,
- ["rouge_skill_6"]=1400406,
- ["rouge_skill_7"]=1400407,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -408,97 +1646,317 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0037",
- ["icon"]="32",
- ["item_id"]=14004,
- ["collection_point"]=5,
- ["skin"]={
- 14004
- }
- },
- [22001]={
- ["position"]=2,
- ["qlt"]=2,
- ["hurt_skill"]={
- 2200110,
- 2200111,
- 2200112,
- 2200113
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_red",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
},
- ["base_skill"]=2200120,
- ["rouge_skill"]=2200100,
- ["rouge_skill_1"]=2200101,
- ["rouge_skill_2"]=2200102,
- ["rouge_skill_3"]=2200103,
- ["rouge_skill_4"]=2200104,
- ["rouge_skill_5"]=2200105,
- ["rouge_skill_6"]=2200106,
- ["rouge_skill_7"]=2200107,
- ["begin_lv"]=1,
- ["hp"]={
- 6000000,
- 7200000,
- 8400000,
- 9660000,
- 10980000,
- 12360000,
- 13860000,
- 15480000,
- 17280000,
- 19260000,
- 21420000,
- 23820000,
- 26520000,
- 29520000,
- 32940000
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
},
- ["atk"]={
- 3000000,
- 3600000,
- 4200000,
- 4830000,
- 5490000,
- 6180000,
- 6930000,
- 7740000,
- 8640000,
- 9630000,
- 10710000,
- 11910000,
- 13260000,
- 14760000,
- 16470000
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
},
- ["model_id"]="p0002",
- ["icon"]="2",
- ["item_id"]=22001,
- ["unlock_chapter"]=1,
- ["collection_point"]=2,
- ["skin"]={
- 22001
- }
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=16001,
+ ["level_id"]=68,
+ ["entry"]=76
},
[23001]={
["position"]=2,
+ ["tag"]=2,
["qlt"]=3,
["hurt_skill"]={
2300110,
@@ -507,125 +1965,389 @@ local hero = {
2300113
},
["base_skill"]=2300120,
- ["rouge_skill"]=2300100,
- ["rouge_skill_1"]=2300101,
- ["rouge_skill_2"]=2300102,
- ["rouge_skill_3"]=2300103,
- ["rouge_skill_4"]=2300104,
- ["rouge_skill_5"]=2300105,
- ["rouge_skill_6"]=2300106,
- ["rouge_skill_7"]=2300107,
- ["begin_lv"]=3,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 2300111
+ },
+ {
+ 45,
+ 2300112
+ },
+ {
+ 85,
+ 2300113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 2300121
+ },
+ {
+ 55,
+ 2300122
+ },
+ {
+ 95,
+ 2300123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 2300131
+ },
+ {
+ 65,
+ 2300132
+ },
+ {
+ 101,
+ 2300133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 2300141
+ },
+ {
+ 75,
+ 2300142
+ },
+ {
+ 110,
+ 2300143
+ }
+ },
["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0010",
- ["icon"]="12",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=23001,
- ["unlock_chapter"]=8,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 23001
- }
- },
- [23002]={
- ["position"]=2,
- ["qlt"]=3,
- ["hurt_skill"]={
- 2300210,
- 2300211,
- 2300212,
- 2300213
- },
- ["base_skill"]=2300220,
- ["rouge_skill"]=2300200,
- ["rouge_skill_1"]=2300201,
- ["rouge_skill_2"]=2300202,
- ["rouge_skill_3"]=2300203,
- ["rouge_skill_4"]=2300204,
- ["rouge_skill_5"]=2300205,
- ["rouge_skill_6"]=2300206,
- ["rouge_skill_7"]=2300207,
- ["begin_lv"]=3,
- ["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
- },
- ["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
- },
- ["model_id"]="p0012",
- ["icon"]="7",
- ["item_id"]=23002,
- ["unlock_chapter"]=5,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 23002,
- 2300201
- }
+ ["level_id"]=69,
+ ["entry"]=73
},
[24001]={
["position"]=2,
+ ["tag"]=2,
["qlt"]=4,
["hurt_skill"]={
2400110,
@@ -634,15 +2356,63 @@ local hero = {
2400113
},
["base_skill"]=2400120,
- ["rouge_skill"]=2400100,
- ["rouge_skill_1"]=2400101,
- ["rouge_skill_2"]=2400102,
- ["rouge_skill_3"]=2400103,
- ["rouge_skill_4"]=2400104,
- ["rouge_skill_5"]=2400105,
- ["rouge_skill_6"]=2400106,
- ["rouge_skill_7"]=2400107,
- ["begin_lv"]=5,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 2400111
+ },
+ {
+ 45,
+ 2400112
+ },
+ {
+ 85,
+ 2400113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 2400121
+ },
+ {
+ 55,
+ 2400122
+ },
+ {
+ 95,
+ 2400123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 2400131
+ },
+ {
+ 65,
+ 2400132
+ },
+ {
+ 101,
+ 2400133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 2400141
+ },
+ {
+ 75,
+ 2400142
+ },
+ {
+ 110,
+ 2400143
+ }
+ },
["hp"]={
12000000,
13680000,
@@ -658,55 +2428,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0007",
- ["icon"]="17",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=24001,
- ["unlock_chapter"]=6,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 24001,
- 2400101
- }
+ ["level_id"]=69,
+ ["entry"]=74
},
- [24002]={
+ [25001]={
["position"]=2,
- ["qlt"]=4,
+ ["tag"]=2,
+ ["qlt"]=5,
["hurt_skill"]={
- 2400210,
- 2400211,
- 2400212,
- 2400213
+ 2500110,
+ 2500111,
+ 2500112,
+ 2500113
+ },
+ ["base_skill"]=2500120,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 2500111
+ },
+ {
+ 45,
+ 2500112
+ },
+ {
+ 85,
+ 2500113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 2500121
+ },
+ {
+ 55,
+ 2500122
+ },
+ {
+ 95,
+ 2500123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 2500131
+ },
+ {
+ 65,
+ 2500132
+ },
+ {
+ 101,
+ 2500133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 2500141
+ },
+ {
+ 75,
+ 2500142
+ },
+ {
+ 110,
+ 2500143
+ }
},
- ["base_skill"]=2400220,
- ["rouge_skill"]=2400200,
- ["rouge_skill_1"]=2400201,
- ["rouge_skill_2"]=2400202,
- ["rouge_skill_3"]=2400203,
- ["rouge_skill_4"]=2400204,
- ["rouge_skill_5"]=2400205,
- ["rouge_skill_6"]=2400206,
- ["rouge_skill_7"]=2400207,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -722,52 +2819,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0017",
- ["icon"]="22",
- ["item_id"]=24002,
- ["collection_point"]=5,
- ["skin"]={
- 24002
- }
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=25001,
+ ["level_id"]=69,
+ ["entry"]=75
},
- [24003]={
+ [25002]={
["position"]=2,
- ["qlt"]=4,
+ ["tag"]=2,
+ ["qlt"]=5,
["hurt_skill"]={
- 2400310,
- 2400311,
- 2400312,
- 2400313
+ 2500210,
+ 2500211,
+ 2500212,
+ 2500213
+ },
+ ["base_skill"]=2500220,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 2500211
+ },
+ {
+ 45,
+ 2500212
+ },
+ {
+ 85,
+ 2500213
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 2500221
+ },
+ {
+ 55,
+ 2500222
+ },
+ {
+ 95,
+ 2500223
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 2500231
+ },
+ {
+ 65,
+ 2500232
+ },
+ {
+ 101,
+ 2500233
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 2500241
+ },
+ {
+ 75,
+ 2500242
+ },
+ {
+ 110,
+ 2500243
+ }
},
- ["base_skill"]=2400320,
- ["rouge_skill"]=2400300,
- ["rouge_skill_1"]=2400301,
- ["rouge_skill_2"]=2400302,
- ["rouge_skill_3"]=2400303,
- ["rouge_skill_4"]=2400304,
- ["rouge_skill_5"]=2400305,
- ["rouge_skill_6"]=2400306,
- ["rouge_skill_7"]=2400307,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -783,53 +3210,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0031",
- ["icon"]="27",
- ["item_id"]=24003,
- ["unlock_arena"]=5,
- ["collection_point"]=5,
- ["skin"]={
- 24003
- }
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=25002,
+ ["level_id"]=69,
+ ["entry"]=75
},
- [24004]={
+ [26001]={
["position"]=2,
- ["qlt"]=4,
+ ["tag"]=2,
+ ["qlt"]=6,
["hurt_skill"]={
- 2400410,
- 2400411,
- 2400412,
- 2400413
+ 2600110,
+ 2600111,
+ 2600112,
+ 2600113
+ },
+ ["base_skill"]=2600120,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 2600111
+ },
+ {
+ 45,
+ 2600112
+ },
+ {
+ 85,
+ 2600113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 2600121
+ },
+ {
+ 55,
+ 2600122
+ },
+ {
+ 95,
+ 2600123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 2600131
+ },
+ {
+ 65,
+ 2600132
+ },
+ {
+ 101,
+ 2600133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 2600141
+ },
+ {
+ 75,
+ 2600142
+ },
+ {
+ 110,
+ 2600143
+ }
},
- ["base_skill"]=2400420,
- ["rouge_skill"]=2400400,
- ["rouge_skill_1"]=2400401,
- ["rouge_skill_2"]=2400402,
- ["rouge_skill_3"]=2400403,
- ["rouge_skill_4"]=2400404,
- ["rouge_skill_5"]=2400405,
- ["rouge_skill_6"]=2400406,
- ["rouge_skill_7"]=2400407,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -845,97 +3601,317 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0039",
- ["icon"]="33",
- ["item_id"]=24004,
- ["collection_point"]=5,
- ["skin"]={
- 24004
- }
- },
- [32001]={
- ["position"]=3,
- ["qlt"]=2,
- ["hurt_skill"]={
- 3200110,
- 3200111,
- 3200112,
- 3200113
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_yellow",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
},
- ["base_skill"]=3200120,
- ["rouge_skill"]=3200100,
- ["rouge_skill_1"]=3200101,
- ["rouge_skill_2"]=3200102,
- ["rouge_skill_3"]=3200103,
- ["rouge_skill_4"]=3200104,
- ["rouge_skill_5"]=3200105,
- ["rouge_skill_6"]=3200106,
- ["rouge_skill_7"]=3200107,
- ["begin_lv"]=1,
- ["hp"]={
- 6000000,
- 7200000,
- 8400000,
- 9660000,
- 10980000,
- 12360000,
- 13860000,
- 15480000,
- 17280000,
- 19260000,
- 21420000,
- 23820000,
- 26520000,
- 29520000,
- 32940000
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
},
- ["atk"]={
- 3000000,
- 3600000,
- 4200000,
- 4830000,
- 5490000,
- 6180000,
- 6930000,
- 7740000,
- 8640000,
- 9630000,
- 10710000,
- 11910000,
- 13260000,
- 14760000,
- 16470000
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
},
- ["model_id"]="p0001",
- ["icon"]="3",
- ["item_id"]=32001,
- ["unlock_chapter"]=1,
- ["collection_point"]=2,
- ["skin"]={
- 32001
- }
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=26001,
+ ["level_id"]=69,
+ ["entry"]=76
},
[33001]={
["position"]=3,
+ ["tag"]=1,
["qlt"]=3,
["hurt_skill"]={
3300110,
@@ -944,124 +3920,389 @@ local hero = {
3300113
},
["base_skill"]=3300120,
- ["rouge_skill"]=3300100,
- ["rouge_skill_1"]=3300101,
- ["rouge_skill_2"]=3300102,
- ["rouge_skill_3"]=3300103,
- ["rouge_skill_4"]=3300104,
- ["rouge_skill_5"]=3300105,
- ["rouge_skill_6"]=3300106,
- ["rouge_skill_7"]=3300107,
- ["begin_lv"]=3,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 3300111
+ },
+ {
+ 45,
+ 3300112
+ },
+ {
+ 85,
+ 3300113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 3300121
+ },
+ {
+ 55,
+ 3300122
+ },
+ {
+ 95,
+ 3300123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 3300131
+ },
+ {
+ 65,
+ 3300132
+ },
+ {
+ 101,
+ 3300133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 3300141
+ },
+ {
+ 75,
+ 3300142
+ },
+ {
+ 110,
+ 3300143
+ }
+ },
["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0006",
- ["icon"]="8",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=33001,
- ["unlock_chapter"]=4,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 33001
- }
- },
- [33002]={
- ["position"]=3,
- ["qlt"]=3,
- ["hurt_skill"]={
- 3300210,
- 3300211,
- 3300212,
- 3300213
- },
- ["base_skill"]=3300220,
- ["rouge_skill"]=3300200,
- ["rouge_skill_1"]=3300201,
- ["rouge_skill_2"]=3300202,
- ["rouge_skill_3"]=3300203,
- ["rouge_skill_4"]=3300204,
- ["rouge_skill_5"]=3300205,
- ["rouge_skill_6"]=3300206,
- ["rouge_skill_7"]=3300207,
- ["begin_lv"]=3,
- ["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
- },
- ["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
- },
- ["model_id"]="p0020",
- ["icon"]="13",
- ["item_id"]=33002,
- ["unlock_chapter"]=7,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 33002
- }
+ ["level_id"]=70,
+ ["entry"]=73
},
[34001]={
["position"]=3,
+ ["tag"]=1,
["qlt"]=4,
["hurt_skill"]={
3400110,
@@ -1070,15 +4311,63 @@ local hero = {
3400113
},
["base_skill"]=3400120,
- ["rouge_skill"]=3400100,
- ["rouge_skill_1"]=3400101,
- ["rouge_skill_2"]=3400102,
- ["rouge_skill_3"]=3400103,
- ["rouge_skill_4"]=3400104,
- ["rouge_skill_5"]=3400105,
- ["rouge_skill_6"]=3400106,
- ["rouge_skill_7"]=3400107,
- ["begin_lv"]=5,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 3400111
+ },
+ {
+ 45,
+ 3400112
+ },
+ {
+ 85,
+ 3400113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 3400121
+ },
+ {
+ 55,
+ 3400122
+ },
+ {
+ 95,
+ 3400123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 3400131
+ },
+ {
+ 65,
+ 3400132
+ },
+ {
+ 101,
+ 3400133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 3400141
+ },
+ {
+ 75,
+ 3400142
+ },
+ {
+ 110,
+ 3400143
+ }
+ },
["hp"]={
12000000,
13680000,
@@ -1094,56 +4383,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0016",
- ["icon"]="18",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=34001,
- ["unlock_chapter"]=2,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 34001,
- 3400101,
- 3400102
- }
+ ["level_id"]=70,
+ ["entry"]=74
},
- [34002]={
+ [35001]={
["position"]=3,
- ["qlt"]=4,
+ ["tag"]=1,
+ ["qlt"]=5,
["hurt_skill"]={
- 3400210,
- 3400211,
- 3400212,
- 3400213
+ 3500110,
+ 3500111,
+ 3500112,
+ 3500113
+ },
+ ["base_skill"]=3500120,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 3500111
+ },
+ {
+ 45,
+ 3500112
+ },
+ {
+ 85,
+ 3500113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 3500121
+ },
+ {
+ 55,
+ 3500122
+ },
+ {
+ 95,
+ 3500123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 3500131
+ },
+ {
+ 65,
+ 3500132
+ },
+ {
+ 101,
+ 3500133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 3500141
+ },
+ {
+ 75,
+ 3500142
+ },
+ {
+ 110,
+ 3500143
+ }
},
- ["base_skill"]=3400220,
- ["rouge_skill"]=3400200,
- ["rouge_skill_1"]=3400201,
- ["rouge_skill_2"]=3400202,
- ["rouge_skill_3"]=3400203,
- ["rouge_skill_4"]=3400204,
- ["rouge_skill_5"]=3400205,
- ["rouge_skill_6"]=3400206,
- ["rouge_skill_7"]=3400207,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -1159,52 +4774,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0024",
- ["icon"]="24",
- ["item_id"]=34002,
- ["collection_point"]=5,
- ["skin"]={
- 34002
- }
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=35001,
+ ["level_id"]=70,
+ ["entry"]=75
},
- [34003]={
+ [35002]={
["position"]=3,
- ["qlt"]=4,
+ ["tag"]=1,
+ ["qlt"]=5,
["hurt_skill"]={
- 3400310,
- 3400311,
- 3400312,
- 3400313
+ 3500210,
+ 3500211,
+ 3500212,
+ 3500213
+ },
+ ["base_skill"]=3500220,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 3500211
+ },
+ {
+ 45,
+ 3500212
+ },
+ {
+ 85,
+ 3500213
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 3500221
+ },
+ {
+ 55,
+ 3500222
+ },
+ {
+ 95,
+ 3500223
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 3500231
+ },
+ {
+ 65,
+ 3500232
+ },
+ {
+ 101,
+ 3500233
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 3500241
+ },
+ {
+ 75,
+ 3500242
+ },
+ {
+ 110,
+ 3500243
+ }
},
- ["base_skill"]=3400320,
- ["rouge_skill"]=3400300,
- ["rouge_skill_1"]=3400301,
- ["rouge_skill_2"]=3400302,
- ["rouge_skill_3"]=3400303,
- ["rouge_skill_4"]=3400304,
- ["rouge_skill_5"]=3400305,
- ["rouge_skill_6"]=3400306,
- ["rouge_skill_7"]=3400307,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -1220,55 +5165,104 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
- },
- ["model_id"]="p0027",
- ["icon"]="28",
- ["item_id"]=34003,
- ["unlock_arena"]=4,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 34003
- }
- },
- [34004]={
- ["position"]=3,
- ["qlt"]=4,
- ["hurt_skill"]={
- 3400410,
- 3400411,
- 3400412,
- 3400413
- },
- ["base_skill"]=3400420,
- ["rouge_skill"]=3400400,
- ["rouge_skill_1"]=3400401,
- ["rouge_skill_2"]=3400402,
- ["rouge_skill_3"]=3400403,
- ["rouge_skill_4"]=3400404,
- ["rouge_skill_5"]=3400405,
- ["rouge_skill_6"]=3400406,
- ["rouge_skill_7"]=3400407,
- ["begin_lv"]=5,
- ["hp"]={
12000000,
13680000,
15360000,
@@ -1283,98 +5277,205 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_green",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
},
- ["model_id"]="p0040",
- ["icon"]="34",
- ["item_id"]=34004,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 34004
- }
- },
- [42001]={
- ["position"]=4,
- ["qlt"]=2,
- ["hurt_skill"]={
- 4200110,
- 4200111,
- 4200112,
- 4200113
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
},
- ["base_skill"]=4200120,
- ["rouge_skill"]=4200100,
- ["rouge_skill_1"]=4200101,
- ["rouge_skill_2"]=4200102,
- ["rouge_skill_3"]=4200103,
- ["rouge_skill_4"]=4200104,
- ["rouge_skill_5"]=4200105,
- ["rouge_skill_6"]=4200106,
- ["rouge_skill_7"]=4200107,
- ["begin_lv"]=1,
- ["hp"]={
- 6000000,
- 7200000,
- 8400000,
- 9660000,
- 10980000,
- 12360000,
- 13860000,
- 15480000,
- 17280000,
- 19260000,
- 21420000,
- 23820000,
- 26520000,
- 29520000,
- 32940000
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
},
- ["atk"]={
- 3000000,
- 3600000,
- 4200000,
- 4830000,
- 5490000,
- 6180000,
- 6930000,
- 7740000,
- 8640000,
- 9630000,
- 10710000,
- 11910000,
- 13260000,
- 14760000,
- 16470000
- },
- ["model_id"]="p0003",
- ["icon"]="4",
- ["item_id"]=42001,
- ["unlock_chapter"]=1,
- ["collection_point"]=2,
- ["skin"]={
- 42001
- }
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=35002,
+ ["level_id"]=70,
+ ["entry"]=75
},
[43001]={
["position"]=4,
+ ["tag"]=1,
["qlt"]=3,
["hurt_skill"]={
4300110,
@@ -1383,124 +5484,389 @@ local hero = {
4300113
},
["base_skill"]=4300120,
- ["rouge_skill"]=4300100,
- ["rouge_skill_1"]=4300101,
- ["rouge_skill_2"]=4300102,
- ["rouge_skill_3"]=4300103,
- ["rouge_skill_4"]=4300104,
- ["rouge_skill_5"]=4300105,
- ["rouge_skill_6"]=4300106,
- ["rouge_skill_7"]=4300107,
- ["begin_lv"]=3,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 4300111
+ },
+ {
+ 45,
+ 4300112
+ },
+ {
+ 85,
+ 4300113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 4300121
+ },
+ {
+ 55,
+ 4300122
+ },
+ {
+ 95,
+ 4300123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 4300131
+ },
+ {
+ 65,
+ 4300132
+ },
+ {
+ 101,
+ 4300133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 4300141
+ },
+ {
+ 75,
+ 4300142
+ },
+ {
+ 110,
+ 4300143
+ }
+ },
["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0022",
- ["icon"]="9",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=43001,
- ["unlock_chapter"]=2,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 43001
- }
- },
- [43002]={
- ["position"]=4,
- ["qlt"]=3,
- ["hurt_skill"]={
- 4300210,
- 4300211,
- 4300212,
- 4300213
- },
- ["base_skill"]=4300220,
- ["rouge_skill"]=4300200,
- ["rouge_skill_1"]=4300201,
- ["rouge_skill_2"]=4300202,
- ["rouge_skill_3"]=4300203,
- ["rouge_skill_4"]=4300204,
- ["rouge_skill_5"]=4300205,
- ["rouge_skill_6"]=4300206,
- ["rouge_skill_7"]=4300207,
- ["begin_lv"]=3,
- ["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
- },
- ["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
- },
- ["model_id"]="p0021",
- ["icon"]="14",
- ["item_id"]=43002,
- ["unlock_chapter"]=7,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 43002
- }
+ ["level_id"]=71,
+ ["entry"]=73
},
[44001]={
["position"]=4,
+ ["tag"]=1,
["qlt"]=4,
["hurt_skill"]={
4400110,
@@ -1509,15 +5875,63 @@ local hero = {
4400113
},
["base_skill"]=4400120,
- ["rouge_skill"]=4400100,
- ["rouge_skill_1"]=4400101,
- ["rouge_skill_2"]=4400102,
- ["rouge_skill_3"]=4400103,
- ["rouge_skill_4"]=4400104,
- ["rouge_skill_5"]=4400105,
- ["rouge_skill_6"]=4400106,
- ["rouge_skill_7"]=4400107,
- ["begin_lv"]=5,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 4400111
+ },
+ {
+ 45,
+ 4400112
+ },
+ {
+ 85,
+ 4400113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 4400121
+ },
+ {
+ 55,
+ 4400122
+ },
+ {
+ 95,
+ 4400123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 4400131
+ },
+ {
+ 65,
+ 4400132
+ },
+ {
+ 101,
+ 4400133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 4400141
+ },
+ {
+ 75,
+ 4400142
+ },
+ {
+ 110,
+ 4400143
+ }
+ },
["hp"]={
12000000,
13680000,
@@ -1533,55 +5947,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0008",
- ["icon"]="19",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=44001,
- ["unlock_chapter"]=10,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 44001,
- 4400101
- }
+ ["level_id"]=71,
+ ["entry"]=74
},
- [44002]={
+ [45001]={
["position"]=4,
- ["qlt"]=4,
+ ["tag"]=1,
+ ["qlt"]=5,
["hurt_skill"]={
- 4400210,
- 4400211,
- 4400212,
- 4400213
+ 4500110,
+ 4500111,
+ 4500112,
+ 4500113
+ },
+ ["base_skill"]=4500120,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 4500111
+ },
+ {
+ 45,
+ 4500112
+ },
+ {
+ 85,
+ 4500113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 4500121
+ },
+ {
+ 55,
+ 4500122
+ },
+ {
+ 95,
+ 4500123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 4500131
+ },
+ {
+ 65,
+ 4500132
+ },
+ {
+ 101,
+ 4500133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 4500141
+ },
+ {
+ 75,
+ 4500142
+ },
+ {
+ 110,
+ 4500143
+ }
},
- ["base_skill"]=4400220,
- ["rouge_skill"]=4400200,
- ["rouge_skill_1"]=4400201,
- ["rouge_skill_2"]=4400202,
- ["rouge_skill_3"]=4400203,
- ["rouge_skill_4"]=4400204,
- ["rouge_skill_5"]=4400205,
- ["rouge_skill_6"]=4400206,
- ["rouge_skill_7"]=4400207,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -1597,55 +6338,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0025",
- ["icon"]="25",
- ["item_id"]=44002,
- ["unlock_chapter"]=18,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 44002,
- 4400201
- }
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=45001,
+ ["level_id"]=71,
+ ["entry"]=75
},
- [44003]={
+ [45002]={
["position"]=4,
- ["qlt"]=4,
+ ["tag"]=1,
+ ["qlt"]=5,
["hurt_skill"]={
- 4400310,
- 4400311,
- 4400312,
- 4400313
+ 4500210,
+ 4500211,
+ 4500212,
+ 4500213
+ },
+ ["base_skill"]=4500220,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 4500211
+ },
+ {
+ 45,
+ 4500212
+ },
+ {
+ 85,
+ 4500213
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 4500221
+ },
+ {
+ 55,
+ 4500222
+ },
+ {
+ 95,
+ 4500223
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 4500231
+ },
+ {
+ 65,
+ 4500232
+ },
+ {
+ 101,
+ 4500233
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 4500241
+ },
+ {
+ 75,
+ 4500242
+ },
+ {
+ 110,
+ 4500243
+ }
},
- ["base_skill"]=4400320,
- ["rouge_skill"]=4400300,
- ["rouge_skill_1"]=4400301,
- ["rouge_skill_2"]=4400302,
- ["rouge_skill_3"]=4400303,
- ["rouge_skill_4"]=4400304,
- ["rouge_skill_5"]=4400305,
- ["rouge_skill_6"]=4400306,
- ["rouge_skill_7"]=4400307,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -1661,53 +6729,104 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
- },
- ["model_id"]="p0030",
- ["icon"]="29",
- ["item_id"]=44003,
- ["collection_point"]=5,
- ["skin"]={
- 44003
- }
- },
- [44004]={
- ["position"]=4,
- ["qlt"]=4,
- ["hurt_skill"]={
- 4400410,
- 4400411,
- 4400412,
- 4400413
- },
- ["base_skill"]=4400420,
- ["rouge_skill"]=4400400,
- ["rouge_skill_1"]=4400401,
- ["rouge_skill_2"]=4400402,
- ["rouge_skill_3"]=4400403,
- ["rouge_skill_4"]=4400404,
- ["rouge_skill_5"]=4400405,
- ["rouge_skill_6"]=4400406,
- ["rouge_skill_7"]=4400407,
- ["begin_lv"]=5,
- ["hp"]={
12000000,
13680000,
15360000,
@@ -1722,98 +6841,205 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
},
- ["model_id"]="p0038",
- ["icon"]="35",
- ["item_id"]=44004,
- ["collection_point"]=5,
- ["skin"]={
- 44004
- }
- },
- [52001]={
- ["position"]=5,
- ["qlt"]=2,
- ["hurt_skill"]={
- 5200110,
- 5200111,
- 5200112,
- 5200113
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
},
- ["base_skill"]=5200120,
- ["rouge_skill"]=5200100,
- ["rouge_skill_1"]=5200101,
- ["rouge_skill_2"]=5200102,
- ["rouge_skill_3"]=5200103,
- ["rouge_skill_4"]=5200104,
- ["rouge_skill_5"]=5200105,
- ["rouge_skill_6"]=5200106,
- ["rouge_skill_7"]=5200107,
- ["begin_lv"]=1,
- ["hp"]={
- 6000000,
- 7200000,
- 8400000,
- 9660000,
- 10980000,
- 12360000,
- 13860000,
- 15480000,
- 17280000,
- 19260000,
- 21420000,
- 23820000,
- 26520000,
- 29520000,
- 32940000
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
},
- ["atk"]={
- 3000000,
- 3600000,
- 4200000,
- 4830000,
- 5490000,
- 6180000,
- 6930000,
- 7740000,
- 8640000,
- 9630000,
- 10710000,
- 11910000,
- 13260000,
- 14760000,
- 16470000
- },
- ["model_id"]="p0004",
- ["icon"]="5",
- ["item_id"]=52001,
- ["unlock_chapter"]=2,
- ["is_show"]=1,
- ["collection_point"]=2,
- ["skin"]={
- 52001
- }
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=45002,
+ ["level_id"]=71,
+ ["entry"]=75
},
[53001]={
["position"]=5,
+ ["tag"]=1,
["qlt"]=3,
["hurt_skill"]={
5300110,
@@ -1822,125 +7048,389 @@ local hero = {
5300113
},
["base_skill"]=5300120,
- ["rouge_skill"]=5300100,
- ["rouge_skill_1"]=5300101,
- ["rouge_skill_2"]=5300102,
- ["rouge_skill_3"]=5300103,
- ["rouge_skill_4"]=5300104,
- ["rouge_skill_5"]=5300105,
- ["rouge_skill_6"]=5300106,
- ["rouge_skill_7"]=5300107,
- ["begin_lv"]=3,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 5300111
+ },
+ {
+ 45,
+ 5300112
+ },
+ {
+ 85,
+ 5300113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 5300121
+ },
+ {
+ 55,
+ 5300122
+ },
+ {
+ 95,
+ 5300123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 5300131
+ },
+ {
+ 65,
+ 5300132
+ },
+ {
+ 101,
+ 5300133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 5300141
+ },
+ {
+ 75,
+ 5300142
+ },
+ {
+ 110,
+ 5300143
+ }
+ },
["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0015",
- ["icon"]="10",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=53001,
- ["unlock_chapter"]=9,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 53001,
- 5300101
- }
- },
- [53002]={
- ["position"]=5,
- ["qlt"]=3,
- ["hurt_skill"]={
- 5300210,
- 5300211,
- 5300212,
- 5300213
- },
- ["base_skill"]=5300220,
- ["rouge_skill"]=5300200,
- ["rouge_skill_1"]=5300201,
- ["rouge_skill_2"]=5300202,
- ["rouge_skill_3"]=5300203,
- ["rouge_skill_4"]=5300204,
- ["rouge_skill_5"]=5300205,
- ["rouge_skill_6"]=5300206,
- ["rouge_skill_7"]=5300207,
- ["begin_lv"]=3,
- ["hp"]={
- 9000000,
- 10560000,
- 12120000,
- 13760000,
- 15480000,
- 17280000,
- 19240000,
- 21340000,
- 23680000,
- 26260000,
- 29060000,
- 32180000,
- 35700000,
- 39600000,
- 44040000
- },
- ["atk"]={
- 4500000,
- 5280000,
- 6060000,
- 6880000,
- 7740000,
- 8640000,
- 9620000,
- 10670000,
- 11840000,
- 13130000,
- 14530000,
- 16090000,
- 17850000,
- 19800000,
- 22020000
- },
- ["model_id"]="p0019",
- ["icon"]="15",
- ["item_id"]=53002,
- ["unlock_chapter"]=6,
- ["is_show"]=1,
- ["collection_point"]=3,
- ["skin"]={
- 53002
- }
+ ["level_id"]=72,
+ ["entry"]=73
},
[54001]={
["position"]=5,
+ ["tag"]=1,
["qlt"]=4,
["hurt_skill"]={
5400110,
@@ -1949,15 +7439,63 @@ local hero = {
5400113
},
["base_skill"]=5400120,
- ["rouge_skill"]=5400100,
- ["rouge_skill_1"]=5400101,
- ["rouge_skill_2"]=5400102,
- ["rouge_skill_3"]=5400103,
- ["rouge_skill_4"]=5400104,
- ["rouge_skill_5"]=5400105,
- ["rouge_skill_6"]=5400106,
- ["rouge_skill_7"]=5400107,
- ["begin_lv"]=5,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 5400111
+ },
+ {
+ 45,
+ 5400112
+ },
+ {
+ 85,
+ 5400113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 5400121
+ },
+ {
+ 55,
+ 5400122
+ },
+ {
+ 95,
+ 5400123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 5400131
+ },
+ {
+ 65,
+ 5400132
+ },
+ {
+ 101,
+ 5400133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 5400141
+ },
+ {
+ 75,
+ 5400142
+ },
+ {
+ 110,
+ 5400143
+ }
+ },
["hp"]={
12000000,
13680000,
@@ -1973,53 +7511,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0023",
- ["icon"]="20",
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
["item_id"]=54001,
- ["collection_point"]=5,
- ["skin"]={
- 54001,
- 5400101
- }
+ ["level_id"]=72,
+ ["entry"]=74
},
- [54002]={
+ [55001]={
["position"]=5,
- ["qlt"]=4,
+ ["tag"]=1,
+ ["qlt"]=5,
["hurt_skill"]={
- 5400210,
- 5400211,
- 5400212,
- 5400213
+ 5500110,
+ 5500111,
+ 5500112,
+ 5500113
+ },
+ ["base_skill"]=5500120,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 5500111
+ },
+ {
+ 45,
+ 5500112
+ },
+ {
+ 85,
+ 5500113
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 5500121
+ },
+ {
+ 55,
+ 5500122
+ },
+ {
+ 95,
+ 5500123
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 5500131
+ },
+ {
+ 65,
+ 5500132
+ },
+ {
+ 101,
+ 5500133
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 5500141
+ },
+ {
+ 75,
+ 5500142
+ },
+ {
+ 110,
+ 5500143
+ }
},
- ["base_skill"]=5400220,
- ["rouge_skill"]=5400200,
- ["rouge_skill_1"]=5400201,
- ["rouge_skill_2"]=5400202,
- ["rouge_skill_3"]=5400203,
- ["rouge_skill_4"]=5400204,
- ["rouge_skill_5"]=5400205,
- ["rouge_skill_6"]=5400206,
- ["rouge_skill_7"]=5400207,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -2035,55 +7902,382 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ 12000000,
+ 13680000,
+ 15360000,
+ 17120000,
+ 18960000,
+ 20960000,
+ 24560000,
+ 28440000,
+ 32940000,
+ 37900000,
+ 43300000,
+ 49300000,
+ 56060000,
+ 63560000,
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["model_id"]="p0026",
- ["icon"]="26",
- ["item_id"]=54002,
- ["unlock_chapter"]=22,
- ["is_show"]=1,
- ["collection_point"]=5,
- ["skin"]={
- 54002,
- 5400201
- }
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
+ },
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=55001,
+ ["level_id"]=72,
+ ["entry"]=75
},
- [54003]={
+ [55002]={
["position"]=5,
- ["qlt"]=4,
+ ["tag"]=1,
+ ["qlt"]=5,
["hurt_skill"]={
- 5400310,
- 5400311,
- 5400312,
- 5400313
+ 5500210,
+ 5500211,
+ 5500212,
+ 5500213
+ },
+ ["base_skill"]=5500220,
+ ["unlock"]=1,
+ ["rouge_skill_1"]={
+ {
+ 5,
+ 5500211
+ },
+ {
+ 45,
+ 5500212
+ },
+ {
+ 85,
+ 5500213
+ }
+ },
+ ["rouge_skill_2"]={
+ {
+ 15,
+ 5500221
+ },
+ {
+ 55,
+ 5500222
+ },
+ {
+ 95,
+ 5500223
+ }
+ },
+ ["rouge_skill_3"]={
+ {
+ 25,
+ 5500231
+ },
+ {
+ 65,
+ 5500232
+ },
+ {
+ 101,
+ 5500233
+ }
+ },
+ ["rouge_skill_4"]={
+ {
+ 35,
+ 5500241
+ },
+ {
+ 75,
+ 5500242
+ },
+ {
+ 110,
+ 5500243
+ }
},
- ["base_skill"]=5400320,
- ["rouge_skill"]=5400300,
- ["rouge_skill_1"]=5400301,
- ["rouge_skill_2"]=5400302,
- ["rouge_skill_3"]=5400303,
- ["rouge_skill_4"]=5400304,
- ["rouge_skill_5"]=5400305,
- ["rouge_skill_6"]=5400306,
- ["rouge_skill_7"]=5400307,
- ["begin_lv"]=5,
["hp"]={
12000000,
13680000,
@@ -2099,55 +8293,104 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
- },
- ["model_id"]="p0029",
- ["icon"]="30",
- ["item_id"]=54003,
- ["unlock_arena"]=3,
- ["collection_point"]=5,
- ["skin"]={
- 54003,
- 5400301
- }
- },
- [54004]={
- ["position"]=5,
- ["qlt"]=4,
- ["hurt_skill"]={
- 5400410,
- 5400411,
- 5400412,
- 5400413
- },
- ["base_skill"]=5400420,
- ["rouge_skill"]=5400400,
- ["rouge_skill_1"]=5400401,
- ["rouge_skill_2"]=5400402,
- ["rouge_skill_3"]=5400403,
- ["rouge_skill_4"]=5400404,
- ["rouge_skill_5"]=5400405,
- ["rouge_skill_6"]=5400406,
- ["rouge_skill_7"]=5400407,
- ["begin_lv"]=5,
- ["hp"]={
12000000,
13680000,
15360000,
@@ -2162,36 +8405,204 @@ local hero = {
49300000,
56060000,
63560000,
- 72120000
+ 72120000,
+ 80680000,
+ 89240000,
+ 97800000,
+ 106360000,
+ 114920000,
+ 123480000,
+ 132040000,
+ 140600000,
+ 149160000,
+ 157720000,
+ 166280000,
+ 174840000,
+ 183400000,
+ 191960000,
+ 200520000,
+ 209080000,
+ 217640000,
+ 226200000,
+ 234760000,
+ 243320000,
+ 251880000,
+ 260440000,
+ 269000000,
+ 277560000,
+ 286120000,
+ 294680000,
+ 303240000,
+ 311800000,
+ 320360000,
+ 328920000,
+ 337480000,
+ 346040000,
+ 354600000,
+ 363160000,
+ 371720000,
+ 380280000,
+ 388840000,
+ 397400000,
+ 405960000,
+ 414520000,
+ 423080000,
+ 431640000,
+ 440200000,
+ 448760000,
+ 457320000,
+ 465880000,
+ 474440000,
+ 483000000,
+ 491560000,
+ 500120000,
+ 508680000,
+ 517240000,
+ 525800000,
+ 534360000,
+ 542920000,
+ 551480000,
+ 560040000,
+ 568600000,
+ 577160000,
+ 585720000,
+ 594280000,
+ 602840000,
+ 611400000,
+ 619960000,
+ 628520000,
+ 637080000,
+ 645640000,
+ 654200000,
+ 662760000,
+ 671320000,
+ 679880000,
+ 688440000,
+ 697000000,
+ 705560000,
+ 714120000,
+ 722680000,
+ 731240000,
+ 739800000,
+ 748360000,
+ 756920000,
+ 765480000,
+ 774040000,
+ 782600000,
+ 791160000,
+ 799720000,
+ 808280000,
+ 816840000,
+ 825400000,
+ 833960000,
+ 842520000,
+ 851080000,
+ 859640000,
+ 868200000,
+ 876760000,
+ 885320000
},
- ["atk"]={
- 6000000,
- 6840000,
- 7680000,
- 8560000,
- 9480000,
- 10480000,
- 12280000,
- 14220000,
- 16470000,
- 18950000,
- 21650000,
- 24650000,
- 28030000,
- 31780000,
- 36060000
+ ["star"]={
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_blue",
+ ["num"]=100
+ },
+ {
+ ["type"]="attr_atkp_person",
+ ["num"]=100
+ }
},
- ["model_id"]="p0041",
- ["icon"]="36",
- ["item_id"]=54004,
- ["collection_point"]=5,
- ["skin"]={
- 54004,
- 5400401
- }
+ ["star_txt"]={
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1,
+ 2,
+ 1
+ },
+ ["power"]={
+ 100,
+ 200,
+ 300,
+ 400,
+ 500,
+ 600,
+ 700,
+ 800,
+ 900,
+ 1000,
+ 1100,
+ 1200
+ },
+ ["model_id"]="p0005",
+ ["icon"]="1",
+ ["item_id"]=55002,
+ ["level_id"]=72,
+ ["entry"]=75
}
}
local config = {
-data=hero,count=35
+data=hero,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/hero_fund.lua b/lua/app/config/hero_fund.lua
new file mode 100644
index 00000000..ffda5eae
--- /dev/null
+++ b/lua/app/config/hero_fund.lua
@@ -0,0 +1,606 @@
+local hero_fund = {
+ [1]={
+ ["stage"]=1,
+ ["attr"]=500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=1,
+ ["num_for_nothing"]="Vw=="
+ }
+ },
+ [2]={
+ ["stage"]=1,
+ ["attr"]=1000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=101,
+ ["num_for_nothing"]="Vwhd"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=2,
+ ["num_for_nothing"]="VA=="
+ }
+ },
+ [3]={
+ ["stage"]=1,
+ ["attr"]=1500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=102,
+ ["num_for_nothing"]="Vwhe"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=3,
+ ["num_for_nothing"]="VQ=="
+ }
+ },
+ [4]={
+ ["stage"]=1,
+ ["attr"]=2000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=103,
+ ["num_for_nothing"]="Vwhf"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=4,
+ ["num_for_nothing"]="Ug=="
+ }
+ },
+ [5]={
+ ["stage"]=1,
+ ["attr"]=2500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=104,
+ ["num_for_nothing"]="VwhY"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=5,
+ ["num_for_nothing"]="Uw=="
+ }
+ },
+ [6]={
+ ["stage"]=1,
+ ["attr"]=3000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=105,
+ ["num_for_nothing"]="VwhZ"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=6,
+ ["num_for_nothing"]="UA=="
+ }
+ },
+ [7]={
+ ["stage"]=1,
+ ["attr"]=3500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=106,
+ ["num_for_nothing"]="Vwha"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=7,
+ ["num_for_nothing"]="UQ=="
+ }
+ },
+ [8]={
+ ["stage"]=1,
+ ["attr"]=4000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=107,
+ ["num_for_nothing"]="Vwhb"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=8,
+ ["num_for_nothing"]="Xg=="
+ }
+ },
+ [9]={
+ ["stage"]=1,
+ ["attr"]=4500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=108,
+ ["num_for_nothing"]="VwhU"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=9,
+ ["num_for_nothing"]="Xw=="
+ }
+ },
+ [10]={
+ ["stage"]=1,
+ ["attr"]=5000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=109,
+ ["num_for_nothing"]="VwhV"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
+ }
+ },
+ [11]={
+ ["stage"]=1,
+ ["attr"]=5500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=110,
+ ["num_for_nothing"]="Vwlc"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=11,
+ ["num_for_nothing"]="Vwk="
+ }
+ },
+ [12]={
+ ["stage"]=1,
+ ["attr"]=6000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=111,
+ ["num_for_nothing"]="Vwld"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=12,
+ ["num_for_nothing"]="Vwo="
+ }
+ },
+ [13]={
+ ["stage"]=1,
+ ["attr"]=6500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=112,
+ ["num_for_nothing"]="Vwle"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=13,
+ ["num_for_nothing"]="Vws="
+ }
+ },
+ [14]={
+ ["stage"]=1,
+ ["attr"]=7000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=113,
+ ["num_for_nothing"]="Vwlf"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=14,
+ ["num_for_nothing"]="Vww="
+ }
+ },
+ [15]={
+ ["stage"]=1,
+ ["attr"]=7500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=114,
+ ["num_for_nothing"]="VwlY"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=15,
+ ["num_for_nothing"]="Vw0="
+ }
+ },
+ [16]={
+ ["stage"]=2,
+ ["attr"]=8000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=115,
+ ["num_for_nothing"]="VwlZ"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=16,
+ ["num_for_nothing"]="Vw4="
+ }
+ },
+ [17]={
+ ["stage"]=2,
+ ["attr"]=8500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=116,
+ ["num_for_nothing"]="Vwla"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=17,
+ ["num_for_nothing"]="Vw8="
+ }
+ },
+ [18]={
+ ["stage"]=2,
+ ["attr"]=9000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=117,
+ ["num_for_nothing"]="Vwlb"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=18,
+ ["num_for_nothing"]="VwA="
+ }
+ },
+ [19]={
+ ["stage"]=2,
+ ["attr"]=9500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=118,
+ ["num_for_nothing"]="VwlU"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=19,
+ ["num_for_nothing"]="VwE="
+ }
+ },
+ [20]={
+ ["stage"]=2,
+ ["attr"]=10000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=119,
+ ["num_for_nothing"]="VwlV"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=20,
+ ["num_for_nothing"]="VAg="
+ }
+ },
+ [21]={
+ ["stage"]=2,
+ ["attr"]=10500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=120,
+ ["num_for_nothing"]="Vwpc"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=21,
+ ["num_for_nothing"]="VAk="
+ }
+ },
+ [22]={
+ ["stage"]=2,
+ ["attr"]=11000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=121,
+ ["num_for_nothing"]="Vwpd"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=22,
+ ["num_for_nothing"]="VAo="
+ }
+ },
+ [23]={
+ ["stage"]=2,
+ ["attr"]=11500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=122,
+ ["num_for_nothing"]="Vwpe"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=23,
+ ["num_for_nothing"]="VAs="
+ }
+ },
+ [24]={
+ ["stage"]=2,
+ ["attr"]=12000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=123,
+ ["num_for_nothing"]="Vwpf"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=24,
+ ["num_for_nothing"]="VAw="
+ }
+ },
+ [25]={
+ ["stage"]=2,
+ ["attr"]=12500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=124,
+ ["num_for_nothing"]="VwpY"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=25,
+ ["num_for_nothing"]="VA0="
+ }
+ },
+ [26]={
+ ["stage"]=2,
+ ["attr"]=13000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=125,
+ ["num_for_nothing"]="VwpZ"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=26,
+ ["num_for_nothing"]="VA4="
+ }
+ },
+ [27]={
+ ["stage"]=2,
+ ["attr"]=13500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=126,
+ ["num_for_nothing"]="Vwpa"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=27,
+ ["num_for_nothing"]="VA8="
+ }
+ },
+ [28]={
+ ["stage"]=2,
+ ["attr"]=14000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=127,
+ ["num_for_nothing"]="Vwpb"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=28,
+ ["num_for_nothing"]="VAA="
+ }
+ },
+ [29]={
+ ["stage"]=2,
+ ["attr"]=14500,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=128,
+ ["num_for_nothing"]="VwpU"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=29,
+ ["num_for_nothing"]="VAE="
+ }
+ },
+ [30]={
+ ["stage"]=2,
+ ["attr"]=15000,
+ ["reward_free"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=129,
+ ["num_for_nothing"]="VwpV"
+ },
+ ["reward_mall"]={
+ ["type"]=1,
+ ["type_for_nothing"]="Vw==",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=30,
+ ["num_for_nothing"]="VQg="
+ }
+ }
+}
+local config = {
+data=hero_fund,count=30
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/hero_fund.lua.meta b/lua/app/config/hero_fund.lua.meta
new file mode 100644
index 00000000..56795ae7
--- /dev/null
+++ b/lua/app/config/hero_fund.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: 05c19c580afd748eaad51996b86c8156
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/hero_level.lua b/lua/app/config/hero_level.lua
index 5275b2dd..9e55e792 100644
--- a/lua/app/config/hero_level.lua
+++ b/lua/app/config/hero_level.lua
@@ -1,207 +1,1266 @@
local hero_level = {
[1]={
- ["cost_2"]={
- 3,
- 0
+ ["cost"]={
+ 5,
+ 10
},
- ["unlock_skill"]=1
+ ["star"]=0
},
[2]={
- ["cost_2"]={
+ ["cost"]={
+ 5,
+ 11
+ },
+ ["star"]=0
+ },
+ [3]={
+ ["cost"]={
+ 5,
+ 12
+ },
+ ["star"]=0
+ },
+ [4]={
+ ["cost"]={
+ 5,
+ 13
+ },
+ ["star"]=0
+ },
+ [5]={
+ ["cost"]={
+ 5,
+ 14
+ },
+ ["star"]=0
+ },
+ [6]={
+ ["cost"]={
+ 5,
+ 15
+ },
+ ["star"]=0
+ },
+ [7]={
+ ["cost"]={
+ 5,
+ 16
+ },
+ ["star"]=0
+ },
+ [8]={
+ ["cost"]={
+ 5,
+ 17
+ },
+ ["star"]=0
+ },
+ [9]={
+ ["cost"]={
+ 5,
+ 18
+ },
+ ["star"]=0
+ },
+ [10]={
+ ["cost"]={
+ 5,
+ 19
+ },
+ ["star"]=0
+ },
+ [11]={
+ ["cost"]={
+ 5,
+ 20
+ },
+ ["star"]=0
+ },
+ [12]={
+ ["cost"]={
+ 5,
+ 21
+ },
+ ["star"]=0
+ },
+ [13]={
+ ["cost"]={
+ 5,
+ 22
+ },
+ ["star"]=0
+ },
+ [14]={
+ ["cost"]={
+ 5,
+ 23
+ },
+ ["star"]=0
+ },
+ [15]={
+ ["cost"]={
+ 5,
+ 24
+ },
+ ["star"]=0
+ },
+ [16]={
+ ["cost"]={
+ 5,
+ 25
+ },
+ ["star"]=0
+ },
+ [17]={
+ ["cost"]={
+ 5,
+ 26
+ },
+ ["star"]=0
+ },
+ [18]={
+ ["cost"]={
+ 5,
+ 27
+ },
+ ["star"]=0
+ },
+ [19]={
+ ["cost"]={
+ 5,
+ 28
+ },
+ ["star"]=0
+ },
+ [20]={
+ ["cost"]={
+ 5,
+ 29
+ },
+ ["star"]=0
+ },
+ [21]={
+ ["cost"]={
+ 5,
+ 30
+ },
+ ["star"]=0
+ },
+ [22]={
+ ["cost"]={
+ 5,
+ 31
+ },
+ ["star"]=0
+ },
+ [23]={
+ ["cost"]={
+ 5,
+ 32
+ },
+ ["star"]=0
+ },
+ [24]={
+ ["cost"]={
+ 5,
+ 33
+ },
+ ["star"]=0
+ },
+ [25]={
+ ["cost"]={
+ 5,
+ 34
+ },
+ ["star"]=0
+ },
+ [26]={
+ ["cost"]={
+ 5,
+ 35
+ },
+ ["star"]=0
+ },
+ [27]={
+ ["cost"]={
+ 5,
+ 36
+ },
+ ["star"]=0
+ },
+ [28]={
+ ["cost"]={
+ 5,
+ 37
+ },
+ ["star"]=0
+ },
+ [29]={
+ ["cost"]={
+ 5,
+ 38
+ },
+ ["star"]=0
+ },
+ [30]={
+ ["cost"]={
+ 5,
+ 39
+ },
+ ["star"]=0
+ },
+ [31]={
+ ["cost"]={
+ 5,
+ 40
+ },
+ ["star"]=1
+ },
+ [32]={
+ ["cost"]={
+ 5,
+ 41
+ },
+ ["star"]=1
+ },
+ [33]={
+ ["cost"]={
+ 5,
+ 42
+ },
+ ["star"]=1
+ },
+ [34]={
+ ["cost"]={
+ 5,
+ 43
+ },
+ ["star"]=1
+ },
+ [35]={
+ ["cost"]={
+ 5,
+ 44
+ },
+ ["star"]=1
+ },
+ [36]={
+ ["cost"]={
+ 5,
+ 45
+ },
+ ["star"]=1
+ },
+ [37]={
+ ["cost"]={
+ 5,
+ 46
+ },
+ ["star"]=1
+ },
+ [38]={
+ ["cost"]={
+ 5,
+ 47
+ },
+ ["star"]=1
+ },
+ [39]={
+ ["cost"]={
+ 5,
+ 48
+ },
+ ["star"]=1
+ },
+ [40]={
+ ["cost"]={
+ 5,
+ 49
+ },
+ ["star"]=1
+ },
+ [41]={
+ ["cost"]={
5,
50
},
- ["unlock_skill"]=1
+ ["star"]=2
},
- [3]={
- ["cost_2"]={
- 10,
+ [42]={
+ ["cost"]={
+ 5,
+ 51
+ },
+ ["star"]=2
+ },
+ [43]={
+ ["cost"]={
+ 5,
+ 52
+ },
+ ["star"]=2
+ },
+ [44]={
+ ["cost"]={
+ 5,
+ 53
+ },
+ ["star"]=2
+ },
+ [45]={
+ ["cost"]={
+ 5,
+ 54
+ },
+ ["star"]=2
+ },
+ [46]={
+ ["cost"]={
+ 5,
+ 55
+ },
+ ["star"]=2
+ },
+ [47]={
+ ["cost"]={
+ 5,
+ 56
+ },
+ ["star"]=2
+ },
+ [48]={
+ ["cost"]={
+ 5,
+ 57
+ },
+ ["star"]=2
+ },
+ [49]={
+ ["cost"]={
+ 5,
+ 58
+ },
+ ["star"]=2
+ },
+ [50]={
+ ["cost"]={
+ 5,
+ 59
+ },
+ ["star"]=2
+ },
+ [51]={
+ ["cost"]={
+ 5,
+ 60
+ },
+ ["star"]=3
+ },
+ [52]={
+ ["cost"]={
+ 5,
+ 61
+ },
+ ["star"]=3
+ },
+ [53]={
+ ["cost"]={
+ 5,
+ 62
+ },
+ ["star"]=3
+ },
+ [54]={
+ ["cost"]={
+ 5,
+ 63
+ },
+ ["star"]=3
+ },
+ [55]={
+ ["cost"]={
+ 5,
+ 64
+ },
+ ["star"]=3
+ },
+ [56]={
+ ["cost"]={
+ 5,
+ 65
+ },
+ ["star"]=3
+ },
+ [57]={
+ ["cost"]={
+ 5,
+ 66
+ },
+ ["star"]=3
+ },
+ [58]={
+ ["cost"]={
+ 5,
+ 67
+ },
+ ["star"]=3
+ },
+ [59]={
+ ["cost"]={
+ 5,
+ 68
+ },
+ ["star"]=3
+ },
+ [60]={
+ ["cost"]={
+ 5,
+ 69
+ },
+ ["star"]=3
+ },
+ [61]={
+ ["cost"]={
+ 5,
+ 70
+ },
+ ["star"]=4
+ },
+ [62]={
+ ["cost"]={
+ 5,
+ 71
+ },
+ ["star"]=4
+ },
+ [63]={
+ ["cost"]={
+ 5,
+ 72
+ },
+ ["star"]=4
+ },
+ [64]={
+ ["cost"]={
+ 5,
+ 73
+ },
+ ["star"]=4
+ },
+ [65]={
+ ["cost"]={
+ 5,
+ 74
+ },
+ ["star"]=4
+ },
+ [66]={
+ ["cost"]={
+ 5,
+ 75
+ },
+ ["star"]=4
+ },
+ [67]={
+ ["cost"]={
+ 5,
+ 76
+ },
+ ["star"]=4
+ },
+ [68]={
+ ["cost"]={
+ 5,
+ 77
+ },
+ ["star"]=4
+ },
+ [69]={
+ ["cost"]={
+ 5,
+ 78
+ },
+ ["star"]=4
+ },
+ [70]={
+ ["cost"]={
+ 5,
+ 79
+ },
+ ["star"]=4
+ },
+ [71]={
+ ["cost"]={
+ 5,
+ 80
+ },
+ ["star"]=5
+ },
+ [72]={
+ ["cost"]={
+ 5,
+ 81
+ },
+ ["star"]=5
+ },
+ [73]={
+ ["cost"]={
+ 5,
+ 82
+ },
+ ["star"]=5
+ },
+ [74]={
+ ["cost"]={
+ 5,
+ 83
+ },
+ ["star"]=5
+ },
+ [75]={
+ ["cost"]={
+ 5,
+ 84
+ },
+ ["star"]=5
+ },
+ [76]={
+ ["cost"]={
+ 5,
+ 85
+ },
+ ["star"]=5
+ },
+ [77]={
+ ["cost"]={
+ 5,
+ 86
+ },
+ ["star"]=5
+ },
+ [78]={
+ ["cost"]={
+ 5,
+ 87
+ },
+ ["star"]=5
+ },
+ [79]={
+ ["cost"]={
+ 5,
+ 88
+ },
+ ["star"]=5
+ },
+ [80]={
+ ["cost"]={
+ 5,
+ 89
+ },
+ ["star"]=5
+ },
+ [81]={
+ ["cost"]={
+ 5,
+ 90
+ },
+ ["star"]=6
+ },
+ [82]={
+ ["cost"]={
+ 5,
+ 91
+ },
+ ["star"]=6
+ },
+ [83]={
+ ["cost"]={
+ 5,
+ 92
+ },
+ ["star"]=6
+ },
+ [84]={
+ ["cost"]={
+ 5,
+ 93
+ },
+ ["star"]=6
+ },
+ [85]={
+ ["cost"]={
+ 5,
+ 94
+ },
+ ["star"]=6
+ },
+ [86]={
+ ["cost"]={
+ 5,
+ 95
+ },
+ ["star"]=6
+ },
+ [87]={
+ ["cost"]={
+ 5,
+ 96
+ },
+ ["star"]=6
+ },
+ [88]={
+ ["cost"]={
+ 5,
+ 97
+ },
+ ["star"]=6
+ },
+ [89]={
+ ["cost"]={
+ 5,
+ 98
+ },
+ ["star"]=6
+ },
+ [90]={
+ ["cost"]={
+ 5,
+ 99
+ },
+ ["star"]=6
+ },
+ [91]={
+ ["cost"]={
+ 5,
100
},
- ["cost_3"]={
- 3,
- 0
- },
- ["unlock_skill"]=2
+ ["star"]=7
},
- [4]={
- ["cost_2"]={
- 25,
- 200
- },
- ["cost_3"]={
+ [92]={
+ ["cost"]={
5,
- 300
+ 101
},
- ["unlock_skill"]=2
+ ["star"]=7
},
- [5]={
- ["cost_2"]={
- 50,
- 1000
- },
- ["cost_3"]={
- 10,
- 1500
- },
- ["cost_4"]={
- 3,
- 0
- },
- ["unlock_skill"]=3
- },
- [6]={
- ["cost_2"]={
- 100,
- 5000
- },
- ["cost_3"]={
- 25,
- 7000
- },
- ["cost_4"]={
+ [93]={
+ ["cost"]={
5,
- 10000
+ 102
},
- ["unlock_skill"]=3
+ ["star"]=7
},
- [7]={
- ["cost_2"]={
- 250,
- 10000
+ [94]={
+ ["cost"]={
+ 5,
+ 103
},
- ["cost_3"]={
- 50,
- 15000
- },
- ["cost_4"]={
- 10,
- 20000
- },
- ["unlock_skill"]=4
+ ["star"]=7
},
- [8]={
- ["cost_2"]={
- 500,
- 15000
+ [95]={
+ ["cost"]={
+ 5,
+ 104
},
- ["cost_3"]={
- 100,
- 24000
- },
- ["cost_4"]={
- 20,
- 30000
- },
- ["unlock_skill"]=4
+ ["star"]=7
},
- [9]={
- ["cost_2"]={
- 1000,
- 20000
+ [96]={
+ ["cost"]={
+ 5,
+ 105
},
- ["cost_3"]={
- 250,
- 30000
- },
- ["cost_4"]={
- 25,
- 40000
- },
- ["unlock_skill"]=5
+ ["star"]=7
},
- [10]={
- ["cost_2"]={
- 1500,
- 30000
+ [97]={
+ ["cost"]={
+ 5,
+ 106
},
- ["cost_3"]={
- 500,
- 45000
- },
- ["cost_4"]={
- 50,
- 60000
- },
- ["unlock_skill"]=5
+ ["star"]=7
},
- [11]={
- ["cost_2"]={
- 2000,
- 40000
+ [98]={
+ ["cost"]={
+ 5,
+ 107
},
- ["cost_3"]={
- 1000,
- 60000
- },
- ["cost_4"]={
- 100,
- 80000
- },
- ["unlock_skill"]=5
+ ["star"]=7
},
- [12]={
- ["cost_2"]={
- 2500,
- 50000
+ [99]={
+ ["cost"]={
+ 5,
+ 108
},
- ["cost_3"]={
- 1500,
- 75000
- },
- ["cost_4"]={
- 150,
- 100000
- },
- ["unlock_skill"]=6
+ ["star"]=7
},
- [13]={
- ["cost_2"]={
- 3000,
- 75000
+ [100]={
+ ["cost"]={
+ 5,
+ 109
},
- ["cost_3"]={
- 2000,
- 110000
- },
- ["cost_4"]={
- 200,
- 150000
- },
- ["unlock_skill"]=6
+ ["star"]=7
},
- [14]={
- ["cost_2"]={
- 3500,
- 100000
+ [101]={
+ ["cost"]={
+ 5,
+ 110
},
- ["cost_3"]={
- 2500,
- 150000
- },
- ["cost_4"]={
- 300,
- 200000
- },
- ["unlock_skill"]=6
+ ["star"]=8
},
- [15]={
- ["cost_2"]={
- 4000,
- 150000
+ [102]={
+ ["cost"]={
+ 5,
+ 111
},
- ["cost_3"]={
- 3000,
- 240000
+ ["star"]=8
+ },
+ [103]={
+ ["cost"]={
+ 5,
+ 112
},
- ["cost_4"]={
- 400,
- 300000
+ ["star"]=8
+ },
+ [104]={
+ ["cost"]={
+ 5,
+ 113
},
- ["unlock_skill"]=7
+ ["star"]=8
+ },
+ [105]={
+ ["cost"]={
+ 5,
+ 114
+ },
+ ["star"]=8
+ },
+ [106]={
+ ["cost"]={
+ 5,
+ 115
+ },
+ ["star"]=8
+ },
+ [107]={
+ ["cost"]={
+ 5,
+ 116
+ },
+ ["star"]=8
+ },
+ [108]={
+ ["cost"]={
+ 5,
+ 117
+ },
+ ["star"]=8
+ },
+ [109]={
+ ["cost"]={
+ 5,
+ 118
+ },
+ ["star"]=8
+ },
+ [110]={
+ ["cost"]={
+ 5,
+ 119
+ },
+ ["star"]=8
+ },
+ [111]={
+ ["cost"]={
+ 5,
+ 120
+ },
+ ["star"]=9
+ },
+ [112]={
+ ["cost"]={
+ 5,
+ 121
+ },
+ ["star"]=9
+ },
+ [113]={
+ ["cost"]={
+ 5,
+ 122
+ },
+ ["star"]=9
+ },
+ [114]={
+ ["cost"]={
+ 5,
+ 123
+ },
+ ["star"]=9
+ },
+ [115]={
+ ["cost"]={
+ 5,
+ 124
+ },
+ ["star"]=9
+ },
+ [116]={
+ ["cost"]={
+ 5,
+ 125
+ },
+ ["star"]=9
+ },
+ [117]={
+ ["cost"]={
+ 5,
+ 126
+ },
+ ["star"]=9
+ },
+ [118]={
+ ["cost"]={
+ 5,
+ 127
+ },
+ ["star"]=9
+ },
+ [119]={
+ ["cost"]={
+ 5,
+ 128
+ },
+ ["star"]=9
+ },
+ [120]={
+ ["cost"]={
+ 5,
+ 129
+ },
+ ["star"]=9
+ },
+ [121]={
+ ["cost"]={
+ 5,
+ 130
+ },
+ ["star"]=10
+ },
+ [122]={
+ ["cost"]={
+ 5,
+ 131
+ },
+ ["star"]=10
+ },
+ [123]={
+ ["cost"]={
+ 5,
+ 132
+ },
+ ["star"]=10
+ },
+ [124]={
+ ["cost"]={
+ 5,
+ 133
+ },
+ ["star"]=10
+ },
+ [125]={
+ ["cost"]={
+ 5,
+ 134
+ },
+ ["star"]=10
+ },
+ [126]={
+ ["cost"]={
+ 5,
+ 135
+ },
+ ["star"]=10
+ },
+ [127]={
+ ["cost"]={
+ 5,
+ 136
+ },
+ ["star"]=10
+ },
+ [128]={
+ ["cost"]={
+ 5,
+ 137
+ },
+ ["star"]=10
+ },
+ [129]={
+ ["cost"]={
+ 5,
+ 138
+ },
+ ["star"]=10
+ },
+ [130]={
+ ["cost"]={
+ 5,
+ 139
+ },
+ ["star"]=10
+ },
+ [131]={
+ ["cost"]={
+ 5,
+ 140
+ },
+ ["star"]=11
+ },
+ [132]={
+ ["cost"]={
+ 5,
+ 141
+ },
+ ["star"]=11
+ },
+ [133]={
+ ["cost"]={
+ 5,
+ 142
+ },
+ ["star"]=11
+ },
+ [134]={
+ ["cost"]={
+ 5,
+ 143
+ },
+ ["star"]=11
+ },
+ [135]={
+ ["cost"]={
+ 5,
+ 144
+ },
+ ["star"]=11
+ },
+ [136]={
+ ["cost"]={
+ 5,
+ 145
+ },
+ ["star"]=11
+ },
+ [137]={
+ ["cost"]={
+ 5,
+ 146
+ },
+ ["star"]=11
+ },
+ [138]={
+ ["cost"]={
+ 5,
+ 147
+ },
+ ["star"]=11
+ },
+ [139]={
+ ["cost"]={
+ 5,
+ 148
+ },
+ ["star"]=11
+ },
+ [140]={
+ ["cost"]={
+ 5,
+ 149
+ },
+ ["star"]=11
+ },
+ [141]={
+ ["cost"]={
+ 5,
+ 150
+ },
+ ["star"]=12
+ },
+ [142]={
+ ["cost"]={
+ 5,
+ 151
+ },
+ ["star"]=12
+ },
+ [143]={
+ ["cost"]={
+ 5,
+ 152
+ },
+ ["star"]=12
+ },
+ [144]={
+ ["cost"]={
+ 5,
+ 153
+ },
+ ["star"]=12
+ },
+ [145]={
+ ["cost"]={
+ 5,
+ 154
+ },
+ ["star"]=12
+ },
+ [146]={
+ ["cost"]={
+ 5,
+ 155
+ },
+ ["star"]=12
+ },
+ [147]={
+ ["cost"]={
+ 5,
+ 156
+ },
+ ["star"]=12
+ },
+ [148]={
+ ["cost"]={
+ 5,
+ 157
+ },
+ ["star"]=12
+ },
+ [149]={
+ ["cost"]={
+ 5,
+ 158
+ },
+ ["star"]=12
+ },
+ [150]={
+ ["cost"]={
+ 5,
+ 159
+ },
+ ["star"]=12
+ },
+ [151]={
+ ["cost"]={
+ 5,
+ 160
+ },
+ ["star"]=13
+ },
+ [152]={
+ ["cost"]={
+ 5,
+ 161
+ },
+ ["star"]=13
+ },
+ [153]={
+ ["cost"]={
+ 5,
+ 162
+ },
+ ["star"]=13
+ },
+ [154]={
+ ["cost"]={
+ 5,
+ 163
+ },
+ ["star"]=13
+ },
+ [155]={
+ ["cost"]={
+ 5,
+ 164
+ },
+ ["star"]=13
+ },
+ [156]={
+ ["cost"]={
+ 5,
+ 165
+ },
+ ["star"]=13
+ },
+ [157]={
+ ["cost"]={
+ 5,
+ 166
+ },
+ ["star"]=13
+ },
+ [158]={
+ ["cost"]={
+ 5,
+ 167
+ },
+ ["star"]=13
+ },
+ [159]={
+ ["cost"]={
+ 5,
+ 168
+ },
+ ["star"]=13
+ },
+ [160]={
+ ["cost"]={
+ 5,
+ 169
+ },
+ ["star"]=13
+ },
+ [161]={
+ ["cost"]={
+ 5,
+ 170
+ },
+ ["star"]=14
+ },
+ [162]={
+ ["cost"]={
+ 5,
+ 171
+ },
+ ["star"]=14
+ },
+ [163]={
+ ["cost"]={
+ 5,
+ 172
+ },
+ ["star"]=14
+ },
+ [164]={
+ ["cost"]={
+ 5,
+ 173
+ },
+ ["star"]=14
+ },
+ [165]={
+ ["cost"]={
+ 5,
+ 174
+ },
+ ["star"]=14
+ },
+ [166]={
+ ["cost"]={
+ 5,
+ 175
+ },
+ ["star"]=14
+ },
+ [167]={
+ ["cost"]={
+ 5,
+ 176
+ },
+ ["star"]=14
+ },
+ [168]={
+ ["cost"]={
+ 5,
+ 177
+ },
+ ["star"]=14
+ },
+ [169]={
+ ["cost"]={
+ 5,
+ 178
+ },
+ ["star"]=14
+ },
+ [170]={
+ ["cost"]={
+ 5,
+ 179
+ },
+ ["star"]=14
+ },
+ [171]={
+ ["cost"]={
+ 5,
+ 180
+ },
+ ["star"]=15
+ },
+ [172]={
+ ["cost"]={
+ 5,
+ 181
+ },
+ ["star"]=15
+ },
+ [173]={
+ ["cost"]={
+ 5,
+ 182
+ },
+ ["star"]=15
+ },
+ [174]={
+ ["cost"]={
+ 5,
+ 183
+ },
+ ["star"]=15
+ },
+ [175]={
+ ["cost"]={
+ 5,
+ 184
+ },
+ ["star"]=15
+ },
+ [176]={
+ ["cost"]={
+ 5,
+ 185
+ },
+ ["star"]=15
+ },
+ [177]={
+ ["cost"]={
+ 5,
+ 186
+ },
+ ["star"]=15
+ },
+ [178]={
+ ["cost"]={
+ 5,
+ 187
+ },
+ ["star"]=15
+ },
+ [179]={
+ ["cost"]={
+ 5,
+ 188
+ },
+ ["star"]=15
+ },
+ [180]={
+ ["cost"]={
+ 5,
+ 189
+ },
+ ["star"]=15
}
}
local config = {
-data=hero_level,count=15
+data=hero_level,count=180
}
return config
\ No newline at end of file
diff --git a/lua/app/config/hero_star.lua b/lua/app/config/hero_star.lua
new file mode 100644
index 00000000..1c6f0765
--- /dev/null
+++ b/lua/app/config/hero_star.lua
@@ -0,0 +1,276 @@
+local hero_star = {
+ [1]={
+ ["cost_2"]={
+ 5,
+ 10
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [2]={
+ ["cost_2"]={
+ 5,
+ 11
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [3]={
+ ["cost_2"]={
+ 5,
+ 12
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [4]={
+ ["cost_2"]={
+ 5,
+ 13
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [5]={
+ ["cost_2"]={
+ 5,
+ 14
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [6]={
+ ["cost_2"]={
+ 5,
+ 15
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [7]={
+ ["cost_2"]={
+ 5,
+ 16
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [8]={
+ ["cost_2"]={
+ 5,
+ 17
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [9]={
+ ["cost_2"]={
+ 5,
+ 18
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [10]={
+ ["cost_2"]={
+ 5,
+ 19
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [11]={
+ ["cost_2"]={
+ 5,
+ 20
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [12]={
+ ["cost_2"]={
+ 5,
+ 21
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [13]={
+ ["cost_2"]={
+ 5,
+ 22
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [14]={
+ ["cost_2"]={
+ 5,
+ 23
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ },
+ [15]={
+ ["cost_2"]={
+ 5,
+ 24
+ },
+ ["cost_3"]={
+ 5,
+ 10
+ },
+ ["cost_4"]={
+ 5,
+ 10
+ },
+ ["cost_5"]={
+ 5,
+ 10
+ }
+ }
+}
+local config = {
+data=hero_star,count=15
+}
+return config
\ No newline at end of file
diff --git a/lua/app/config/hero_star.lua.meta b/lua/app/config/hero_star.lua.meta
new file mode 100644
index 00000000..fa939b18
--- /dev/null
+++ b/lua/app/config/hero_star.lua.meta
@@ -0,0 +1,10 @@
+fileFormatVersion: 2
+guid: bd26a1fb9b8174a0c9cf4a54ac3de1dc
+ScriptedImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 2
+ userData:
+ assetBundleName:
+ assetBundleVariant:
+ script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3}
diff --git a/lua/app/config/item.lua b/lua/app/config/item.lua
index 15d1ba93..67f84f95 100644
--- a/lua/app/config/item.lua
+++ b/lua/app/config/item.lua
@@ -1705,6 +1705,51 @@ local item = {
["qlt"]=5,
["icon"]="67"
},
+ [68]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="68"
+ },
+ [69]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="69"
+ },
+ [70]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="70"
+ },
+ [71]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="71"
+ },
+ [72]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="72"
+ },
+ [73]={
+ ["type"]=2,
+ ["qlt"]=3,
+ ["icon"]="73"
+ },
+ [74]={
+ ["type"]=2,
+ ["qlt"]=4,
+ ["icon"]="74"
+ },
+ [75]={
+ ["type"]=2,
+ ["qlt"]=5,
+ ["icon"]="75"
+ },
+ [76]={
+ ["type"]=2,
+ ["qlt"]=6,
+ ["icon"]="76"
+ },
[1001]={
["type"]=2,
["qlt"]=1,
@@ -2321,53 +2366,35 @@ local item = {
54
}
},
- [12001]={
- ["type"]=5,
- ["parameter"]=12001,
- ["qlt"]=2,
- ["icon"]="12001"
- },
[13001]={
["type"]=5,
["parameter"]=13001,
["qlt"]=3,
["icon"]="13001"
},
- [13002]={
- ["type"]=5,
- ["parameter"]=13002,
- ["qlt"]=3,
- ["icon"]="13002"
- },
[14001]={
["type"]=5,
["parameter"]=14001,
["qlt"]=4,
["icon"]="14001"
},
- [14002]={
+ [15001]={
["type"]=5,
- ["parameter"]=14002,
- ["qlt"]=4,
- ["icon"]="14002"
+ ["parameter"]=15001,
+ ["qlt"]=5,
+ ["icon"]="15001"
},
- [14003]={
+ [15002]={
["type"]=5,
- ["parameter"]=14003,
- ["qlt"]=4,
- ["icon"]="14003"
+ ["parameter"]=15002,
+ ["qlt"]=5,
+ ["icon"]="15002"
},
- [14004]={
+ [16001]={
["type"]=5,
- ["parameter"]=14004,
- ["qlt"]=4,
- ["icon"]="14004"
- },
- [22001]={
- ["type"]=5,
- ["parameter"]=22001,
- ["qlt"]=2,
- ["icon"]="22001"
+ ["parameter"]=16001,
+ ["qlt"]=6,
+ ["icon"]="16001"
},
[23001]={
["type"]=5,
@@ -2375,41 +2402,17 @@ local item = {
["qlt"]=3,
["icon"]="23001"
},
- [23002]={
- ["type"]=5,
- ["parameter"]=23002,
- ["qlt"]=3,
- ["icon"]="23002"
- },
[24001]={
["type"]=5,
["parameter"]=24001,
["qlt"]=4,
["icon"]="24001"
},
- [24002]={
+ [25001]={
["type"]=5,
- ["parameter"]=24002,
- ["qlt"]=4,
- ["icon"]="24002"
- },
- [24003]={
- ["type"]=5,
- ["parameter"]=24003,
- ["qlt"]=4,
- ["icon"]="24003"
- },
- [24004]={
- ["type"]=5,
- ["parameter"]=24004,
- ["qlt"]=4,
- ["icon"]="24004"
- },
- [32001]={
- ["type"]=5,
- ["parameter"]=32001,
- ["qlt"]=2,
- ["icon"]="32001"
+ ["parameter"]=25001,
+ ["qlt"]=5,
+ ["icon"]="25001"
},
[33001]={
["type"]=5,
@@ -2417,200 +2420,20 @@ local item = {
["qlt"]=3,
["icon"]="33001"
},
- [33002]={
- ["type"]=5,
- ["parameter"]=33002,
- ["qlt"]=3,
- ["icon"]="33002"
- },
- [34001]={
- ["type"]=5,
- ["parameter"]=34001,
- ["qlt"]=4,
- ["icon"]="34001"
- },
- [34002]={
- ["type"]=5,
- ["parameter"]=34002,
- ["qlt"]=4,
- ["icon"]="34002"
- },
- [34003]={
- ["type"]=5,
- ["parameter"]=34003,
- ["qlt"]=4,
- ["icon"]="34002"
- },
- [34004]={
- ["type"]=5,
- ["parameter"]=34004,
- ["qlt"]=4,
- ["icon"]="34004"
- },
- [42001]={
- ["type"]=5,
- ["parameter"]=42001,
- ["qlt"]=2,
- ["icon"]="42001"
- },
[43001]={
["type"]=5,
["parameter"]=43001,
["qlt"]=3,
["icon"]="43001"
},
- [43002]={
- ["type"]=5,
- ["parameter"]=43002,
- ["qlt"]=3,
- ["icon"]="43002"
- },
- [44001]={
- ["type"]=5,
- ["parameter"]=44001,
- ["qlt"]=4,
- ["icon"]="44001"
- },
- [44002]={
- ["type"]=5,
- ["parameter"]=44002,
- ["qlt"]=4,
- ["icon"]="44002"
- },
- [44003]={
- ["type"]=5,
- ["parameter"]=44003,
- ["qlt"]=4,
- ["icon"]="44003"
- },
- [44004]={
- ["type"]=5,
- ["parameter"]=44004,
- ["qlt"]=4,
- ["icon"]="44004"
- },
- [52001]={
- ["type"]=5,
- ["parameter"]=52001,
- ["qlt"]=2,
- ["icon"]="52001"
- },
[53001]={
["type"]=5,
["parameter"]=53001,
["qlt"]=3,
["icon"]="53001"
- },
- [53002]={
- ["type"]=5,
- ["parameter"]=53002,
- ["qlt"]=3,
- ["icon"]="53002"
- },
- [54001]={
- ["type"]=5,
- ["parameter"]=54001,
- ["qlt"]=4,
- ["icon"]="54001"
- },
- [54002]={
- ["type"]=5,
- ["parameter"]=54002,
- ["qlt"]=4,
- ["icon"]="54002"
- },
- [54003]={
- ["type"]=5,
- ["parameter"]=54003,
- ["qlt"]=4,
- ["icon"]="54003"
- },
- [54004]={
- ["type"]=5,
- ["parameter"]=54004,
- ["qlt"]=4,
- ["icon"]="54004"
- },
- [1400201]={
- ["type"]=12,
- ["parameter"]=1400201,
- ["qlt"]=3,
- ["icon"]="1400201"
- },
- [3400101]={
- ["type"]=12,
- ["parameter"]=3400101,
- ["qlt"]=4,
- ["icon"]="3400101"
- },
- [3400102]={
- ["type"]=12,
- ["parameter"]=3400102,
- ["qlt"]=3,
- ["icon"]="3400102"
- },
- [5300101]={
- ["type"]=12,
- ["parameter"]=5300101,
- ["qlt"]=2,
- ["icon"]="5300101"
- },
- [5400101]={
- ["type"]=12,
- ["parameter"]=5400101,
- ["qlt"]=4,
- ["icon"]="5400101"
- },
- [1400101]={
- ["type"]=12,
- ["parameter"]=1400101,
- ["qlt"]=3,
- ["icon"]="1400101"
- },
- [2300201]={
- ["type"]=12,
- ["parameter"]=2300201,
- ["qlt"]=2,
- ["icon"]="2300201"
- },
- [4400201]={
- ["type"]=12,
- ["parameter"]=4400201,
- ["qlt"]=4,
- ["icon"]="4400201"
- },
- [5400401]={
- ["type"]=12,
- ["parameter"]=5400401,
- ["qlt"]=4,
- ["icon"]="5400401"
- },
- [2400101]={
- ["type"]=12,
- ["parameter"]=2400101,
- ["qlt"]=3,
- ["icon"]="2400101"
- },
- [4400101]={
- ["type"]=12,
- ["parameter"]=4400101,
- ["qlt"]=3,
- ["icon"]="4400101"
- },
- [5400301]={
- ["type"]=12,
- ["parameter"]=5400301,
- ["qlt"]=3,
- ["icon"]="5400301"
- },
- [5400201]={
- ["type"]=12,
- ["parameter"]=5400201,
- ["qlt"]=3,
- ["icon"]="5400201"
}
}
local config = {
-data=item,count=144
+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 38b08524..95371601 100644
--- a/lua/app/config/localization/localization_global_const.lua
+++ b/lua/app/config/localization/localization_global_const.lua
@@ -635,6 +635,12 @@ local LocalizationGlobalConst =
ACT_TOURN_ARENEA_HELP_2 = "ACT_TOURN_ARENEA_HELP_2",
ACT_TOURN_WAVE_DESC_4 = "ACT_TOURN_WAVE_DESC_4",
EVENT_COUNTDOWN = "EVENT_COUNTDOWN",
+ HERO_STAR_DESC_1 = "HERO_STAR_DESC_1",
+ HERO_STAR_DESC_2 = "HERO_STAR_DESC_2",
+ HERO_STAR_DESC_3 = "HERO_STAR_DESC_3",
+ HERO_STAR_DESC_4 = "HERO_STAR_DESC_4",
+ HERO_STAR_DESC_5 = "HERO_STAR_DESC_5",
+ HERO_STAR_DESC_6 = "HERO_STAR_DESC_6",
}
return LocalizationGlobalConst
\ No newline at end of file
diff --git a/lua/app/config/mall_daily.lua b/lua/app/config/mall_daily.lua
index b3e05fec..b38738c1 100644
--- a/lua/app/config/mall_daily.lua
+++ b/lua/app/config/mall_daily.lua
@@ -28,275 +28,23 @@ local mall_daily = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=12001,
- ["id_for_nothing"]="VwpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52001,
- ["id_for_nothing"]="UwpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=12001,
- ["id_for_nothing"]="VwpcA2Q=",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52001,
- ["id_for_nothing"]="UwpcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
}
},
["weight"]={
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10
+ 50,
+ 200
},
["cost"]={
{
@@ -314,230 +62,6 @@ local mall_daily = {
["id_for_nothing"]="Vw==",
["num"]=100,
["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
}
}
},
@@ -546,275 +70,23 @@ local mall_daily = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=12001,
- ["id_for_nothing"]="VwpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52001,
- ["id_for_nothing"]="UwpcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=12001,
- ["id_for_nothing"]="VwpcA2Q=",
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
["num"]=10,
["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52001,
- ["id_for_nothing"]="UwpcA2Q=",
- ["num"]=10,
- ["num_for_nothing"]="Vwg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
}
},
["weight"]={
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 100,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10
+ 50,
+ 200
},
["cost"]={
{
@@ -832,230 +104,6 @@ local mall_daily = {
["id_for_nothing"]="Vw==",
["num"]=100,
["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=100,
- ["num_for_nothing"]="Vwhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=200,
- ["num_for_nothing"]="VAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=600,
- ["num_for_nothing"]="UAhc"
- },
- {
- ["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"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=1,
- ["id_for_nothing"]="Vw==",
- ["num"]=800,
- ["num_for_nothing"]="Xghc"
}
}
},
@@ -1064,1026 +112,40 @@ local mall_daily = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=12001,
- ["id_for_nothing"]="VwpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52001,
- ["id_for_nothing"]="UwpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14001,
- ["id_for_nothing"]="VwxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24001,
- ["id_for_nothing"]="VAxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24003,
- ["id_for_nothing"]="VAxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34001,
- ["id_for_nothing"]="VQxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34003,
- ["id_for_nothing"]="VQxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44001,
- ["id_for_nothing"]="UgxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44002,
- ["id_for_nothing"]="UgxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54002,
- ["id_for_nothing"]="UwxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54003,
- ["id_for_nothing"]="UwxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
}
},
["weight"]={
- 200,
- 200,
- 200,
- 200,
- 200,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40
+ 50,
+ 200
},
["cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
}
},
@@ -2092,1026 +154,40 @@ local mall_daily = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=12001,
- ["id_for_nothing"]="VwpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52001,
- ["id_for_nothing"]="UwpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14001,
- ["id_for_nothing"]="VwxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24001,
- ["id_for_nothing"]="VAxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24003,
- ["id_for_nothing"]="VAxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34001,
- ["id_for_nothing"]="VQxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34003,
- ["id_for_nothing"]="VQxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44001,
- ["id_for_nothing"]="UgxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44002,
- ["id_for_nothing"]="UgxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54002,
- ["id_for_nothing"]="UwxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54003,
- ["id_for_nothing"]="UwxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
}
},
["weight"]={
- 200,
- 200,
- 200,
- 200,
- 200,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40
+ 50,
+ 200
},
["cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
}
},
@@ -3120,1026 +196,40 @@ local mall_daily = {
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=12001,
- ["id_for_nothing"]="VwpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=2,
+ ["id_for_nothing"]="VA==",
+ ["num"]=10,
+ ["num_for_nothing"]="Vwg="
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=52001,
- ["id_for_nothing"]="UwpcA2Q=",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=3,
- ["num_for_nothing"]="VQ=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=4,
- ["num_for_nothing"]="Ug=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=5,
- ["num_for_nothing"]="Uw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13001,
- ["id_for_nothing"]="VwtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=13002,
- ["id_for_nothing"]="VwtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23001,
- ["id_for_nothing"]="VAtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=23002,
- ["id_for_nothing"]="VAtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33001,
- ["id_for_nothing"]="VQtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=33002,
- ["id_for_nothing"]="VQtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43001,
- ["id_for_nothing"]="UgtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=43002,
- ["id_for_nothing"]="UgtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53001,
- ["id_for_nothing"]="UwtcA2Q=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=53002,
- ["id_for_nothing"]="UwtcA2c=",
- ["num"]=6,
- ["num_for_nothing"]="UA=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14001,
- ["id_for_nothing"]="VwxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14002,
- ["id_for_nothing"]="VwxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=14003,
- ["id_for_nothing"]="VwxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24001,
- ["id_for_nothing"]="VAxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24002,
- ["id_for_nothing"]="VAxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=24003,
- ["id_for_nothing"]="VAxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34001,
- ["id_for_nothing"]="VQxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34002,
- ["id_for_nothing"]="VQxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=34003,
- ["id_for_nothing"]="VQxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44001,
- ["id_for_nothing"]="UgxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44002,
- ["id_for_nothing"]="UgxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=44003,
- ["id_for_nothing"]="UgxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54001,
- ["id_for_nothing"]="UwxcA2Q=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54002,
- ["id_for_nothing"]="UwxcA2c=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=54003,
- ["id_for_nothing"]="UwxcA2Y=",
- ["num"]=1,
- ["num_for_nothing"]="Vw=="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=300,
+ ["num_for_nothing"]="VQhc"
}
},
["weight"]={
- 200,
- 200,
- 200,
- 200,
- 200,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 15,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 10,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 8,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 5,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40,
- 40
+ 50,
+ 200
},
["cost"]={
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
},
{
["type"]=1,
["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=15,
- ["num_for_nothing"]="Vw0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=20,
- ["num_for_nothing"]="VAg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=25,
- ["num_for_nothing"]="VA0="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=30,
- ["num_for_nothing"]="VQg="
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
- },
- {
- ["type"]=1,
- ["type_for_nothing"]="Vw==",
- ["id"]=2,
- ["id_for_nothing"]="VA==",
- ["num"]=180,
- ["num_for_nothing"]="VwBc"
+ ["id"]=1,
+ ["id_for_nothing"]="Vw==",
+ ["num"]=100,
+ ["num_for_nothing"]="Vwhc"
}
}
}
diff --git a/lua/app/config/monster_base.lua b/lua/app/config/monster_base.lua
index e321d10c..8d4f8f46 100644
--- a/lua/app/config/monster_base.lua
+++ b/lua/app/config/monster_base.lua
@@ -695,22 +695,22 @@ local monster_base = {
["model_ui"]=1.0
},
[30006]={
- ["model_id"]="p0005",
+ ["model_id"]="p0001",
["body"]=2,
["model_ui"]=1.0
},
[30007]={
- ["model_id"]="p0007",
+ ["model_id"]="p0002",
["body"]=2,
["model_ui"]=1.0
},
[30008]={
- ["model_id"]="p0008",
+ ["model_id"]="p0003",
["body"]=2,
["model_ui"]=1.0
},
[30009]={
- ["model_id"]="p0009",
+ ["model_id"]="p0004",
["body"]=2,
["model_ui"]=1.0
},
@@ -720,87 +720,87 @@ local monster_base = {
["model_ui"]=1.0
},
[30011]={
- ["model_id"]="p0011",
+ ["model_id"]="p0001",
["body"]=2,
["model_ui"]=1.0
},
[30012]={
- ["model_id"]="p0012",
+ ["model_id"]="p0002",
["body"]=2,
["model_ui"]=1.0
},
[30014]={
- ["model_id"]="p0005",
+ ["model_id"]="p0003",
["body"]=2,
["model_ui"]=1.0
},
[30015]={
- ["model_id"]="p0015",
+ ["model_id"]="p0004",
["body"]=2,
["model_ui"]=1.0
},
[30016]={
- ["model_id"]="p0016",
+ ["model_id"]="p0005",
["body"]=2,
["model_ui"]=1.0
},
[30017]={
- ["model_id"]="p0017",
+ ["model_id"]="p0001",
["body"]=2,
["model_ui"]=1.0
},
[30018]={
- ["model_id"]="p0018",
+ ["model_id"]="p0002",
["body"]=2,
["model_ui"]=1.0
},
[30019]={
- ["model_id"]="p0019",
+ ["model_id"]="p0003",
["body"]=2,
["model_ui"]=1.0
},
[30020]={
- ["model_id"]="p0020",
+ ["model_id"]="p0004",
["body"]=2,
["model_ui"]=1.0
},
[30021]={
- ["model_id"]="p0021",
+ ["model_id"]="p0005",
["body"]=2,
["model_ui"]=1.0
},
[30022]={
- ["model_id"]="p0022",
+ ["model_id"]="p0001",
["body"]=2,
["model_ui"]=1.0
},
[30023]={
- ["model_id"]="p0023",
+ ["model_id"]="p0002",
["body"]=2,
["model_ui"]=1.0
},
[30024]={
- ["model_id"]="p0024",
+ ["model_id"]="p0003",
["body"]=2,
["model_ui"]=1.0
},
[30025]={
- ["model_id"]="p0025",
+ ["model_id"]="p0004",
["body"]=2,
["model_ui"]=1.0
},
[30026]={
- ["model_id"]="p0026",
+ ["model_id"]="p0005",
["body"]=2,
["model_ui"]=1.0
},
[30043]={
- ["model_id"]="p0043",
+ ["model_id"]="p0001",
["body"]=2,
["model_ui"]=1.0
},
[30044]={
- ["model_id"]="p0044",
+ ["model_id"]="p0002",
["body"]=2,
["model_ui"]=1.0
}
diff --git a/lua/app/config/player_initial.lua b/lua/app/config/player_initial.lua
index 62240c39..b41490cc 100644
--- a/lua/app/config/player_initial.lua
+++ b/lua/app/config/player_initial.lua
@@ -3,8 +3,8 @@ local player_initial = {
["reward"]={
["type"]=2,
["type_for_nothing"]="VA==",
- ["id"]=32001,
- ["id_for_nothing"]="VQpcA2Q=",
+ ["id"]=13001,
+ ["id_for_nothing"]="VwtcA2Q=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -13,8 +13,8 @@ local player_initial = {
["reward"]={
["type"]=2,
["type_for_nothing"]="VA==",
- ["id"]=22001,
- ["id_for_nothing"]="VApcA2Q=",
+ ["id"]=23001,
+ ["id_for_nothing"]="VAtcA2Q=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
@@ -23,8 +23,8 @@ local player_initial = {
["reward"]={
["type"]=2,
["type_for_nothing"]="VA==",
- ["id"]=42001,
- ["id_for_nothing"]="UgpcA2Q=",
+ ["id"]=23001,
+ ["id_for_nothing"]="VAtcA2Q=",
["num"]=1,
["num_for_nothing"]="Vw=="
}
diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua
index 0adf2e57..eed6e207 100644
--- a/lua/app/config/skill.lua
+++ b/lua/app/config/skill.lua
@@ -103,7 +103,7 @@ local skill = {
},
["obj"]=1
},
- [1200110]={
+ [1300110]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -129,7 +129,7 @@ local skill = {
["fx_self"]=300018,
["fx_self_mirror"]=400068
},
- [1200111]={
+ [1300111]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -155,7 +155,7 @@ local skill = {
["fx_self"]=300019,
["fx_self_mirror"]=400069
},
- [1200112]={
+ [1300112]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -181,7 +181,7 @@ local skill = {
["fx_self"]=300020,
["fx_self_mirror"]=400070
},
- [1200113]={
+ [1300113]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -207,21 +207,14 @@ local skill = {
["fx_self"]=300021,
["fx_self_mirror"]=400071
},
- [1200120]={
+ [1300120]={
["energy"]=10,
["link"]=1,
["position"]=1,
- ["method"]=2,
+ ["method"]=1,
["skill_type"]=4,
["boardrange"]={
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
- }
+
},
["battle_icon"]="1",
["effect_type"]=1,
@@ -252,85 +245,8 @@ local skill = {
},
["fx_self_mirror"]=400072
},
- [1200121]={
+ [1300121]={
["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=3,
- ["effect"]={
- {
- ["type"]="normal_attack_add",
- ["num"]=2,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1,
- ["skill_position"]={
- 1,
- 140
- }
- },
- [1200122]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=3,
- ["effect"]={
- {
- ["type"]="normal_attack_add",
- ["num"]=2,
- ["ratio"]=10000,
- ["round"]=2
- },
- {
- ["type"]="normal_attack_add",
- ["num"]=2,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1,
- ["skill_position"]={
- 1,
- 140
- }
- },
- [1200123]={
- ["position"]=1,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="normal_attack_dec",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["combo_position"]=1,
- ["effect_type"]=2,
- ["trigger"]=7,
- ["effect"]={
- {
- ["type"]="dmg_addition_red_add",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1,
- ["skill_position"]={
- 1,
- 140
- }
- },
- [1200124]={
["effect_type"]=2,
["trigger"]=6,
["effect"]={
@@ -343,165 +259,7 @@ local skill = {
},
["obj"]=2
},
- [1300110]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000011
- },
- ["name_act"]="attack01",
- ["fx_self"]=300055,
- ["fx_self_mirror"]=400005
- },
- [1300111]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000012
- },
- ["name_act"]="attack02",
- ["fx_self"]=300056,
- ["fx_self_mirror"]=400006
- },
- [1300112]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000013
- },
- ["name_act"]="attack03",
- ["fx_self"]=300057,
- ["fx_self_mirror"]=400007
- },
- [1300113]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000014
- },
- ["name_act"]="attack04",
- ["fx_self"]=300058,
- ["fx_self_mirror"]=400008
- },
- [1300120]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=1,
- ["method"]=1,
- ["battle_icon"]="6",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=30000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 13001201,
- 13001202,
- 13001203
- },
- ["name_act"]="skill01",
- ["fx_self"]=300059,
- ["bullet_time"]={
- 1900,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400009
- },
- [1300121]={
+ [1300122]={
["position"]=1,
["effect_type"]=2,
["trigger"]=6,
@@ -509,19 +267,33 @@ local skill = {
{
["type"]="burn",
["num"]=5000,
- ["ratio"]=10000,
+ ["ratio"]=5000,
["round"]=2
}
},
["obj"]=2
},
- [1300122]={
+ [1300123]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=8000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [1300124]={
["position"]=1,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="bleed",
+ ["attr"]="poison",
["op"]=">",
["v"]=0,
["side"]=2
@@ -540,124 +312,78 @@ local skill = {
["effect"]={
{
["type"]="dmg_addition_red_add",
- ["num"]=5000,
+ ["num"]=1000,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1
},
- [1300123]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=1,
- ["method"]=1,
- ["battle_icon"]="6",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=40000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 13001201,
- 13001202,
- 13001203
- },
- ["name_act"]="skill01",
- ["fx_self"]=300059,
- ["bullet_time"]={
- 1900,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400009
- },
- [1300124]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="burn",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
[1300125]={
["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="poison",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
["effect_type"]=2,
- ["trigger"]=9,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="normal_attack_add",
- ["num"]=2,
+ ["type"]="dmg_addition_red_add",
+ ["num"]=2000,
["ratio"]=10000,
- ["round"]=3
+ ["round"]=1
}
},
["obj"]=1
},
[1300126]={
["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="poison",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
["effect_type"]=2,
- ["trigger"]=3,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="dmg_addition_all_add",
+ ["type"]="dmg_addition_red_add",
["num"]=3000,
["ratio"]=10000,
- ["round"]=2
+ ["round"]=1
}
},
["obj"]=1
},
- [1300127]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=3,
- ["effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=3000,
- ["ratio"]=10000,
- ["round"]=3
- }
- },
- ["obj"]=1
- },
- [1300210]={
+ [1400110]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -671,19 +397,19 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000011
+ 1000001
},
["name_act"]="attack01",
- ["fx_self"]=300035,
- ["fx_self_mirror"]=400020
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
- [1300211]={
+ [1400111]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -697,19 +423,19 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000012
+ 1000002
},
["name_act"]="attack02",
- ["fx_self"]=300036,
- ["fx_self_mirror"]=400021
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
- [1300212]={
+ [1400112]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -723,19 +449,19 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000013
+ 1000003
},
["name_act"]="attack03",
- ["fx_self"]=300037,
- ["fx_self_mirror"]=400022
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
- [1300213]={
+ [1400113]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -749,71 +475,61 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000014
+ 1000004
},
["name_act"]="attack04",
- ["fx_self"]=300038,
- ["fx_self_mirror"]=400023
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
- [1300220]={
- ["buff_id"]={
- "burn"
- },
+ [1400120]={
["energy"]=10,
["link"]=1,
["position"]=1,
- ["method"]=2,
+ ["method"]=1,
["skill_type"]=4,
["boardrange"]={
- {
- ["type"]=1,
- ["range"]=2
- },
- {
- ["type"]=2,
- ["range"]=2
- }
+
},
- ["battle_icon"]="11",
+ ["battle_icon"]="2",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
{
["type"]="hurt_red",
["num"]=20000,
["ratio"]=10000,
["round"]=0
- },
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [1400121]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
{
["type"]="burn",
["num"]=5000,
@@ -821,37 +537,69 @@ local skill = {
["round"]=2
}
},
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4,
- 6
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 130022201,
- 130022202,
- 130022201,
- 130022202,
- 130022203
- },
- ["name_act"]="skill01",
- ["fx_self"]=300039,
- ["bullet_time"]={
- 1500,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400024
+ ["obj"]=2
},
- [1300221]={
+ [1400122]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=7000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [1400123]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [1400124]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="imprison",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_red_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [1400125]={
["position"]=1,
["buff_condition"]={
{
@@ -883,761 +631,13 @@ local skill = {
},
["obj"]=1
},
- [1300222]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=1,
- ["method"]=2,
- ["skill_type"]=4,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=2
- },
- {
- ["type"]=2,
- ["range"]=2
- }
- },
- ["battle_icon"]="11",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="burn",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4,
- 6
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 130022201,
- 130022202,
- 130022201,
- 130022202,
- 130022203
- },
- ["name_act"]="skill01",
- ["fx_self"]=300039,
- ["bullet_time"]={
- 1500,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400024
- },
- [1400110]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000011
- },
- ["name_act"]="attack01",
- ["fx_self"]=300045,
- ["fx_self_mirror"]=400078
- },
- [1400111]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000012
- },
- ["name_act"]="attack02",
- ["fx_self"]=300046,
- ["fx_self_mirror"]=400079
- },
- [1400112]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=4,
- ["sound_hit"]={
- 1000013
- },
- ["name_act"]="attack03",
- ["fx_self"]=300047,
- ["fx_self_mirror"]=400080
- },
- [1400113]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000014
- },
- ["name_act"]="attack04",
- ["fx_self"]=300048,
- ["fx_self_mirror"]=400081
- },
- [1400120]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=1,
- ["method"]=1,
- ["skill_type"]=2,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=1
- },
- {
- ["type"]=2,
- ["range"]=1
- },
- {
- ["type"]=3,
- ["range"]=1
- },
- {
- ["type"]=4,
- ["range"]=1
- }
- },
- ["battle_icon"]="16",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4,
- 5
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=14001200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300049,
- ["bullet_time"]={
- 1166,
- 3000,
- 200
- },
- ["fx_self_mirror"]=400082
- },
- [1400121]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="burn",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [1400122]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2
- },
- [1400123]={
- ["position"]=1,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="bleed",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["combo_position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=30000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2
- },
- [1400125]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="burn",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=3
- }
- },
- ["obj"]=2
- },
[1400126]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["fx_target"]=4
- },
- [1400127]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [1400210]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000023
- },
- ["name_act"]="attack01",
- ["fx_self"]=300100,
- ["fx_self_mirror"]=400100
- },
- [1400211]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000024
- },
- ["name_act"]="attack02",
- ["fx_self"]=300101,
- ["fx_self_mirror"]=400101
- },
- [1400212]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=4,
- ["sound_hit"]={
- 1000021
- },
- ["name_act"]="attack03",
- ["fx_self"]=300102,
- ["fx_self_mirror"]=400102
- },
- [1400213]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000022
- },
- ["name_act"]="attack04",
- ["fx_self"]=300103,
- ["fx_self_mirror"]=400103
- },
- [1400220]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=1,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="21",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=80000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=14002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300104,
- ["bullet_time"]={
- 1466,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400104
- },
- [1400221]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="burn",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [1400222]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="normal_attack_add",
- ["num"]=2,
- ["ratio"]=10000,
- ["round"]=3
- }
- },
- ["obj"]=1
- },
- [1400223]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="burn",
- ["num"]=5000,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [1400310]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 70
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 53001202
- },
- ["name_act"]="attack01",
- ["fx_self"]=300122,
- ["fx_self_mirror"]=400122
- },
- [1400311]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 70
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 13001201
- },
- ["name_act"]="attack02",
- ["fx_self"]=300123,
- ["fx_self_mirror"]=400123
- },
- [1400312]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 70
- },
- ["shake_time"]=100,
- ["shake_type"]=4,
- ["sound_hit"]={
- 5200113
- },
- ["name_act"]="attack03",
- ["fx_self"]=300124,
- ["fx_self_mirror"]=400124
- },
- [1400313]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 70
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 5200112
- },
- ["name_act"]="attack04",
- ["fx_self"]=300125,
- ["fx_self_mirror"]=400125
- },
- [1400320]={
- ["buff_id"]={
- "vulnerable"
- },
- ["energy"]=10,
- ["link"]=1,
- ["position"]=1,
- ["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="30",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=11000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=12000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=22000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="vulnerable",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 5
- },
- ["skill_position"]={
- 1,
- 70
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=14003201,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300126,
- ["bullet_time"]={
- 2600,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400126
- },
- [1400321]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="heal",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1
- },
- [1400322]={
["position"]=1,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="weaken",
+ ["attr"]="imprison",
["op"]=">",
["v"]=0,
["side"]=2
@@ -1652,101 +652,18 @@ local skill = {
},
["combo_position"]=1,
["effect_type"]=2,
- ["trigger"]=5,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2
- },
- [1400323]={
- ["position"]=1,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="vulnerable",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="heal",
- ["num"]=4000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="heal",
- ["num"]=2000,
+ ["type"]="dmg_addition_red_add",
+ ["num"]=3000,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1
},
- [1400324]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="rebirth",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="rebirth",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1
- },
- [1400325]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="rebirth",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="rebirth",
- ["num"]=7500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [1400410]={
+ [1500110]={
["position"]=1,
["effect_type"]=1,
["trigger"]=1,
@@ -1760,316 +677,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1400410
- },
- ["name_act"]="attack01",
- ["fx_self"]=300151,
- ["fx_self_mirror"]=400152
- },
- [1400411]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1400411
- },
- ["name_act"]="attack02",
- ["fx_self"]=300152,
- ["fx_self_mirror"]=400151
- },
- [1400412]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=4,
- ["sound_hit"]={
- 1400410
- },
- ["name_act"]="attack03",
- ["fx_self"]=300152,
- ["fx_self_mirror"]=400151
- },
- [1400413]={
- ["position"]=1,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1400411
- },
- ["name_act"]="attack04",
- ["fx_self"]=300152,
- ["fx_self_mirror"]=400152
- },
- [1400420]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=1,
- ["method"]=1,
- ["skill_type"]=2,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=1
- },
- {
- ["type"]=2,
- ["range"]=1
- },
- {
- ["type"]=3,
- ["range"]=1
- },
- {
- ["type"]=4,
- ["range"]=1
- }
- },
- ["battle_icon"]="31",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=50000,
- ["ratio"]=11000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=1400420,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300153,
- ["bullet_time"]={
- 2033,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400153
- },
- [1400421]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="charm",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2
- },
- [1400422]={
- ["position"]=1,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="bleed",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["combo_position"]=1,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2
- },
- [1400423]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="charm",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [1400424]={
- ["position"]=1,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="normal_attack_add",
- ["num"]=2,
- ["ratio"]=10000,
- ["round"]=3
- }
- },
- ["obj"]=1
- },
- [1400425]={
- ["energy"]=8,
- ["link"]=1,
- ["position"]=1,
- ["method"]=1,
- ["skill_type"]=2,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=1
- },
- {
- ["type"]=2,
- ["range"]=1
- },
- {
- ["type"]=3,
- ["range"]=1
- },
- {
- ["type"]=4,
- ["range"]=1
- }
- },
- ["battle_icon"]="31",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_red",
- ["num"]=10000,
- ["ratio"]=11000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=12000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_red",
- ["num"]=22000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
1,
- 2,
- 3,
- 5
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=1400420,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300153,
- ["bullet_time"]={
- 2033,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400153
- },
- [2200110]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2077,16 +686,16 @@ local skill = {
1000001
},
["name_act"]="attack01",
- ["fx_self"]=300005,
- ["fx_self_mirror"]=400054
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
- [2200111]={
- ["position"]=2,
+ [1500111]={
+ ["position"]=1,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_yellow",
+ ["type"]="hurt_red",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -2094,25 +703,25 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
1000002
},
["name_act"]="attack02",
- ["fx_self"]=300006,
- ["fx_self_mirror"]=400055
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
- [2200112]={
- ["position"]=2,
+ [1500112]={
+ ["position"]=1,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_yellow",
+ ["type"]="hurt_red",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -2120,8 +729,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -2129,10 +738,934 @@ local skill = {
1000003
},
["name_act"]="attack03",
- ["fx_self"]=300007,
- ["fx_self_mirror"]=400056
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
- [2200113]={
+ [1500113]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [1500120]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=1,
+ ["method"]=1,
+ ["skill_type"]=2,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="2",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [1500121]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="self_heal",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [1500122]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="self_heal",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1
+ },
+ [1500123]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="self_heal",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=1
+ },
+ [1500124]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="bleed",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1500125]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="bleed",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=2000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1500126]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="bleed",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=3000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1500210]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [1500211]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [1500212]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [1500213]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [1500220]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=1,
+ ["method"]=1,
+ ["skill_type"]=2,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="2",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [1500221]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_all_add",
+ ["num"]=15000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1
+ },
+ [1500222]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_all_add",
+ ["num"]=15000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1
+ },
+ [1500223]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_all_add",
+ ["num"]=15000,
+ ["ratio"]=10000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=1
+ },
+ [1500224]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=5000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [1500225]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=5000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=2
+ },
+ [1500226]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=10000,
+ ["ratio"]=5000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=2
+ },
+ [1500227]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="frozen",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1500228]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="frozen",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=2000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1500229]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="frozen",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=3000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1600110]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [1600111]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [1600112]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [1600113]={
+ ["position"]=1,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [1600120]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=1,
+ ["method"]=1,
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="2",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_red",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [1600121]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [1600122]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["effect"]={
+ {
+ ["type"]="normal_attack_add",
+ ["num"]=2,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1
+ },
+ [1600123]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_red_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [1600124]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1600125]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=2000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1600126]={
+ ["position"]=1,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="hurt_red",
+ ["num"]=3000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2
+ },
+ [1600127]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=2000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [1600128]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=2000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [1600129]={
+ ["position"]=1,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="burn",
+ ["num"]=5000,
+ ["ratio"]=2000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=2
+ },
+ [2300110]={
["position"]=2,
["effect_type"]=1,
["trigger"]=1,
@@ -2146,19 +1679,97 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [2300111]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [2300112]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [2300113]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
["sound_hit"]={
1000004
},
["name_act"]="attack04",
- ["fx_self"]=300008,
- ["fx_self_mirror"]=400057
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
- [2200120]={
+ [2300120]={
["energy"]=10,
["link"]=1,
["position"]=2,
@@ -2167,7 +1778,7 @@ local skill = {
["boardrange"]={
},
- ["battle_icon"]="2",
+ ["battle_icon"]="3",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
@@ -2180,23 +1791,23 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
- ["sound"]=22001200,
+ ["sound"]=12001200,
["sound_delay"]=0.0,
["name_act"]="skill01",
- ["fx_self"]=300009,
+ ["fx_self"]=300022,
["bullet_time"]={
- 800,
+ 1167,
3000,
- 400
+ 300
},
- ["fx_self_mirror"]=400058
+ ["fx_self_mirror"]=400072
},
- [2200121]={
+ [2300121]={
["position"]=2,
["buff_condition"]={
{
@@ -2221,52 +1832,217 @@ local skill = {
["effect"]={
{
["type"]="dmg_addition_yellow_add",
- ["num"]=2000,
+ ["num"]=5000,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
}
},
- [2200122]={
+ [2300122]={
["position"]=2,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=2,
["effect_type"]=2,
- ["trigger"]=3,
+ ["trigger"]=7,
["effect"]={
{
["type"]="dmg_addition_yellow_add",
- ["num"]=2000,
+ ["num"]=8000,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
}
},
- [2200123]={
+ [2300123]={
+ ["position"]=2,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_yellow_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1,
+ ["skill_position"]={
+ 1,
+ 140
+ }
+ },
+ [2300124]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="imprison",
+ ["num"]=0,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [2400110]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [2400111]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [2400112]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [2400113]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [2400120]={
["energy"]=10,
["link"]=1,
["position"]=2,
- ["method"]=2,
+ ["method"]=1,
["skill_type"]=4,
["boardrange"]={
- {
- ["type"]=1,
- ["range"]=2
- },
- {
- ["type"]=2,
- ["range"]=2
- }
+
},
- ["battle_icon"]="2",
+ ["battle_icon"]="3",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
@@ -2279,523 +2055,23 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=200,
["shake_type"]=5,
- ["sound"]=22001200,
+ ["sound"]=12001200,
["sound_delay"]=0.0,
["name_act"]="skill01",
- ["fx_self"]=300009,
+ ["fx_self"]=300022,
["bullet_time"]={
- 800,
+ 1167,
3000,
- 400
+ 300
},
- ["fx_self_mirror"]=400058
+ ["fx_self_mirror"]=400072
},
- [2300110]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000011
- },
- ["name_act"]="attack01",
- ["fx_self"]=300040,
- ["fx_self_mirror"]=400010
- },
- [2300111]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000012
- },
- ["name_act"]="attack02",
- ["fx_self"]=300041,
- ["fx_self_mirror"]=400011
- },
- [2300112]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000013
- },
- ["name_act"]="attack03",
- ["fx_self"]=300042,
- ["fx_self_mirror"]=400012
- },
- [2300113]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000014
- },
- ["name_act"]="attack04",
- ["fx_self"]=300043,
- ["fx_self_mirror"]=400013
- },
- [2300120]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="12",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 2300120
- },
- ["name_act"]="skill01",
- ["fx_self"]=300044,
- ["bullet_time"]={
- 1400,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400014
- },
- [2300121]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=3500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2300122]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="12",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=35000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 2300120
- },
- ["name_act"]="skill01",
- ["fx_self"]=300044,
- ["bullet_time"]={
- 1400,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400014
- },
- [2300123]={
- ["buff_id"]={
- "stun"
- },
- ["position"]=2,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="vulnerable",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=1
- }
- },
- ["obj"]=2
- },
- [2300124]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=3500,
- ["ratio"]=10000,
- ["round"]=3
- }
- },
- ["obj"]=2
- },
- [2300125]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=10,
- ["effect"]={
- {
- ["type"]="atkp_yellow_add",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=1
- },
- [2300126]={
- ["position"]=2,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="vulnerable",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2300210]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300050,
- ["fx_self_mirror"]=400000
- },
- [2300211]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300051,
- ["fx_self_mirror"]=400001
- },
- [2300212]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000003
- },
- ["name_act"]="attack03",
- ["fx_self"]=300052,
- ["fx_self_mirror"]=400002
- },
- [2300213]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000004
- },
- ["name_act"]="attack04",
- ["fx_self"]=300053,
- ["fx_self_mirror"]=400003
- },
- [2300220]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="7",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=13400,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["eliminate_effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=2000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["eliminate_obj"]=1,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 2300220
- },
- ["name_act"]="skill01",
- ["fx_self"]=300054,
- ["bullet_time"]={
- 800,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400004
- },
- [2300221]={
+ [2400121]={
["position"]=2,
["effect_type"]=2,
["trigger"]=3,
@@ -2809,7 +2085,7 @@ local skill = {
},
["obj"]=1
},
- [2300222]={
+ [2400122]={
["position"]=2,
["effect_type"]=2,
["trigger"]=3,
@@ -2823,7 +2099,21 @@ local skill = {
},
["obj"]=1
},
- [2300223]={
+ [2400123]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["effect"]={
+ {
+ ["type"]="crit_add",
+ ["num"]=3000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1
+ },
+ [2400124]={
["position"]=2,
["buff_condition"]={
{
@@ -2843,7 +2133,7 @@ local skill = {
}
},
["effect_type"]=2,
- ["trigger"]=3,
+ ["trigger"]=7,
["effect"]={
{
["type"]="crit_time_add",
@@ -2854,576 +2144,69 @@ local skill = {
},
["obj"]=1
},
- [2400110]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000011
- },
- ["name_act"]="attack01",
- ["fx_self"]=300028,
- ["fx_self_mirror"]=400073
- },
- [2400111]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000012
- },
- ["name_act"]="attack02",
- ["fx_self"]=300029,
- ["fx_self_mirror"]=400074
- },
- [2400112]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000013
- },
- ["name_act"]="attack03",
- ["fx_self"]=300030,
- ["fx_self_mirror"]=400075
- },
- [2400113]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000014
- },
- ["name_act"]="attack04",
- ["fx_self"]=300031,
- ["fx_self_mirror"]=400076
- },
- [2400120]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="17",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=80000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=24001200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300032,
- ["bullet_time"]={
- 2033,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400077
- },
- [2400121]={
- ["position"]=2,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="frozen",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- },
- {
- {
- ["type"]="state",
- ["attr"]="frozen",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- },
- {
- 2,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=30000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2400122]={
- ["position"]=2,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="frozen",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- },
- {
- {
- ["type"]="state",
- ["attr"]="frozen",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- },
- {
- 2,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=30000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=7000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2400123]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="17",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=110000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="imprison",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=24001200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300032,
- ["bullet_time"]={
- 2033,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400077
- },
- [2400124]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="17",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=110000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="imprison",
- ["num"]=0,
- ["ratio"]=7000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=24001200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300032,
- ["bullet_time"]={
- 2033,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400077
- },
[2400125]={
["position"]=2,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="attr",
+ ["attr"]="hpp",
+ ["op"]="<",
+ ["v"]=5000,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
["effect_type"]=2,
["trigger"]=7,
["effect"]={
{
- ["type"]="skill_hurt_add",
- ["num"]=10000,
+ ["type"]="crit_time_add",
+ ["num"]=5000,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1
},
- [2400210]={
+ [2400126]={
["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
+ ["buff_condition"]={
{
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
+ {
+ ["type"]="attr",
+ ["attr"]="hpp",
+ ["op"]="<",
+ ["v"]=8000,
+ ["side"]=2
+ }
}
},
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 2300114
- },
- ["name_act"]="attack01",
- ["fx_self"]=300095,
- ["fx_self_mirror"]=400095
- },
- [2400211]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
+ ["condition_rel"]={
{
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
+ 1,
+ 1
}
},
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 4200111
- },
- ["name_act"]="attack02",
- ["fx_self"]=300096,
- ["fx_self_mirror"]=400096
- },
- [2400212]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 4200112
- },
- ["name_act"]="attack03",
- ["fx_self"]=300097,
- ["fx_self_mirror"]=400097
- },
- [2400213]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 4200113
- },
- ["name_act"]="attack04",
- ["fx_self"]=300098,
- ["fx_self_mirror"]=400098
- },
- [2400220]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=1,
- ["boardrange"]={
-
- },
- ["battle_icon"]="22",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=60000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=24002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300099,
- ["bullet_time"]={
- 633,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400099
- },
- [2400221]={
- ["position"]=2,
- ["skill_type"]=11,
- ["skill_type_parameter"]={
- 0,
- 2
- },
["effect_type"]=2,
- ["trigger"]=3,
- ["obj"]=1
- },
- [2400222]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=5,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="weaken",
- ["num"]=2500,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2400223]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="shield_rebound_200",
- ["num"]=1500,
+ ["type"]="crit_time_add",
+ ["num"]=8000,
["ratio"]=10000,
- ["round"]=2
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="shield_rebound_100",
- ["num"]=450,
- ["ratio"]=10000,
- ["round"]=2
+ ["round"]=1
}
},
["obj"]=1
},
- [2400224]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="weaken",
- ["num"]=5000,
- ["ratio"]=2000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2400225]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="shield_rebound_400",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="shield_rebound_200",
- ["num"]=450,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [2400310]={
+ [2500110]={
["position"]=2,
["effect_type"]=1,
["trigger"]=1,
@@ -3437,8 +2220,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3446,10 +2229,10 @@ local skill = {
1000001
},
["name_act"]="attack01",
- ["fx_self"]=300135,
- ["fx_self_mirror"]=400135
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
- [2400311]={
+ [2500111]={
["position"]=2,
["effect_type"]=1,
["trigger"]=1,
@@ -3463,8 +2246,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -3472,10 +2255,10 @@ local skill = {
1000002
},
["name_act"]="attack02",
- ["fx_self"]=300136,
- ["fx_self_mirror"]=400136
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
- [2400312]={
+ [2500112]={
["position"]=2,
["effect_type"]=1,
["trigger"]=1,
@@ -3489,48 +2272,45 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [2500113]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
1000004
},
- ["name_act"]="attack03",
- ["fx_self"]=300137,
- ["fx_self_mirror"]=400137
- },
- [2400313]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000021
- },
["name_act"]="attack04",
- ["fx_self"]=300138,
- ["fx_self_mirror"]=400138
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
- [2400320]={
- ["buff_id"]={
- "stun"
- },
+ [2500120]={
["energy"]=10,
["link"]=1,
["position"]=2,
@@ -3538,521 +2318,32 @@ local skill = {
["skill_type"]=4,
["boardrange"]={
- },
- ["battle_icon"]="26",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=30000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=2400311,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300139,
- ["bullet_time"]={
- 2400,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400139
- },
- [2400321]={
- ["position"]=2,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="vulnerable",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=3500,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2400322]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=9,
- ["effect"]={
- {
- ["type"]="atkp_color_add",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=1
- },
- [2400323]={
- ["position"]=2,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="vulnerable",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=3500,
- ["ratio"]=2000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2400324]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=9,
- ["effect"]={
- {
- ["type"]="heal",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1
- },
- [2400410]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 50
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound"]=2400410,
- ["sound_delay"]=0.0,
- ["name_act"]="attack01",
- ["fx_self"]=300156,
- ["fx_self_mirror"]=400156
- },
- [2400411]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 50
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound"]=2400411,
- ["sound_delay"]=0.0,
- ["name_act"]="attack02",
- ["fx_self"]=300156,
- ["fx_self_mirror"]=400156
- },
- [2400412]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 50
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound"]=2400412,
- ["sound_delay"]=0.0,
- ["name_act"]="attack03",
- ["fx_self"]=300156,
- ["fx_self_mirror"]=400156
- },
- [2400413]={
- ["position"]=2,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 50
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound"]=2400413,
- ["sound_delay"]=0.0,
- ["name_act"]="attack04",
- ["fx_self"]=300156,
- ["fx_self_mirror"]=400156
- },
- [2400420]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=2,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="32",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_yellow",
- ["num"]=11600,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["eliminate_effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=2000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["eliminate_obj"]=1,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4,
- 5
- },
- ["skill_position"]={
- 1,
- 50
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=2400420,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300157,
- ["bullet_time"]={
- 2866,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400157
- },
- [2400421]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=500,
- ["round"]=1
- }
- },
- ["obj"]=2
- },
- [2400422]={
- ["position"]=2,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="normal_attack_dec",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- },
- {
- ["type"]="state",
- ["attr"]="burn",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 2
- }
- },
- ["combo_position"]=2,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="hurt_yellow",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2
- },
- [2400423]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="stun",
- ["num"]=0,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [2400424]={
- ["position"]=2,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=3500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3200110]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000011
- },
- ["name_act"]="attack01",
- ["fx_self"]=300000,
- ["fx_self_mirror"]=400049
- },
- [3200111]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000012
- },
- ["name_act"]="attack02",
- ["fx_self"]=300001,
- ["fx_self_mirror"]=400050
- },
- [3200112]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000013
- },
- ["name_act"]="attack03",
- ["fx_self"]=300002,
- ["fx_self_mirror"]=400051
- },
- [3200113]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000014
- },
- ["name_act"]="attack04",
- ["fx_self"]=300003,
- ["fx_self_mirror"]=400052
- },
- [3200120]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
},
["battle_icon"]="3",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_green",
- ["num"]=40000,
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
["ratio"]=10000,
["round"]=0
}
@@ -4063,39 +2354,67 @@ local skill = {
140
},
["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=32001200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
["sound_delay"]=0.0,
["name_act"]="skill01",
- ["fx_self"]=300004,
+ ["fx_self"]=300022,
["bullet_time"]={
- 966,
- 5000,
- 400
+ 1167,
+ 3000,
+ 300
},
- ["fx_self_mirror"]=400053
+ ["fx_self_mirror"]=400072
},
- [3200121]={
- ["position"]=3,
+ [2500121]={
+ ["position"]=2,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
{
- ["type"]="heal",
- ["num"]=6000,
- ["ratio"]=10000,
+ ["type"]="imprison",
+ ["num"]=0,
+ ["ratio"]=5000,
["round"]=1
}
},
- ["obj"]=1
+ ["obj"]=2
},
- [3200122]={
- ["position"]=3,
+ [2500122]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="imprison",
+ ["num"]=0,
+ ["ratio"]=7000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [2500123]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="imprison",
+ ["num"]=0,
+ ["ratio"]=7000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [2500124]={
+ ["position"]=2,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="poison",
+ ["attr"]="frozen",
["op"]=">",
["v"]=0,
["side"]=2
@@ -4108,35 +2427,389 @@ local skill = {
1
}
},
- ["combo_position"]=3,
- ["effect_type"]=2,
- ["trigger"]=7,
- ["effect"]={
- {
- ["type"]="dmg_addition_green_add",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1
- },
- [3200123]={
- ["position"]=3,
+ ["combo_position"]=2,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=30000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ }
+ },
+ [2500125]={
+ ["position"]=2,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="frozen",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ },
+ {
+ {
+ ["type"]="state",
+ ["attr"]="frozen",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ },
+ {
+ 2,
+ 1
+ }
+ },
+ ["combo_position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=30000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
{
["type"]="stun",
["num"]=0,
["ratio"]=3000,
- ["round"]=1
+ ["round"]=2
}
},
["obj"]=2
},
- [3200124]={
- ["position"]=3,
+ [2500126]={
+ ["position"]=2,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="frozen",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ },
+ {
+ {
+ ["type"]="state",
+ ["attr"]="frozen",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ },
+ {
+ 2,
+ 1
+ }
+ },
+ ["combo_position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=30000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="stun",
+ ["num"]=0,
+ ["ratio"]=6000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [2500210]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [2500211]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [2500212]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [2500213]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [2500220]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=2,
+ ["method"]=1,
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="3",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [2500221]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="bleed",
+ ["num"]=3500,
+ ["ratio"]=1000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [2500222]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=2,
+ ["method"]=1,
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="3",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [2500223]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="bleed",
+ ["num"]=3500,
+ ["ratio"]=1000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=2
+ },
+ [2500224]={
+ ["position"]=2,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="vulnerable",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=2,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
@@ -4149,6 +2822,290 @@ local skill = {
},
["obj"]=2
},
+ [2500225]={
+ ["position"]=2,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="vulnerable",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="stun",
+ ["num"]=0,
+ ["ratio"]=5000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [2500226]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=10,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=1
+ },
+ [2600110]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [2600111]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [2600112]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [2600113]={
+ ["position"]=2,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [2600120]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=2,
+ ["method"]=1,
+ ["skill_type"]=1,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="3",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_yellow",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [2600121]={
+ ["position"]=2,
+ ["skill_type"]=11,
+ ["skill_type_parameter"]={
+ 0,
+ 2
+ },
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["obj"]=1
+ },
+ [2600122]={
+ ["position"]=2,
+ ["skill_type"]=11,
+ ["skill_type_parameter"]={
+ 0,
+ 4
+ },
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["obj"]=1
+ },
+ [2600123]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="thorns",
+ ["num"]=50000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [2600124]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="weaken",
+ ["num"]=2500,
+ ["ratio"]=1000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [2600125]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="weaken",
+ ["num"]=2500,
+ ["ratio"]=2000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [2600126]={
+ ["position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="weaken",
+ ["num"]=2500,
+ ["ratio"]=2000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
[3300110]={
["position"]=3,
["effect_type"]=1,
@@ -4163,17 +3120,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
1000001
},
["name_act"]="attack01",
- ["fx_target"]=300023,
- ["fx_target_mirror"]=400015
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
[3300111]={
["position"]=3,
@@ -4189,8 +3146,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -4198,8 +3155,8 @@ local skill = {
1000002
},
["name_act"]="attack02",
- ["fx_target"]=300024,
- ["fx_target_mirror"]=400016
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
[3300112]={
["position"]=3,
@@ -4215,17 +3172,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
1000003
},
["name_act"]="attack03",
- ["fx_target"]=300025,
- ["fx_target_mirror"]=400017
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
[3300113]={
["position"]=3,
@@ -4241,54 +3198,64 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
1000004
},
["name_act"]="attack04",
- ["fx_target"]=300026,
- ["fx_target_mirror"]=400018
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
[3300120]={
["energy"]=10,
["link"]=1,
["position"]=3,
["method"]=1,
- ["battle_icon"]="8",
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="3",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="heal",
- ["num"]=15000,
+ ["type"]="hurt_green",
+ ["num"]=30000,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=0
}
},
- ["obj"]=1,
+ ["obj"]=2,
["skill_position"]={
- 2,
- 0
- },
- ["sound_hit"]={
- 3300120
+ 1,
+ 140
},
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
["name_act"]="skill01",
- ["fx_self"]=300027,
- ["fx_self_mirror"]=400019
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
},
[3300121]={
["position"]=3,
["effect_type"]=2,
- ["trigger"]=5,
+ ["trigger"]=6,
["effect"]={
{
["type"]="heal",
- ["num"]=500,
+ ["num"]=6000,
["ratio"]=10000,
["round"]=1
}
@@ -4298,16 +3265,16 @@ local skill = {
[3300122]={
["position"]=3,
["effect_type"]=2,
- ["trigger"]=3,
+ ["trigger"]=6,
["effect"]={
{
- ["type"]="cured_add",
- ["num"]=1000,
- ["ratio"]=10000,
+ ["type"]="stun",
+ ["num"]=0,
+ ["ratio"]=3000,
["round"]=1
}
},
- ["obj"]=1
+ ["obj"]=2
},
[3300123]={
["position"]=3,
@@ -4315,251 +3282,52 @@ local skill = {
["trigger"]=6,
["effect"]={
{
- ["type"]="skill_hurt_add_show",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=3
+ ["type"]="stun",
+ ["num"]=0,
+ ["ratio"]=3000,
+ ["round"]=1
}
},
- ["obj"]=1
+ ["obj"]=2
},
[3300124]={
["position"]=3,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="poison",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=3,
["effect_type"]=2,
- ["trigger"]=6,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="skill_hurt_add_show",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=4
- }
- },
- ["obj"]=1
- },
- [3300125]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=2,
- ["skill_type"]=4,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=2
- },
- {
- ["type"]=2,
- ["range"]=2
- }
- },
- ["battle_icon"]="8",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="heal",
- ["num"]=15000,
+ ["type"]="dmg_addition_green_add",
+ ["num"]=3000,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1,
- ["skill_position"]={
- 2,
- 0
- },
- ["sound_hit"]={
- 3300120
- },
- ["name_act"]="skill01",
- ["fx_self"]=300027,
- ["fx_self_mirror"]=400019
- },
- [3300210]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
["skill_position"]={
1,
140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300070,
- ["fx_self_mirror"]=400035
+ }
},
- [3300211]={
+ [3300125]={
["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300071,
- ["fx_self_mirror"]=400036
- },
- [3300212]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000003
- },
- ["name_act"]="attack03",
- ["fx_self"]=300072,
- ["fx_self_mirror"]=400037
- },
- [3300213]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000004
- },
- ["name_act"]="attack04",
- ["fx_self"]=300073,
- ["fx_self_mirror"]=400038
- },
- [3300220]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["battle_icon"]="13",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=13400,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["eliminate_effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=2000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["eliminate_obj"]=1,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 3300220
- },
- ["name_act"]="skill01",
- ["fx_self"]=300074,
- ["bullet_time"]={
- 1500,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400039
- },
- [3300221]={
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="vulnerable",
- ["num"]=2500,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3300222]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["battle_icon"]="13",
["buff_condition"]={
{
{
@@ -4571,631 +3339,6 @@ local skill = {
}
}
},
- ["condition_rel"]={
- {
- 4,
- 1
- }
- },
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=13400,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="poison",
- ["num"]=2500,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["eliminate_effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["eliminate_obj"]=1,
- ["effect_block"]={
- 1,
- 2,
- 4
- },
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 3300220
- },
- ["name_act"]="skill01",
- ["fx_self"]=300074,
- ["bullet_time"]={
- 1500,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400039
- },
- [3300223]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["battle_icon"]="13",
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="poison",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 4,
- 1
- }
- },
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=13400,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="poison",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["eliminate_effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["eliminate_obj"]=1,
- ["effect_block"]={
- 1,
- 2,
- 4
- },
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 3300220
- },
- ["name_act"]="skill01",
- ["fx_self"]=300074,
- ["bullet_time"]={
- 1500,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400039
- },
- [3400110]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300091,
- ["fx_self_mirror"]=400093
- },
- [3400111]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300091,
- ["fx_self_mirror"]=400093
- },
- [3400112]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000003
- },
- ["name_act"]="attack03",
- ["fx_self"]=300091,
- ["fx_self_mirror"]=400093
- },
- [3400113]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000004
- },
- ["name_act"]="attack04",
- ["fx_self"]=300091,
- ["fx_self_mirror"]=400093
- },
- [3400120]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="18",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=12000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=20750,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["eliminate_effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=6000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["eliminate_obj"]=1,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound"]=34001200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300092,
- ["bullet_time"]={
- 1600,
- 3000,
- 200
- },
- ["fx_self_mirror"]=400094
- },
- [3400121]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="vulnerable",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3400122]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="vulnerable",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3400123]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=3500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3400124]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=7000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3400125]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=2,
- ["skill_type"]=4,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=2
- },
- {
- ["type"]=2,
- ["range"]=2
- }
- },
- ["battle_icon"]="18",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=12000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=20750,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["eliminate_effect"]={
- {
- ["type"]="dmg_addition_all_add",
- ["num"]=6000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["eliminate_obj"]=1,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound_hit"]={
- 3400120
- },
- ["name_act"]="skill01",
- ["fx_self"]=300092,
- ["bullet_time"]={
- 1600,
- 3000,
- 200
- },
- ["fx_self_mirror"]=400094
- },
- [3400210]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300105,
- ["fx_self_mirror"]=400105
- },
- [3400211]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300106,
- ["fx_self_mirror"]=400106
- },
- [3400212]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 10049
- },
- ["name_act"]="attack03",
- ["fx_self"]=300107,
- ["fx_self_mirror"]=400107
- },
- [3400213]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 10048
- },
- ["name_act"]="attack04",
- ["fx_self"]=300108,
- ["fx_self_mirror"]=400108
- },
- [3400220]={
- ["buff_id"]={
- "lethargy"
- },
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="23",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=13000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=13000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=24000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="lethargy",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 4
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound"]=34002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300109,
- ["bullet_time"]={
- 1000,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400109
- },
- [3400221]={
- ["position"]=3,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="weaken",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
["condition_rel"]={
{
1,
@@ -5213,347 +3356,19 @@ local skill = {
["round"]=1
}
},
- ["obj"]=1
+ ["obj"]=1,
+ ["skill_position"]={
+ 1,
+ 140
+ }
},
- [3400222]={
+ [3300126]={
["position"]=3,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="lethargy",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=3,
- ["effect"]={
- {
- ["type"]="imprison",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3400223]={
- ["energy"]=8,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="23",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=13000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=13000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=24000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="lethargy",
- ["num"]=0,
- ["ratio"]=8000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 4
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound"]=34002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300109,
- ["bullet_time"]={
- 1000,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400109
- },
- [3400224]={
- ["buff_id"]={
- "lethargy"
- },
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="23",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=13000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=13000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=24000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="lethargy",
- ["num"]=0,
- ["ratio"]=8000,
- ["round"]=2
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 4
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound"]=34002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300109,
- ["bullet_time"]={
- 1000,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400109
- },
- [3400310]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 2200111
- },
- ["name_act"]="attack01",
- ["fx_self"]=300117,
- ["fx_self_mirror"]=400117
- },
- [3400311]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 2200114
- },
- ["name_act"]="attack02",
- ["fx_self"]=300118,
- ["fx_self_mirror"]=400118
- },
- [3400312]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 3400311
- },
- ["name_act"]="attack03",
- ["fx_self"]=300119,
- ["fx_self_mirror"]=400119
- },
- [3400313]={
- ["position"]=3,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 2200112
- },
- ["name_act"]="attack04",
- ["fx_self"]=300120,
- ["fx_self_mirror"]=400120
- },
- [3400320]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=3,
- ["method"]=1,
- ["skill_type"]=1,
- ["boardrange"]={
- {
- ["type"]=0,
- ["range"]=3
- }
- },
- ["battle_icon"]="27",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_green",
- ["num"]=12000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=12000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=21000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound"]=3400321,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300121,
- ["bullet_time"]={
- 1900,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400121
- },
- [3400321]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="bleed",
- ["num"]=3500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3400322]={
- ["position"]=3,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="frozen",
+ ["attr"]="poison",
["op"]=">",
["v"]=0,
["side"]=2
@@ -5568,62 +3383,22 @@ local skill = {
},
["combo_position"]=3,
["effect_type"]=2,
- ["trigger"]=5,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="hurt_green",
- ["num"]=5000,
+ ["type"]="dmg_addition_green_add",
+ ["num"]=8000,
["ratio"]=10000,
- ["round"]=0
+ ["round"]=1
}
},
- ["obj"]=2
+ ["obj"]=1,
+ ["skill_position"]={
+ 1,
+ 140
+ }
},
- [3400323]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="thorns",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="thorns",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [3400324]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="thorns",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=4
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="thorns",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=4
- }
- },
- ["obj"]=1
- },
- [3400410]={
+ [3400110]={
["position"]=3,
["effect_type"]=1,
["trigger"]=1,
@@ -5637,19 +3412,19 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 3400410
+ 1000001
},
["name_act"]="attack01",
- ["fx_self"]=300158,
- ["fx_self_mirror"]=400158
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
- [3400411]={
+ [3400111]={
["position"]=3,
["effect_type"]=1,
["trigger"]=1,
@@ -5663,19 +3438,19 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 3400411
+ 1000002
},
["name_act"]="attack02",
- ["fx_self"]=300158,
- ["fx_self_mirror"]=400158
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
- [3400412]={
+ [3400112]={
["position"]=3,
["effect_type"]=1,
["trigger"]=1,
@@ -5689,19 +3464,19 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 3400412
+ 1000003
},
["name_act"]="attack03",
- ["fx_self"]=300158,
- ["fx_self_mirror"]=400158
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
- [3400413]={
+ [3400113]={
["position"]=3,
["effect_type"]=1,
["trigger"]=1,
@@ -5715,19 +3490,19 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 3400410
+ 1000004
},
["name_act"]="attack04",
- ["fx_self"]=300158,
- ["fx_self_mirror"]=400158
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
- [3400420]={
+ [3400120]={
["energy"]=10,
["link"]=1,
["position"]=3,
@@ -5736,124 +3511,92 @@ local skill = {
["boardrange"]={
},
- ["battle_icon"]="33",
+ ["battle_icon"]="8",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_green",
+ ["type"]="heal",
["num"]=15000,
["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_green",
- ["num"]=26600,
- ["ratio"]=10000,
- ["round"]=0
+ ["round"]=1
}
},
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2
- },
+ ["obj"]=1,
["skill_position"]={
2,
0
},
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound"]=3400420,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300159,
- ["bullet_time"]={
- 3966,
- 3000,
- 400
+ ["sound_hit"]={
+ 3300120
},
- ["fx_self_mirror"]=400159
+ ["name_act"]="skill01",
+ ["fx_self"]=300027,
+ ["fx_self_mirror"]=400019
},
- [3400421]={
+ [3400121]={
["position"]=3,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
{
- ["type"]="heal",
- ["num"]=8000,
+ ["type"]="skill_hurt_add_show",
+ ["num"]=1500,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=3
}
},
- ["pvp_effect"]={
+ ["obj"]=1
+ },
+ [3400122]={
+ ["position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
{
- ["type"]="heal",
- ["num"]=4000,
+ ["type"]="skill_hurt_add_show",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=1
+ },
+ [3400123]={
+ ["position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["effect"]={
+ {
+ ["type"]="cured_add",
+ ["num"]=1000,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1
},
- [3400422]={
+ [3400124]={
["position"]=3,
["effect_type"]=2,
["trigger"]=5,
- ["effect"]={
- {
- ["type"]="poison",
- ["num"]=2500,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [3400423]={
- ["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=6,
["effect"]={
{
["type"]="heal",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="heal",
- ["num"]=7500,
+ ["num"]=500,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=1
},
- [3400424]={
+ [3500110]={
["position"]=3,
- ["effect_type"]=2,
- ["trigger"]=9,
- ["effect"]={
- {
- ["type"]="hpp_add",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=4
- }
- },
- ["obj"]=1
- },
- [4200110]={
- ["position"]=4,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_blue",
+ ["type"]="hurt_green",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -5861,25 +3604,25 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
- 4200111
+ 1000001
},
["name_act"]="attack01",
- ["fx_target"]=300010,
- ["fx_target_mirror"]=400059
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
- [4200111]={
- ["position"]=4,
+ [3500111]={
+ ["position"]=3,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_blue",
+ ["type"]="hurt_green",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -5887,25 +3630,25 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 4200112
+ 1000002
},
["name_act"]="attack02",
- ["fx_target"]=300011,
- ["fx_target_mirror"]=400060
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
- [4200112]={
- ["position"]=4,
+ [3500112]={
+ ["position"]=3,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_blue",
+ ["type"]="hurt_green",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -5913,25 +3656,25 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 4200113
+ 1000003
},
["name_act"]="attack03",
- ["fx_target"]=300012,
- ["fx_target_mirror"]=400061
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
- [4200113]={
- ["position"]=4,
+ [3500113]={
+ ["position"]=3,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_blue",
+ ["type"]="hurt_green",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -5939,36 +3682,51 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
- 4200114
+ 1000004
},
["name_act"]="attack04",
- ["fx_target"]=300013,
- ["fx_target_mirror"]=400062
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
- [4200120]={
+ [3500120]={
["energy"]=10,
["link"]=1,
- ["position"]=4,
+ ["position"]=3,
["method"]=1,
- ["skill_type"]=1,
+ ["skill_type"]=4,
["boardrange"]={
- {
- ["type"]=0,
- ["range"]=3
- }
+
},
- ["battle_icon"]="4",
+ ["battle_icon"]="3",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_blue",
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_green",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_green",
+ ["num"]=20000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_green",
["num"]=20000,
["ratio"]=10000,
["round"]=0
@@ -5976,43 +3734,318 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=42001200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
["sound_delay"]=0.0,
["name_act"]="skill01",
- ["fx_target"]=300014,
+ ["fx_self"]=300022,
["bullet_time"]={
- 1066,
+ 1167,
3000,
- 400
+ 300
},
- ["fx_target_mirror"]=400063
+ ["fx_self_mirror"]=400072
},
- [4200121]={
- ["position"]=4,
+ [3500121]={
+ ["position"]=3,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
{
- ["type"]="normal_attack_dec",
- ["num"]=1,
- ["ratio"]=5000,
+ ["type"]="vulnerable",
+ ["num"]=2500,
+ ["ratio"]=10000,
["round"]=2
}
},
["obj"]=2
},
- [4200122]={
- ["position"]=4,
+ [3500122]={
+ ["position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="vulnerable",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [3500123]={
+ ["position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="vulnerable",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [3500124]={
+ ["position"]=3,
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="bleed",
+ ["num"]=3500,
+ ["ratio"]=2000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [3500125]={
+ ["position"]=3,
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="bleed",
+ ["num"]=3500,
+ ["ratio"]=2000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=2
+ },
+ [3500126]={
+ ["position"]=3,
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="bleed",
+ ["num"]=7500,
+ ["ratio"]=2000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=2
+ },
+ [3500210]={
+ ["position"]=3,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [3500211]={
+ ["position"]=3,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [3500212]={
+ ["position"]=3,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [3500213]={
+ ["position"]=3,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [3500220]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=3,
+ ["method"]=1,
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="3",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_green",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [3500221]={
+ ["position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="vulnerable",
+ ["num"]=2500,
+ ["ratio"]=5000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [3500222]={
+ ["position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="vulnerable",
+ ["num"]=2500,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [3500223]={
+ ["position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="vulnerable",
+ ["num"]=2500,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [3500224]={
+ ["position"]=3,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="normal_attack_dec",
+ ["attr"]="poison",
["op"]=">",
["v"]=0,
["side"]=2
@@ -6025,45 +4058,136 @@ local skill = {
1
}
},
+ ["combo_position"]=3,
["effect_type"]=2,
- ["trigger"]=6,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="frozen",
- ["num"]=0,
+ ["type"]="poison",
+ ["num"]=2500,
+ ["ratio"]=5000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1,
+ ["skill_position"]={
+ 1,
+ 140
+ }
+ },
+ [3500225]={
+ ["position"]=3,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="poison",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=5000,
+ ["ratio"]=5000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1,
+ ["skill_position"]={
+ 1,
+ 140
+ }
+ },
+ [3500226]={
+ ["position"]=3,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="poison",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1,
+ ["skill_position"]={
+ 1,
+ 140
+ }
+ },
+ [3500227]={
+ ["position"]=3,
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=2500,
["ratio"]=2000,
["round"]=1
}
},
["obj"]=2
},
- [4200123]={
- ["position"]=4,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="normal_attack_dec",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
+ [3500228]={
+ ["position"]=3,
+ ["combo_position"]=3,
["effect_type"]=2,
- ["trigger"]=6,
+ ["trigger"]=5,
["effect"]={
{
- ["type"]="frozen",
- ["num"]=0,
- ["ratio"]=4000,
- ["round"]=1
+ ["type"]="poison",
+ ["num"]=2500,
+ ["ratio"]=2000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [3500229]={
+ ["position"]=3,
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=2500,
+ ["ratio"]=2500,
+ ["round"]=2
}
},
["obj"]=2
@@ -6082,17 +4206,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
- 1000021
+ 1000001
},
["name_act"]="attack01",
- ["fx_self"]=300080,
- ["fx_self_mirror"]=400040
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
[4300111]={
["position"]=4,
@@ -6108,17 +4232,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000022
+ 1000002
},
["name_act"]="attack02",
- ["fx_self"]=300081,
- ["fx_self_mirror"]=400041
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
[4300112]={
["position"]=4,
@@ -6134,17 +4258,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000023
+ 1000003
},
["name_act"]="attack03",
- ["fx_self"]=300082,
- ["fx_self_mirror"]=400042
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
[4300113]={
["position"]=4,
@@ -6160,37 +4284,75 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000024
+ 1000004
},
["name_act"]="attack04",
- ["fx_self"]=300083,
- ["fx_self_mirror"]=400043
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
[4300120]={
- ["buff_id"]={
- "normal_attack_dec"
- },
["energy"]=10,
["link"]=1,
["position"]=4,
["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="9",
+ ["skill_type"]=1,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="4",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
["type"]="hurt_blue",
- ["num"]=40000,
+ ["num"]=30000,
["ratio"]=10000,
["round"]=0
- },
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [4300121]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
+ ["ratio"]=5000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [4300122]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
{
["type"]="normal_attack_dec",
["num"]=1,
@@ -6198,34 +4360,29 @@ local skill = {
["round"]=1
}
},
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound_hit"]={
- 42001201,
- 0,
- 42001203
- },
- ["name_act"]="skill01",
- ["fx_self"]=300084,
- ["bullet_time"]={
- 200,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400044
+ ["obj"]=2
},
- [4300121]={
+ [4300123]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [4300124]={
["position"]=4,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="burn",
+ ["attr"]="normal_attack_dec",
["op"]=">",
["v"]=0,
["side"]=2
@@ -6240,321 +4397,64 @@ local skill = {
},
["combo_position"]=4,
["effect_type"]=2,
- ["trigger"]=7,
+ ["trigger"]=6,
["effect"]={
{
- ["type"]="dmg_addition_blue_add",
- ["num"]=5000,
- ["ratio"]=10000,
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=2000,
["round"]=1
}
},
- ["obj"]=1,
+ ["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
}
},
- [4300122]={
+ [4300125]={
["position"]=4,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="normal_attack_dec",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=4,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
{
["type"]="frozen",
["num"]=0,
- ["ratio"]=5000,
+ ["ratio"]=4000,
["round"]=1
}
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
}
},
- [4300123]={
- ["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="shield_ice",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="shield_ice",
- ["num"]=375,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1,
- ["skill_position"]={
- 2,
- 0
- }
- },
- [4300124]={
- ["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="shield_ice_rebound_400",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["pvp_effect"]={
- {
- ["type"]="shield_ice_rebound_200",
- ["num"]=375,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1,
- ["skill_position"]={
- 2,
- 0
- }
- },
- [4300125]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=4,
- ["method"]=2,
- ["skill_type"]=4,
- ["boardrange"]={
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
- }
- },
- ["battle_icon"]="9",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=40000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="normal_attack_dec",
- ["num"]=1,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound_hit"]={
- 42001201,
- 0,
- 42001203
- },
- ["name_act"]="skill01",
- ["fx_self"]=300084,
- ["bullet_time"]={
- 200,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400044
- },
- [4300210]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300075,
- ["fx_self_mirror"]=400083
- },
- [4300211]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300076,
- ["fx_self_mirror"]=400084
- },
- [4300212]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000003
- },
- ["name_act"]="attack03",
- ["fx_self"]=300077,
- ["fx_self_mirror"]=400085
- },
- [4300213]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000004
- },
- ["name_act"]="attack04",
- ["fx_self"]=300078,
- ["fx_self_mirror"]=400086
- },
- [4300220]={
- ["buff_id"]={
- "corrupt"
- },
- ["energy"]=10,
- ["link"]=1,
- ["position"]=4,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="14",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="corrupt",
- ["num"]=7500,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 4
- },
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound_hit"]={
- 4300220
- },
- ["name_act"]="skill01",
- ["fx_self"]=300079,
- ["bullet_time"]={
- 1833,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400087
- },
- [4300221]={
+ [4300126]={
["position"]=4,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="vulnerable",
+ ["attr"]="normal_attack_dec",
["op"]=">",
["v"]=0,
["side"]=2
@@ -6567,76 +4467,22 @@ local skill = {
1
}
},
+ ["combo_position"]=4,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
{
- ["type"]="normal_attack_dec",
- ["num"]=1,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2
- },
- [4300222]={
- ["position"]=4,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="vulnerable",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="normal_attack_dec",
- ["num"]=1,
- ["ratio"]=10000,
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=4000,
["round"]=2
}
},
- ["obj"]=2
- },
- [4300223]={
- ["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="weaken",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [4300224]={
- ["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="weaken",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=4
- }
- },
- ["obj"]=2
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ }
},
[4400110]={
["position"]=4,
@@ -6652,8 +4498,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6661,8 +4507,8 @@ local skill = {
1000001
},
["name_act"]="attack01",
- ["fx_self"]=300033,
- ["fx_self_mirror"]=400045
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
[4400111]={
["position"]=4,
@@ -6678,8 +4524,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6687,8 +4533,8 @@ local skill = {
1000002
},
["name_act"]="attack02",
- ["fx_self"]=300033,
- ["fx_self_mirror"]=400045
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
[4400112]={
["position"]=4,
@@ -6704,8 +4550,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6713,8 +4559,8 @@ local skill = {
1000003
},
["name_act"]="attack03",
- ["fx_self"]=300093,
- ["fx_self_mirror"]=400046
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
[4400113]={
["position"]=4,
@@ -6730,8 +4576,8 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
@@ -6739,25 +4585,19 @@ local skill = {
1000004
},
["name_act"]="attack04",
- ["fx_self"]=300094,
- ["fx_self_mirror"]=400047
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
[4400120]={
- ["buff_id"]={
- "normal_attack_dec"
- },
["energy"]=10,
["link"]=1,
["position"]=4,
["method"]=1,
- ["skill_type"]=1,
+ ["skill_type"]=4,
["boardrange"]={
- {
- ["type"]=0,
- ["range"]=3
- }
+
},
- ["battle_icon"]="19",
+ ["battle_icon"]="4",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
@@ -6766,7 +4606,31 @@ local skill = {
["num"]=40000,
["ratio"]=10000,
["round"]=0
- },
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [4400121]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
{
["type"]="normal_attack_dec",
["num"]=1,
@@ -6774,25 +4638,23 @@ local skill = {
["round"]=1
}
},
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=5,
- ["sound"]=44001200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_target"]=300034,
- ["bullet_time"]={
- 633,
- 3000,
- 400
- },
- ["fx_target_mirror"]=400048
+ ["obj"]=2
},
- [4400121]={
+ [4400122]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [4400123]={
["position"]=4,
["buff_condition"]={
{
@@ -6824,490 +4686,13 @@ local skill = {
},
["obj"]=1
},
- [4400122]={
+ [4400124]={
["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="frozen",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [4400123]={
- ["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="frozen",
- ["num"]=0,
- ["ratio"]=7000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [4400210]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 10005
- },
- ["name_act"]="attack01",
- ["fx_self"]=300110,
- ["fx_self_mirror"]=400110
- },
- [4400211]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 10006
- },
- ["name_act"]="attack02",
- ["fx_self"]=300110,
- ["fx_self_mirror"]=400110
- },
- [4400212]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 10023
- },
- ["name_act"]="attack03",
- ["fx_self"]=300110,
- ["fx_self_mirror"]=400110
- },
- [4400213]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 10048
- },
- ["name_act"]="attack04",
- ["fx_self"]=300110,
- ["fx_self_mirror"]=400110
- },
- [4400220]={
- ["buff_id"]={
- "curse"
- },
- ["energy"]=10,
- ["link"]=1,
- ["position"]=4,
- ["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="24",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="curse",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 5
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=44002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300111,
- ["bullet_time"]={
- 1333,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400111
- },
- [4400221]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=4,
- ["method"]=2,
- ["skill_type"]=4,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=2
- },
- {
- ["type"]=2,
- ["range"]=2
- }
- },
- ["battle_icon"]="24",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="curse",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 5
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=44002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300111,
- ["bullet_time"]={
- 1333,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400111
- },
- [4400222]={
- ["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="corrupt",
- ["num"]=7500,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [4400223]={
- ["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="corrupt",
- ["num"]=7500,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [4400310]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 54001203
- },
- ["name_act"]="attack01",
- ["fx_self"]=300132,
- ["fx_self_mirror"]=400132
- },
- [4400311]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 13001202
- },
- ["name_act"]="attack02",
- ["fx_self"]=300133,
- ["fx_self_mirror"]=400133
- },
- [4400312]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 3300114
- },
- ["name_act"]="attack03",
- ["fx_self"]=300133,
- ["fx_self_mirror"]=400133
- },
- [4400313]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 4400311
- },
- ["name_act"]="attack04",
- ["fx_self"]=300133,
- ["fx_self_mirror"]=400133
- },
- [4400320]={
- ["buff_id"]={
- "frozen"
- },
- ["energy"]=10,
- ["link"]=1,
- ["position"]=4,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="28",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=20000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="frozen",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 5
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=4400314,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300134,
- ["bullet_time"]={
- 2100,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400134
- },
- [4400321]={
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="stun",
+ ["attr"]="burn",
["op"]=">",
["v"]=0,
["side"]=2
@@ -7320,40 +4705,94 @@ local skill = {
1
}
},
+ ["combo_position"]=4,
["effect_type"]=2,
- ["trigger"]=5,
+ ["trigger"]=7,
["effect"]={
{
- ["type"]="hurt_blue",
- ["num"]=5000,
+ ["type"]="dmg_addition_blue_add",
+ ["num"]=10000,
["ratio"]=10000,
- ["round"]=0
+ ["round"]=1
}
},
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- }
+ ["obj"]=1
},
- [4400322]={
+ [4400125]={
+ ["position"]=4,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="normal_attack_dec",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=4,
["effect_type"]=2,
- ["trigger"]=5,
+ ["trigger"]=6,
["effect"]={
{
- ["type"]="normal_attack_dec",
- ["num"]=1,
- ["ratio"]=1000,
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=5000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [4400126]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="shield_ice_rebound_200",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [4400127]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="shield_ice_rebound_400",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [4400128]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="shield_ice_rebound_400",
+ ["num"]=1500,
+ ["ratio"]=10000,
["round"]=2
}
},
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- }
+ ["obj"]=1
},
- [4400410]={
+ [4500110]={
["position"]=4,
["effect_type"]=1,
["trigger"]=1,
@@ -7367,44 +4806,45 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound"]=4400411,
- ["sound_delay"]=0.0,
- ["name_act"]="attack01",
- ["fx_self"]=300154,
- ["fx_self_mirror"]=400154
- },
- [4400411]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 4400412
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [4500111]={
+ ["position"]=4,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_blue",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
},
["name_act"]="attack02",
- ["fx_self"]=300154,
- ["fx_self_mirror"]=400154
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
- [4400412]={
+ [4500112]={
["position"]=4,
["effect_type"]=1,
["trigger"]=1,
@@ -7418,46 +4858,47 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound"]=4400411,
- ["sound_delay"]=0.0,
- ["name_act"]="attack03",
- ["fx_self"]=300154,
- ["fx_self_mirror"]=400154
- },
- [4400413]={
- ["position"]=4,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_blue",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 4400412
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [4500113]={
+ ["position"]=4,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_blue",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
},
["name_act"]="attack04",
- ["fx_self"]=300154,
- ["fx_self_mirror"]=400154
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
- [4400420]={
+ [4500120]={
["buff_id"]={
- "normal_attack_dec"
+ "corrupt"
},
["energy"]=10,
["link"]=1,
@@ -7467,28 +4908,46 @@ local skill = {
["boardrange"]={
},
- ["battle_icon"]="34",
+ ["battle_icon"]="4",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
["type"]="hurt_blue",
- ["num"]=10000,
+ ["num"]=40000,
["ratio"]=10000,
["round"]=0
},
{
- ["type"]="hurt_blue",
- ["num"]=15000,
+ ["type"]="corrupt",
+ ["num"]=7500,
["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_blue",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
+ ["round"]=1
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [4500121]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
{
["type"]="normal_attack_dec",
["num"]=1,
@@ -7496,45 +4955,74 @@ local skill = {
["round"]=1
}
},
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 4
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=4400420,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300155,
- ["bullet_time"]={
- 1866,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400155
+ ["obj"]=2
},
- [4400421]={
+ [4500122]={
["position"]=4,
["effect_type"]=2,
- ["trigger"]=5,
+ ["trigger"]=6,
["effect"]={
{
- ["type"]="corrupt",
- ["num"]=7500,
- ["ratio"]=1000,
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
+ ["ratio"]=10000,
["round"]=2
}
},
["obj"]=2
},
- [4400422]={
+ [4500123]={
["position"]=4,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="vulnerable",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="weaken",
+ ["num"]=2500,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [4500124]={
+ ["position"]=4,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="vulnerable",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=4,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
@@ -7547,13 +5035,13 @@ local skill = {
},
["obj"]=2
},
- [4400423]={
+ [4500125]={
["position"]=4,
["buff_condition"]={
{
{
["type"]="state",
- ["attr"]="corrupt",
+ ["attr"]="vulnerable",
["op"]=">",
["v"]=0,
["side"]=2
@@ -7566,53 +5054,26 @@ local skill = {
1
}
},
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="heal",
- ["num"]=2000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1
- },
- [4400424]={
- ["position"]=4,
+ ["combo_position"]=4,
["effect_type"]=2,
["trigger"]=6,
["effect"]={
{
- ["type"]="rebirth",
- ["num"]=10000,
+ ["type"]="weaken",
+ ["num"]=2500,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=4
}
},
- ["obj"]=1
+ ["obj"]=2
},
- [4400425]={
+ [4500210]={
["position"]=4,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="rebirth",
- ["num"]=10000,
- ["ratio"]=15000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [5200110]={
- ["position"]=5,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_purple",
+ ["type"]="hurt_blue",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -7620,25 +5081,25 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000021
+ 1000001
},
["name_act"]="attack01",
- ["fx_self"]=300015,
- ["fx_self_mirror"]=400064
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
- [5200111]={
- ["position"]=5,
+ [4500211]={
+ ["position"]=4,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_purple",
+ ["type"]="hurt_blue",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -7646,25 +5107,25 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000022
+ 1000002
},
["name_act"]="attack02",
- ["fx_self"]=300015,
- ["fx_self_mirror"]=400064
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
- [5200112]={
- ["position"]=5,
+ [4500212]={
+ ["position"]=4,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_purple",
+ ["type"]="hurt_blue",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -7672,25 +5133,25 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000023
+ 1000003
},
["name_act"]="attack03",
- ["fx_self"]=300016,
- ["fx_self_mirror"]=400065
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
- [5200113]={
- ["position"]=5,
+ [4500213]={
+ ["position"]=4,
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="hurt_purple",
+ ["type"]="hurt_blue",
["num"]=10000,
["ratio"]=10000,
["round"]=0
@@ -7698,152 +5159,260 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000024
+ 1000004
},
["name_act"]="attack04",
- ["fx_self"]=300090,
- ["fx_self_mirror"]=400066
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
- [5200120]={
+ [4500220]={
+ ["buff_id"]={
+ "normal_attack_dec"
+ },
["energy"]=10,
["link"]=1,
- ["position"]=5,
+ ["position"]=4,
["method"]=1,
["skill_type"]=1,
["boardrange"]={
},
- ["battle_icon"]="5",
+ ["battle_icon"]="4",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
{
- ["type"]="shield",
- ["num"]=1000,
+ ["type"]="hurt_blue",
+ ["num"]=40000,
["ratio"]=10000,
- ["round"]=1
- }
- },
- ["pvp_effect"]={
+ ["round"]=0
+ },
{
- ["type"]="shield",
- ["num"]=333,
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
["ratio"]=10000,
["round"]=1
}
},
- ["obj"]=1,
+ ["obj"]=2,
["skill_position"]={
- 2,
- 0
- },
- ["sound_hit"]={
- 5200120
+ 1,
+ 140
},
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
["name_act"]="skill01",
- ["fx_self"]=300017,
- ["fx_self_mirror"]=400067
- },
- [5200121]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["skill_type"]=1,
- ["boardrange"]={
-
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
},
- ["battle_icon"]="5",
- ["effect_type"]=1,
- ["trigger"]=1,
+ ["fx_self_mirror"]=400072
+ },
+ [4500221]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
["effect"]={
{
- ["type"]="shield_rebound_200",
- ["num"]=1000,
- ["ratio"]=10000,
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=5000,
["round"]=1
}
},
- ["pvp_effect"]={
- {
- ["type"]="shield_rebound_100",
- ["num"]=333,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1,
+ ["obj"]=2,
["skill_position"]={
- 2,
- 0
- },
- ["sound_hit"]={
- 5200120
- },
- ["name_act"]="skill01",
- ["fx_self"]=300017,
- ["fx_self_mirror"]=400067
+ 1,
+ 140
+ }
},
- [5200122]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["skill_type"]=1,
- ["boardrange"]={
-
- },
- ["battle_icon"]="5",
- ["effect_type"]=1,
- ["trigger"]=1,
+ [4500222]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
["effect"]={
{
- ["type"]="shield_rebound_400",
- ["num"]=1000,
+ ["type"]="frozen",
+ ["num"]=0,
["ratio"]=10000,
["round"]=1
}
},
- ["pvp_effect"]={
- {
- ["type"]="shield_rebound_200",
- ["num"]=333,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1,
+ ["obj"]=2,
["skill_position"]={
- 2,
- 0
- },
- ["sound_hit"]={
- 5200120
- },
- ["name_act"]="skill01",
- ["fx_self"]=300017,
- ["fx_self_mirror"]=400067
+ 1,
+ 140
+ }
},
- [5200123]={
- ["position"]=5,
+ [4500223]={
+ ["position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ }
+ },
+ [4500224]={
+ ["position"]=4,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_blue_add",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [4500225]={
+ ["position"]=4,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_blue_add",
+ ["num"]=8000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [4500226]={
+ ["position"]=4,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=4,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_blue_add",
+ ["num"]=12000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [4500227]={
+ ["position"]=4,
+ ["combo_position"]=3,
["effect_type"]=2,
["trigger"]=5,
["effect"]={
{
- ["type"]="poison",
- ["num"]=2500,
- ["ratio"]=1000,
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
+ ["ratio"]=2000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [4500228]={
+ ["position"]=4,
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
+ ["ratio"]=2000,
["round"]=2
}
},
["obj"]=2
},
+ [4500229]={
+ ["position"]=4,
+ ["combo_position"]=3,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="normal_attack_dec",
+ ["num"]=1,
+ ["ratio"]=2000,
+ ["round"]=3
+ }
+ },
+ ["obj"]=2
+ },
[5300110]={
["position"]=5,
["effect_type"]=1,
@@ -7858,17 +5427,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
- 1000021
+ 1000001
},
["name_act"]="attack01",
- ["fx_self"]=300060,
- ["fx_self_mirror"]=400025
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
},
[5300111]={
["position"]=5,
@@ -7884,17 +5453,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
["shake_type"]=1,
["sound_hit"]={
- 1000022
+ 1000002
},
["name_act"]="attack02",
- ["fx_self"]=300061,
- ["fx_self_mirror"]=400026
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
},
[5300112]={
["position"]=5,
@@ -7910,17 +5479,17 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
- 1000023
+ 1000003
},
["name_act"]="attack03",
- ["fx_self"]=300062,
- ["fx_self_mirror"]=400027
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
},
[5300113]={
["position"]=5,
@@ -7936,28 +5505,806 @@ local skill = {
},
["obj"]=2,
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=100,
- ["shake_type"]=2,
+ ["shake_type"]=1,
["sound_hit"]={
- 1000024
+ 1000004
},
["name_act"]="attack04",
- ["fx_self"]=300063,
- ["fx_self_mirror"]=400028
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
},
[5300120]={
["energy"]=10,
["link"]=1,
["position"]=5,
["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="10",
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="5",
["effect_type"]=1,
["trigger"]=1,
["effect"]={
+ {
+ ["type"]="shield",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["pvp_effect"]={
+ {
+ ["type"]="shield",
+ ["num"]=333,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1,
+ ["skill_position"]={
+ 2,
+ 0
+ },
+ ["sound_hit"]={
+ 5200120
+ },
+ ["name_act"]="skill01",
+ ["fx_self"]=300017,
+ ["fx_bg"]=400067
+ },
+ [5300121]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="thorns",
+ ["num"]=2000,
+ ["ratio"]=3000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1
+ },
+ [5300122]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=2500,
+ ["ratio"]=1000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [5300123]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=2500,
+ ["ratio"]=2000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [5300124]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=2500,
+ ["ratio"]=3000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [5400110]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [5400111]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [5400112]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [5400113]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [5400120]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=5,
+ ["method"]=1,
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="4",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=40000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [5400121]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=2500,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1,
+ ["skill_position"]={
+ 1,
+ 140
+ }
+ },
+ [5400122]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="poison",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=1
+ },
+ [5400123]={
+ ["position"]=5,
+ ["skill_type"]=11,
+ ["skill_type_parameter"]={
+ 0,
+ 2
+ },
+ ["effect_type"]=2,
+ ["trigger"]=3,
+ ["obj"]=1
+ },
+ [5400124]={
+ ["position"]=5,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_purple_add",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [5400125]={
+ ["position"]=5,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="burn",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=7,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_purple_add",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [5400126]={
+ ["position"]=5,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="poison",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=2,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="lethargy",
+ ["num"]=0,
+ ["ratio"]=5000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [5500110]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [5500111]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [5500112]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [5500113]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [5500120]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=5,
+ ["method"]=1,
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="4",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
+ ["sound_delay"]=0.0,
+ ["name_act"]="skill01",
+ ["fx_self"]=300022,
+ ["bullet_time"]={
+ 1167,
+ 3000,
+ 300
+ },
+ ["fx_self_mirror"]=400072
+ },
+ [5500121]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="counterattack",
+ ["num"]=2500,
+ ["ratio"]=5000,
+ ["round"]=2
+ }
+ }
+ },
+ [5500122]={
+ ["position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=6,
+ ["effect"]={
+ {
+ ["type"]="counterattack",
+ ["num"]=2500,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ }
+ },
+ [5500123]={
+ ["position"]=5,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="normal_attack_dec",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=500,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [5500124]={
+ ["position"]=5,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="normal_attack_dec",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=1000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=2
+ },
+ [5500125]={
+ ["position"]=5,
+ ["buff_condition"]={
+ {
+ {
+ ["type"]="state",
+ ["attr"]="normal_attack_dec",
+ ["op"]=">",
+ ["v"]=0,
+ ["side"]=2
+ }
+ }
+ },
+ ["condition_rel"]={
+ {
+ 1,
+ 1
+ }
+ },
+ ["combo_position"]=5,
+ ["effect_type"]=2,
+ ["trigger"]=5,
+ ["effect"]={
+ {
+ ["type"]="frozen",
+ ["num"]=0,
+ ["ratio"]=1000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=2
+ },
+ [5500210]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000001
+ },
+ ["name_act"]="attack01",
+ ["fx_self"]=300018,
+ ["fx_self_mirror"]=400068
+ },
+ [5500211]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000002
+ },
+ ["name_act"]="attack02",
+ ["fx_self"]=300019,
+ ["fx_self_mirror"]=400069
+ },
+ [5500212]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000003
+ },
+ ["name_act"]="attack03",
+ ["fx_self"]=300020,
+ ["fx_self_mirror"]=400070
+ },
+ [5500213]={
+ ["position"]=5,
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ }
+ },
+ ["obj"]=2,
+ ["skill_position"]={
+ 1,
+ 140
+ },
+ ["shake_time"]=100,
+ ["shake_type"]=1,
+ ["sound_hit"]={
+ 1000004
+ },
+ ["name_act"]="attack04",
+ ["fx_self"]=300021,
+ ["fx_self_mirror"]=400071
+ },
+ [5500220]={
+ ["energy"]=10,
+ ["link"]=1,
+ ["position"]=5,
+ ["method"]=1,
+ ["skill_type"]=4,
+ ["boardrange"]={
+
+ },
+ ["battle_icon"]="4",
+ ["effect_type"]=1,
+ ["trigger"]=1,
+ ["effect"]={
+ {
+ ["type"]="hurt_purple",
+ ["num"]=10000,
+ ["ratio"]=10000,
+ ["round"]=0
+ },
{
["type"]="hurt_purple",
["num"]=10000,
@@ -7984,581 +6331,24 @@ local skill = {
}
},
["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4
- },
["skill_position"]={
- 2,
- 0
+ 1,
+ 140
},
["shake_time"]=200,
- ["shake_type"]=6,
- ["sound_hit"]={
- 53001201,
- 53001202,
- 0,
- 53001204
- },
- ["name_act"]="skill01",
- ["fx_self"]=300064,
- ["bullet_time"]={
- 2066,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400029
- },
- [5300121]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="poison",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [5300122]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="lethargy",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [5300123]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="poison",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [5300124]={
- ["position"]=5,
- ["skill_type"]=11,
- ["skill_type_parameter"]={
- 0,
- 2
- },
- ["effect_type"]=2,
- ["trigger"]=3,
- ["obj"]=1
- },
- [5300125]={
- ["position"]=5,
- ["skill_type"]=11,
- ["skill_type_parameter"]={
- 0,
- 4
- },
- ["effect_type"]=2,
- ["trigger"]=3,
- ["obj"]=1
- },
- [5300126]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="undead",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1
- },
- [5300210]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300065,
- ["fx_self_mirror"]=400030
- },
- [5300211]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300066,
- ["fx_self_mirror"]=400031
- },
- [5300212]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000003
- },
- ["name_act"]="attack03",
- ["fx_self"]=300067,
- ["fx_self_mirror"]=400032
- },
- [5300213]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000004
- },
- ["name_act"]="attack04",
- ["fx_self"]=300068,
- ["fx_self_mirror"]=400033
- },
- [5300220]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["battle_icon"]="15",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=30000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound_hit"]={
- 5300220,
- 5300220,
- 5300220
- },
- ["name_act"]="skill01",
- ["fx_self"]=300069,
- ["bullet_time"]={
- 1133,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400034
- },
- [5300221]={
- ["position"]=5,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="normal_attack_dec",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="frozen",
- ["num"]=0,
- ["ratio"]=5000,
- ["round"]=1
- }
- },
- ["obj"]=2
- },
- [5300222]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="counterattack",
- ["num"]=2500,
- ["ratio"]=5000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [5300223]={
- ["position"]=5,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="normal_attack_dec",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="frozen",
- ["num"]=0,
- ["ratio"]=7000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [5300224]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="counterattack",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [5300225]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=2,
- ["skill_type"]=4,
- ["boardrange"]={
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
- }
- },
- ["battle_icon"]="15",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=30000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound_hit"]={
- 5300220,
- 5300220,
- 5300220
- },
- ["name_act"]="skill01",
- ["fx_self"]=300069,
- ["bullet_time"]={
- 1133,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400034
- },
- [5400110]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300085,
- ["fx_self_mirror"]=400088
- },
- [5400111]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300086,
- ["fx_self_mirror"]=400089
- },
- [5400112]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000003
- },
- ["name_act"]="attack03",
- ["fx_self"]=300087,
- ["fx_self_mirror"]=400090
- },
- [5400113]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000004
- },
- ["name_act"]="attack04",
- ["fx_self"]=300088,
- ["fx_self_mirror"]=400091
- },
- [5400120]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="20",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=35000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=54001200,
+ ["shake_type"]=5,
+ ["sound"]=12001200,
["sound_delay"]=0.0,
["name_act"]="skill01",
- ["fx_self"]=300089,
+ ["fx_self"]=300022,
["bullet_time"]={
- 1800,
+ 1167,
3000,
- 400
+ 300
},
- ["fx_self_mirror"]=400092
+ ["fx_self_mirror"]=400072
},
- [5400121]={
+ [5500221]={
["position"]=5,
["skill_type"]=11,
["skill_type_parameter"]={
@@ -8569,7 +6359,7 @@ local skill = {
["trigger"]=3,
["obj"]=1
},
- [5400122]={
+ [5500222]={
["position"]=5,
["skill_type"]=12,
["skill_type_parameter"]={
@@ -8580,59 +6370,7 @@ local skill = {
["trigger"]=3,
["obj"]=1
},
- [5400123]={
- ["energy"]=8,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["skill_type"]=0,
- ["battle_icon"]="20",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=15000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=35000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3
- },
- ["skill_position"]={
- 2,
- 0
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=54001200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300089,
- ["bullet_time"]={
- 1800,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400092
- },
- [5400124]={
+ [5500223]={
["position"]=5,
["effect_type"]=2,
["trigger"]=9,
@@ -8646,7 +6384,7 @@ local skill = {
},
["obj"]=1
},
- [5400125]={
+ [5500224]={
["position"]=5,
["skill_type"]=11,
["skill_type_parameter"]={
@@ -8657,696 +6395,15 @@ local skill = {
["trigger"]=9,
["obj"]=1
},
- [5400210]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000001
- },
- ["name_act"]="attack01",
- ["fx_self"]=300112,
- ["fx_self_mirror"]=400112
- },
- [5400211]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000002
- },
- ["name_act"]="attack02",
- ["fx_self"]=300113,
- ["fx_self_mirror"]=400113
- },
- [5400212]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 1000003
- },
- ["name_act"]="attack03",
- ["fx_self"]=300114,
- ["fx_self_mirror"]=400114
- },
- [5400213]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 1000004
- },
- ["name_act"]="attack04",
- ["fx_self"]=300115,
- ["fx_self_mirror"]=400115
- },
- [5400220]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["battle_icon"]="25",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=6500,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=6500,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=6500,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=6500,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=6500,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="hurt_purple",
- ["num"]=7500,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["effect_block"]={
- 1,
- 2,
- 3,
- 4,
- 5,
- 6
- },
- ["skill_position"]={
- 1,
- 140
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=54002200,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300116,
- ["bullet_time"]={
- 3166,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400116
- },
- [5400221]={
- ["position"]=5,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="curse",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2
- },
- [5400222]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="counterattack",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [5400223]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="poison",
- ["num"]=2500,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [5400224]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="counterattack",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=3
- }
- },
- ["obj"]=1
- },
- [5400225]={
- ["position"]=5,
- ["buff_condition"]={
- {
- {
- ["type"]="state",
- ["attr"]="curse",
- ["op"]=">",
- ["v"]=0,
- ["side"]=2
- }
- }
- },
- ["condition_rel"]={
- {
- 1,
- 1
- }
- },
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2
- },
- [5400310]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 5400311
- },
- ["name_act"]="attack01",
- ["fx_self"]=300127,
- ["fx_self_mirror"]=400127
- },
- [5400311]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 5400312
- },
- ["name_act"]="attack02",
- ["fx_self"]=300128,
- ["fx_self_mirror"]=400128
- },
- [5400312]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound_hit"]={
- 5400313
- },
- ["name_act"]="attack03",
- ["fx_self"]=300129,
- ["fx_self_mirror"]=400129
- },
- [5400313]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound_hit"]={
- 5400314
- },
- ["name_act"]="attack04",
- ["fx_self"]=300130,
- ["fx_self_mirror"]=400130
- },
- [5400320]={
- ["buff_id"]={
- "corrupt"
- },
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["skill_type"]=4,
- ["boardrange"]={
-
- },
- ["battle_icon"]="29",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=60000,
- ["ratio"]=10000,
- ["round"]=0
- },
- {
- ["type"]="corrupt",
- ["num"]=7500,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 100
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=5400315,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300131,
- ["bullet_time"]={
- 1366,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400131
- },
- [5400321]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=5,
- ["effect"]={
- {
- ["type"]="poison",
- ["num"]=2500,
- ["ratio"]=1000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [5400322]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="lethargy",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=2
- },
- [5400323]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="lethargy",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=2
- },
- [5400410]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 25
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound"]=5400410,
- ["sound_delay"]=0.0,
- ["name_act"]="attack01",
- ["fx_self"]=300160,
- ["fx_self_mirror"]=400160
- },
- [5400411]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 25
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound"]=5400411,
- ["sound_delay"]=0.0,
- ["name_act"]="attack02",
- ["fx_self"]=300161,
- ["fx_self_mirror"]=400161
- },
- [5400412]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 25
- },
- ["shake_time"]=100,
- ["shake_type"]=1,
- ["sound"]=5400412,
- ["sound_delay"]=0.0,
- ["name_act"]="attack03",
- ["fx_self"]=300162,
- ["fx_self_mirror"]=400162
- },
- [5400413]={
- ["position"]=5,
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=10000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 25
- },
- ["shake_time"]=100,
- ["shake_type"]=2,
- ["sound"]=5400413,
- ["sound_delay"]=0.0,
- ["name_act"]="attack04",
- ["fx_self"]=300163,
- ["fx_self_mirror"]=400163
- },
- [5400420]={
- ["energy"]=10,
- ["link"]=1,
- ["position"]=5,
- ["method"]=1,
- ["skill_type"]=1,
- ["boardrange"]={
- {
- ["type"]=0,
- ["range"]=3
- }
- },
- ["battle_icon"]="35",
- ["effect_type"]=1,
- ["trigger"]=1,
- ["effect"]={
- {
- ["type"]="hurt_purple",
- ["num"]=50000,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=2,
- ["skill_position"]={
- 1,
- 25
- },
- ["shake_time"]=200,
- ["shake_type"]=6,
- ["sound"]=5400420,
- ["sound_delay"]=0.0,
- ["name_act"]="skill01",
- ["fx_self"]=300164,
- ["bullet_time"]={
- 1666,
- 3000,
- 400
- },
- ["fx_self_mirror"]=400164
- },
- [5400421]={
- ["position"]=5,
- ["skill_type"]=12,
- ["skill_type_parameter"]={
- 5,
- 3
- },
- ["effect_type"]=2,
- ["trigger"]=3,
- ["obj"]=1
- },
- [5400422]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="immune",
- ["num"]=1,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1
- },
- [5400423]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="counterattack",
- ["num"]=2500,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [5400424]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="immune",
- ["num"]=1,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=1
- },
- [5400425]={
+ [5500225]={
["position"]=5,
["skill_type"]=11,
["skill_type_parameter"]={
- 0,
- 2
+ 5,
+ 4
},
["effect_type"]=2,
- ["trigger"]=3,
- ["obj"]=1
- },
- [5400426]={
- ["position"]=5,
- ["effect_type"]=2,
- ["trigger"]=6,
- ["effect"]={
- {
- ["type"]="undead",
- ["num"]=0,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
+ ["trigger"]=9,
["obj"]=1
},
[10001]={
@@ -30979,6 +28036,6 @@ local skill = {
}
}
local config = {
-data=skill,count=1118
+data=skill,count=1041
}
return config
\ No newline at end of file
diff --git a/lua/app/config/skill_rogue.lua b/lua/app/config/skill_rogue.lua
index 9d9c980f..a81c13ae 100644
--- a/lua/app/config/skill_rogue.lua
+++ b/lua/app/config/skill_rogue.lua
@@ -679,69 +679,28 @@ local skill_rogue = {
},
["icon"]="29"
},
- [1200100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=1,
- ["icon"]="171"
- },
- [1200101]={
- ["buff_id"]={
- "burn"
- },
+ [1300111]={
+ ["method"]=2,
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=12,
+ ["type"]=2,
["skill_position"]=1,
- ["effect"]={
+ ["boardrange"]={
{
- ["type"]="add_skill",
- ["num"]=1200124,
- ["ratio"]=10000,
- ["round"]=1
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
}
},
- ["obj"]=3,
- ["icon"]="31"
+ ["icon"]="73",
+ ["entry"]=0
},
- [1200102]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=3,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="atkp",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1,
- ["icon"]="32"
- },
- [1200103]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1200123,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="33"
- },
- [1200104]={
+ [1300112]={
+ ["method"]=2,
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -757,82 +716,57 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="34"
+ ["icon"]="73",
+ ["entry"]=1
},
- [1200105]={
- ["buff_id"]={
- "normal_attack_add"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 5
- },
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1200121,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="35"
- },
- [1200106]={
+ [1300113]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="atkp_red_add",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=3,
- ["icon"]="36"
- },
- [1200107]={
- ["buff_id"]={
- "normal_attack_add"
- },
- ["unlock"]=1200105,
- ["cover_unlock"]=1200105,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
+ ["type"]=17,
["parameter"]={
- 3
+ 1300114,
+ 1300115
},
["skill_position"]=1,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [1300114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=1,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [1300115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=3,
+ ["skill_position"]=1,
["effect"]={
{
- ["type"]="add_skill",
- ["num"]=1200122,
+ ["type"]="atkp",
+ ["num"]=1000,
["ratio"]=10000,
["round"]=1
}
},
- ["obj"]=3,
- ["icon"]="37"
+ ["obj"]=1
},
- [1300100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=1,
- ["icon"]="176"
- },
- [1300101]={
+ [1300121]={
["buff_id"]={
"burn"
},
@@ -850,9 +784,13 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="66"
+ ["icon"]="31",
+ ["entry"]=0
},
- [1300102]={
+ [1300122]={
+ ["buff_id"]={
+ "burn"
+ },
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -867,25 +805,31 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="67"
+ ["icon"]="31",
+ ["entry"]=1
},
- [1300103]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=1,
- ["parameter"]={
- 1300123
- },
- ["skill_position"]=1,
- ["icon"]="68"
- },
- [1300104]={
+ [1300123]={
["buff_id"]={
"burn"
},
- ["unlock"]=1300101,
- ["cover_unlock"]=1300101,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1300123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [1300131]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -900,57 +844,16 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="69"
+ ["icon"]="33",
+ ["entry"]=0,
+ ["combo_hero"]={
+ 13001
+ }
},
- [1300105]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 4
- },
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1300126,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="70"
- },
- [1300106]={
- ["unlock"]=1300105,
- ["cover_unlock"]=1300105,
+ [1300132]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=14,
- ["parameter"]={
- 4
- },
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1300127,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="71"
- },
- [1300107]={
- ["buff_id"]={
- "normal_attack_add"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
["type"]=12,
["skill_position"]=1,
["effect"]={
@@ -962,35 +865,13 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="72"
+ ["icon"]="33",
+ ["entry"]=1,
+ ["combo_hero"]={
+ 13001
+ }
},
- [1300200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=1,
- ["icon"]="181"
- },
- [1300201]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=1,
- ["boardrange"]={
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
- }
- },
- ["icon"]="101"
- },
- [1300202]={
+ [1300133]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -999,60 +880,55 @@ local skill_rogue = {
["effect"]={
{
["type"]="add_skill",
- ["num"]=1300221,
+ ["num"]=1300126,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=3,
- ["icon"]="102"
+ ["icon"]="33",
+ ["entry"]=2,
+ ["combo_hero"]={
+ 13001
+ }
},
- [1300203]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=1,
- ["parameter"]={
- 1300222
- },
- ["skill_position"]=1,
- ["icon"]="103"
- },
- [1300204]={
+ [1300141]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=2,
+ ["type"]=9,
["skill_position"]=1,
- ["boardrange"]={
+ ["effect"]={
{
- ["type"]=1,
- ["range"]=1
- },
- {
- ["type"]=2,
- ["range"]=1
+ ["type"]="atkp_red_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
}
},
- ["icon"]="104"
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=0
},
- [1300205]={
- ["buff_id"]={
- "burn"
- },
- ["unlock"]=1300203,
+ [1300142]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=7,
- ["parameter"]={
- 6,
- 5000
- },
+ ["qlt"]=3,
+ ["type"]=9,
["skill_position"]=1,
- ["icon"]="105"
+ ["effect"]={
+ {
+ ["type"]="atkp_red_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=1
},
- [1300206]={
+ [1300143]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -1067,46 +943,84 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="106"
+ ["icon"]="281",
+ ["entry"]=2
},
- [1300207]={
+ [1400111]={
+ ["method"]=2,
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=12,
+ ["type"]=2,
["skill_position"]=1,
- ["effect"]={
+ ["boardrange"]={
{
- ["type"]="skill_fire_times",
- ["num"]=1300220,
- ["ratio"]=10000,
- ["round"]=1
+ ["type"]=1,
+ ["range"]=1
},
{
- ["type"]="skill_fire_times",
- ["num"]=1300222,
- ["ratio"]=10000,
- ["round"]=1
+ ["type"]=2,
+ ["range"]=1
}
},
- ["obj"]=3,
- ["icon"]="107"
+ ["icon"]="73",
+ ["entry"]=0
},
- [1400100]={
+ [1400112]={
+ ["method"]=2,
["limit_times"]=1,
- ["weight"]=100000,
+ ["weight"]=3000,
["qlt"]=4,
- ["type"]=6,
+ ["type"]=2,
["skill_position"]=1,
- ["icon"]="186"
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
},
- [1400101]={
+ [1400113]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=1,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ },
+ {
+ ["type"]=3,
+ ["range"]=2
+ },
+ {
+ ["type"]=4,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [1400121]={
["buff_id"]={
"burn"
},
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=1,
["effect"]={
@@ -1118,11 +1032,12 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="136"
+ ["icon"]="31",
+ ["entry"]=0
},
- [1400102]={
+ [1400122]={
["buff_id"]={
- "stun"
+ "burn"
},
["limit_times"]=1,
["weight"]=3000,
@@ -1138,12 +1053,16 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="137"
+ ["icon"]="31",
+ ["entry"]=1
},
- [1400103]={
+ [1400123]={
+ ["buff_id"]={
+ "burn"
+ },
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=1,
["effect"]={
@@ -1155,12 +1074,10 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="138"
+ ["icon"]="31",
+ ["entry"]=2
},
- [1400104]={
- ["buff_id"]={
- "stun"
- },
+ [1400131]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -1169,20 +1086,19 @@ local skill_rogue = {
["effect"]={
{
["type"]="add_skill",
- ["num"]=1400127,
+ ["num"]=1400124,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=3,
- ["icon"]="139"
+ ["icon"]="33",
+ ["entry"]=0,
+ ["combo_hero"]={
+ 13001
+ }
},
- [1400105]={
- ["buff_id"]={
- "burn"
- },
- ["unlock"]=1400101,
- ["cover_unlock"]=1400101,
+ [1400132]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -1197,33 +1113,17 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="140"
+ ["icon"]="33",
+ ["entry"]=1,
+ ["combo_hero"]={
+ 13001
+ }
},
- [1400106]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="atkp_red_add",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=3,
- ["icon"]="141"
- },
- [1400107]={
+ [1400133]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=15,
- ["parameter"]={
- 4
- },
+ ["type"]=12,
["skill_position"]=1,
["effect"]={
{
@@ -1234,79 +1134,13 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="142"
+ ["icon"]="33",
+ ["entry"]=2,
+ ["combo_hero"]={
+ 13001
+ }
},
- [1400200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=1,
- ["icon"]="191"
- },
- [1400201]={
- ["buff_id"]={
- "burn"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400221,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="196"
- },
- [1400202]={
- ["buff_id"]={
- "normal_attack_add"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400222,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="197"
- },
- [1400203]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=1,
- ["boardrange"]={
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
- }
- },
- ["icon"]="198"
- },
- [1400204]={
- ["buff_id"]={
- "burn"
- },
+ [1400141]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -1314,39 +1148,38 @@ local skill_rogue = {
["skill_position"]=1,
["effect"]={
{
- ["type"]="add_skill",
- ["num"]=1400223,
+ ["type"]="atkp_red_add",
+ ["num"]=500,
["ratio"]=10000,
["round"]=999
}
},
["obj"]=3,
- ["icon"]="199"
+ ["icon"]="281",
+ ["entry"]=0
},
- [1400205]={
+ [1400142]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 6
- },
+ ["type"]=9,
["skill_position"]=1,
["effect"]={
{
- ["type"]="skill_fire_times",
- ["num"]=1400220,
+ ["type"]="atkp_red_add",
+ ["num"]=1000,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=999
}
},
["obj"]=3,
- ["icon"]="200"
+ ["icon"]="281",
+ ["entry"]=1
},
- [1400206]={
+ [1400143]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=9,
["skill_position"]=1,
["effect"]={
@@ -1358,215 +1191,76 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="201"
+ ["icon"]="281",
+ ["entry"]=2
},
- [1400207]={
- ["unlock"]=1400205,
- ["cover_unlock"]=1400205,
+ [1500111]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="skill_fire_times",
- ["num"]=1400220,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="202"
- },
- [1400300]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=1,
- ["icon"]="235"
- },
- [1400301]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400321,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="264"
- },
- [1400302]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400322,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=3,
- ["icon"]="265"
- },
- [1400303]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=7,
- ["parameter"]={
- 5,
- 1000
- },
- ["skill_position"]=1,
- ["icon"]="266"
- },
- [1400304]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400323,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=3,
- ["icon"]="267"
- },
- [1400305]={
- ["buff_id"]={
- "rebirth"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400324,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="268"
- },
- [1400306]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="atkp_red_add",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=3,
- ["icon"]="269"
- },
- [1400307]={
- ["buff_id"]={
- "rebirth"
- },
- ["unlock"]=1400305,
- ["cover_unlock"]=1400305,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400325,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="270"
- },
- [1400400]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=1,
- ["icon"]="271"
- },
- [1400401]={
- ["buff_id"]={
- "charm"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400421,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=3,
- ["icon"]="276"
- },
- [1400402]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=1,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=1400422,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=3,
- ["icon"]="277"
- },
- [1400403]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
["type"]=2,
["skill_position"]=1,
["boardrange"]={
{
- ["type"]=5,
+ ["type"]=1,
["range"]=1
},
{
- ["type"]=6,
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [1500112]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=1,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ },
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
+ }
+ },
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [1500113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=1,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ },
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
["range"]=1
},
{
@@ -1578,54 +1272,166 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="278"
+ ["icon"]="281",
+ ["entry"]=2
},
- [1400404]={
+ [1500121]={
["buff_id"]={
- "charm"
+ "self_heal"
},
- ["unlock"]=1400401,
- ["cover_unlock"]=1400401,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=1,
["effect"]={
{
["type"]="add_skill",
- ["num"]=1400423,
+ ["num"]=1500121,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=3,
- ["icon"]="279"
+ ["icon"]="33",
+ ["entry"]=0
},
- [1400405]={
+ [1500122]={
["buff_id"]={
- "normal_attack_add"
+ "self_heal"
},
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=1,
["effect"]={
{
["type"]="add_skill",
- ["num"]=1400424,
+ ["num"]=1500122,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=3,
- ["icon"]="280"
+ ["icon"]="33",
+ ["entry"]=1
},
- [1400406]={
+ [1500123]={
+ ["buff_id"]={
+ "self_heal"
+ },
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="33",
+ ["entry"]=2
+ },
+ [1500131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500124,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [1500132]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500125,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [1500133]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500126,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [1500141]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="atkp_red_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [1500142]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="atkp_red_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [1500143]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
["type"]=9,
["skill_position"]=1,
["effect"]={
@@ -1637,28 +1443,642 @@ local skill_rogue = {
}
},
["obj"]=3,
- ["icon"]="281"
+ ["icon"]="281",
+ ["entry"]=2
},
- [1400407]={
+ [1500211]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=1,
+ ["qlt"]=5,
+ ["type"]=14,
["parameter"]={
- 1400425
+ 6
},
["skill_position"]=1,
- ["icon"]="282"
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500221,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=0
},
- [2200100]={
+ [1500212]={
["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=2,
- ["icon"]="172"
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=14,
+ ["parameter"]={
+ 4
+ },
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500222,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=1
},
- [2200101]={
+ [1500213]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=14,
+ ["parameter"]={
+ 4
+ },
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500223,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [1500221]={
+ ["buff_id"]={
+ "burn"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500224,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [1500222]={
+ ["buff_id"]={
+ "burn"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500225,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [1500223]={
+ ["buff_id"]={
+ "burn"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500226,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [1500231]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500227,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [1500232]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500227,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [1500233]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1500227,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [1500241]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="atkp_red_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [1500242]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="atkp_red_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [1500243]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="atkp_red_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [1600111]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=2,
+ ["skill_position"]=1,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [1600112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=2,
+ ["skill_position"]=1,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [1600113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=17,
+ ["parameter"]={
+ 1600114,
+ 1600115
+ },
+ ["skill_position"]=1,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [1600114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=6,
+ ["type"]=2,
+ ["skill_position"]=1,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [1600115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=6,
+ ["type"]=14,
+ ["parameter"]={
+ 6
+ },
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="skill_fire_times",
+ ["num"]=1600120,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3
+ },
+ [1600121]={
+ ["buff_id"]={
+ "burn"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="31",
+ ["entry"]=0
+ },
+ [1600122]={
+ ["buff_id"]={
+ "burn",
+ "normal_attack_add"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=17,
+ ["parameter"]={
+ 1600124,
+ 1600125
+ },
+ ["skill_position"]=1,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [1600123]={
+ ["buff_id"]={
+ "burn",
+ "normal_attack_add"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=17,
+ ["parameter"]={
+ 1600124,
+ 1600125,
+ 1600126
+ },
+ ["skill_position"]=1,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [1600124]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3
+ },
+ [1600125]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3
+ },
+ [1600126]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=3
+ },
+ [1600131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600124,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [1600132]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600125,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [1600133]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600126,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [1600141]={
+ ["buff_id"]={
+ "burn"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600127,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [1600142]={
+ ["buff_id"]={
+ "burn"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600128,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [1600143]={
+ ["buff_id"]={
+ "burn"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=1600129,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [2300111]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [2300112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [2300113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=17,
+ ["parameter"]={
+ 2300114,
+ 2300115
+ },
+ ["skill_position"]=2,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [2300114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [2300115]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=3,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [2300121]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -1668,133 +2088,89 @@ local skill_rogue = {
30000
},
["skill_position"]=2,
- ["icon"]="38"
+ ["icon"]="72",
+ ["entry"]=0
},
- [2200102]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=1,
- ["parameter"]={
- 2200123
- },
- ["skill_position"]=2,
- ["icon"]="39"
- },
- [2200103]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2200121,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="40"
- },
- [2200104]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="atkp_yellow_add",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="41"
- },
- [2200105]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="skill_fire_times",
- ["num"]=2200120,
- ["ratio"]=10000,
- ["round"]=1
- },
- {
- ["type"]="skill_fire_times",
- ["num"]=2200123,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="42"
- },
- [2200106]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=5,
- ["range"]=1
- },
- {
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
- ["range"]=1
- }
- },
- ["icon"]="43"
- },
- [2200107]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=2,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2200122,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="44"
- },
- [2300100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=2,
- ["icon"]="182"
- },
- [2300101]={
+ [2300122]={
["buff_id"]={
- "bleed"
+ "imprison"
},
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=17,
+ ["parameter"]={
+ 2300124,
+ 2300125
+ },
+ ["skill_position"]=2,
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [2300123]={
+ ["buff_id"]={
+ "imprison"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=17,
+ ["parameter"]={
+ 2300124,
+ 2300125,
+ 2300126
+ },
+ ["skill_position"]=2,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [2300124]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=7,
+ ["parameter"]={
+ 1,
+ 30000
+ },
+ ["skill_position"]=2
+ },
+ [2300125]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=14,
+ ["parameter"]={
+ 4
+ },
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2300124,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2300126]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="skill_fire_times",
+ ["num"]=2300120,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2300131]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -1809,26 +2185,37 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="108"
+ ["icon"]="33",
+ ["entry"]=0,
+ ["combo_hero"]={
+ 13001
+ }
},
- [2300102]={
+ [2300132]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=1,
- ["parameter"]={
- 2300122
- },
+ ["type"]=12,
["skill_position"]=2,
- ["icon"]="109"
- },
- [2300103]={
- ["buff_id"]={
- "stun"
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2300122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
},
+ ["obj"]=4,
+ ["icon"]="33",
+ ["entry"]=1,
+ ["combo_hero"]={
+ 13001
+ }
+ },
+ [2300133]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=3,
["type"]=12,
["skill_position"]=2,
["effect"]={
@@ -1840,70 +2227,49 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="110"
+ ["icon"]="33",
+ ["entry"]=2,
+ ["combo_hero"]={
+ 13001
+ }
},
- [2300104]={
- ["buff_id"]={
- "bleed"
- },
- ["unlock"]=2300101,
- ["cover_unlock"]=2300101,
+ [2300141]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2300124,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="111"
- },
- [2300105]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
["type"]=9,
["skill_position"]=2,
["effect"]={
{
- ["type"]="add_skill",
- ["num"]=2300125,
+ ["type"]="atkp_yellow_add",
+ ["num"]=500,
["ratio"]=10000,
- ["round"]=0
+ ["round"]=999
}
},
["obj"]=4,
- ["icon"]="112"
+ ["icon"]="281",
+ ["entry"]=0
},
- [2300106]={
- ["buff_id"]={
- "stun"
- },
- ["unlock"]=2300103,
- ["cover_unlock"]=2300103,
+ [2300142]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
+ ["qlt"]=3,
+ ["type"]=9,
["skill_position"]=2,
["effect"]={
{
- ["type"]="add_skill",
- ["num"]=2300126,
+ ["type"]="atkp_yellow_add",
+ ["num"]=1000,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=999
}
},
["obj"]=4,
- ["icon"]="113"
+ ["icon"]="281",
+ ["entry"]=1
},
- [2300107]={
+ [2300143]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -1918,21 +2284,14 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="114"
+ ["icon"]="281",
+ ["entry"]=2
},
- [2300200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=2,
- ["icon"]="177"
- },
- [2300201]={
+ [2400111]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=2,
["skill_position"]=2,
["boardrange"]={
@@ -1943,80 +2302,79 @@ local skill_rogue = {
{
["type"]=2,
["range"]=1
- },
- {
- ["type"]=3,
- ["range"]=1
- },
- {
- ["type"]=4,
- ["range"]=1
}
},
- ["icon"]="73"
+ ["icon"]="73",
+ ["entry"]=0
},
- [2300202]={
+ [2400112]={
+ ["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
+ ["qlt"]=4,
+ ["type"]=2,
["skill_position"]=2,
- ["effect"]={
+ ["boardrange"]={
{
- ["type"]="atkp_yellow_add",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=999
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
}
},
- ["obj"]=4,
- ["icon"]="74"
+ ["icon"]="73",
+ ["entry"]=1
},
- [2300203]={
+ [2400113]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 2400114,
+ 2400115
+ },
+ ["skill_position"]=2,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [2400114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [2400115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
["type"]=3,
["skill_position"]=2,
["effect"]={
{
["type"]="atkp",
- ["num"]=1500,
+ ["num"]=1000,
["ratio"]=10000,
["round"]=1
}
},
- ["obj"]=1,
- ["icon"]="75"
+ ["obj"]=1
},
- [2300204]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=5,
- ["range"]=1
- },
- {
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
- ["range"]=1
- }
- },
- ["icon"]="76"
- },
- [2300205]={
+ [2400121]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -2025,100 +2383,6 @@ local skill_rogue = {
4
},
["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2300221,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="77"
- },
- [2300206]={
- ["unlock"]=2300205,
- ["cover_unlock"]=2300205,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 4
- },
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2300222,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="78"
- },
- [2300207]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2300223,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="79"
- },
- [2400100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=2,
- ["icon"]="187"
- },
- [2400101]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=5,
- ["range"]=1
- },
- {
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
- ["range"]=1
- }
- },
- ["icon"]="143"
- },
- [2400102]={
- ["buff_id"]={
- "stun"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=2,
["effect"]={
{
["type"]="add_skill",
@@ -2128,18 +2392,16 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="144"
+ ["entry"]=0
},
- [2400103]={
- ["buff_id"]={
- "stun"
- },
- ["unlock"]=2400102,
- ["cover_unlock"]=2400102,
+ [2400122]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=12,
+ ["type"]=14,
+ ["parameter"]={
+ 4
+ },
["skill_position"]=2,
["effect"]={
{
@@ -2150,12 +2412,50 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="145"
+ ["entry"]=1
},
- [2400104]={
+ [2400123]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
+ ["type"]=14,
+ ["parameter"]={
+ 4
+ },
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2400123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["entry"]=2
+ },
+ [2400131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [2400132]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
["type"]=9,
["skill_position"]=2,
["effect"]={
@@ -2167,39 +2467,46 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="146"
+ ["icon"]="281",
+ ["entry"]=1
},
- [2400105]={
- ["buff_id"]={
- "imprison"
- },
+ [2400133]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=1,
- ["parameter"]={
- 2400123
- },
+ ["type"]=9,
["skill_position"]=2,
- ["icon"]="147"
- },
- [2400106]={
- ["buff_id"]={
- "imprison"
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
},
- ["unlock"]=2400105,
- ["cover_unlock"]=2400105,
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [2400141]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=1,
- ["parameter"]={
- 2400124
- },
+ ["qlt"]=4,
+ ["type"]=12,
["skill_position"]=2,
- ["icon"]="148"
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2400124,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=0
},
- [2400107]={
+ [2400142]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -2214,31 +2521,10 @@ local skill_rogue = {
}
},
["obj"]=4,
- ["icon"]="149"
+ ["icon"]="281",
+ ["entry"]=1
},
- [2400200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=2,
- ["icon"]="192"
- },
- [2400201]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=0,
- ["range"]=4
- }
- },
- ["icon"]="203"
- },
- [2400202]={
+ [2400143]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -2247,321 +2533,20 @@ local skill_rogue = {
["effect"]={
{
["type"]="add_skill",
- ["num"]=2400221,
+ ["num"]=2400126,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=4,
- ["icon"]="204"
+ ["icon"]="281",
+ ["entry"]=2
},
- [2400203]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=0,
- ["range"]=2
- }
- },
- ["icon"]="205"
- },
- [2400204]={
- ["buff_id"]={
- "weaken"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400222,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="206"
- },
- [2400205]={
- ["buff_id"]={
- "shield_rebound_200"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400223,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="207"
- },
- [2400206]={
- ["buff_id"]={
- "weaken"
- },
- ["unlock"]=2400204,
- ["cover_unlock"]=2400206,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400224,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="208"
- },
- [2400207]={
- ["buff_id"]={
- "shield_rebound_400"
- },
- ["unlock"]=2400205,
- ["cover_unlock"]=2400205,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400225,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="209"
- },
- [2400300]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=2,
- ["icon"]="231"
- },
- [2400301]={
+ [2500111]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
- }
- },
- ["icon"]="236"
- },
- [2400302]={
- ["buff_id"]={
- "stun"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
["qlt"]=4,
- ["type"]=8,
- ["parameter"]={
- 3,
- 1
- },
- ["skill_position"]=2,
- ["icon"]="237"
- },
- [2400303]={
- ["buff_id"]={
- "bleed"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400321,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="238"
- },
- [2400304]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=2
- },
- {
- ["type"]=2,
- ["range"]=2
- }
- },
- ["icon"]="239"
- },
- [2400305]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400322,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="240"
- },
- [2400306]={
- ["buff_id"]={
- "bleed"
- },
- ["unlock"]=2400203,
- ["cover_unlock"]=2400203,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400323,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="241"
- },
- [2400307]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400324,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=4,
- ["icon"]="242"
- },
- [2400400]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=2,
- ["icon"]="272"
- },
- [2400401]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=7,
- ["parameter"]={
- 1,
- 15000
- },
- ["skill_position"]=2,
- ["icon"]="283"
- },
- [2400402]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=2,
- ["skill_position"]=2,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=1
- },
- {
- ["type"]=2,
- ["range"]=1
- },
- {
- ["type"]=3,
- ["range"]=1
- },
- {
- ["type"]=4,
- ["range"]=1
- }
- },
- ["icon"]="284"
- },
- [2400403]={
- ["buff_id"]={
- "stun"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400421,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="285"
- },
- [2400404]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
["type"]=2,
["skill_position"]=2,
["boardrange"]={
@@ -2582,235 +2567,82 @@ local skill_rogue = {
["range"]=1
}
},
- ["icon"]="286"
+ ["icon"]="73",
+ ["entry"]=0
},
- [2400405]={
- ["buff_id"]={
- "bleed"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400424,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="287"
- },
- [2400406]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400422,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="288"
- },
- [2400407]={
- ["buff_id"]={
- "stun"
- },
- ["unlock"]=2400403,
- ["cover_unlock"]=2400403,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=2,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=2400423,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=4,
- ["icon"]="289"
- },
- [3200100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=3,
- ["icon"]="173"
- },
- [3200101]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=3200121,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="45"
- },
- [3200102]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=3200122,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="46"
- },
- [3200103]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=7,
- ["parameter"]={
- 1,
- 30000
- },
- ["skill_position"]=3,
- ["obj"]=5,
- ["icon"]="47"
- },
- [3200104]={
+ [2500112]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
["type"]=2,
- ["skill_position"]=3,
+ ["skill_position"]=2,
["boardrange"]={
{
["type"]=5,
- ["range"]=1
+ ["range"]=2
},
{
["type"]=6,
- ["range"]=1
+ ["range"]=2
},
{
["type"]=7,
- ["range"]=1
+ ["range"]=2
},
{
["type"]=8,
- ["range"]=1
+ ["range"]=2
}
},
- ["obj"]=5,
- ["icon"]="48"
+ ["icon"]="73",
+ ["entry"]=1
},
- [3200105]={
- ["buff_id"]={
- "stun"
- },
+ [2500113]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=3200123,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="49"
- },
- [3200106]={
- ["buff_id"]={
- "stun"
- },
- ["unlock"]=3200105,
- ["cover_unlock"]=3200105,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=3200124,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="50"
- },
- [3200107]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="block",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=2
- }
- },
- ["obj"]=5,
- ["icon"]="51"
- },
- [3300100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=3,
- ["icon"]="178"
- },
- [3300101]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=7,
+ ["qlt"]=5,
+ ["type"]=17,
["parameter"]={
- 1,
- 5000
+ 2500114,
+ 2500115
},
- ["skill_position"]=3,
- ["icon"]="80"
+ ["skill_position"]=2,
+ ["icon"]="73",
+ ["entry"]=2
},
- [3300102]={
+ [2500114]={
+ ["method"]=2,
["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=5,
+ ["range"]=2
+ },
+ {
+ ["type"]=6,
+ ["range"]=2
+ },
+ {
+ ["type"]=7,
+ ["range"]=2
+ },
+ {
+ ["type"]=8,
+ ["range"]=2
+ }
+ }
+ },
+ [2500115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
["type"]=3,
- ["skill_position"]=3,
+ ["skill_position"]=2,
["effect"]={
{
["type"]="atkp",
@@ -2819,45 +2651,812 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=1,
- ["icon"]="81"
+ ["obj"]=1
},
- [3300103]={
+ [2500121]={
+ ["buff_id"]={
+ "imprison"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="31",
+ ["entry"]=0
+ },
+ [2500122]={
+ ["buff_id"]={
+ "imprison"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [2500123]={
+ ["buff_id"]={
+ "imprison"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [2500131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500124,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="144",
+ ["entry"]=0
+ },
+ [2500132]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500125,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="144",
+ ["entry"]=1
+ },
+ [2500133]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500126,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="144",
+ ["entry"]=2
+ },
+ [2500141]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [2500142]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [2500143]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [2500211]={
["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [2500212]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=2
+ },
+ {
+ ["type"]=4,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [2500213]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=3
+ },
+ {
+ ["type"]=4,
+ ["range"]=3
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [2500221]={
+ ["buff_id"]={
+ "bleed"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [2500222]={
+ ["buff_id"]={
+ "bleed"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 2500224,
+ 2500226
+ },
+ ["skill_position"]=2,
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [2500223]={
+ ["buff_id"]={
+ "bleed"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 2500225,
+ 2500226
+ },
+ ["skill_position"]=2,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [2500224]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500221,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2500225]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500223,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2500226]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
["type"]=1,
["parameter"]={
- 3300125
+ 2500222
},
- ["skill_position"]=3,
- ["icon"]="82"
+ ["skill_position"]=2
},
- [3300104]={
- ["buff_id"]={
- "skill_hurt_add_show"
- },
+ [2500231]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=12,
- ["skill_position"]=3,
+ ["skill_position"]=2,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3300123,
+ ["num"]=2500224,
["ratio"]=10000,
["round"]=1
}
},
- ["obj"]=5,
- ["icon"]="83"
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=0
},
- [3300105]={
+ [2500232]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 2500234,
+ 2500236
+ },
+ ["skill_position"]=2,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [2500233]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 2500235,
+ 2500236
+ },
+ ["skill_position"]=2,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [2500234]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500224,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2500235]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500225,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2500236]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2500226,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2500241]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [2500242]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [2500243]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_yellow_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [2600111]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=0,
+ ["range"]=4
+ }
+ },
+ ["icon"]="55",
+ ["entry"]=0
+ },
+ [2600112]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=0,
+ ["range"]=8
+ }
+ },
+ ["icon"]="55",
+ ["entry"]=1
+ },
+ [2600113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=2,
+ ["skill_position"]=2,
+ ["boardrange"]={
+ {
+ ["type"]=0,
+ ["range"]=12
+ }
+ },
+ ["icon"]="55",
+ ["entry"]=2
+ },
+ [2600121]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2600121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="165",
+ ["entry"]=0
+ },
+ [2600122]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2600122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="165",
+ ["entry"]=1
+ },
+ [2600123]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=17,
+ ["parameter"]={
+ 2600124,
+ 2600125
+ },
+ ["skill_position"]=2,
+ ["icon"]="165",
+ ["entry"]=2
+ },
+ [2600124]={
+ ["limit_times"]=1,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2600122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2600125]={
+ ["limit_times"]=1,
+ ["qlt"]=6,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2600123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=4
+ },
+ [2600131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_yellow_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="165",
+ ["entry"]=0
+ },
+ [2600132]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_yellow_add",
+ ["num"]=2000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="165",
+ ["entry"]=1
+ },
+ [2600133]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_yellow_add",
+ ["num"]=2500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="165",
+ ["entry"]=2
+ },
+ [2600141]={
+ ["buff_id"]={
+ "weaken"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2600124,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [2600142]={
+ ["buff_id"]={
+ "weaken"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2600125,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [2600143]={
+ ["buff_id"]={
+ "weaken"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=6,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=2600126,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [3300111]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [3300112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [3300113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=17,
+ ["parameter"]={
+ 3300114,
+ 3300115
+ },
+ ["skill_position"]=3,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [3300114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [3300115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=3,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="atkp",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [3300121]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
["type"]=12,
["skill_position"]=3,
["effect"]={
@@ -2868,15 +3467,59 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=1,
- ["icon"]="84"
+ ["obj"]=5,
+ ["icon"]="45",
+ ["entry"]=0
},
- [3300106]={
- ["buff_id"]={
- "skill_hurt_add_show"
+ [3300122]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3300121,
+ ["ratio"]=10000,
+ ["round"]=1
+ },
+ {
+ ["type"]="add_skill",
+ ["num"]=3300122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
},
- ["unlock"]=3300104,
- ["cover_unlock"]=3300104,
+ ["obj"]=5,
+ ["icon"]="45",
+ ["entry"]=1
+ },
+ [3300123]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3300121,
+ ["ratio"]=10000,
+ ["round"]=1
+ },
+ {
+ ["type"]="add_skill",
+ ["num"]=3300123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5,
+ ["icon"]="45",
+ ["entry"]=2
+ },
+ [3300131]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -2891,40 +3534,13 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="85"
+ ["icon"]="33",
+ ["entry"]=0,
+ ["combo_hero"]={
+ 13001
+ }
},
- [3300107]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 5
- },
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=3300122,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="86"
- },
- [3300200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=3,
- ["icon"]="183"
- },
- [3300201]={
- ["buff_id"]={
- "vulnerable"
- },
+ [3300132]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -2933,32 +3549,53 @@ local skill_rogue = {
["effect"]={
{
["type"]="add_skill",
- ["num"]=3300221,
+ ["num"]=3300125,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=5,
- ["icon"]="115"
+ ["icon"]="33",
+ ["entry"]=1,
+ ["combo_hero"]={
+ 13001
+ }
},
- [3300202]={
+ [3300133]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=3,
+ ["type"]=12,
["skill_position"]=3,
["effect"]={
{
- ["type"]="atkp",
- ["num"]=1500,
+ ["type"]="add_skill",
+ ["num"]=3300126,
["ratio"]=10000,
["round"]=1
}
},
- ["obj"]=1,
- ["icon"]="116"
+ ["obj"]=5,
+ ["icon"]="33",
+ ["entry"]=2,
+ ["combo_hero"]={
+ 13001
+ }
},
- [3300203]={
+ [3300141]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=7,
+ ["parameter"]={
+ 1,
+ 15000
+ },
+ ["skill_position"]=3,
+ ["icon"]="72",
+ ["entry"]=0
+ },
+ [3300142]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -2968,83 +3605,193 @@ local skill_rogue = {
30000
},
["skill_position"]=3,
- ["icon"]="117"
+ ["icon"]="72",
+ ["entry"]=1
},
- [3300204]={
- ["buff_id"]={
- "poison"
- },
+ [3300143]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=1,
+ ["type"]=17,
["parameter"]={
- 3300222
+ 3300144,
+ 3300145
},
["skill_position"]=3,
- ["icon"]="118"
+ ["icon"]="73",
+ ["entry"]=2
},
- [3300205]={
- ["buff_id"]={
- "poison"
+ [3300144]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=7,
+ ["parameter"]={
+ 1,
+ 30000
},
- ["unlock"]=3300204,
+ ["skill_position"]=3
+ },
+ [3300145]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="block",
+ ["num"]=5000,
+ ["ratio"]=10000,
+ ["round"]=2
+ }
+ },
+ ["obj"]=5
+ },
+ [3400111]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [3400112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [3400113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 3400114,
+ 3400115
+ },
+ ["skill_position"]=3,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [3400114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [3400115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=3,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="atkp",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [3400121]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
["type"]=7,
["parameter"]={
- 2,
+ 1,
5000
},
["skill_position"]=3,
- ["icon"]="119"
+ ["icon"]="73",
+ ["entry"]=0
},
- [3300206]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="atkp_green_add",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=5,
- ["icon"]="120"
- },
- [3300207]={
+ [3400122]={
["buff_id"]={
- "poison"
+ "skill_hurt_add_show"
},
- ["unlock"]=3300204,
- ["cover_unlock"]=3300204,
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=1,
+ ["type"]=17,
["parameter"]={
- 3300223
+ 3400124,
+ 3400125
},
["skill_position"]=3,
- ["icon"]="121"
+ ["icon"]="73",
+ ["entry"]=1
},
- [3400100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=3,
- ["icon"]="188"
- },
- [3400101]={
+ [3400123]={
["buff_id"]={
- "vulnerable"
+ "skill_hurt_add_show"
},
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 3400124,
+ 3400126
+ },
+ ["skill_position"]=3,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [3400124]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=7,
+ ["parameter"]={
+ 1,
+ 5000
+ },
+ ["skill_position"]=3
+ },
+ [3400125]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -3058,47 +3805,12 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=5,
- ["icon"]="150"
+ ["obj"]=5
},
- [3400102]={
- ["method"]=2,
+ [3400126]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=1,
- ["parameter"]={
- 3400125
- },
- ["skill_position"]=3,
- ["icon"]="151"
- },
- [3400103]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="atkp_green_add",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=5,
- ["icon"]="152"
- },
- [3400104]={
- ["buff_id"]={
- "vulnerable"
- },
- ["unlock"]=3400101,
- ["cover_unlock"]=3400101,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=3,
["effect"]={
@@ -3109,17 +3821,16 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=5,
- ["icon"]="153"
+ ["obj"]=5
},
- [3400105]={
- ["buff_id"]={
- "bleed"
- },
+ [3400131]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=12,
+ ["type"]=14,
+ ["parameter"]={
+ 5
+ },
["skill_position"]=3,
["effect"]={
{
@@ -3130,17 +3841,66 @@ local skill_rogue = {
}
},
["obj"]=5,
- ["icon"]="154"
+ ["icon"]="86",
+ ["entry"]=0
},
- [3400106]={
- ["buff_id"]={
- "bleed"
- },
- ["unlock"]=3400106,
- ["cover_unlock"]=3400106,
+ [3400132]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
+ ["type"]=14,
+ ["parameter"]={
+ 3
+ },
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3400123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5,
+ ["icon"]="86",
+ ["entry"]=1
+ },
+ [3400133]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 3400134,
+ 3400135
+ },
+ ["skill_position"]=3,
+ ["icon"]="86",
+ ["entry"]=2
+ },
+ [3400134]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=14,
+ ["parameter"]={
+ 3
+ },
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3400123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5
+ },
+ [3400135]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=3,
["effect"]={
@@ -3151,155 +3911,50 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=5,
- ["icon"]="155"
+ ["obj"]=1
},
- [3400107]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 4
- },
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="skill_fire_times",
- ["num"]=3400120,
- ["ratio"]=10000,
- ["round"]=1
- },
- {
- ["type"]="skill_fire_times",
- ["num"]=3400125,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="156"
- },
- [3400200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=3,
- ["icon"]="193"
- },
- [3400201]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=3,
- ["boardrange"]={
- {
- ["type"]=5,
- ["range"]=1
- },
- {
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
- ["range"]=1
- }
- },
- ["icon"]="210"
- },
- [3400202]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=3400221,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="211"
- },
- [3400203]={
- ["unlock"]=3400201,
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=3,
- ["boardrange"]={
- {
- ["type"]=5,
- ["range"]=1
- },
- {
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
- ["range"]=1
- }
- },
- ["icon"]="212"
- },
- [3400204]={
- ["buff_id"]={
- "lethargy"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=1,
- ["parameter"]={
- 3400224
- },
- ["skill_position"]=3,
- ["icon"]="213"
- },
- [3400205]={
- ["buff_id"]={
- "imprison"
- },
+ [3400141]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
["type"]=9,
- ["skill_position"]=3,
+ ["skill_position"]=2,
["effect"]={
{
- ["type"]="add_skill",
- ["num"]=3400222,
+ ["type"]="atkp_green_add",
+ ["num"]=500,
["ratio"]=10000,
["round"]=999
}
},
- ["obj"]=5,
- ["icon"]="214"
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=0
},
- [3400206]={
+ [3400142]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=9,
- ["skill_position"]=3,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_green_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [3400143]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=9,
+ ["skill_position"]=2,
["effect"]={
{
["type"]="atkp_green_add",
@@ -3308,82 +3963,352 @@ local skill_rogue = {
["round"]=999
}
},
- ["obj"]=5,
- ["icon"]="215"
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=2
},
- [3400207]={
- ["unlock"]=3400204,
- ["cover_unlock"]=3400204,
+ [3500111]={
+ ["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=1,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [3500112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [3500113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
["parameter"]={
- 3400223
+ 3500114,
+ 3500115
},
["skill_position"]=3,
- ["icon"]="216"
+ ["icon"]="73",
+ ["entry"]=2
},
- [3400300]={
+ [3500114]={
+ ["method"]=2,
["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=2,
["skill_position"]=3,
- ["icon"]="232"
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
},
- [3400301]={
+ [3500115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=3,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="atkp",
+ ["num"]=2000,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [3500121]={
["buff_id"]={
- "bleed"
+ "vulnerable"
},
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=3,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400321,
+ ["num"]=3500121,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=5,
- ["icon"]="243"
+ ["icon"]="115",
+ ["entry"]=0
},
- [3400302]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=17,
- ["parameter"]={
- 2
+ [3500122]={
+ ["buff_id"]={
+ "vulnerable"
},
- ["skill_position"]=3,
- ["icon"]="244"
- },
- [3400303]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
+ ["qlt"]=5,
+ ["type"]=12,
["skill_position"]=3,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400322,
+ ["num"]=3500122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5,
+ ["icon"]="115",
+ ["entry"]=1
+ },
+ [3500123]={
+ ["buff_id"]={
+ "vulnerable"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5,
+ ["icon"]="115",
+ ["entry"]=2
+ },
+ [3500131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_green_add",
+ ["num"]=500,
["ratio"]=10000,
["round"]=999
}
},
- ["obj"]=5,
- ["icon"]="245"
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=0
},
- [3400304]={
+ [3500132]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_green_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [3500133]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=2,
+ ["effect"]={
+ {
+ ["type"]="atkp_green_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=4,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [3500141]={
+ ["buff_id"]={
+ "bleed"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500124,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [3500142]={
+ ["buff_id"]={
+ "bleed"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500125,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [3500143]={
+ ["buff_id"]={
+ "bleed"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500126,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [3500211]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [3500212]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=2
+ },
+ {
+ ["type"]=4,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [3500213]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 3500214,
+ 3500215
+ },
+ ["skill_position"]=3,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [3500214]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=3,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=2
+ },
+ {
+ ["type"]=4,
+ ["range"]=2
+ }
+ }
+ },
+ [3500215]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
["type"]=3,
["skill_position"]=3,
["effect"]={
@@ -3394,214 +4319,207 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=1,
- ["icon"]="246"
+ ["obj"]=1
},
- [3400305]={
+ [3500221]={
["buff_id"]={
- "thorns"
+ "vulnerable"
},
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=3,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400323,
+ ["num"]=3500221,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=5,
- ["icon"]="247"
+ ["icon"]="115",
+ ["entry"]=0
},
- [3400306]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=3,
- ["boardrange"]={
- {
- ["type"]=0,
- ["range"]=3
- }
- },
- ["icon"]="248"
- },
- [3400307]={
+ [3500222]={
["buff_id"]={
- "thorns"
+ "vulnerable"
},
- ["unlock"]=3400305,
- ["cover_unlock"]=3400305,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=3,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400324,
+ ["num"]=3500222,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=5,
- ["icon"]="249"
+ ["icon"]="115",
+ ["entry"]=0
},
- [3400400]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=3,
- ["icon"]="273"
- },
- [3400401]={
+ [3500223]={
+ ["buff_id"]={
+ "vulnerable"
+ },
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=3,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400421,
+ ["num"]=3500223,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=5,
- ["icon"]="290"
+ ["icon"]="115",
+ ["entry"]=0
},
- [3400402]={
+ [3500231]={
["buff_id"]={
"poison"
},
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=9,
+ ["type"]=12,
["skill_position"]=3,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400422,
+ ["num"]=3500224,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5,
+ ["icon"]="33",
+ ["entry"]=0,
+ ["combo_hero"]={
+ 13001
+ }
+ },
+ [3500232]={
+ ["buff_id"]={
+ "poison"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500225,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5,
+ ["icon"]="33",
+ ["entry"]=1,
+ ["combo_hero"]={
+ 13001
+ }
+ },
+ [3500233]={
+ ["buff_id"]={
+ "poison"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=3,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500226,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=5,
+ ["icon"]="33",
+ ["entry"]=2,
+ ["combo_hero"]={
+ 13001
+ }
+ },
+ [3500241]={
+ ["buff_id"]={
+ "poison"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500227,
["ratio"]=10000,
["round"]=999
}
},
- ["obj"]=5,
- ["icon"]="291"
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
},
- [3400403]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=7,
- ["parameter"]={
- 1,
- 10000
+ [3500242]={
+ ["buff_id"]={
+ "poison"
},
- ["skill_position"]=3,
- ["icon"]="292"
- },
- [3400404]={
- ["unlock"]=3400401,
- ["cover_unlock"]=3400401,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=3,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400423,
+ ["num"]=3500228,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=999
}
},
- ["obj"]=5,
- ["icon"]="293"
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
},
- [3400405]={
+ [3500243]={
+ ["buff_id"]={
+ "poison"
+ },
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=3,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=1,
["effect"]={
{
["type"]="add_skill",
- ["num"]=3400424,
+ ["num"]=3500229,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=999
}
},
- ["obj"]=5,
- ["icon"]="294"
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
},
- [3400406]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=3,
- ["boardrange"]={
- {
- ["type"]=5,
- ["range"]=1
- },
- {
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
- ["range"]=1
- }
- },
- ["icon"]="295"
- },
- [3400407]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 6
- },
- ["skill_position"]=3,
- ["effect"]={
- {
- ["type"]="skill_fire_times",
- ["num"]=3400420,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=5,
- ["icon"]="296"
- },
- [4200100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=4,
- ["icon"]="174"
- },
- [4200101]={
+ [4300111]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -3613,139 +4531,43 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="52"
+ ["icon"]="55",
+ ["entry"]=0
},
- [4200102]={
+ [4300112]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=3,
+ ["type"]=2,
["skill_position"]=4,
- ["effect"]={
+ ["boardrange"]={
{
- ["type"]="atkp",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=1
+ ["type"]=0,
+ ["range"]=4
}
},
- ["obj"]=1,
- ["icon"]="53"
+ ["icon"]="55",
+ ["entry"]=1
},
- [4200103]={
+ [4300113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=4,
+ ["boardrange"]={
+ {
+ ["type"]=0,
+ ["range"]=6
+ }
+ },
+ ["icon"]="55",
+ ["entry"]=2
+ },
+ [4300121]={
["buff_id"]={
"normal_attack_dec"
},
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4200121,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="54"
- },
- [4200104]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=4,
- ["boardrange"]={
- {
- ["type"]=0,
- ["range"]=2
- }
- },
- ["icon"]="55"
- },
- [4200105]={
- ["buff_id"]={
- "frozen"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4200122,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="56"
- },
- [4200106]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="atkp_blue_add",
- ["num"]=1000,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=6,
- ["icon"]="57"
- },
- [4200107]={
- ["buff_id"]={
- "frozen"
- },
- ["unlock"]=4200105,
- ["cover_unlock"]=4200105,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4200123,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="58"
- },
- [4300100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=4,
- ["icon"]="179"
- },
- [4300101]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=1,
- ["parameter"]={
- 4300125
- },
- ["skill_position"]=4,
- ["icon"]="87"
- },
- [4300102]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -3760,42 +4582,16 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="88"
+ ["icon"]="31",
+ ["entry"]=0
},
- [4300103]={
+ [4300122]={
["buff_id"]={
"normal_attack_dec"
},
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=8,
- ["parameter"]={
- 2,
- 1
- },
- ["skill_position"]=4,
- ["icon"]="89"
- },
- [4300104]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=7,
- ["parameter"]={
- 1,
- 30000
- },
- ["skill_position"]=4,
- ["icon"]="90"
- },
- [4300105]={
- ["buff_id"]={
- "frozen"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
["type"]=12,
["skill_position"]=4,
["effect"]={
@@ -3807,15 +4603,16 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="91"
+ ["icon"]="31",
+ ["entry"]=1
},
- [4300106]={
+ [4300123]={
["buff_id"]={
- "shield_ice"
+ "normal_attack_dec"
},
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=3,
["type"]=12,
["skill_position"]=4,
["effect"]={
@@ -3827,17 +4624,16 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="92"
+ ["icon"]="31",
+ ["entry"]=2
},
- [4300107]={
+ [4300131]={
["buff_id"]={
- "shield_ice_rebound_400"
+ "frozen"
},
- ["unlock"]=4300106,
- ["cover_unlock"]=4300106,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=3,
["type"]=12,
["skill_position"]=4,
["effect"]={
@@ -3849,235 +4645,88 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="93"
+ ["icon"]="31",
+ ["entry"]=0
},
- [4300200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=4,
- ["icon"]="184"
- },
- [4300201]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=8,
- ["parameter"]={
- 2,
- 1
- },
- ["skill_position"]=4,
- ["icon"]="122"
- },
- [4300202]={
- ["buff_id"]={
- "normal_attack_dec"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4300221,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="123"
- },
- [4300203]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=3,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="atkp",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1,
- ["icon"]="124"
- },
- [4300204]={
- ["buff_id"]={
- "normal_attack_dec"
- },
- ["unlock"]=4300302,
- ["cover_unlock"]=4300302,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4300222,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="125"
- },
- [4300205]={
- ["buff_id"]={
- "weaken"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4300223,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="126"
- },
- [4300206]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=4,
- ["boardrange"]={
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
- }
- },
- ["icon"]="127"
- },
- [4300207]={
- ["buff_id"]={
- "weaken"
- },
- ["unlock"]=4300305,
- ["cover_unlock"]=4300305,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4300224,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="128"
- },
- [4400100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=4,
- ["icon"]="189"
- },
- [4400101]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=8,
- ["parameter"]={
- 2,
- 1
- },
- ["skill_position"]=4,
- ["icon"]="157"
- },
- [4400102]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400121,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="158"
- },
- [4400103]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=4,
- ["boardrange"]={
- {
- ["type"]=0,
- ["range"]=3
- }
- },
- ["icon"]="159"
- },
- [4400104]={
- ["buff_id"]={
- "normal_attack_dec"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=7,
- ["parameter"]={
- 2,
- 1
- },
- ["skill_position"]=4,
- ["icon"]="160"
- },
- [4400105]={
+ [4300132]={
["buff_id"]={
"frozen"
},
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
+ ["qlt"]=3,
+ ["type"]=12,
["skill_position"]=4,
["effect"]={
{
["type"]="add_skill",
- ["num"]=4400122,
+ ["num"]=4300125,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [4300133]={
+ ["buff_id"]={
+ "frozen"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4300126,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [4300141]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="atkp_blue_add",
+ ["num"]=500,
["ratio"]=10000,
["round"]=999
}
},
["obj"]=6,
- ["icon"]="161"
+ ["icon"]="281",
+ ["entry"]=0
},
- [4400106]={
+ [4300142]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="atkp_blue_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [4300143]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -4092,122 +4741,34 @@ local skill_rogue = {
}
},
["obj"]=6,
- ["icon"]="162"
+ ["icon"]="281",
+ ["entry"]=2
},
- [4400107]={
- ["buff_id"]={
- "frozen"
- },
- ["unlock"]=4400105,
- ["cover_unlock"]=4400105,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400123,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=6,
- ["icon"]="163"
- },
- [4400200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=4,
- ["icon"]="194"
- },
- [4400201]={
+ [4400111]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=1,
- ["parameter"]={
- 4400221
- },
+ ["qlt"]=4,
+ ["type"]=2,
["skill_position"]=4,
- ["icon"]="217"
- },
- [4400202]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=3,
- ["skill_position"]=4,
- ["effect"]={
+ ["boardrange"]={
{
- ["type"]="atkp",
- ["num"]=5000,
- ["ratio"]=10000,
- ["round"]=1
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
}
},
- ["obj"]=1,
- ["icon"]="218"
+ ["icon"]="73",
+ ["entry"]=0
},
- [4400203]={
- ["buff_id"]={
- "curse"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=8,
- ["parameter"]={
- 5,
- 1
- },
- ["skill_position"]=4,
- ["icon"]="219"
- },
- [4400204]={
- ["buff_id"]={
- "curse"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=7,
- ["parameter"]={
- 5,
- 10000
- },
- ["skill_position"]=4,
- ["icon"]="220"
- },
- [4400205]={
- ["buff_id"]={
- "corrupt"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400222,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=6,
- ["icon"]="221"
- },
- [4400206]={
+ [4400112]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=2,
["skill_position"]=4,
["boardrange"]={
@@ -4220,259 +4781,309 @@ local skill_rogue = {
["range"]=2
}
},
- ["icon"]="222"
+ ["icon"]="73",
+ ["entry"]=1
},
- [4400207]={
- ["buff_id"]={
- "corrupt"
- },
- ["unlock"]=4400205,
- ["cover_unlock"]=4400205,
+ [4400113]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400223,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=6,
- ["icon"]="223"
- },
- [4400300]={
- ["limit_times"]=1,
- ["weight"]=100000,
["qlt"]=4,
- ["type"]=6,
+ ["type"]=17,
+ ["parameter"]={
+ 4400114,
+ 4400115
+ },
["skill_position"]=4,
- ["icon"]="233"
+ ["icon"]="73",
+ ["entry"]=2
},
- [4400301]={
+ [4400114]={
["method"]=2,
["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
+ ["weight"]=0,
+ ["qlt"]=4,
["type"]=2,
["skill_position"]=4,
["boardrange"]={
{
- ["type"]=1,
+ ["type"]=3,
["range"]=2
},
{
- ["type"]=2,
+ ["type"]=4,
["range"]=2
}
- },
- ["icon"]="250"
+ }
},
- [4400302]={
+ [4400115]={
["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=3,
["skill_position"]=4,
["effect"]={
{
- ["type"]="add_skill",
- ["num"]=4400321,
+ ["type"]="atkp",
+ ["num"]=1500,
["ratio"]=10000,
- ["round"]=999
+ ["round"]=1
}
},
- ["obj"]=6,
- ["icon"]="251"
+ ["obj"]=1
},
- [4400303]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=7,
- ["parameter"]={
- 1,
- 7500
- },
- ["skill_position"]=4,
- ["icon"]="252"
- },
- [4400304]={
- ["buff_id"]={
- "frozen"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=8,
- ["parameter"]={
- 5,
- 1
- },
- ["skill_position"]=4,
- ["icon"]="253"
- },
- [4400305]={
+ [4400121]={
["buff_id"]={
"normal_attack_dec"
},
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=9,
+ ["type"]=12,
["skill_position"]=4,
["effect"]={
{
["type"]="add_skill",
- ["num"]=4400322,
+ ["num"]=4400121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=0
+ },
+ [4400122]={
+ ["buff_id"]={
+ "normal_attack_dec"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [4400123]={
+ ["buff_id"]={
+ "normal_attack_dec"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 4400124,
+ 4400125
+ },
+ ["skill_position"]=4,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [4400124]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6
+ },
+ [4400125]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_blue_add",
+ ["num"]=2500,
["ratio"]=10000,
["round"]=999
}
},
- ["obj"]=6,
- ["icon"]="254"
+ ["obj"]=6
},
- [4400306]={
+ [4400131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=0
+ },
+ [4400132]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400124,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [4400133]={
+ ["buff_id"]={
+ "frozen"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 4400134,
+ 4400135
+ },
+ ["skill_position"]=4,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [4400134]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400124,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6
+ },
+ [4400135]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400125,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6
+ },
+ [4400141]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400126,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="32",
+ ["entry"]=0
+ },
+ [4400142]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400127,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="32",
+ ["entry"]=1
+ },
+ [4400143]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4400128,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="32",
+ ["entry"]=2
+ },
+ [4500111]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
["type"]=2,
["skill_position"]=4,
["boardrange"]={
{
- ["type"]=3,
- ["range"]=2
+ ["type"]=1,
+ ["range"]=1
},
{
- ["type"]=4,
- ["range"]=2
+ ["type"]=2,
+ ["range"]=1
}
},
- ["icon"]="255"
+ ["icon"]="73",
+ ["entry"]=0
},
- [4400307]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 6
- },
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="skill_fire_times",
- ["num"]=4400320,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="256"
- },
- [4400400]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=4,
- ["icon"]="274"
- },
- [4400401]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400421,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=6,
- ["icon"]="297"
- },
- [4400402]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400422,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="298"
- },
- [4400403]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=8,
- ["parameter"]={
- 4,
- 1
- },
- ["skill_position"]=4,
- ["icon"]="299"
- },
- [4400404]={
- ["buff_id"]={
- "corrupt"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400423,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=6,
- ["icon"]="300"
- },
- [4400405]={
- ["buff_id"]={
- "rebirth"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=4,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=4400424,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=6,
- ["icon"]="301"
- },
- [4400406]={
+ [4500112]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
["type"]=2,
["skill_position"]=4,
["boardrange"]={
@@ -4483,24 +5094,381 @@ local skill_rogue = {
{
["type"]=2,
["range"]=2
- },
- {
- ["type"]=3,
- ["range"]=2
- },
- {
- ["type"]=4,
- ["range"]=2
}
},
- ["icon"]="302"
+ ["icon"]="73",
+ ["entry"]=1
},
- [4400407]={
- ["buff_id"]={
- "rebirth"
+ [4500113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 4500114,
+ 4500115
},
- ["unlock"]=4400405,
- ["cover_unlock"]=4400405,
+ ["skill_position"]=4,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [4500114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=4,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [4500115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=3,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="atkp",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [4500121]={
+ ["buff_id"]={
+ "normal_attack_dec"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=0
+ },
+ [4500122]={
+ ["buff_id"]={
+ "normal_attack_dec",
+ "corrupt"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 4500123,
+ 4500124
+ },
+ ["skill_position"]=4,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [4500123]={
+ ["buff_id"]={
+ "normal_attack_dec",
+ "corrupt"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 4500124,
+ 4500125
+ },
+ ["skill_position"]=4,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [4500124]={
+ ["limit_times"]=1,
+ ["qlt"]=5,
+ ["type"]=8,
+ ["parameter"]={
+ 2,
+ 1
+ },
+ ["skill_position"]=4
+ },
+ [4500125]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6
+ },
+ [4500126]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6
+ },
+ [4500131]={
+ ["buff_id"]={
+ "weaken"
+ },
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=0
+ },
+ [4500132]={
+ ["buff_id"]={
+ "weaken"
+ },
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500124,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [4500133]={
+ ["buff_id"]={
+ "weaken"
+ },
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500125,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [4500141]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="atkp_blue_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [4500142]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="atkp_blue_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [4500143]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="atkp_blue_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [4500211]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=4,
+ ["boardrange"]={
+ {
+ ["type"]=0,
+ ["range"]=3
+ }
+ },
+ ["icon"]="55",
+ ["entry"]=0
+ },
+ [4500212]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=4,
+ ["boardrange"]={
+ {
+ ["type"]=0,
+ ["range"]=5
+ }
+ },
+ ["icon"]="55",
+ ["entry"]=1
+ },
+ [4500213]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=4,
+ ["boardrange"]={
+ {
+ ["type"]=0,
+ ["range"]=7
+ }
+ },
+ ["icon"]="55",
+ ["entry"]=2
+ },
+ [4500221]={
+ ["buff_id"]={
+ "frozen"
+ },
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500221,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=0
+ },
+ [4500222]={
+ ["buff_id"]={
+ "frozen"
+ },
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500222,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=1
+ },
+ [4500223]={
+ ["buff_id"]={
+ "frozen"
+ },
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500223,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [4500231]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -4509,23 +5477,217 @@ local skill_rogue = {
["effect"]={
{
["type"]="add_skill",
- ["num"]=4400425,
+ ["num"]=4500224,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=6,
- ["icon"]="303"
+ ["icon"]="31",
+ ["entry"]=0
},
- [5200100]={
+ [4500232]={
["limit_times"]=1,
- ["weight"]=100000,
+ ["weight"]=3000,
["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=5,
- ["icon"]="175"
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500224,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=1
},
- [5200101]={
+ [4500233]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=4500224,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=6,
+ ["icon"]="31",
+ ["entry"]=2
+ },
+ [4500241]={
+ ["buff_id"]={
+ "normal_attack_dec",
+ "corrupt"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500229,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=0
+ },
+ [4500242]={
+ ["buff_id"]={
+ "normal_attack_dec",
+ "corrupt"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500229,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=1
+ },
+ [4500243]={
+ ["buff_id"]={
+ "normal_attack_dec",
+ "corrupt"
+ },
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=4,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=3500229,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=3,
+ ["icon"]="277",
+ ["entry"]=2
+ },
+ [5300111]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [5300112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ },
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [5300113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=3,
+ ["type"]=17,
+ ["parameter"]={
+ 5300114,
+ 5300115
+ },
+ ["skill_position"]=5,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [5300114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ },
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
+ }
+ }
+ },
+ [5300115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=3,
+ ["type"]=18,
+ ["parameter"]={
+ 6,
+ 1,
+ 1
+ },
+ ["skill_position"]=5
+ },
+ [5300121]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -4535,127 +5697,49 @@ local skill_rogue = {
600
},
["skill_position"]=5,
- ["icon"]="59"
+ ["icon"]="73",
+ ["entry"]=0
},
- [5200102]={
- ["buff_id"]={
- "poison"
- },
+ [5300122]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5200123,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1,
- ["icon"]="60"
- },
- [5200103]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=8,
+ ["type"]=7,
["parameter"]={
1,
- 1
+ 1000
},
["skill_position"]=5,
- ["icon"]="61"
+ ["icon"]="73",
+ ["entry"]=1
},
- [5200104]={
- ["method"]=2,
+ [5300123]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=5,
- ["boardrange"]={
- {
- ["type"]=1,
- ["range"]=1
- },
- {
- ["type"]=2,
- ["range"]=1
- },
- {
- ["type"]=3,
- ["range"]=1
- },
- {
- ["type"]=4,
- ["range"]=1
- }
- },
- ["icon"]="62"
- },
- [5200105]={
- ["buff_id"]={
- "shield_rebound_200"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=1,
+ ["type"]=17,
["parameter"]={
- 5200121
+ 5300124,
+ 5300125
},
["skill_position"]=5,
- ["icon"]="63"
+ ["icon"]="73",
+ ["entry"]=2
},
- [5200106]={
+ [5300124]={
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=3,
- ["type"]=9,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="atkp_purple_add",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=7,
- ["icon"]="64"
- },
- [5200107]={
- ["buff_id"]={
- "shield_rebound_400"
- },
- ["unlock"]=5200105,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=1,
+ ["type"]=7,
["parameter"]={
- 5200122
+ 1,
+ 1000
},
- ["skill_position"]=5,
- ["icon"]="65"
+ ["skill_position"]=5
},
- [5300100]={
+ [5300125]={
["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=5,
- ["icon"]="180"
- },
- [5300101]={
- ["buff_id"]={
- "poison"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=3,
["type"]=12,
["skill_position"]=5,
@@ -4667,33 +5751,12 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=7,
- ["icon"]="94"
+ ["obj"]=7
},
- [5300102]={
+ [5300131]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=3,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="atkp",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=1,
- ["icon"]="95"
- },
- [5300103]={
- ["buff_id"]={
- "lethargy"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
["type"]=12,
["skill_position"]=5,
["effect"]={
@@ -4704,12 +5767,9 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=7,
- ["icon"]="96"
+ ["obj"]=7
},
- [5300104]={
- ["unlock"]=5300101,
- ["cover_unlock"]=5300101,
+ [5300132]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -4723,13 +5783,12 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=7,
- ["icon"]="97"
+ ["obj"]=7
},
- [5300105]={
+ [5300133]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=3,
["type"]=12,
["skill_position"]=5,
["effect"]={
@@ -4740,121 +5799,9 @@ local skill_rogue = {
["round"]=1
}
},
- ["obj"]=7,
- ["icon"]="98"
+ ["obj"]=7
},
- [5300106]={
- ["unlock"]=5300105,
- ["cover_unlock"]=5300105,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5300125,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="99"
- },
- [5300107]={
- ["buff_id"]={
- "undead"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5300126,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="100"
- },
- [5300200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=5,
- ["icon"]="185"
- },
- [5300201]={
- ["method"]=2,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=1,
- ["parameter"]={
- 5300225
- },
- ["skill_position"]=5,
- ["icon"]="129"
- },
- [5300202]={
- ["buff_id"]={
- "frozen"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5300221,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="130"
- },
- [5300203]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=7,
- ["parameter"]={
- 1,
- 10000
- },
- ["skill_position"]=5,
- ["icon"]="131"
- },
- [5300204]={
- ["buff_id"]={
- "counterattack"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5300222,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="133"
- },
- [5300205]={
+ [5300141]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
@@ -4862,80 +5809,143 @@ local skill_rogue = {
["skill_position"]=5,
["effect"]={
{
- ["type"]="atkp_purple_add",
- ["num"]=1500,
+ ["type"]="hpp_purple_add",
+ ["num"]=500,
["ratio"]=10000,
["round"]=999
}
},
["obj"]=7,
- ["icon"]="132"
+ ["icon"]="281",
+ ["entry"]=0
},
- [5300206]={
- ["buff_id"]={
- "frozen"
- },
- ["unlock"]=5300202,
- ["cover_unlock"]=5300202,
+ [5300142]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=12,
+ ["type"]=9,
["skill_position"]=5,
["effect"]={
{
- ["type"]="add_skill",
- ["num"]=5300223,
+ ["type"]="hpp_purple_add",
+ ["num"]=500,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=999
}
},
["obj"]=7,
- ["icon"]="134"
+ ["icon"]="281",
+ ["entry"]=1
},
- [5300207]={
- ["buff_id"]={
- "counterattack"
- },
- ["unlock"]=5300205,
- ["cover_unlock"]=5300205,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5300224,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="135"
- },
- [5400100]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=5,
- ["icon"]="190"
- },
- [5400101]={
+ [5300143]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=3,
- ["type"]=7,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="hpp_purple_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [5400111]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [5400112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [5400113]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=4,
+ ["type"]=17,
["parameter"]={
- 1,
- 10000
+ 5400114,
+ 5400115
},
["skill_position"]=5,
- ["icon"]="164"
+ ["icon"]="73",
+ ["entry"]=2
},
- [5400102]={
+ [5400114]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=1,
+ ["range"]=2
+ },
+ {
+ ["type"]=2,
+ ["range"]=2
+ }
+ }
+ },
+ [5400115]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=3,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="atkp",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=1
+ },
+ [5400121]={
+ ["buff_id"]={
+ "poison"
+ },
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -4950,12 +5960,16 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="165"
+ ["icon"]="33",
+ ["entry"]=0
},
- [5400103]={
+ [5400122]={
+ ["buff_id"]={
+ "poison"
+ },
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
["type"]=12,
["skill_position"]=5,
["effect"]={
@@ -4967,111 +5981,79 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="166"
+ ["icon"]="33",
+ ["entry"]=1
},
- [5400104]={
+ [5400123]={
+ ["buff_id"]={
+ "poison"
+ },
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=9,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 5400124,
+ 5400125
+ },
+ ["skill_position"]=5,
+ ["icon"]="33",
+ ["entry"]=2
+ },
+ [5400124]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=12,
["skill_position"]=5,
["effect"]={
{
- ["type"]="atkp_purple_add",
- ["num"]=1500,
+ ["type"]="add_skill",
+ ["num"]=5400122,
["ratio"]=10000,
- ["round"]=999
+ ["round"]=1
}
},
- ["obj"]=7,
- ["icon"]="167"
+ ["obj"]=7
},
- [5400105]={
+ [5400125]={
["limit_times"]=1,
- ["weight"]=3000,
+ ["weight"]=0,
["qlt"]=4,
- ["type"]=1,
- ["parameter"]={
- 5400123
- },
+ ["type"]=12,
["skill_position"]=5,
- ["icon"]="168"
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=5400123,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=7
},
- [5400106]={
+ [5400131]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
- ["type"]=9,
+ ["type"]=12,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
["num"]=5400124,
["ratio"]=10000,
- ["round"]=0
+ ["round"]=1
}
},
["obj"]=7,
- ["icon"]="169"
+ ["icon"]="33",
+ ["entry"]=0,
+ ["combo_hero"]={
+ 13001
+ }
},
- [5400107]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5400125,
- ["ratio"]=10000,
- ["round"]=0
- }
- },
- ["obj"]=7,
- ["icon"]="170"
- },
- [5400200]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=5,
- ["icon"]="195"
- },
- [5400201]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=7,
- ["parameter"]={
- 1,
- 3000
- },
- ["skill_position"]=5,
- ["icon"]="224"
- },
- [5400202]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5400221,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=7,
- ["icon"]="225"
- },
- [5400203]={
- ["buff_id"]={
- "counterattack"
- },
+ [5400132]={
["limit_times"]=1,
["weight"]=3000,
["qlt"]=4,
@@ -5080,18 +6062,306 @@ local skill_rogue = {
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400222,
+ ["num"]=5400125,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=7,
- ["icon"]="226"
+ ["icon"]="33",
+ ["entry"]=1,
+ ["combo_hero"]={
+ 13001
+ }
},
- [5400204]={
+ [5400133]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=4,
+ ["type"]=17,
+ ["parameter"]={
+ 5400134,
+ 5400135
+ },
+ ["skill_position"]=5,
+ ["icon"]="33",
+ ["entry"]=2
+ },
+ [5400134]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=5400125,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=7
+ },
+ [5400135]={
+ ["buff_id"]={
+ "lethargy"
+ },
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=5400126,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=7
+ },
+ [5400141]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_purple_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7
+ },
+ [5400142]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_purple_add",
+ ["num"]=2000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7
+ },
+ [5400143]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=4,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="dmg_addition_purple_add",
+ ["num"]=3000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7
+ },
+ [5500111]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=1
+ },
+ {
+ ["type"]=4,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [5500112]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=2
+ },
+ {
+ ["type"]=4,
+ ["range"]=2
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [5500113]={
+ ["method"]=2,
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=2
+ },
+ {
+ ["type"]=4,
+ ["range"]=2
+ },
+ {
+ ["type"]=5,
+ ["range"]=1
+ },
+ {
+ ["type"]=6,
+ ["range"]=1
+ },
+ {
+ ["type"]=7,
+ ["range"]=1
+ },
+ {
+ ["type"]=8,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [5500121]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=5500121,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="33",
+ ["entry"]=0
+ },
+ [5500122]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=5500122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="33",
+ ["entry"]=1
+ },
+ [5500123]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 5500124,
+ 5500125
+ },
+ ["skill_position"]=5,
+ ["icon"]="33",
+ ["entry"]=2
+ },
+ [5500124]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=12,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=5500122,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=7
+ },
+ [5500125]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=7,
+ ["parameter"]={
+ 1,
+ 30000
+ },
+ ["skill_position"]=5
+ },
+ [5500131]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="atkp_purple_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [5500132]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="atkp_purple_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [5500133]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
["type"]=9,
["skill_position"]=5,
["effect"]={
@@ -5103,373 +6373,369 @@ local skill_rogue = {
}
},
["obj"]=7,
- ["icon"]="227"
+ ["icon"]="281",
+ ["entry"]=2
},
- [5400205]={
+ [5500141]={
["buff_id"]={
- "poison"
+ "frozen"
},
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=9,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400223,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=7,
- ["icon"]="228"
- },
- [5400206]={
- ["buff_id"]={
- "counterattack"
- },
- ["unlock"]=5400203,
- ["cover_unlock"]=5400203,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5400224,
+ ["num"]=5500123,
["ratio"]=10000,
["round"]=1
}
},
["obj"]=7,
- ["icon"]="229"
+ ["icon"]="31",
+ ["entry"]=0
},
- [5400207]={
- ["unlock"]=5400202,
+ [5500142]={
+ ["buff_id"]={
+ "frozen"
+ },
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
["type"]=9,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400225,
+ ["num"]=5500124,
["ratio"]=10000,
- ["round"]=999
+ ["round"]=1
}
},
["obj"]=7,
- ["icon"]="230"
+ ["icon"]="31",
+ ["entry"]=1
},
- [5400300]={
+ [5500143]={
+ ["buff_id"]={
+ "frozen"
+ },
["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
["skill_position"]=5,
- ["icon"]="234"
+ ["effect"]={
+ {
+ ["type"]="add_skill",
+ ["num"]=5500125,
+ ["ratio"]=10000,
+ ["round"]=1
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="31",
+ ["entry"]=2
},
- [5400301]={
+ [5500211]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
["type"]=2,
["skill_position"]=5,
["boardrange"]={
{
- ["type"]=5,
+ ["type"]=3,
["range"]=1
},
{
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
+ ["type"]=4,
["range"]=1
}
},
- ["icon"]="257"
+ ["icon"]="73",
+ ["entry"]=0
},
- [5400302]={
- ["buff_id"]={
- "poison"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=9,
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5400321,
- ["ratio"]=10000,
- ["round"]=999
- }
- },
- ["obj"]=7,
- ["icon"]="258"
- },
- [5400303]={
- ["buff_id"]={
- "corrupt"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=8,
- ["parameter"]={
- 2,
- 1
- },
- ["skill_position"]=5,
- ["icon"]="259"
- },
- [5400304]={
+ [5500212]={
["method"]=2,
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
+ ["qlt"]=5,
["type"]=2,
["skill_position"]=5,
["boardrange"]={
{
- ["type"]=5,
- ["range"]=1
+ ["type"]=3,
+ ["range"]=2
},
{
- ["type"]=6,
- ["range"]=1
- },
- {
- ["type"]=7,
- ["range"]=1
- },
- {
- ["type"]=8,
- ["range"]=1
- }
- },
- ["icon"]="260"
- },
- [5400305]={
- ["buff_id"]={
- "lethargy"
- },
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 6
- },
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5400322,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="261"
- },
- [5400306]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=15,
- ["parameter"]={
- 4
- },
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="skill_hurt_add",
- ["num"]=1500,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="262"
- },
- [5400307]={
- ["buff_id"]={
- "lethargy"
- },
- ["unlock"]=5400305,
- ["cover_unlock"]=5400305,
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=14,
- ["parameter"]={
- 6
- },
- ["skill_position"]=5,
- ["effect"]={
- {
- ["type"]="add_skill",
- ["num"]=5400323,
- ["ratio"]=10000,
- ["round"]=1
- }
- },
- ["obj"]=7,
- ["icon"]="263"
- },
- [5400400]={
- ["limit_times"]=1,
- ["weight"]=100000,
- ["qlt"]=4,
- ["type"]=6,
- ["skill_position"]=5,
- ["icon"]="275"
- },
- [5400401]={
- ["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=2,
- ["skill_position"]=5,
- ["boardrange"]={
- {
- ["type"]=0,
+ ["type"]=4,
["range"]=2
}
},
- ["icon"]="304"
+ ["icon"]="73",
+ ["entry"]=1
},
- [5400402]={
+ [5500213]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
+ ["qlt"]=5,
+ ["type"]=2,
+ ["skill_position"]=5,
+ ["boardrange"]={
+ {
+ ["type"]=3,
+ ["range"]=2
+ },
+ {
+ ["type"]=4,
+ ["range"]=2
+ },
+ {
+ ["type"]=1,
+ ["range"]=1
+ },
+ {
+ ["type"]=2,
+ ["range"]=1
+ }
+ },
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [5500221]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=7,
+ ["parameter"]={
+ 1,
+ 30000
+ },
+ ["skill_position"]=5,
+ ["icon"]="73",
+ ["entry"]=0
+ },
+ [5500222]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 5500224,
+ 5500225
+ },
+ ["skill_position"]=5,
+ ["icon"]="73",
+ ["entry"]=1
+ },
+ [5500223]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 5500224,
+ 5500226
+ },
+ ["skill_position"]=5,
+ ["icon"]="73",
+ ["entry"]=2
+ },
+ [5500224]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=7,
+ ["parameter"]={
+ 1,
+ 30000
+ },
+ ["skill_position"]=5
+ },
+ [5500225]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400421,
+ ["num"]=5500221,
["ratio"]=10000,
["round"]=1
}
},
- ["obj"]=7,
- ["icon"]="305"
+ ["obj"]=7
},
- [5400403]={
- ["buff_id"]={
- "immune"
- },
+ [5500226]={
["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
+ ["weight"]=0,
+ ["qlt"]=5,
["type"]=12,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400422,
+ ["num"]=5500222,
["ratio"]=10000,
["round"]=1
}
},
- ["obj"]=7,
- ["icon"]="306"
+ ["obj"]=7
},
- [5400404]={
- ["buff_id"]={
- "counterattack"
- },
+ [5500231]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="atkp_purple_add",
+ ["num"]=500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="281",
+ ["entry"]=0
+ },
+ [5500232]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="atkp_purple_add",
+ ["num"]=1000,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="281",
+ ["entry"]=1
+ },
+ [5500233]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
+ ["skill_position"]=5,
+ ["effect"]={
+ {
+ ["type"]="atkp_purple_add",
+ ["num"]=1500,
+ ["ratio"]=10000,
+ ["round"]=999
+ }
+ },
+ ["obj"]=7,
+ ["icon"]="281",
+ ["entry"]=2
+ },
+ [5500241]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=9,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400423,
+ ["num"]=5500223,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=0
}
},
["obj"]=7,
- ["icon"]="307"
+ ["icon"]="169",
+ ["entry"]=0
},
- [5400405]={
- ["buff_id"]={
- "immune"
- },
- ["unlock"]=5400403,
- ["cover_unlock"]=5400403,
+ [5500242]={
["limit_times"]=1,
["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 5500244,
+ 5500245
+ },
+ ["skill_position"]=5,
+ ["icon"]="169",
+ ["entry"]=1
+ },
+ [5500243]={
+ ["limit_times"]=1,
+ ["weight"]=3000,
+ ["qlt"]=5,
+ ["type"]=17,
+ ["parameter"]={
+ 5500244,
+ 5500246
+ },
+ ["skill_position"]=5,
+ ["icon"]="169",
+ ["entry"]=2
+ },
+ [5500244]={
+ ["limit_times"]=1,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=9,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400424,
+ ["num"]=5500223,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=0
}
},
- ["obj"]=7,
- ["icon"]="308"
+ ["obj"]=7
},
- [5400406]={
+ [5500245]={
["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=3,
- ["type"]=12,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=9,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400425,
+ ["num"]=5500224,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=0
}
},
- ["obj"]=7,
- ["icon"]="309"
+ ["obj"]=7
},
- [5400407]={
- ["buff_id"]={
- "undead"
- },
+ [5500246]={
["limit_times"]=1,
- ["weight"]=3000,
- ["qlt"]=4,
- ["type"]=12,
+ ["weight"]=0,
+ ["qlt"]=5,
+ ["type"]=9,
["skill_position"]=5,
["effect"]={
{
["type"]="add_skill",
- ["num"]=5400426,
+ ["num"]=5500225,
["ratio"]=10000,
- ["round"]=1
+ ["round"]=0
}
},
- ["obj"]=7,
- ["icon"]="310"
+ ["obj"]=7
}
}
local config = {
-data=skill_rogue,count=324
+data=skill_rogue,count=376
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua
index 4f537f7f..8bb9b9c1 100644
--- a/lua/app/config/strings/cn/global.lua
+++ b/lua/app/config/strings/cn/global.lua
@@ -635,6 +635,12 @@ local localization_global =
["ACT_TOURN_ARENEA_HELP_2"] = "{0}:胜利{1}分,失败{2}分;",
["ACT_TOURN_WAVE_DESC_4"] = "礼包",
["EVENT_COUNTDOWN"] = "活动倒计时:",
+ ["HERO_STAR_DESC_1"] = "{0}攻击+{0}%",
+ ["HERO_STAR_DESC_2"] = "全体红色快递员攻击+{0}",
+ ["HERO_STAR_DESC_3"] = "全体黄色快递员攻击+{0}",
+ ["HERO_STAR_DESC_4"] = "全体绿色快递员攻击+{0}",
+ ["HERO_STAR_DESC_5"] = "全体蓝色快递员攻击+{0}",
+ ["HERO_STAR_DESC_6"] = "全体紫色快递员攻击+{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 372f2196..590833a6 100644
--- a/lua/app/config/strings/cn/item.lua
+++ b/lua/app/config/strings/cn/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="至圣贝壳",
["desc"]="被尊为圣物的贝壳,散发出神圣的光芒。"
},
- [12001]={
- ["name"]="舞娘碎片",
- ["desc"]="舞娘碎片,凑齐可激活或升级。"
- },
[13001]={
- ["name"]="克劳德碎片",
- ["desc"]="克劳德碎片,凑齐可激活或升级。"
- },
- [13002]={
- ["name"]="火旺碎片",
- ["desc"]="火旺碎片,凑齐可激活或升级。"
+ ["name"]="稀有红熔芯"
},
[14001]={
- ["name"]="亚历山大碎片",
- ["desc"]="亚历山大碎片,凑齐可激活或升级。"
+ ["name"]="史诗红-过热小莫"
},
- [14002]={
- ["name"]="潘达碎片",
- ["desc"]="潘达碎片,凑齐可激活或升级。"
+ [15001]={
+ ["name"]="传说红-火花姬"
},
- [14003]={
- ["name"]="恶魔侍者碎片",
- ["desc"]="恶魔侍者碎片,凑齐可激活或升级。"
+ [15002]={
+ ["name"]="传说红-废铁老爹"
},
- [22001]={
- ["name"]="刀妹碎片",
- ["desc"]="刀妹碎片,凑齐可激活或升级。"
+ [16001]={
+ ["name"]="神话红-血祭修女"
},
[23001]={
- ["name"]="野蛮人碎片",
- ["desc"]="野蛮人碎片,凑齐可激活或升级。"
- },
- [23002]={
- ["name"]="二丫碎片",
- ["desc"]="二丫碎片,凑齐可激活或升级。"
+ ["name"]="稀有黄-甲虫武士"
},
[24001]={
- ["name"]="巨剑魔童碎片",
- ["desc"]="巨剑魔童碎片,凑齐可激活或升级。"
+ ["name"]="史诗黄-平底锅战神"
},
- [24002]={
- ["name"]="索尔碎片",
- ["desc"]="索尔碎片,凑齐可激活或升级。"
- },
- [24003]={
- ["name"]="阿飞碎片",
- ["desc"]="阿飞碎片,凑齐可激活或升级。"
- },
- [32001]={
- ["name"]="洋葱头碎片",
- ["desc"]="洋葱头碎片,凑齐可激活或升级。"
+ [25001]={
+ ["name"]="传说黄-科技狼人"
},
[33001]={
- ["name"]="小鹿碎片",
- ["desc"]="小鹿碎片,凑齐可激活或升级。"
- },
- [33002]={
- ["name"]="森林狼碎片",
- ["desc"]="森林狼碎片,凑齐可激活或升级。"
- },
- [34001]={
- ["name"]="木兰碎片",
- ["desc"]="木兰碎片,凑齐可激活或升级。"
- },
- [34002]={
- ["name"]="梦魔碎片",
- ["desc"]="梦魔碎片,凑齐可激活或升级。"
- },
- [34003]={
- ["name"]="忍者菲尔碎片",
- ["desc"]="忍者菲尔碎片,凑齐可激活或升级。"
- },
- [42001]={
- ["name"]="冰心碎片",
- ["desc"]="冰心碎片,凑齐可激活或升级。"
+ ["name"]="稀有绿-荒野镖客"
},
[43001]={
- ["name"]="冰女碎片",
- ["desc"]="冰女碎片,凑齐可激活或升级。"
- },
- [43002]={
- ["name"]="鸦姐碎片",
- ["desc"]="鸦姐碎片,凑齐可激活或升级。"
- },
- [44001]={
- ["name"]="寒冰妖姬碎片",
- ["desc"]="寒冰妖姬碎片,凑齐可激活或升级。"
- },
- [44002]={
- ["name"]="艳后碎片",
- ["desc"]="艳后碎片,凑齐可激活或升级。"
- },
- [44003]={
- ["name"]="月之法师碎片",
- ["desc"]="月之法师碎片,凑齐可激活或升级。"
- },
- [52001]={
- ["name"]="忍者伦碎片",
- ["desc"]="忍者伦碎片,凑齐可激活或升级。"
+ ["name"]="稀有蓝-气泡柴犬"
},
[53001]={
- ["name"]="魔女琪琪碎片",
- ["desc"]="魔女琪琪碎片,凑齐可激活或升级。"
- },
- [53002]={
- ["name"]="灵魂猎手碎片",
- ["desc"]="灵魂猎手碎片,凑齐可激活或升级。"
- },
- [54001]={
- ["name"]="刀姬碎片",
- ["desc"]="刀姬碎片,凑齐可激活或升级。"
- },
- [54002]={
- ["name"]="闪烁法师碎片",
- ["desc"]="闪烁法师碎片,凑齐可激活或升级。"
- },
- [54003]={
- ["name"]="堕落骑士碎片",
- ["desc"]="堕落骑士碎片,凑齐可激活或升级。"
- },
- [1400201]={
- ["name"]="沙滩王者",
- ["desc"]="潘达的新衣装。"
- },
- [3400101]={
- ["name"]="骄阳晨露",
- ["desc"]="花木兰的新衣装。"
- },
- [3400102]={
- ["name"]="暗精灵女王",
- ["desc"]="暗精灵女王"
- },
- [5300101]={
- ["name"]="小红帽",
- ["desc"]="魔女琪琪的新衣装。"
- },
- [5400101]={
- ["name"]="翩然起舞",
- ["desc"]="蝴蝶的新衣装。"
- },
- [2300201]={
- ["name"]="黑剑士",
- ["desc"]="二丫的新衣装。"
- },
- [4400201]={
- ["name"]="新月女王",
- ["desc"]="艳后的新衣装。"
- },
- [5400401]={
- ["name"]="暗月武神",
- ["desc"]="女武神的新衣装。"
- },
- [4400101]={
- ["name"]="大魔导师"
- },
- [5400301]={
- ["name"]="紫SSR3-堕落骑士皮肤-烈焰骑士"
- },
- [5400201]={
- ["name"]="紫SSR2-闪烁法师皮肤"
+ ["name"]="稀有紫-圣盾卫士"
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
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 191266ff..30e05b38 100644
--- a/lua/app/config/strings/de/item.lua
+++ b/lua/app/config/strings/de/item.lua
@@ -286,132 +286,42 @@ local item = {
},
[1030]={
- },
- [12001]={
-
},
[13001]={
- },
- [13002]={
-
},
[14001]={
},
- [14002]={
+ [15001]={
},
- [14003]={
+ [15002]={
},
- [22001]={
+ [16001]={
},
[23001]={
- },
- [23002]={
-
},
[24001]={
},
- [24002]={
-
- },
- [24003]={
-
- },
- [32001]={
+ [25001]={
},
[33001]={
- },
- [33002]={
-
- },
- [34001]={
-
- },
- [34002]={
-
- },
- [34003]={
-
- },
- [42001]={
-
},
[43001]={
- },
- [43002]={
-
- },
- [44001]={
-
- },
- [44002]={
-
- },
- [44003]={
-
- },
- [52001]={
-
},
[53001]={
- },
- [53002]={
-
- },
- [54001]={
-
- },
- [54002]={
-
- },
- [54003]={
-
- },
- [1400201]={
-
- },
- [3400101]={
-
- },
- [3400102]={
-
- },
- [5300101]={
-
- },
- [5400101]={
-
- },
- [2300201]={
-
- },
- [4400201]={
-
- },
- [5400401]={
-
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
-
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/item.lua b/lua/app/config/strings/en/item.lua
index 178a94ee..7d63af08 100644
--- a/lua/app/config/strings/en/item.lua
+++ b/lua/app/config/strings/en/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="Sacred Shell",
["desc"]="Seashell revered as a sacred artifact, emanating a divine radiance."
},
- [12001]={
- ["name"]="Dancer Shard",
- ["desc"]="Dancer Fragments that can activate or upgrade Dancer."
- },
[13001]={
- ["name"]="Claude Shard",
- ["desc"]="Claude Shard that can activate or upgrade Claude."
- },
- [13002]={
- ["name"]="Flare Shard",
- ["desc"]="Flare Shard that can activate or upgrade Flare."
+
},
[14001]={
- ["name"]="Alexander Shard",
- ["desc"]="Alexander Shard that can activate or upgrade Alexander."
+
},
- [14002]={
- ["name"]="Panda Shard",
- ["desc"]="Panda Shard that can activate or upgrade Panda."
+ [15001]={
+
},
- [14003]={
- ["name"]="Devil Waiter Shard",
- ["desc"]="Devil Waiter Shard that can activate or upgrade Devil Waiter."
+ [15002]={
+
},
- [22001]={
- ["name"]="Blade Maid Shard",
- ["desc"]="Blade Maid Shard that can activate or upgrade Panda Blade Maid."
+ [16001]={
+
},
[23001]={
- ["name"]="Barbarian Shard",
- ["desc"]="Barbarian Shard that can activate or upgrade Barbarian."
- },
- [23002]={
- ["name"]="Er-Ya Shard",
- ["desc"]="Er-Ya Shard that can activate or upgrade Er-Ya."
+
},
[24001]={
- ["name"]="Claymore Kid Shard",
- ["desc"]="Claymore Kid Shard that can activate or upgrade Claymore Kid."
+
},
- [24002]={
- ["name"]="Thor Shard",
- ["desc"]="Thor Shard that can activate or upgrade Thor."
- },
- [24003]={
- ["name"]="Ferris Shard",
- ["desc"]="Ferris Shard that can activate or upgrade Ferris."
- },
- [32001]={
- ["name"]="Onion Shard",
- ["desc"]="Onion Shard that can activate or upgrade Onion."
+ [25001]={
+
},
[33001]={
- ["name"]="Fawn Shard",
- ["desc"]="Fawn Shard that can activate or upgrade Fawn."
- },
- [33002]={
- ["name"]="Timberwolf Shard",
- ["desc"]="Timberwolf Shard that can activate or upgrade Timberwolf."
- },
- [34001]={
- ["name"]="Mulan Shard",
- ["desc"]="Mulan Shard that can activate or upgrade Mulan."
- },
- [34002]={
- ["name"]="Nightmare Shard",
- ["desc"]="Nightmare Shard that can activate or upgrade Nightmare."
- },
- [34003]={
- ["name"]="Ninja Phil Shard",
- ["desc"]="Ninja Phil Shard that can activate or upgrade Ninja Phil."
- },
- [42001]={
- ["name"]="Iceheart Shard",
- ["desc"]="Iceheart Shard that can activate or upgrade Iceheart."
+
},
[43001]={
- ["name"]="Ice Maiden Shard",
- ["desc"]="Ice Maiden Shard that can activate or upgrade Ice Maiden."
- },
- [43002]={
- ["name"]="Raven Shard",
- ["desc"]="Raven Shard that can activate or upgrade Raven."
- },
- [44001]={
- ["name"]="Frost Enchantress Shard",
- ["desc"]="Frost Enchantress Shard that can activate or upgrade Frost Enchantress."
- },
- [44002]={
- ["name"]="Cleopatra Shard",
- ["desc"]="Cleopatra Shard that can activate or upgrade Cleopatra."
- },
- [44003]={
- ["name"]="Lunar Mage Shard",
- ["desc"]="Lunar Mage Shard that can activate or upgrade Lunar Mage."
- },
- [52001]={
- ["name"]="Ninja Lun Shard",
- ["desc"]="Raven Shard that can activate or upgrade Raven."
+
},
[53001]={
- ["name"]="Witch Kiki Shard",
- ["desc"]="Witch Kiki Shard that can activate or upgrade Witch Kiki."
- },
- [53002]={
- ["name"]="Soul Hunter Shard",
- ["desc"]="Soul Hunter Shard that can activate or upgrade Soul Hunter."
- },
- [54001]={
- ["name"]="Bellona Shard",
- ["desc"]="Bellona Shard that can activate or upgrade Bellona."
- },
- [54002]={
- ["name"]="Twinkling Mage Shard",
- ["desc"]="Twinkling Mage Shard that can activate or upgrade Twinkling Mage."
- },
- [54003]={
- ["name"]="Fallen Knight Shard",
- ["desc"]="Fallen Knight Shard that can activate or upgrade Fallen Knight."
- },
- [1400201]={
- ["name"]="Beach Champion",
- ["desc"]="Panda's new outfit."
- },
- [3400101]={
- ["name"]="Radiant Morning Dew",
- ["desc"]="Mulan's new outfit."
- },
- [3400102]={
- ["name"]="Dark Elf Queen",
- ["desc"]="Dark Elf Queen"
- },
- [5300101]={
- ["name"]="Little Red Riding Hood",
- ["desc"]="Witch Kiki's new outfit."
- },
- [5400101]={
- ["name"]="Graceful Dance",
- ["desc"]="Butterfly's new outfit."
- },
- [2300201]={
- ["name"]="Black Swordsman",
- ["desc"]="Er-Ya's new outfit."
- },
- [4400201]={
- ["name"]="Crescent Queen",
- ["desc"]="Cleopatra's new outfit."
- },
- [5400401]={
- ["name"]="Darkmoon War God",
- ["desc"]="Valkyrie's new outfit."
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/item.lua b/lua/app/config/strings/es/item.lua
index 60e6e7ac..eb73ea08 100644
--- a/lua/app/config/strings/es/item.lua
+++ b/lua/app/config/strings/es/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="Concha Sagrada",
["desc"]="Conchas considerada como objeto sagrado que emana una luz sagrada."
},
- [12001]={
- ["name"]="Fragmento de Bailarina",
- ["desc"]="Fragmento de Bailarina. Se puede activar o actualizar al reunir todos los fragmentos."
- },
[13001]={
- ["name"]="Fragmento de Claude",
- ["desc"]="Fragmento de Claude. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [13002]={
- ["name"]="Fragmento de Flama",
- ["desc"]="Fragmento de Flama. Se puede activar o actualizar al reunir todos los fragmentos."
+
},
[14001]={
- ["name"]="Fragmento de Alejandro",
- ["desc"]="Fragmento de Alejandro. Se puede activar o actualizar al reunir todos los fragmentos."
+
},
- [14002]={
- ["name"]="Fragmento de Panda",
- ["desc"]="Fragmentos de Panda. Se puede activar o actualizar al reunir todos los fragmentos."
+ [15001]={
+
},
- [14003]={
- ["name"]="Fragmento de Sirviente Diablo",
- ["desc"]="Fragmento de Sirviente Diabloa. Se puede activar o actualizar al reunir todos los fragmentos."
+ [15002]={
+
},
- [22001]={
- ["name"]="Fragmento de Chica con Daga",
- ["desc"]="Fragmento de Chica con Daga. Se puede activar o actualizar al reunir todos los fragmentos."
+ [16001]={
+
},
[23001]={
- ["name"]="Fragmento de Bárbaro",
- ["desc"]="Fragmento de Bárbaro. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [23002]={
- ["name"]="Fragmento de Erya",
- ["desc"]="Fragmento de Erya. Se puede activar o actualizar al reunir todos los fragmentos."
+
},
[24001]={
- ["name"]="Fragmento de Espadachín",
- ["desc"]="Fragmento de Espadachín. Se puede activar o actualizar al reunir todos los fragmentos."
+
},
- [24002]={
- ["name"]="Fragmento de Sol",
- ["desc"]="Fragmento de Sol. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [24003]={
- ["name"]="Fragmento de Matón",
- ["desc"]="Fragmento de Matón. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [32001]={
- ["name"]="Fragmento de Cabeza de Cebolla",
- ["desc"]="Fragmento de Cabeza de Cebolla. Se puede activar o actualizar al reunir todos los fragmentos."
+ [25001]={
+
},
[33001]={
- ["name"]="Fragmento de Ciervo",
- ["desc"]="Fragmento de Ciervo. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [33002]={
- ["name"]="Fragmento de Lobo del Bosque",
- ["desc"]="Fragmento de Lobo del Bosque. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [34001]={
- ["name"]="Fragmento de Mulán",
- ["desc"]="Fragmento de Mulán. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [34002]={
- ["name"]="Fragmento de Íncubo",
- ["desc"]="Fragmento de Íncubo. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [34003]={
- ["name"]="Fragmento de Ninja Phil",
- ["desc"]="Fragmento de Ninja Phil. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [42001]={
- ["name"]="Fragmento de Alma Glacial",
- ["desc"]="Fragmento de Alma Glacial. Se puede activar o actualizar al reunir todos los fragmentos."
+
},
[43001]={
- ["name"]="Fragmento de Doncella de Hielo",
- ["desc"]="Fragmento de Doncella de Hielo. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [43002]={
- ["name"]="Fragmento de Eileen",
- ["desc"]="Fragmento de Eileen. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [44001]={
- ["name"]="Fragmento de Hechicera de Hielo",
- ["desc"]="Fragmento de Hechicera de Hielo. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [44002]={
- ["name"]="Fragmento de Cleopatra",
- ["desc"]="Fragmento de Cleopatra. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [44003]={
- ["name"]="Fragmento de Maga Lunar",
- ["desc"]="Fragmento de Maga Lunar. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [52001]={
- ["name"]="Fragmento de Ninja Jay",
- ["desc"]="Fragmento de Ninja Jay. Se puede activar o actualizar al reunir todos los fragmentos."
+
},
[53001]={
- ["name"]="Fragmento de Bruja Kiki",
- ["desc"]="Fragmento de Bruja Kiki. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [53002]={
- ["name"]="Fragmento de Cazador de Almas",
- ["desc"]="Fragmento de Cazador de Almas. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [54001]={
- ["name"]="Fragmento de Bellona",
- ["desc"]="Fragmento de Bellona. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [54002]={
- ["name"]="Fragmento de Mago Brillante",
- ["desc"]="Fragmento de Mago Brillante. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [54003]={
- ["name"]="Fragmento de Jinete Caído",
- ["desc"]="Fragmento de Jinete Caído. Se puede activar o actualizar al reunir todos los fragmentos."
- },
- [1400201]={
- ["name"]="Rey de Playa",
- ["desc"]="Traje nuevo de Panda."
- },
- [3400101]={
- ["name"]="Sol y Rocío",
- ["desc"]="Traje nuevo de Mulán."
- },
- [3400102]={
- ["name"]="Reina de Elfo Oscuro",
- ["desc"]="Reina de Elfo Oscuro"
- },
- [5300101]={
- ["name"]="Caperucita Roja",
- ["desc"]="Traje nuevo de Bruja Kiki."
- },
- [5400101]={
- ["name"]="Danza Elegante",
- ["desc"]="Traje nuevo de Mariposa."
- },
- [2300201]={
- ["name"]="Espadachín Negro",
- ["desc"]="Traje nuevo de Erya."
- },
- [4400201]={
- ["name"]="Reina de Creciente",
- ["desc"]="Traje nuevo de Cleopatra."
- },
- [5400401]={
- ["name"]="Valquiria de Luna Oscura",
- ["desc"]="Traje nuevo de Valquiria."
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
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 191266ff..30e05b38 100644
--- a/lua/app/config/strings/fr/item.lua
+++ b/lua/app/config/strings/fr/item.lua
@@ -286,132 +286,42 @@ local item = {
},
[1030]={
- },
- [12001]={
-
},
[13001]={
- },
- [13002]={
-
},
[14001]={
},
- [14002]={
+ [15001]={
},
- [14003]={
+ [15002]={
},
- [22001]={
+ [16001]={
},
[23001]={
- },
- [23002]={
-
},
[24001]={
},
- [24002]={
-
- },
- [24003]={
-
- },
- [32001]={
+ [25001]={
},
[33001]={
- },
- [33002]={
-
- },
- [34001]={
-
- },
- [34002]={
-
- },
- [34003]={
-
- },
- [42001]={
-
},
[43001]={
- },
- [43002]={
-
- },
- [44001]={
-
- },
- [44002]={
-
- },
- [44003]={
-
- },
- [52001]={
-
},
[53001]={
- },
- [53002]={
-
- },
- [54001]={
-
- },
- [54002]={
-
- },
- [54003]={
-
- },
- [1400201]={
-
- },
- [3400101]={
-
- },
- [3400102]={
-
- },
- [5300101]={
-
- },
- [5400101]={
-
- },
- [2300201]={
-
- },
- [4400201]={
-
- },
- [5400401]={
-
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
-
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/item.lua b/lua/app/config/strings/id/item.lua
index ab9622c2..4f7b4a5b 100644
--- a/lua/app/config/strings/id/item.lua
+++ b/lua/app/config/strings/id/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="Cangkang Holy",
["desc"]="Kerang laut dipuja sebagai artefak sakral, memancarkan cahaya ilahi."
},
- [12001]={
- ["name"]="Shard Dancer",
- ["desc"]="Shard Dancer. Kumpulkan untuk aktivasi atau upgrade."
- },
[13001]={
- ["name"]="Shard Claude",
- ["desc"]="Shard Claude. Kumpulkan untuk aktivasi atau upgrade."
- },
- [13002]={
- ["name"]="Shard Flare",
- ["desc"]="Shard Flare. Kumpulkan untuk aktivasi atau upgrade."
+
},
[14001]={
- ["name"]="Shard Alexander",
- ["desc"]="Shard Alexander. Kumpulkan untuk aktivasi atau upgrade."
+
},
- [14002]={
- ["name"]="Shard Panda",
- ["desc"]="Shard Panda. Kumpulkan untuk aktivasi atau upgrade."
+ [15001]={
+
},
- [14003]={
- ["name"]="Shard Pelayan Demon",
- ["desc"]="Shard Pelayan Demon. Kumpulkan untuk aktivasi atau upgrade."
+ [15002]={
+
},
- [22001]={
- ["name"]="Shard Gadis Pedang",
- ["desc"]="Shard Gadis Pedang. Kumpulkan untuk aktivasi atau upgrade."
+ [16001]={
+
},
[23001]={
- ["name"]="Shard Barbarian",
- ["desc"]="Shard Barbarian. Kumpulkan untuk aktivasi atau upgrade."
- },
- [23002]={
- ["name"]="Shard Er-Ya",
- ["desc"]="Shard Er-Ya. Kumpulkan untuk aktivasi atau upgrade."
+
},
[24001]={
- ["name"]="Shard Bocah Pedang",
- ["desc"]="Shard Bocah Pedang. Kumpulkan untuk aktivasi atau upgrade."
+
},
- [24002]={
- ["name"]="Shard Thor",
- ["desc"]="Shard Thor. Kumpulkan untuk aktivasi atau upgrade."
- },
- [24003]={
- ["name"]="Shard Avie",
- ["desc"]="Shard Avie. Kumpulkan untuk aktivasi atau upgrade."
- },
- [32001]={
- ["name"]="Shard Kepala Bawang",
- ["desc"]="Shard Kepala Bawang. Kumpulkan untuk aktivasi atau upgrade."
+ [25001]={
+
},
[33001]={
- ["name"]="Shard Fawn",
- ["desc"]="Shard Fawn. Kumpulkan untuk aktivasi atau upgrade."
- },
- [33002]={
- ["name"]="Shard Timberwolf",
- ["desc"]="Shard Timberwolf. Kumpulkan untuk aktivasi atau upgrade."
- },
- [34001]={
- ["name"]="Shard Mulan",
- ["desc"]="Shard Mulan. Kumpulkan untuk aktivasi atau upgrade."
- },
- [34002]={
- ["name"]="Shard Nightmare",
- ["desc"]="Shard Nightmare. Kumpulkan untuk aktivasi atau upgrade."
- },
- [34003]={
- ["name"]="Shard Ninja Phil",
- ["desc"]="Shard Ninja Phil. Kumpulkan untuk aktivasi atau upgrade."
- },
- [42001]={
- ["name"]="Shard Hati Es",
- ["desc"]="Shard Hati Es. Kumpulkan untuk aktivasi atau upgrade."
+
},
[43001]={
- ["name"]="Shard Gadis Es",
- ["desc"]="Shard Gadis Es. Kumpulkan untuk aktivasi atau upgrade."
- },
- [43002]={
- ["name"]="Shard Raven",
- ["desc"]="Shard Raven. Kumpulkan untuk aktivasi atau upgrade."
- },
- [44001]={
- ["name"]="Shard Peri Es",
- ["desc"]="Shard Peri Es. Kumpulkan untuk aktivasi atau upgrade."
- },
- [44002]={
- ["name"]="Shard Cleopatra",
- ["desc"]="Shard Cleopatra. Kumpulkan untuk aktivasi atau upgrade."
- },
- [44003]={
- ["name"]="Shard Penyihir Lunar",
- ["desc"]="Shard Penyihir Lunar. Kumpulkan untuk aktivasi atau upgrade."
- },
- [52001]={
- ["name"]="Shard Ninja Jay",
- ["desc"]="Shard Ninja Jay. Kumpulkan untuk aktivasi atau upgrade."
+
},
[53001]={
- ["name"]="Shard Penyihir Kiki",
- ["desc"]="Shard Penyihir Kiki. Kumpulkan untuk aktivasi atau upgrade."
- },
- [53002]={
- ["name"]="Shard Pemburu Jiwa",
- ["desc"]="Shard Pemburu Jiwa. Kumpulkan untuk aktivasi atau upgrade."
- },
- [54001]={
- ["name"]="Shard Gadis Pedang",
- ["desc"]="Shard Gadis Pedang. Kumpulkan untuk aktivasi atau upgrade."
- },
- [54002]={
- ["name"]="Shard Blink Mage",
- ["desc"]="Shard Blink Mage. Kumpulkan untuk aktivasi atau upgrade."
- },
- [54003]={
- ["name"]="Shard Ksatria Karunia",
- ["desc"]="Shard Ksatria Karunia. Kumpulkan untuk aktivasi atau upgrade."
- },
- [1400201]={
- ["name"]="Juara Pantai",
- ["desc"]="Outfit baru Panda."
- },
- [3400101]={
- ["name"]="Embun Matahari Pagi",
- ["desc"]="Outfit baru Mulan."
- },
- [3400102]={
- ["name"]="Ratu Elf Gelap",
- ["desc"]="Ratu Elf Gelap"
- },
- [5300101]={
- ["name"]="Tudung Merah",
- ["desc"]="Outfit baru Penyihir Kiki."
- },
- [5400101]={
- ["name"]="Tarian Anggun",
- ["desc"]="Outfit baru Kupu-kupu."
- },
- [2300201]={
- ["name"]="Pendekar Pedang Hitam",
- ["desc"]="Outfit baru Er-Ya."
- },
- [4400201]={
- ["name"]="Ratu Sabit",
- ["desc"]="Outfit baru Cleopatra."
- },
- [5400401]={
- ["name"]="Dewa Perang Bulan Gelap",
- ["desc"]="Outfit baru Valkyrie."
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/item.lua b/lua/app/config/strings/ja/item.lua
index 6efdc798..556f70cc 100644
--- a/lua/app/config/strings/ja/item.lua
+++ b/lua/app/config/strings/ja/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="聖なる貝殻",
["desc"]="神聖なものとして崇められる貝殻、神聖な光を放っている。"
},
- [12001]={
- ["name"]="ダンサーのピース",
- ["desc"]="ダンサーのピース。必要数を集めると、解放またはレベルアップできる。"
- },
[13001]={
- ["name"]="クラウドのピース",
- ["desc"]="クラウドのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [13002]={
- ["name"]="フレアのピース",
- ["desc"]="フレアのピース。必要数を集めると、解放またはレベルアップできる。"
+
},
[14001]={
- ["name"]="アレキサンダーのピース",
- ["desc"]="アレキサンダーのピース。必要数を集めると、解放またはレベルアップできる。"
+
},
- [14002]={
- ["name"]="パンダのピース",
- ["desc"]="パンダのピース。必要数を集めると、解放またはレベルアップできる。"
+ [15001]={
+
},
- [14003]={
- ["name"]="デビルウェイターのピース",
- ["desc"]="デビルウェイターのピース。必要数を集めると、解放またはレベルアップできる。"
+ [15002]={
+
},
- [22001]={
- ["name"]="ブレードメイドのピース",
- ["desc"]="ブレードメイドのピース。必要数を集めると、解放またはレベルアップできる。"
+ [16001]={
+
},
[23001]={
- ["name"]="バルバロイのピース",
- ["desc"]="バルバロイのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [23002]={
- ["name"]="丫ちゃんのピース",
- ["desc"]="丫ちゃんのピース。必要数を集めると、解放またはレベルアップできる。"
+
},
[24001]={
- ["name"]="大剣魔童のピース",
- ["desc"]="大剣魔童のピース。必要数を集めると、解放またはレベルアップできる。"
+
},
- [24002]={
- ["name"]="ソーのピース",
- ["desc"]="ソーのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [24003]={
- ["name"]="トビのピース",
- ["desc"]="トビのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [32001]={
- ["name"]="タマネギのピース",
- ["desc"]="タマネギのピース。必要数を集めると、解放またはレベルアップできる。"
+ [25001]={
+
},
[33001]={
- ["name"]="鹿のピース",
- ["desc"]="鹿のピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [33002]={
- ["name"]="フォレストウルフのピース",
- ["desc"]="フォレストウルフのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [34001]={
- ["name"]="ムーランのピース",
- ["desc"]="ムーランのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [34002]={
- ["name"]="夢魔のピース",
- ["desc"]="夢魔のピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [34003]={
- ["name"]="忍者フィルのピース",
- ["desc"]="忍者フィルのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [42001]={
- ["name"]="氷心のピース",
- ["desc"]="氷心のピース。必要数を集めると、解放またはレベルアップできる。"
+
},
[43001]={
- ["name"]="氷女のピース",
- ["desc"]="氷女のピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [43002]={
- ["name"]="レイヴンのピース",
- ["desc"]="レイヴンのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [44001]={
- ["name"]="フロストエンチャントレスのピース",
- ["desc"]="フロストエンチャントレスのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [44002]={
- ["name"]="クレオパトラのピース",
- ["desc"]="クレオパトラのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [44003]={
- ["name"]="月の法師のピース",
- ["desc"]="月の法師のピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [52001]={
- ["name"]="忍者リンのピース",
- ["desc"]="忍者リンのピース。必要数を集めると、解放またはレベルアップできる。"
+
},
[53001]={
- ["name"]="魔女キキのピース",
- ["desc"]="魔女キキのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [53002]={
- ["name"]="ソウルハンターのピース",
- ["desc"]="ソウルハンターのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [54001]={
- ["name"]="刀姫のピース",
- ["desc"]="刀姫のピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [54002]={
- ["name"]="トゥインクリングメイジのピース",
- ["desc"]="トゥインクリングメイジのピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [54003]={
- ["name"]="堕落騎士のピース",
- ["desc"]="堕落騎士のピース。必要数を集めると、解放またはレベルアップできる。"
- },
- [1400201]={
- ["name"]="ビーチチャンピオン",
- ["desc"]="パンダの新スキン。"
- },
- [3400101]={
- ["name"]="輝く朝露",
- ["desc"]="ムーランの新スキン。"
- },
- [3400102]={
- ["name"]="ダークエルフクイーン",
- ["desc"]="ダークエルフクイーン"
- },
- [5300101]={
- ["name"]="赤ずきん",
- ["desc"]="魔女キキの新スキン。"
- },
- [5400101]={
- ["name"]="グレイスフルダンス",
- ["desc"]="蝴蝶の新スキン。"
- },
- [2300201]={
- ["name"]="黒剣士",
- ["desc"]="丫ちゃんの新スキン。"
- },
- [4400201]={
- ["name"]="新月の女王",
- ["desc"]="クレオパトラの新スキン。"
- },
- [5400401]={
- ["name"]="闇月の武神",
- ["desc"]="ワルキューレの新スキン。"
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/item.lua b/lua/app/config/strings/ko/item.lua
index 4d355cd1..514efe6e 100644
--- a/lua/app/config/strings/ko/item.lua
+++ b/lua/app/config/strings/ko/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="거룩한 조가비",
["desc"]="신성한 물건으로 숭배되는 조가비, 거룩한 빛을 발산하고 있습니다."
},
- [12001]={
- ["name"]="무희 파편",
- ["desc"]="무희 조각, 다 모으면 무희를 활성화하거나 업그레이드할 수 있습니다."
- },
[13001]={
- ["name"]="클로드 파편",
- ["desc"]="클로드 파편, 다 모으면 클로드를 활성화하거나 업그레이드할 수 있습니다."
- },
- [13002]={
- ["name"]="블레이즈 파편",
- ["desc"]="블레이즈 파편, 다 모으면 블레이즈를 활성화하거나 업그레이드할 수 있습니다."
+
},
[14001]={
- ["name"]="알렉산더 파편",
- ["desc"]="알렉산더 파편, 다 모으면 알렉산더를 활성화하거나 업그레이드할 수 있습니다."
+
},
- [14002]={
- ["name"]="판다 파편",
- ["desc"]="판다 조각, 다 모으면 판다를 활성화하거나 업그레이드할 수 있습니다."
+ [15001]={
+
},
- [14003]={
- ["name"]="악마 시종 파편",
- ["desc"]="악마 시종 파편, 다 모으면 악마 시종를 활성화하거나 업그레이드할 수 있습니다."
+ [15002]={
+
},
- [22001]={
- ["name"]="블레이드 파편",
- ["desc"]="블레이드 파편, 다 모으면 블레이드를 활성화하거나 업그레이드할 수 있습니다."
+ [16001]={
+
},
[23001]={
- ["name"]="야만인 파편",
- ["desc"]="야만인 파편, 다 모으면 야만인를 활성화하거나 업그레이드할 수 있습니다."
- },
- [23002]={
- ["name"]="에리아 파편",
- ["desc"]="에리아 파편, 다 모으면 에리아를 활성화하거나 업그레이드할 수 있습니다."
+
},
[24001]={
- ["name"]="대검 마법 소년 파편",
- ["desc"]="대검 마법 소년 파편, 다 모으면 대검 마법 소년를 활성화하거나 업그레이드할 수 있습니다."
+
},
- [24002]={
- ["name"]="토르 파편",
- ["desc"]="토르 파편, 다 모으면 토르 파편를 활성화하거나 업그레이드할 수 있습니다."
- },
- [24003]={
- ["name"]="아피 파편",
- ["desc"]="아피 파편, 다 모으면 아피를 활성화하거나 업그레이드할 수 있습니다."
- },
- [32001]={
- ["name"]="양파 헤드 파편",
- ["desc"]="양파 헤드 파편, 다 모으면 양파 헤드를 활성화하거나 업그레이드할 수 있습니다."
+ [25001]={
+
},
[33001]={
- ["name"]="아기 노루 파편",
- ["desc"]="아기 노루 파편, 다 모으면 아기 노루를 활성화하거나 업그레이드할 수 있습니다."
- },
- [33002]={
- ["name"]="팀버울프 파편",
- ["desc"]="팀버울프 파편, 다 모으면 팀버울프를 활성화하거나 업그레이드할 수 있습니다."
- },
- [34001]={
- ["name"]="뮬란 파편",
- ["desc"]="뮬란 파편, 다 모으면 뮬란를 활성화하거나 업그레이드할 수 있습니다."
- },
- [34002]={
- ["name"]="인큐버스 파편",
- ["desc"]="인큐버스 파편, 다 모으면 인큐버스를 활성화하거나 업그레이드할 수 있습니다."
- },
- [34003]={
- ["name"]="닌자 필 파편",
- ["desc"]="닌자 필 파편, 다 모으면 닌자 필를 활성화하거나 업그레이드할 수 있습니다."
- },
- [42001]={
- ["name"]="얼음의 심장 파편",
- ["desc"]="얼음의 심장 파편, 다 모으면 얼음의 심장를 활성화하거나 업그레이드할 수 있습니다."
+
},
[43001]={
- ["name"]="얼음의 여왕 파편",
- ["desc"]="얼음의 여왕 파편, 다 모으면 얼음의 여왕를 활성화하거나 업그레이드할 수 있습니다."
- },
- [43002]={
- ["name"]="레이븐 파편",
- ["desc"]="레이븐 파편, 다 모으면 레이븐를 활성화하거나 업그레이드할 수 있습니다."
- },
- [44001]={
- ["name"]="프로스트 마녀 파편",
- ["desc"]="프로스트 마녀 파편, 다 모으면 프로스트 마녀를 활성화하거나 업그레이드할 수 있습니다."
- },
- [44002]={
- ["name"]="클레오파트라 파편",
- ["desc"]="클레오파트라 파편, 다 모으면 클레오파트라를 활성화하거나 업그레이드할 수 있습니다."
- },
- [44003]={
- ["name"]="달의 마법사 파편",
- ["desc"]="달의 마법사 파편, 다 모으면 달의 마법사를 활성화하거나 업그레이드할 수 있습니다."
- },
- [52001]={
- ["name"]="닌자 룬 파편",
- ["desc"]="닌자 룬 파편, 다 모으면 닌자 룬를 활성화하거나 업그레이드할 수 있습니다."
+
},
[53001]={
- ["name"]="마녀 키키 파편",
- ["desc"]="마녀 키키 파편, 다 모으면 마녀 키키를 활성화하거나 업그레이드할 수 있습니다."
- },
- [53002]={
- ["name"]="소울 헌터 파편",
- ["desc"]="소울 헌터 파편, 다 모으면 소울 헌터를 활성화하거나 업그레이드할 수 있습니다."
- },
- [54001]={
- ["name"]="칼날 공주 파편",
- ["desc"]="칼날 공주 파편, 다 모으면 칼날 공주를 활성화하거나 업그레이드할 수 있습니다."
- },
- [54002]={
- ["name"]="반짝이는 마법사 파편",
- ["desc"]="반짝이는 마법사 파편, 다 모으면 반짝이는 마법사를 활성화하거나 업그레이드할 수 있습니다."
- },
- [54003]={
- ["name"]="타락한 기사 파편",
- ["desc"]="타락한 기사 파편, 다 모으면 타락한 기사를 활성화하거나 업그레이드할 수 있습니다."
- },
- [1400201]={
- ["name"]="해변의 왕자",
- ["desc"]="판다의 새 옷"
- },
- [3400101]={
- ["name"]="반짝이는 아침 이슬",
- ["desc"]="뮬란의 새 옷"
- },
- [3400102]={
- ["name"]="다크 엘프 퀸",
- ["desc"]="다크 엘프 퀸"
- },
- [5300101]={
- ["name"]="빨간 망토",
- ["desc"]="마녀 키키의 새 옷"
- },
- [5400101]={
- ["name"]="날아오르는 춤",
- ["desc"]="나비의 새 옷"
- },
- [2300201]={
- ["name"]="어둠의 검사",
- ["desc"]="에리아 새 옷"
- },
- [4400201]={
- ["name"]="초승달 여왕",
- ["desc"]="클레오파트라 새 옷"
- },
- [5400401]={
- ["name"]="다크문 발키리",
- ["desc"]="발키리 새 옷"
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/item.lua b/lua/app/config/strings/pt/item.lua
index 3fe0ae2c..2a7a8ef3 100644
--- a/lua/app/config/strings/pt/item.lua
+++ b/lua/app/config/strings/pt/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="Concha Suprema",
["desc"]="Concha reverenciada como uma relíquia, irradiando uma luz sagrada."
},
- [12001]={
- ["name"]="Fragmento de Dançarina",
- ["desc"]="Fragmento de Dançarina, necessário para ativar ou melhorar."
- },
[13001]={
- ["name"]="Fragmento de Claude",
- ["desc"]="Fragmento de Claude, necessário para ativar ou melhorar."
- },
- [13002]={
- ["name"]="Fragmento do Ignífico",
- ["desc"]="Fragmento do Ignífico, necessário para ativar ou melhorar."
+
},
[14001]={
- ["name"]="Fragmento de Alexandre",
- ["desc"]="Fragmento de Alexandre, necessário para ativar ou melhorar."
+
},
- [14002]={
- ["name"]="Fragmento do Panda",
- ["desc"]="Fragmento do Panda, necessário para ativar ou melhorar."
+ [15001]={
+
},
- [14003]={
- ["name"]="Fragmento de Serviçal do Demônio",
- ["desc"]="Fragmento de Serviçal do Demônio, necessário para ativar ou melhorar."
+ [15002]={
+
},
- [22001]={
- ["name"]="Fragmento de Senhorita dos Gumes",
- ["desc"]="Fragmento de Senhorita dos Gumes, necessário para ativar ou melhorar."
+ [16001]={
+
},
[23001]={
- ["name"]="Fragmento de Bárbaro",
- ["desc"]="Fragmento de Bárbaro, necessário para ativar ou melhorar."
- },
- [23002]={
- ["name"]="Fragmento de Ária",
- ["desc"]="Fragmento de Ária, necessário para ativar ou melhorar."
+
},
[24001]={
- ["name"]="Fragmento de Espadachim Titânico",
- ["desc"]="Fragmento de Espadachim Titânico, necessário para ativar ou melhorar."
+
},
- [24002]={
- ["name"]="Fragmento de Thor",
- ["desc"]="Fragmento de Thor, necessário para ativar ou melhorar."
- },
- [24003]={
- ["name"]="Fragmento do Vândalo",
- ["desc"]="Fragmento do Vândalo, necessário para ativar ou melhorar."
- },
- [32001]={
- ["name"]="Fragmento de Cabeça de Cebola",
- ["desc"]="Fragmento de Cabeça de Cebola, necessário para ativar ou melhorar."
+ [25001]={
+
},
[33001]={
- ["name"]="Fragmento de Cervinho",
- ["desc"]="Fragmento de Cervinho, necessário para ativar ou melhorar."
- },
- [33002]={
- ["name"]="Fragmento de Lobo das Matas",
- ["desc"]="Fragmento de Lobo das Matas, necessário para ativar ou melhorar."
- },
- [34001]={
- ["name"]="Fragmento de Mulan",
- ["desc"]="Fragmento de Mulan, necessário para ativar ou melhorar."
- },
- [34002]={
- ["name"]="Fragmento do Súcubo",
- ["desc"]="Fragmento do Súcubo, necessário para ativar ou melhorar."
- },
- [34003]={
- ["name"]="Fragmento de Ninja Phil",
- ["desc"]="Fragmento de Ninja Phil, necessário para ativar ou melhorar."
- },
- [42001]={
- ["name"]="Fragmento de Alma Glacial",
- ["desc"]="Fragmento de Alma Glacial, necessário para ativar ou melhorar."
+
},
[43001]={
- ["name"]="Fragmento de Diamond",
- ["desc"]="Fragmento de Diamond, necessário para ativar ou melhorar."
- },
- [43002]={
- ["name"]="Fragmento de Eileen",
- ["desc"]="Fragmento de Eileen, necessário para ativar ou melhorar."
- },
- [44001]={
- ["name"]="Fragmento de Fada Gelice",
- ["desc"]="Fragmento de Fada Gelice, necessário para ativar ou melhorar."
- },
- [44002]={
- ["name"]="Fragmento de Cleópatra",
- ["desc"]="Fragmento de Cleópatra, necessário para ativar ou melhorar."
- },
- [44003]={
- ["name"]="Fragmento do Mago da Lua",
- ["desc"]="Fragmento do Mago da Lua, necessário para ativar ou melhorar."
- },
- [52001]={
- ["name"]="Fragmento de Luninja",
- ["desc"]="Fragmento de Luninja, necessário para ativar ou melhorar."
+
},
[53001]={
- ["name"]="Fragmento de Feiticeira Kiki",
- ["desc"]="Fragmento de Feiticeira Kiki, necessário para ativar ou melhorar."
- },
- [53002]={
- ["name"]="Fragmento de Caçador de Almas",
- ["desc"]="Fragmento de Caçador de Almas, necessário para ativar ou melhorar."
- },
- [54001]={
- ["name"]="Fragmento de Princesa da Lâmina",
- ["desc"]="Fragmento de Princesa da Lâmina, necessário para ativar ou melhorar."
- },
- [54002]={
- ["name"]="Fragmento do Mago do Brilho",
- ["desc"]="Fragmento do Mago do Brilho, necessário para ativar ou melhorar."
- },
- [54003]={
- ["name"]="Fragmento do Cavaleiro Caído",
- ["desc"]="Fragmento do Cavaleiro Caído, necessário para ativar ou melhorar."
- },
- [1400201]={
- ["name"]="Rei da Praia",
- ["desc"]="A nova roupa do Panda."
- },
- [3400101]={
- ["name"]="Sol e Orvalho",
- ["desc"]="A nova roupa de Mulan."
- },
- [3400102]={
- ["name"]="Rainha dos Elfos Noturnos",
- ["desc"]="Rainha dos Elfos Noturnos"
- },
- [5300101]={
- ["name"]="Chapeuzinho Vermelho",
- ["desc"]="A nova roupa da Feiticeira Kiki."
- },
- [5400101]={
- ["name"]="Dança Fluida",
- ["desc"]="A nova roupa da Borboleta."
- },
- [2300201]={
- ["name"]="Cavaleiro Sombria",
- ["desc"]="A nova roupa da Ária."
- },
- [4400201]={
- ["name"]="Rainha do Crescente",
- ["desc"]="A nova roupa da Cleópatra."
- },
- [5400401]={
- ["name"]="Armipotente da Lua Sombria",
- ["desc"]="A nova roupa da Valquíria."
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
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 191266ff..30e05b38 100644
--- a/lua/app/config/strings/ru/item.lua
+++ b/lua/app/config/strings/ru/item.lua
@@ -286,132 +286,42 @@ local item = {
},
[1030]={
- },
- [12001]={
-
},
[13001]={
- },
- [13002]={
-
},
[14001]={
},
- [14002]={
+ [15001]={
},
- [14003]={
+ [15002]={
},
- [22001]={
+ [16001]={
},
[23001]={
- },
- [23002]={
-
},
[24001]={
},
- [24002]={
-
- },
- [24003]={
-
- },
- [32001]={
+ [25001]={
},
[33001]={
- },
- [33002]={
-
- },
- [34001]={
-
- },
- [34002]={
-
- },
- [34003]={
-
- },
- [42001]={
-
},
[43001]={
- },
- [43002]={
-
- },
- [44001]={
-
- },
- [44002]={
-
- },
- [44003]={
-
- },
- [52001]={
-
},
[53001]={
- },
- [53002]={
-
- },
- [54001]={
-
- },
- [54002]={
-
- },
- [54003]={
-
- },
- [1400201]={
-
- },
- [3400101]={
-
- },
- [3400102]={
-
- },
- [5300101]={
-
- },
- [5400101]={
-
- },
- [2300201]={
-
- },
- [4400201]={
-
- },
- [5400401]={
-
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
-
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/item.lua b/lua/app/config/strings/th/item.lua
index a4715c27..f2e35042 100644
--- a/lua/app/config/strings/th/item.lua
+++ b/lua/app/config/strings/th/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="เปลือกศักดิ์สิทธิ์",
["desc"]="เปลือกที่ถูกถือเป็นสิ่งศักดิ์สิทธิ์ เปล่งแสงศักดิ์สิทธิ์"
},
- [12001]={
- ["name"]="เศษสาวเต้น",
- ["desc"]="เศษสาวเต้น รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
[13001]={
- ["name"]="เศษคลอดด์",
- ["desc"]="เศษคลอดด์ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [13002]={
- ["name"]="เศษไฟร้อน",
- ["desc"]="เศษไฟร้อน รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+
},
[14001]={
- ["name"]="เศษอเล็กซานเดอร์",
- ["desc"]="เศษอเล็กซานเดอร์ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+
},
- [14002]={
- ["name"]="เศษแพนด้า",
- ["desc"]="เศษอเล็กซานเดอร์ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+ [15001]={
+
},
- [14003]={
- ["name"]="เศษคนรับใช้ปีศาจ",
- ["desc"]="เศษคนรับใช้ปีศาจ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+ [15002]={
+
},
- [22001]={
- ["name"]="เศษดาบสาว",
- ["desc"]="เศษดาบสาว รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+ [16001]={
+
},
[23001]={
- ["name"]="เศษคนเถื่อน",
- ["desc"]="เศษคนเถื่อน รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [23002]={
- ["name"]="เศษเอ่ยา",
- ["desc"]="เศษเอ่ยา รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+
},
[24001]={
- ["name"]="เศษเด็กมารดาบ",
- ["desc"]="เศษเด็กมารดาบ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+
},
- [24002]={
- ["name"]="เศษโซล",
- ["desc"]="เศษโซล รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [24003]={
- ["name"]="เศษเฟย",
- ["desc"]="เศษเฟย รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [32001]={
- ["name"]="เศษหัวหอม",
- ["desc"]="เศษหัวหอม รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+ [25001]={
+
},
[33001]={
- ["name"]="เศษกวาง",
- ["desc"]="เศษกวาง รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [33002]={
- ["name"]="เศษหมาป่าป่า",
- ["desc"]="เศษหมาป่าป่า รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [34001]={
- ["name"]="เศษมู่หลาน",
- ["desc"]="เศษมู่หลาน รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [34002]={
- ["name"]="เศษฝันร้าย",
- ["desc"]="เศษฝันร้าย รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [34003]={
- ["name"]="เศษนินจาฟิล",
- ["desc"]="เศษนินจาฟิล รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [42001]={
- ["name"]="เศษหัวใจน้ำแข็ง",
- ["desc"]="เศษหัวใจน้ำแข็ง รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+
},
[43001]={
- ["name"]="เศษสาวน้ำแข็ง",
- ["desc"]="เศษสาวน้ำแข็ง รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [43002]={
- ["name"]="เศษสาวอีกา",
- ["desc"]="เศษสาวอีกา รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [44001]={
- ["name"]="เศษสาวมารน้ำแข็ง",
- ["desc"]="เศษสาวมารน้ำแข็ง รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [44002]={
- ["name"]="เศษคลีโอพัตรา",
- ["desc"]="เศษคลีโอพัตรา รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [44003]={
- ["name"]="เศษนักเวทลูน่า",
- ["desc"]="เศษนักเวทลูน่า รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [52001]={
- ["name"]="เศษนินจาเร็น",
- ["desc"]="เศษนินจาเร็น รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
+
},
[53001]={
- ["name"]="เศษแม่มดกีกี้",
- ["desc"]="เศษแม่มดกีกี้ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [53002]={
- ["name"]="เศษนักล่าวิญญาณ",
- ["desc"]="เศษนักล่าวิญญาณ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [54001]={
- ["name"]="เศษเจ้าหญิงดาบ",
- ["desc"]="เศษเจ้าหญิงดาบ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [54002]={
- ["name"]="เศษนักเวทแวบวับ",
- ["desc"]="เศษนักเวทแวบวับ รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [54003]={
- ["name"]="เศษอัศวินชั่วร้าย",
- ["desc"]="เศษอัศวินชั่วร้าย รวบรวมครบจะเปิดใช้งานหรืออัปเลเวลได้"
- },
- [1400201]={
- ["name"]="ราชาชายหาด",
- ["desc"]="ชุดใหม่ของแพนด้า"
- },
- [3400101]={
- ["name"]="น้ำค้างรุ่งสาง",
- ["desc"]="ชุดใหม่ของมู่หลาน"
- },
- [3400102]={
- ["name"]="ราชินีเอลฟ์มืด",
- ["desc"]="ราชินีเอลฟ์มืด"
- },
- [5300101]={
- ["name"]="หนูน้อยหมวกแดง",
- ["desc"]="ชุดใหม่ของแม่มดกีกี้"
- },
- [5400101]={
- ["name"]="เยื้องกรายเต้นรำ",
- ["desc"]="ชุดใหม่ของผีเสื้อ"
- },
- [2300201]={
- ["name"]="นักดาบสีดำ",
- ["desc"]="ชุดใหม่ของเอ่ยา"
- },
- [4400201]={
- ["name"]="ราชินีนิวมูน",
- ["desc"]="ชุดใหม่ของคลีโอพัตรา"
- },
- [5400401]={
- ["name"]="เทพบู๊พระจันทร์มืด",
- ["desc"]="ชุดใหม่ของวาลคิรี"
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/item.lua b/lua/app/config/strings/vi/item.lua
index 66a65aec..2fbbe945 100644
--- a/lua/app/config/strings/vi/item.lua
+++ b/lua/app/config/strings/vi/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="Vỏ Chí Thánh",
["desc"]="Vỏ sỏ được tôn làm thánh vật, tỏa ra ánh sáng thần thánh."
},
- [12001]={
- ["name"]="Mảnh Vũ Cơ",
- ["desc"]="Mảnh Vũ Cơ, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
[13001]={
- ["name"]="Mảnh Cloud",
- ["desc"]="Mảnh Cloud, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [13002]={
- ["name"]="Mảnh Blaze",
- ["desc"]="Mảnh Blaze, thu thập đủ được kích hoạt hoặc tăng cấp."
+
},
[14001]={
- ["name"]="Mảnh Alexander",
- ["desc"]="Mảnh Alexander, thu thập đủ được kích hoạt hoặc tăng cấp."
+
},
- [14002]={
- ["name"]="Mảnh Panda",
- ["desc"]="Mảnh Panda, thu thập đủ được kích hoạt hoặc tăng cấp."
+ [15001]={
+
},
- [14003]={
- ["name"]="Mảnh Incubus",
- ["desc"]="Mảnh Incubus, thu thập đủ được kích hoạt hoặc tăng cấp."
+ [15002]={
+
},
- [22001]={
- ["name"]="Mảnh Irelia",
- ["desc"]="Mảnh Irelia, thu thập đủ được kích hoạt hoặc tăng cấp."
+ [16001]={
+
},
[23001]={
- ["name"]="Mảnh Barbarian",
- ["desc"]="Mảnh Barbarian, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [23002]={
- ["name"]="Mảnh Erya",
- ["desc"]="Mảnh Erya, thu thập đủ được kích hoạt hoặc tăng cấp."
+
},
[24001]={
- ["name"]="Mảnh Sword Imp",
- ["desc"]="Mảnh Sword Imp, thu thập đủ được kích hoạt hoặc tăng cấp."
+
},
- [24002]={
- ["name"]="Mảnh Thor",
- ["desc"]="Mảnh Thor, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [24003]={
- ["name"]="Mảnh Tobi",
- ["desc"]="Mảnh Tobi, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [32001]={
- ["name"]="Mảnh Onion",
- ["desc"]="Mảnh Onion, thu thập đủ được kích hoạt hoặc tăng cấp."
+ [25001]={
+
},
[33001]={
- ["name"]="Mảnh Enchantress",
- ["desc"]="Mảnh Enchantress, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [33002]={
- ["name"]="Mảnh Sói Rừng",
- ["desc"]="Mảnh Sói Rừng, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [34001]={
- ["name"]="Mảnh Mộc Lan",
- ["desc"]="Mảnh Mộc Lan, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [34002]={
- ["name"]="Mảnh Incubus",
- ["desc"]="Mảnh Incubus, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [34003]={
- ["name"]="Mảnh Ninja Phil",
- ["desc"]="Mảnh Ninja Phil, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [42001]={
- ["name"]="Mảnh Frozen Heart",
- ["desc"]="Mảnh Frozen Heart, thu thập đủ được kích hoạt hoặc tăng cấp."
+
},
[43001]={
- ["name"]="Mảnh Ice Queen",
- ["desc"]="Mảnh Ice Queen, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [43002]={
- ["name"]="Mảnh Crow",
- ["desc"]="Mảnh Crow, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [44001]={
- ["name"]="Mảnh Ashe",
- ["desc"]="Mảnh Ashe, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [44002]={
- ["name"]="Mảnh Cleopatra",
- ["desc"]="Mảnh Cleopatra, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [44003]={
- ["name"]="Mảnh Pháp Sư Moon",
- ["desc"]="Mảnh Pháp Sư Moon, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [52001]={
- ["name"]="Mảnh Ninja Jay",
- ["desc"]="Mảnh Ninja Jay, thu thập đủ được kích hoạt hoặc tăng cấp."
+
},
[53001]={
- ["name"]="Mảnh Phù Thủy Kiki",
- ["desc"]="Mảnh Phù Thủy Kiki, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [53002]={
- ["name"]="Mảnh Thợ Săn Linh Hồn",
- ["desc"]="Mảnh Thợ Săn Linh Hồn, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [54001]={
- ["name"]="Mảnh Đao Cơ",
- ["desc"]="Mảnh Đao Cơ, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [54002]={
- ["name"]="Mảnh Pháp Sư Blink",
- ["desc"]="Mảnh Pháp Sư Blink, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [54003]={
- ["name"]="Mảnh Fallen Knight",
- ["desc"]="Mảnh Fallen Knight, thu thập đủ được kích hoạt hoặc tăng cấp."
- },
- [1400201]={
- ["name"]="Vua Bãi Biển",
- ["desc"]="Quần áo mới của Panda."
- },
- [3400101]={
- ["name"]="Ánh Nắng Sương Sớm",
- ["desc"]="Quần áo mới của Mộc Lan."
- },
- [3400102]={
- ["name"]="Nữ Hoàng Dark Elf",
- ["desc"]="Nữ Hoàng Dark Elf"
- },
- [5300101]={
- ["name"]="Cô bé quàng khăn đỏ",
- ["desc"]="Quần áo mới của Phù Thủy Kiki."
- },
- [5400101]={
- ["name"]="Nhảy Múa Nhanh Nhẹn",
- ["desc"]="Quần áo mới của Bươm Bướm."
- },
- [2300201]={
- ["name"]="Hắc Kiếm Sĩ",
- ["desc"]="Quần áo mới của Erya."
- },
- [4400201]={
- ["name"]="Nữ Hoàng Trăng Non",
- ["desc"]="Quần áo mới của Cleopatra."
- },
- [5400401]={
- ["name"]="Võ Thần Ám Nguyệt",
- ["desc"]="Quần áo mới của Valkyrie."
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/item.lua b/lua/app/config/strings/zh/item.lua
index d98e0915..d2746212 100644
--- a/lua/app/config/strings/zh/item.lua
+++ b/lua/app/config/strings/zh/item.lua
@@ -383,169 +383,41 @@ local item = {
["name"]="至聖貝殼",
["desc"]="被尊為聖物的貝殼,散發出神聖的光芒。"
},
- [12001]={
- ["name"]="舞孃碎片",
- ["desc"]="舞孃碎片,集滿可啟用或升級。"
- },
[13001]={
- ["name"]="克勞德碎片",
- ["desc"]="克勞德碎片,集滿可啟用或升級。"
- },
- [13002]={
- ["name"]="火旺碎片",
- ["desc"]="火旺碎片,集滿可啟用或升級。"
+
},
[14001]={
- ["name"]="亞歷山大碎片",
- ["desc"]="亞歷山大碎片,集滿可啟用或升級。"
+
},
- [14002]={
- ["name"]="潘達碎片",
- ["desc"]="潘達碎片,集滿可啟用或升級。"
+ [15001]={
+
},
- [14003]={
- ["name"]="惡魔侍者碎片",
- ["desc"]="惡魔侍者碎片,集滿可啟用或升級。"
+ [15002]={
+
},
- [22001]={
- ["name"]="刀妹碎片",
- ["desc"]="刀妹碎片,集滿可啟用或升級。"
+ [16001]={
+
},
[23001]={
- ["name"]="野蠻人碎片",
- ["desc"]="野蠻人碎片,集滿可啟用或升級。"
- },
- [23002]={
- ["name"]="二丫碎片",
- ["desc"]="二丫碎片,集滿可啟用或升級。"
+
},
[24001]={
- ["name"]="巨劍魔童碎片",
- ["desc"]="巨劍魔童碎片,集滿可啟用或升級。"
+
},
- [24002]={
- ["name"]="索爾碎片",
- ["desc"]="索爾碎片,集滿可啟用或升級。"
- },
- [24003]={
- ["name"]="阿飛碎片",
- ["desc"]="阿飛碎片,集滿可啟用或升級。"
- },
- [32001]={
- ["name"]="洋蔥頭碎片",
- ["desc"]="洋蔥頭碎片,集滿可啟用或升級。"
+ [25001]={
+
},
[33001]={
- ["name"]="小鹿碎片",
- ["desc"]="小鹿碎片,集滿可啟用或升級。"
- },
- [33002]={
- ["name"]="森林之狼碎片",
- ["desc"]="森林之狼碎片,集滿可啟用或升級。"
- },
- [34001]={
- ["name"]="木蘭碎片",
- ["desc"]="木蘭碎片,集滿可啟用或升級。"
- },
- [34002]={
- ["name"]="夢魔碎片",
- ["desc"]="夢魔碎片,集滿可啟用或升級。"
- },
- [34003]={
- ["name"]="忍者菲爾碎片",
- ["desc"]="忍者菲爾碎片,集滿可啟用或升級。"
- },
- [42001]={
- ["name"]="冰心碎片",
- ["desc"]="冰心碎片,集滿可啟用或升級。"
+
},
[43001]={
- ["name"]="冰女碎片",
- ["desc"]="冰女碎片,集滿可啟用或升級。"
- },
- [43002]={
- ["name"]="烏鴉姐碎片",
- ["desc"]="烏鴉姐碎片,集滿可啟用或升級。"
- },
- [44001]={
- ["name"]="寒冰妖姬碎片",
- ["desc"]="寒冰妖姬碎片,集滿可啟用或升級。"
- },
- [44002]={
- ["name"]="豔后碎片",
- ["desc"]="豔后碎片,集滿可啟用或升級。"
- },
- [44003]={
- ["name"]="月之法師碎片",
- ["desc"]="月之法師碎片,集滿可啟用或升級。"
- },
- [52001]={
- ["name"]="忍者倫碎片",
- ["desc"]="忍者倫碎片,集滿可啟用或升級。"
+
},
[53001]={
- ["name"]="魔女琪琪碎片",
- ["desc"]="魔女琪琪碎片,集滿可啟用或升級。"
- },
- [53002]={
- ["name"]="靈魂獵手碎片",
- ["desc"]="靈魂獵手碎片,集滿可啟用或升級。"
- },
- [54001]={
- ["name"]="刀姬碎片",
- ["desc"]="刀姬碎片,集滿可啟用或升級。"
- },
- [54002]={
- ["name"]="閃爍法師碎片",
- ["desc"]="閃爍法師碎片,集滿可啟用或升級。"
- },
- [54003]={
- ["name"]="墮落騎士碎片",
- ["desc"]="墮落騎士碎片,集滿可啟用或升級。"
- },
- [1400201]={
- ["name"]="沙灘王者",
- ["desc"]="潘達的新服裝。"
- },
- [3400101]={
- ["name"]="驕陽晨露",
- ["desc"]="花木蘭的新服裝。"
- },
- [3400102]={
- ["name"]="暗精靈女王",
- ["desc"]="暗精靈女王"
- },
- [5300101]={
- ["name"]="小紅帽",
- ["desc"]="魔女琪琪的新服裝。"
- },
- [5400101]={
- ["name"]="翩然起舞",
- ["desc"]="蝴蝶的新服裝。"
- },
- [2300201]={
- ["name"]="黑劍士",
- ["desc"]="二丫的新服裝。"
- },
- [4400201]={
- ["name"]="新月女王",
- ["desc"]="豔后的新服裝。"
- },
- [5400401]={
- ["name"]="暗月武神",
- ["desc"]="女武神的新服裝。"
- },
- [4400101]={
-
- },
- [5400301]={
-
- },
- [5400201]={
}
}
local config = {
-data=item,count=137
+data=item,count=107
}
return config
\ No newline at end of file
diff --git a/lua/app/userdata/hero/hero_data.lua b/lua/app/userdata/hero/hero_data.lua
index 44edc5e0..e2c6a42d 100644
--- a/lua/app/userdata/hero/hero_data.lua
+++ b/lua/app/userdata/hero/hero_data.lua
@@ -43,9 +43,7 @@ function HeroData:init(data)
end
end
- local heroCfg = ConfigManager:getConfig("hero")
- for heroId, info in pairs(heroCfg) do
- local entity = self:getHeroById(heroId)
+ for heroId, entity in pairs(self.heroes) do
if entity and entity:isActived() then
local matchType = entity:getMatchType()
if not self.matchActiveHeroMap[matchType] then
@@ -53,19 +51,19 @@ function HeroData:init(data)
end
self.matchActiveHeroMap[matchType][entity:getCfgId()] = true
end
- if info.unlock_chapter and info.is_show == 1 then
- self.heroChapterUnlockMap[info.unlock_chapter] = true
- end
- if info.unlock_chapter then
- self.heroChapterUnlockMapBi[info.unlock_chapter] = true
- end
+ -- if info.unlock_chapter and info.is_show == 1 then
+ -- self.heroChapterUnlockMap[info.unlock_chapter] = true
+ -- end
+ -- if info.unlock_chapter then
+ -- self.heroChapterUnlockMapBi[info.unlock_chapter] = true
+ -- end
- if info.unlock_arena and info.is_show == 1 then
- self.heroDanUnlockMap[info.unlock_arena] = true
- end
- if info.unlock_arena then
- self.heroDanUnlockMapBi[info.unlock_arena] = true
- end
+ -- if info.unlock_arena and info.is_show == 1 then
+ -- self.heroDanUnlockMap[info.unlock_arena] = true
+ -- end
+ -- if info.unlock_arena then
+ -- self.heroDanUnlockMapBi[info.unlock_arena] = true
+ -- end
end
self.showHeroUnlockChapter = 0
self.showHeroUnlockDan = 0
diff --git a/lua/app/userdata/hero/hero_entity.lua b/lua/app/userdata/hero/hero_entity.lua
index d8139bff..ab8603bc 100644
--- a/lua/app/userdata/hero/hero_entity.lua
+++ b/lua/app/userdata/hero/hero_entity.lua
@@ -448,14 +448,15 @@ function HeroEntity:isUnlock()
end
function HeroEntity:isActived()
- return self.data.lv >= self:getBeginLv()
+ -- return self.data.lv >= self:getBeginLv()
+ return self.data.lv >= 0
end
function HeroEntity:getLvUpMaterials()
local lv = self.data.lv + 1
- if lv < self:getBeginLv() then
- lv = self:getBeginLv()
- end
+ -- if lv < self:getBeginLv() then
+ -- lv = self:getBeginLv()
+ -- end
local nextLvInfo = ConfigManager:getConfig("hero_level")[lv]
if not nextLvInfo then
return
@@ -511,7 +512,9 @@ function HeroEntity:getActiveRogueCount()
if not lvInfo then
return 0
end
- return lvInfo.unlock_skill
+ --@TODO 123123
+ -- return lvInfo.unlock_skill
+ return 0
end
function HeroEntity:getUnlockRogueId()
From 6f2dc436f71ed026b458c427fcaf8dd977b74c3a Mon Sep 17 00:00:00 2001
From: puxuan <413323644@qq.com>
Date: Sat, 24 May 2025 14:24:19 +0800
Subject: [PATCH 9/9] config
---
lua/app/config/chapter.lua | 7 -
lua/app/config/monster_base.lua | 244 ++++++++++++++--------------
lua/app/config/skill.lua | 3 +
lua/app/config/skin.lua | 94 +++++------
lua/app/config/strings/cn/skill.lua | 113 +++++--------
lua/app/config/strings/de/skill.lua | 73 ++-------
lua/app/config/strings/en/skill.lua | 113 +++++--------
lua/app/config/strings/es/skill.lua | 113 +++++--------
lua/app/config/strings/fr/skill.lua | 73 ++-------
lua/app/config/strings/id/skill.lua | 113 +++++--------
lua/app/config/strings/ja/skill.lua | 113 +++++--------
lua/app/config/strings/ko/skill.lua | 113 +++++--------
lua/app/config/strings/pt/skill.lua | 113 +++++--------
lua/app/config/strings/ru/skill.lua | 73 ++-------
lua/app/config/strings/th/skill.lua | 113 +++++--------
lua/app/config/strings/vi/skill.lua | 113 +++++--------
lua/app/config/strings/zh/skill.lua | 113 +++++--------
17 files changed, 593 insertions(+), 1104 deletions(-)
diff --git a/lua/app/config/chapter.lua b/lua/app/config/chapter.lua
index d1f7fba9..dd7585b3 100644
--- a/lua/app/config/chapter.lua
+++ b/lua/app/config/chapter.lua
@@ -14,13 +14,6 @@ local chapter = {
1,
5
},
- ["involved_skill"]={
- {
- 1,
- 2,
- 3
- }
- },
["not_involved_skill"]={
4,
5,
diff --git a/lua/app/config/monster_base.lua b/lua/app/config/monster_base.lua
index 8d4f8f46..297ba5d9 100644
--- a/lua/app/config/monster_base.lua
+++ b/lua/app/config/monster_base.lua
@@ -50,332 +50,332 @@ local monster_base = {
["model_ui"]=1.0
},
[10012]={
- ["model_id"]="m10012",
+ ["model_id"]="m10001",
["body"]=2,
["model_ui"]=1.0
},
[10013]={
- ["model_id"]="m10013",
+ ["model_id"]="m10002",
["body"]=2,
["model_ui"]=1.0
},
[10014]={
- ["model_id"]="m10014",
+ ["model_id"]="m10003",
["body"]=2,
["model_ui"]=1.0
},
[10015]={
- ["model_id"]="m10015",
+ ["model_id"]="m10004",
["body"]=2,
["model_ui"]=1.0
},
[10016]={
- ["model_id"]="m10016",
+ ["model_id"]="m10005",
["body"]=2,
["model_ui"]=1.0
},
[10017]={
- ["model_id"]="m10017",
+ ["model_id"]="m10006",
["body"]=2,
["model_ui"]=1.0
},
[10018]={
- ["model_id"]="m10018",
+ ["model_id"]="m10007",
["body"]=2,
["model_ui"]=1.0
},
[10019]={
- ["model_id"]="m10019",
+ ["model_id"]="m10008",
["body"]=2,
["model_ui"]=1.0
},
[10020]={
- ["model_id"]="m10020",
+ ["model_id"]="m10009",
["body"]=3,
["model_ui"]=1.0
},
[10021]={
- ["model_id"]="m10021",
+ ["model_id"]="m10010",
["body"]=3,
["model_ui"]=1.0
},
[10022]={
- ["model_id"]="m10022",
+ ["model_id"]="m10001",
["body"]=3,
["model_ui"]=1.0
},
[10023]={
- ["model_id"]="m10023",
+ ["model_id"]="m10002",
["body"]=3,
["model_ui"]=1.0
},
[10024]={
- ["model_id"]="m10024",
+ ["model_id"]="m10003",
["body"]=2,
["model_ui"]=1.0
},
[10025]={
- ["model_id"]="m10025",
+ ["model_id"]="m10004",
["body"]=2,
["model_ui"]=1.0
},
[10026]={
- ["model_id"]="m10026",
+ ["model_id"]="m10005",
["body"]=2,
["model_ui"]=1.0
},
[10027]={
- ["model_id"]="m10027",
+ ["model_id"]="m10006",
["body"]=2,
["model_ui"]=1.0
},
[10028]={
- ["model_id"]="m10028",
+ ["model_id"]="m10007",
["body"]=2,
["model_ui"]=1.0
},
[10029]={
- ["model_id"]="m10029",
+ ["model_id"]="m10008",
["body"]=2,
["model_ui"]=1.0
},
[10030]={
- ["model_id"]="m10030",
+ ["model_id"]="m10009",
["body"]=2,
["model_ui"]=1.0
},
[10031]={
- ["model_id"]="m10031",
+ ["model_id"]="m10010",
["body"]=2,
["model_ui"]=1.0
},
[10032]={
- ["model_id"]="m10032",
+ ["model_id"]="m10001",
["body"]=2,
["model_ui"]=1.0
},
[10033]={
- ["model_id"]="m10033",
+ ["model_id"]="m10002",
["body"]=2,
["model_ui"]=1.0
},
[10034]={
- ["model_id"]="m10034",
+ ["model_id"]="m10003",
["body"]=2,
["model_ui"]=1.0
},
[10035]={
- ["model_id"]="m10035",
+ ["model_id"]="m10004",
["body"]=2,
["model_ui"]=1.0
},
[10036]={
- ["model_id"]="m10036",
+ ["model_id"]="m10005",
["body"]=2,
["model_ui"]=1.0
},
[10037]={
- ["model_id"]="m10037",
+ ["model_id"]="m10006",
["body"]=2,
["model_ui"]=1.0
},
[10038]={
- ["model_id"]="m10038",
+ ["model_id"]="m10007",
["body"]=2,
["model_ui"]=1.0
},
[10039]={
- ["model_id"]="m10039",
+ ["model_id"]="m10008",
["body"]=2,
["model_ui"]=1.0
},
[10040]={
- ["model_id"]="m10040",
+ ["model_id"]="m10009",
["body"]=2,
["model_ui"]=1.0
},
[10041]={
- ["model_id"]="m10041",
+ ["model_id"]="m10010",
["body"]=2,
["model_ui"]=1.0
},
[10042]={
- ["model_id"]="m10042",
+ ["model_id"]="m10001",
["body"]=2,
["model_ui"]=1.0
},
[10043]={
- ["model_id"]="m10043",
+ ["model_id"]="m10002",
["body"]=2,
["model_ui"]=1.0
},
[10044]={
- ["model_id"]="m10044",
+ ["model_id"]="m10003",
["body"]=2,
["model_ui"]=1.0
},
[10045]={
- ["model_id"]="m10045",
+ ["model_id"]="m10004",
["body"]=2,
["model_ui"]=1.0
},
[10046]={
- ["model_id"]="m10046",
+ ["model_id"]="m10005",
["body"]=2,
["model_ui"]=1.0
},
[10047]={
- ["model_id"]="m10047",
+ ["model_id"]="m10006",
["body"]=2,
["model_ui"]=1.0
},
[10048]={
- ["model_id"]="m10048",
+ ["model_id"]="m10007",
["body"]=2,
["model_ui"]=1.0
},
[10049]={
- ["model_id"]="m10049",
+ ["model_id"]="m10008",
["body"]=2,
["model_ui"]=1.0
},
[10050]={
- ["model_id"]="m10050",
+ ["model_id"]="m10009",
["body"]=2,
["model_ui"]=1.0
},
[10051]={
- ["model_id"]="m10051",
+ ["model_id"]="m10010",
["body"]=2,
["model_ui"]=1.0
},
[10052]={
- ["model_id"]="m10052",
+ ["model_id"]="m10001",
["body"]=2,
["model_ui"]=1.0
},
[10053]={
- ["model_id"]="m10053",
+ ["model_id"]="m10002",
["body"]=3,
["model_ui"]=1.0
},
[10054]={
- ["model_id"]="m10054",
+ ["model_id"]="m10003",
["body"]=3,
["model_ui"]=1.0
},
[10055]={
- ["model_id"]="m10055",
+ ["model_id"]="m10004",
["body"]=2,
["model_ui"]=1.0
},
[10056]={
- ["model_id"]="m10056",
+ ["model_id"]="m10005",
["body"]=2,
["model_ui"]=1.0
},
[10057]={
- ["model_id"]="m10057",
+ ["model_id"]="m10006",
["body"]=2,
["model_ui"]=1.0
},
[10058]={
- ["model_id"]="m10058",
+ ["model_id"]="m10007",
["body"]=2,
["model_ui"]=1.0
},
[10059]={
- ["model_id"]="m10059",
+ ["model_id"]="m10008",
["body"]=2,
["model_ui"]=1.0
},
[10060]={
- ["model_id"]="m10060",
+ ["model_id"]="m10009",
["body"]=2,
["model_ui"]=1.0
},
[10061]={
- ["model_id"]="m10061",
+ ["model_id"]="m10010",
["body"]=2,
["model_ui"]=1.0
},
[10062]={
- ["model_id"]="m10062",
+ ["model_id"]="m10001",
["body"]=2,
["model_ui"]=1.0
},
[10063]={
- ["model_id"]="m10063",
+ ["model_id"]="m10002",
["body"]=2,
["model_ui"]=1.0
},
[10064]={
- ["model_id"]="m10064",
+ ["model_id"]="m10003",
["body"]=2,
["model_ui"]=1.0
},
[10065]={
- ["model_id"]="m10065",
+ ["model_id"]="m10004",
["body"]=2,
["model_ui"]=1.0
},
[10066]={
- ["model_id"]="m10066",
+ ["model_id"]="m10005",
["body"]=2,
["model_ui"]=1.0
},
[10067]={
- ["model_id"]="m10067",
+ ["model_id"]="m10006",
["body"]=2,
["model_ui"]=1.0
},
[10068]={
- ["model_id"]="m10068",
+ ["model_id"]="m10007",
["body"]=2,
["model_ui"]=1.0
},
[10069]={
- ["model_id"]="m10069",
+ ["model_id"]="m10008",
["body"]=2,
["model_ui"]=1.0
},
[10070]={
- ["model_id"]="m10070",
+ ["model_id"]="m10009",
["body"]=2,
["model_ui"]=1.0
},
[10071]={
- ["model_id"]="m10071",
+ ["model_id"]="m10010",
["body"]=2,
["model_ui"]=1.0
},
[10072]={
- ["model_id"]="m10072",
+ ["model_id"]="m10001",
["body"]=2,
["model_ui"]=1.0
},
[10073]={
- ["model_id"]="m10073",
+ ["model_id"]="m10002",
["body"]=2,
["model_ui"]=1.0
},
[10074]={
- ["model_id"]="m10074",
+ ["model_id"]="m10003",
["body"]=2,
["model_ui"]=1.0
},
[10075]={
- ["model_id"]="m10075",
+ ["model_id"]="m10004",
["body"]=2,
["model_ui"]=1.0
},
[10076]={
- ["model_id"]="m10076",
+ ["model_id"]="m10005",
["body"]=2,
["model_ui"]=1.0
},
[10077]={
- ["model_id"]="m10077",
+ ["model_id"]="m10006",
["body"]=2,
["model_ui"]=1.0
},
@@ -390,282 +390,282 @@ local monster_base = {
["model_ui"]=1.0
},
[20003]={
- ["model_id"]="m20003",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=0.8
},
[20004]={
- ["model_id"]="m20004",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20005]={
- ["model_id"]="m20005",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=0.8
},
[20006]={
- ["model_id"]="m20006",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20007]={
- ["model_id"]="m20007",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20008]={
- ["model_id"]="m20008",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20009]={
- ["model_id"]="m20009",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20010]={
- ["model_id"]="m20010",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20011]={
- ["model_id"]="m20011",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20012]={
- ["model_id"]="m20012",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.2
},
[20013]={
- ["model_id"]="m20013",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.2
},
[20014]={
- ["model_id"]="m20014",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20015]={
- ["model_id"]="m20015",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20016]={
- ["model_id"]="m20016",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.2
},
[20017]={
- ["model_id"]="m20017",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20018]={
- ["model_id"]="m20018",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20019]={
- ["model_id"]="m20019",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20020]={
- ["model_id"]="m20020",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20021]={
- ["model_id"]="m20021",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20022]={
- ["model_id"]="m20022",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20023]={
- ["model_id"]="m20023",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20024]={
- ["model_id"]="m20024",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20025]={
- ["model_id"]="m20025",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20026]={
- ["model_id"]="m20026",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20027]={
- ["model_id"]="m20027",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20028]={
- ["model_id"]="m20028",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20029]={
- ["model_id"]="m20029",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20030]={
- ["model_id"]="m20030",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20031]={
- ["model_id"]="m20031",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20032]={
- ["model_id"]="m20032",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20033]={
- ["model_id"]="m20033",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20034]={
- ["model_id"]="m20034",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20035]={
- ["model_id"]="m20035",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20036]={
- ["model_id"]="m20036",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20037]={
- ["model_id"]="m20037",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20038]={
- ["model_id"]="m20038",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20039]={
- ["model_id"]="m20039",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=0.8
},
[20040]={
- ["model_id"]="m20040",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=0.8
},
[20041]={
- ["model_id"]="m20041",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=0.8
},
[20042]={
- ["model_id"]="m20042",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=0.8
},
[20043]={
- ["model_id"]="m20043",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=0.8
},
[20044]={
- ["model_id"]="m20044",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20045]={
- ["model_id"]="m20045",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20046]={
- ["model_id"]="m20046",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20047]={
- ["model_id"]="m20047",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20048]={
- ["model_id"]="m20048",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20049]={
- ["model_id"]="m20049",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20050]={
- ["model_id"]="m20050",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20051]={
- ["model_id"]="m20051",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20052]={
- ["model_id"]="m20052",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20053]={
- ["model_id"]="m20053",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20054]={
- ["model_id"]="m20054",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20055]={
- ["model_id"]="m20055",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20056]={
- ["model_id"]="m20056",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
[20057]={
- ["model_id"]="m20057",
+ ["model_id"]="m20001",
["body"]=1,
["model_ui"]=1.0
},
[20058]={
- ["model_id"]="m20058",
+ ["model_id"]="m20002",
["body"]=1,
["model_ui"]=1.0
},
diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua
index eed6e207..c6e606db 100644
--- a/lua/app/config/skill.lua
+++ b/lua/app/config/skill.lua
@@ -5518,6 +5518,9 @@ local skill = {
["fx_self_mirror"]=400071
},
[5300120]={
+ ["buff_id"]={
+ "shield"
+ },
["energy"]=10,
["link"]=1,
["position"]=5,
diff --git a/lua/app/config/skin.lua b/lua/app/config/skin.lua
index 66f5989b..c59a4dcb 100644
--- a/lua/app/config/skin.lua
+++ b/lua/app/config/skin.lua
@@ -1,30 +1,30 @@
local skin = {
[12001]={
- ["model_id"]="p0005",
+ ["model_id"]="p0001",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=12001
},
[13001]={
- ["model_id"]="p0005",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=13001
},
[13002]={
- ["model_id"]="p0009",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=13002
},
[14001]={
- ["model_id"]="p0011",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=14001
},
[1400101]={
- ["model_id"]="p0036",
+ ["model_id"]="p0005",
["qlt"]=3,
["bonus"]={
{
@@ -50,13 +50,13 @@ local skin = {
}
},
[14002]={
- ["model_id"]="p0018",
+ ["model_id"]="p0001",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=14002
},
[1400201]={
- ["model_id"]="p0034",
+ ["model_id"]="p0002",
["qlt"]=3,
["bonus"]={
{
@@ -82,37 +82,37 @@ local skin = {
}
},
[14003]={
- ["model_id"]="p0028",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=14003
},
[14004]={
- ["model_id"]="p0037",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=14004
},
[22001]={
- ["model_id"]="p0002",
+ ["model_id"]="p0001",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=22001
},
[23001]={
- ["model_id"]="p0005",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=23001
},
[23002]={
- ["model_id"]="p0012",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=23002
},
[2300201]={
- ["model_id"]="p0042",
+ ["model_id"]="p0004",
["qlt"]=2,
["bonus"]={
{
@@ -138,13 +138,13 @@ local skin = {
}
},
[24001]={
- ["model_id"]="p0007",
+ ["model_id"]="p0005",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=24001
},
[2400101]={
- ["model_id"]="p0045",
+ ["model_id"]="p0001",
["qlt"]=3,
["bonus"]={
{
@@ -170,19 +170,19 @@ local skin = {
}
},
[24002]={
- ["model_id"]="p0017",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=24002
},
[24003]={
- ["model_id"]="p0031",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=24003
},
[24004]={
- ["model_id"]="p0039",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=24004
@@ -194,25 +194,25 @@ local skin = {
["hero_id"]=32001
},
[33001]={
- ["model_id"]="p0005",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=33001
},
[33002]={
- ["model_id"]="p0020",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=33002
},
[34001]={
- ["model_id"]="p0016",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=34001
},
[3400101]={
- ["model_id"]="p0033",
+ ["model_id"]="p0005",
["qlt"]=4,
["bonus"]={
{
@@ -238,7 +238,7 @@ local skin = {
}
},
[3400102]={
- ["model_id"]="p0046",
+ ["model_id"]="p0001",
["qlt"]=3,
["bonus"]={
{
@@ -264,49 +264,49 @@ local skin = {
}
},
[34002]={
- ["model_id"]="p0024",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=34002
},
[34003]={
- ["model_id"]="p0027",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=34003
},
[34004]={
- ["model_id"]="p0040",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=34004
},
[42001]={
- ["model_id"]="p0003",
+ ["model_id"]="p0001",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=42001
},
[43001]={
- ["model_id"]="p0022",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=43001
},
[43002]={
- ["model_id"]="p0021",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=43002
},
[44001]={
- ["model_id"]="p0008",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=44001
},
[4400101]={
- ["model_id"]="p0047",
+ ["model_id"]="p0005",
["qlt"]=3,
["bonus"]={
{
@@ -332,13 +332,13 @@ local skin = {
}
},
[44002]={
- ["model_id"]="p0025",
+ ["model_id"]="p0001",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=44002
},
[4400201]={
- ["model_id"]="p0044",
+ ["model_id"]="p0002",
["qlt"]=4,
["bonus"]={
{
@@ -364,31 +364,31 @@ local skin = {
}
},
[44003]={
- ["model_id"]="p0030",
+ ["model_id"]="p0003",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=44003
},
[44004]={
- ["model_id"]="p0038",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=44004
},
[52001]={
- ["model_id"]="p0004",
+ ["model_id"]="p0001",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=52001
},
[53001]={
- ["model_id"]="p0015",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=53001
},
[5300101]={
- ["model_id"]="p0035",
+ ["model_id"]="p0003",
["qlt"]=2,
["bonus"]={
{
@@ -414,19 +414,19 @@ local skin = {
}
},
[53002]={
- ["model_id"]="p0019",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=53002
},
[54001]={
- ["model_id"]="p0023",
+ ["model_id"]="p0005",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=54001
},
[5400101]={
- ["model_id"]="p0032",
+ ["model_id"]="p0001",
["qlt"]=4,
["bonus"]={
{
@@ -452,13 +452,13 @@ local skin = {
}
},
[54002]={
- ["model_id"]="p0026",
+ ["model_id"]="p0002",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=54002
},
[5400201]={
- ["model_id"]="p0049",
+ ["model_id"]="p0003",
["qlt"]=3,
["bonus"]={
{
@@ -484,13 +484,13 @@ local skin = {
}
},
[54003]={
- ["model_id"]="p0029",
+ ["model_id"]="p0004",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=54003
},
[5400301]={
- ["model_id"]="p0048",
+ ["model_id"]="p0005",
["qlt"]=3,
["bonus"]={
{
@@ -516,13 +516,13 @@ local skin = {
}
},
[54004]={
- ["model_id"]="p0041",
+ ["model_id"]="p0005",
["qlt"]=1,
["skin_point"]=0,
["hero_id"]=54004
},
[5400401]={
- ["model_id"]="p0043",
+ ["model_id"]="p0005",
["qlt"]=4,
["bonus"]={
{
diff --git a/lua/app/config/strings/cn/skill.lua b/lua/app/config/strings/cn/skill.lua
index 2b772217..85747ee4 100644
--- a/lua/app/config/strings/cn/skill.lua
+++ b/lua/app/config/strings/cn/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="舞步消散:沿横向消除5格,并造成一次技能伤害。"
- },
[1300120]={
- ["desc"]="巨剑旋风:额外造成多次技能伤害。"
- },
- [1300220]={
- ["desc"]="炎拳:沿纵向消除5格,并造成一次技能伤害,50%概率附加灼烧效果,2回合。"
+ ["desc"]="熔心:额外造成一次技能伤害。"
},
[1400120]={
- ["desc"]="钢铁重击:将周围4个元素变色,并造成多次大量技能伤害。"
+ ["desc"]="过热小莫:额外造成一次技能伤害。"
},
- [1400220]={
- ["desc"]="熊猫爆竹:额外造成一次巨量技能伤害。"
+ [1500120]={
+ ["desc"]="火花姬:额外造成4次技能伤害。"
},
- [2200120]={
- ["desc"]="拔刀斩:额外造成一次技能伤害。"
+ [1500220]={
+ ["desc"]="废铁老爹:额外造成4次大量技能伤害。"
+ },
+ [1600120]={
+ ["desc"]="血祭修女:额外造成4次大量技能伤害。"
},
[2300120]={
- ["desc"]="骨旋风:额外造成多次技能伤害。"
- },
- [2300220]={
- ["desc"]="幻影剑袭:使用后本次伤害提升,并额外造成多次大量技能伤害。"
+ ["desc"]="甲虫武士:额外造成一次技能伤害。"
},
[2400120]={
- ["desc"]="巨剑轰击:额外造成一次巨量技能伤害。"
+ ["desc"]="平底锅战神:额外造成一次技能伤害。"
},
- [2400220]={
- ["desc"]="雷神之锤:额外造成一次大量技能伤害。"
+ [2500120]={
+ ["desc"]="科技狼人:额外造成4次大量技能伤害。"
},
- [3200120]={
- ["desc"]="长枪突刺:额外造成一次技能伤害。"
+ [2500220]={
+ ["desc"]="电锤狂战:额外造成4次大量技能伤害。"
+ },
+ [2600120]={
+ ["desc"]="闪送雷神:额外造成4次巨量技能伤害。"
},
[3300120]={
- ["desc"]="急速治疗:使用后本次恢复生命。"
- },
- [3300220]={
- ["desc"]="狼袭瞬杀:使用后本次伤害提升,并造成多次技能伤害。"
+ ["desc"]="荒野镖客:额外造成一次技能伤害。"
},
[3400120]={
- ["desc"]="流星追月:使用后本次伤害提升,并造成一次巨量技能伤害。"
+ ["desc"]="光合特工:为团队回复一次生命。"
},
- [3400220]={
- ["desc"]="美丽梦魇:额外造成一次大量技能伤害,50%概率附加昏睡效果,1回合。"
+ [3500120]={
+ ["desc"]="快递仙人:额外造成4次大量技能伤害。"
},
- [4200120]={
- ["desc"]="元素链接:随机消除3个元素,并造成一次技能伤害。"
+ [3500220]={
+ ["desc"]="树懒镖师:额外造成4次技能伤害。"
},
[4300120]={
- ["desc"]="霜冻冰晶:额外造成一次技能伤害,附加冰霜效果,1回合。"
- },
- [4300220]={
- ["desc"]="腐败利刃:额外造成一次技能伤害,附加腐败效果,1回合。"
+ ["desc"]="气泡柴犬:额外造成一次技能伤害。"
},
[4400120]={
- ["desc"]="冰霜剑舞:随机消除3个元素,并造成一次技能伤害,附加冰霜效果,1回合。"
+ ["desc"]="海的女儿:额外造成一次技能伤害。"
},
- [4400220]={
- ["desc"]="法老诅咒:额外造成一次技能伤害,附加诅咒效果,1回合。"
+ [4500120]={
+ ["desc"]="冰鲜队长:额外造成一次技能伤害,附加腐败,1回合。"
},
- [5200120]={
- ["desc"]="护盾术:为团队附加一个护盾,1回合。"
+ [4500220]={
+ ["desc"]="外卖天使:额外造成4次技能伤害,附加冰霜,1回合。"
},
[5300120]={
- ["desc"]="魔法扫帚:额外造成多次技能伤害。"
- },
- [5300220]={
- ["desc"]="灵魂爆破:额外造成多次技能伤害。"
+ ["desc"]="圣盾卫士:为团队附加一个护盾,1回合。"
},
[5400120]={
- ["desc"]="花舞斩:额外造成多次技能伤害。"
+ ["desc"]="混沌巫师:额外造成一次技能伤害。"
},
- [5400220]={
- ["desc"]="幻影连击:额外造成多次技能伤害。"
+ [5500120]={
+ ["desc"]="血族快递伯爵:额外造成4次大量技能伤害。"
},
- [1400320]={
- ["desc"]="炼狱扳机:额外造成多次技能伤害,附加易伤效果,2回合。"
- },
- [2400320]={
- ["desc"]="神速一闪:额外造成多次技能伤害,50%概率附加眩晕效果,1回合。"
- },
- [3400320]={
- ["desc"]="绝命啃咬:额外造成多次技能伤害,并随机消除3个元素。"
- },
- [4400320]={
- ["desc"]="旋转月轮:额外造成多次技能伤害,50%概率附加冻结效果,1回合。"
- },
- [5400320]={
- ["desc"]="堕落之剑:额外造成一次大量技能伤害,附加腐败效果,1回合。"
- },
- [1400420]={
- ["desc"]="九尾祥瑞:将周围4个元素变色,并造成一次大量技能伤害。"
- },
- [2400420]={
- ["desc"]="啊,打!:使用后本次伤害提升,并额外造成多次大量技能伤害。"
- },
- [3400420]={
- ["desc"]="刺杀艺术:使用后本次伤害提升,并额外造成多次大量技能伤害。"
- },
- [4400420]={
- ["desc"]="飞棺降物:额外造成多次技能伤害,附加冰霜效果,1回合。"
- },
- [5400420]={
- ["desc"]="武神意志:随机消除3个元素,并造成一次技能伤害。"
+ [5500220]={
+ ["desc"]="死灵法师:额外造成4次大量技能伤害。"
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/de/skill.lua b/lua/app/config/strings/de/skill.lua
index aa45a9e6..a64239b3 100644
--- a/lua/app/config/strings/de/skill.lua
+++ b/lua/app/config/strings/de/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
-
- },
[1300120]={
- },
- [1300220]={
-
},
[1400120]={
},
- [1400220]={
+ [1500120]={
},
- [2200120]={
+ [1500220]={
+
+ },
+ [1600120]={
},
[2300120]={
- },
- [2300220]={
-
},
[2400120]={
},
- [2400220]={
+ [2500120]={
},
- [3200120]={
+ [2500220]={
+
+ },
+ [2600120]={
},
[3300120]={
- },
- [3300220]={
-
},
[3400120]={
},
- [3400220]={
+ [3500120]={
},
- [4200120]={
+ [3500220]={
},
[4300120]={
- },
- [4300220]={
-
},
[4400120]={
},
- [4400220]={
+ [4500120]={
},
- [5200120]={
+ [4500220]={
},
[5300120]={
- },
- [5300220]={
-
},
[5400120]={
},
- [5400220]={
+ [5500120]={
},
- [1400320]={
-
- },
- [2400320]={
-
- },
- [3400320]={
-
- },
- [4400320]={
-
- },
- [5400320]={
-
- },
- [1400420]={
-
- },
- [2400420]={
-
- },
- [3400420]={
-
- },
- [4400420]={
-
- },
- [5400420]={
+ [5500220]={
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/en/skill.lua b/lua/app/config/strings/en/skill.lua
index 0de6b544..a64239b3 100644
--- a/lua/app/config/strings/en/skill.lua
+++ b/lua/app/config/strings/en/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="Dispersion Dance: Clear 5 grids horizontally and deal skill damage once."
- },
[1300120]={
- ["desc"]="Claymore Cyclone: Deal skill damage multiple times."
- },
- [1300220]={
- ["desc"]="Flame Punch: Clear 5 grids vertically and deal skill damage once, with a 50% chance to inflict Burn for 2 turns."
+
},
[1400120]={
- ["desc"]="Steel Strike: Change the color of 4 adjacent elements and deal massive skill damage multiple times."
+
},
- [1400220]={
- ["desc"]="Panda Firecracker: Deal one additional hit of incredible skill damage."
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="Unsheathe: Deal one additional hit of skill damage."
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="Bone Cyclone: Deal skill damage multiple times."
- },
- [2300220]={
- ["desc"]="Phantom Blade: Increase damage and deal multiple hits of skill damage."
+
},
[2400120]={
- ["desc"]="Claymore Crush: Deal one additional hit of massive skill damage."
+
},
- [2400220]={
- ["desc"]="Mjolnir: Deal one additional hit of massive skill damage."
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="Lance Thrust: Deal one additional hit of skill damage."
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="Rapid Recovery: Restore HP for this turn."
- },
- [3300220]={
- ["desc"]="Wolf Assault: Increase damage for this turn and deal skill damage multiple times."
+
},
[3400120]={
- ["desc"]="Moon Chaser: Increase damage and deal significantly skill damage once."
+
},
- [3400220]={
- ["desc"]="Alluring Nightmare: Deal one additional hit of massive skill damage and has a 50% chance to inflict Drowsy that lasts 1 turns."
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="Elemental Link: Clear 3 random elements and deal skill damage once."
+ [3500220]={
+
},
[4300120]={
- ["desc"]="Frostbite Crystal: Deal one additional hit of skill damage and inflict Cold for 1 turn."
- },
- [4300220]={
- ["desc"]="Corrupt Blade: Deal one additional hit of skill damage and inflict Corrupt for 1 turn."
+
},
[4400120]={
- ["desc"]="Frost Sword Dance: Clear 3 random elements and deal skill damage once. Inflict Cold for 1 turn."
+
},
- [4400220]={
- ["desc"]="Pharaoh's Curse: Deal one additional hit of skill damage and inflict Curse that lasts 1 turn."
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="Shield Art: Apply a shield to the team for 1 turn."
+ [4500220]={
+
},
[5300120]={
- ["desc"]="Enchanted Broomstick: Deal skill damage multiple times."
- },
- [5300220]={
- ["desc"]="Ethereal Blast: Deal skill damage multiple times."
+
},
[5400120]={
- ["desc"]="Floral Slash: Deal skill damage multiple times."
+
},
- [5400220]={
- ["desc"]="Phantom Combo: Deal skill damage multiple times."
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="Hellfire Trigger: Deal skill damage multiple times and inflict Vulnerable for 2 turns."
- },
- [2400320]={
- ["desc"]="Blink of an Eye: Deal skill damage multiple times and has a 50% of chance to inflict Stun for 1 turn."
- },
- [3400320]={
- ["desc"]="Lethal Bite: Deal skill damage multiple times and clear 3 random elements."
- },
- [4400320]={
- ["desc"]="Rotating Chakram: Deal skill damage multiple times and has a 50% of chance to inflict Frozen for 1 turn."
- },
- [5400320]={
- ["desc"]="Fallen Sword: Deal one additional hit of massive skill damage and inflict Corruption for 1 turn."
- },
- [1400420]={
- ["desc"]="Auspicious Nine-Tail: Change the color of 4 adjacent elements and deal massive skill damage once."
- },
- [2400420]={
- ["desc"]="Take This!: Increase damage for this turn and deal massive skill damage multiple times."
- },
- [3400420]={
- ["desc"]="Assassination Art: Increase damage for this turn and deal massive skill damage multiple times."
- },
- [4400420]={
- ["desc"]="Flying Coffin: Deal massive skill damage multiple times and inflict Cold for 1 turn."
- },
- [5400420]={
- ["desc"]="War God's Will: clear 3 random elements and deal skill damage once."
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/es/skill.lua b/lua/app/config/strings/es/skill.lua
index 5bb2a2ea..a64239b3 100644
--- a/lua/app/config/strings/es/skill.lua
+++ b/lua/app/config/strings/es/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="Danza de Disipación: elimina 5 bloques horizontalmente, y causa un daño de habilidad."
- },
[1300120]={
- ["desc"]="Torbellino de Espada: causa varios daños de habilidad extras."
- },
- [1300220]={
- ["desc"]="Puño Ardoroso: elimina 5 bloques verticalmente, y causa un daño de habilidad, con 50% de chance de aplicar Quemadura durante 2 rondas."
+
},
[1400120]={
- ["desc"]="Golpe de Acero: cambia el color de 4 elementos circundantes y causa varios daños de habilidad masivo."
+
},
- [1400220]={
- ["desc"]="Petardo Panda: causa un enorme daño de habilidad adicional."
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="Corte Veloz: causa un daño de habilidad adicional."
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="Torbellino de Huesos: causa varios daños de habilidad adicionales."
- },
- [2300220]={
- ["desc"]="Espada de Fantasía: aumenta el daño de habilidad y causa masivos daños de habilidad adicionales."
+
},
[2400120]={
- ["desc"]="Espada Colosal: causa un golpe adicional de enorme daño de habilidad."
+
},
- [2400220]={
- ["desc"]="Martillo de Thor: causa un masivo daño de habilidad adicional."
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="Punzada de Lanza: causa un daño de habilidad adicional."
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="Cura Rápida: recupera la vida en esta ronda."
- },
- [3300220]={
- ["desc"]="Golpe de Lobo: aumenta el daño y causa varios daños de habilidad."
+
},
[3400120]={
- ["desc"]="Danza de Meteoro: aumenta el daño y causa un golpe adicional de enorme daño de habilidad."
+
},
- [3400220]={
- ["desc"]="Pesadilla Hermosa: causa un masivo daño de habilidad adicional, con un 50% de chance de aplicar Dormido durante 1 rondas."
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="Enlace de Elementos: elimina 3 elementos aleatorios y causa un daño de habilidad."
+ [3500220]={
+
},
[4300120]={
- ["desc"]="Cristal Escarchado: causa un daño de habilidad adicional con efecto de Escarcha durante 1 ronda."
- },
- [4300220]={
- ["desc"]="Filo Corrupto: causa un daño de habilidad adicional con efecto de Corrupto durante 1 ronda."
+
},
[4400120]={
- ["desc"]="Espada de Escarcha: elimina 3 elementos aleatorios, y causa un daño de habilidad con efecto de Escarcha durante 1 ronda."
+
},
- [4400220]={
- ["desc"]="Maldición de Faraón: causa un daño de habilidad adicional, con efecto de Maldecido durante 1 ronda."
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="Hechizo Escudo: agrega un escudo al equipo durante 1 ronda."
+ [4500220]={
+
},
[5300120]={
- ["desc"]="Escoba Mágica: causa varios daños de habilidad adicionales."
- },
- [5300220]={
- ["desc"]="Explosión de Alma: causa varios daños de habilidad adicionales."
+
},
[5400120]={
- ["desc"]="Corte Floral: causa varios daños de habilidad adicionales."
+
},
- [5400220]={
- ["desc"]="Hits de Sombra: causa varios daños de habilidad adicionales."
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="Gatillo Infernal: causa daño de habilidad adicional varias veces, con efecto Vulnerabilidad durante 2 rondas."
- },
- [2400320]={
- ["desc"]="Relámpago: causa daño de habilidad adicional varias veces, con un 50% de chance de aplicar efecto Vértigo durante 1 ronda."
- },
- [3400320]={
- ["desc"]="Mordedura Fatal: causa daño de habilidad adicional varias veces, y elimina aleatoriamente 3 elementos."
- },
- [4400320]={
- ["desc"]="Rueda Lunar Giratoria: causa daño de habilidad adicional varias veces, con un 50% de chance de aplicar Congelado durante 1 ronda."
- },
- [5400320]={
- ["desc"]="Espada Caída: causa un masivo daño de habilidad adicional, con efecto de Corrupto durante 1 ronda."
- },
- [1400420]={
- ["desc"]="Zorra de Nueve Colas: cambia el color de 4 elementos circundantes y causa un masivo daño de habilidad. "
- },
- [2400420]={
- ["desc"]="Ah-dah: aumenta el daño de esta vez y causa masivos daños de habilidad adicionales."
- },
- [3400420]={
- ["desc"]="Arte de Asesinato: aumenta el daño de esta vez y causa masivos daños de habilidad adicionales."
- },
- [4400420]={
- ["desc"]="Ataúd Volador: causa daño de habilidad adicional varias veces, con efecto Escarcha durante 1 ronda."
- },
- [5400420]={
- ["desc"]="Voluntad de Valquiria: elimina 3 elementos aleatorios y causa un daño de habilidad."
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/fr/skill.lua b/lua/app/config/strings/fr/skill.lua
index aa45a9e6..a64239b3 100644
--- a/lua/app/config/strings/fr/skill.lua
+++ b/lua/app/config/strings/fr/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
-
- },
[1300120]={
- },
- [1300220]={
-
},
[1400120]={
},
- [1400220]={
+ [1500120]={
},
- [2200120]={
+ [1500220]={
+
+ },
+ [1600120]={
},
[2300120]={
- },
- [2300220]={
-
},
[2400120]={
},
- [2400220]={
+ [2500120]={
},
- [3200120]={
+ [2500220]={
+
+ },
+ [2600120]={
},
[3300120]={
- },
- [3300220]={
-
},
[3400120]={
},
- [3400220]={
+ [3500120]={
},
- [4200120]={
+ [3500220]={
},
[4300120]={
- },
- [4300220]={
-
},
[4400120]={
},
- [4400220]={
+ [4500120]={
},
- [5200120]={
+ [4500220]={
},
[5300120]={
- },
- [5300220]={
-
},
[5400120]={
},
- [5400220]={
+ [5500120]={
},
- [1400320]={
-
- },
- [2400320]={
-
- },
- [3400320]={
-
- },
- [4400320]={
-
- },
- [5400320]={
-
- },
- [1400420]={
-
- },
- [2400420]={
-
- },
- [3400420]={
-
- },
- [4400420]={
-
- },
- [5400420]={
+ [5500220]={
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/id/skill.lua b/lua/app/config/strings/id/skill.lua
index e6ed362d..a64239b3 100644
--- a/lua/app/config/strings/id/skill.lua
+++ b/lua/app/config/strings/id/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="Tarian Dispersi: Menghapus 5 grid secara horizontal dan memberikan DMG skill sekali."
- },
[1300120]={
- ["desc"]="Topan Claymore: Memberikan DMG skill beberapa kali."
- },
- [1300220]={
- ["desc"]="Pukulan Api: Menghapus 5 grid secara vertikal dan memberikan DMG skill satu kali. Memiliki 50% peluang memberikan efek Scorch selama 2 giliran."
+
},
[1400120]={
- ["desc"]="Strike Baja: Ubah warna 4 elemen yang berdekatan dan berikan DMG skill yang besar beberapa kali."
+
},
- [1400220]={
- ["desc"]="Petasan Panda: Menyebabkan DMG skill tambahan dalam jumlah besar"
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="Cabut Pedang: Memberikan satu DMG skill tambahan."
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="Topan Bone: Memberikan beberapa DMG skill tambahan."
- },
- [2300220]={
- ["desc"]="Pedang Phantom: Meningkatkan DMG skill dan memberikan DMG skill beberapa kali."
+
},
[2400120]={
- ["desc"]="Ledakan Claymore: Memberikan DMG skill tambahan yang sangat besar."
+
},
- [2400220]={
- ["desc"]="Palu Thor: Menyebabkan DMG skill tambahan dalam jumlah besar."
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="Lance Burst: Memberikan satu DMG skill tambahan."
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="Pemulihan Cepat: Memulihkan HP pada giliran ini."
- },
- [3300220]={
- ["desc"]="ATK Wolf: DMG meningkat setelah digunakan dan memberikan beberapa DMG skill."
+
},
[3400120]={
- ["desc"]="Pemburu Bulan: Meningkatkan DMG dan memberikan DMG skill yang besar sekali."
+
},
- [3400220]={
- ["desc"]="Nightmare Z: Menyebabkan DMG skill tambahan dalam jumlah besar dengan 50% peluang efek Kantuk selama 1 giliran."
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="Link Elemen: Menghilangkan 3 elemen secara acak dan memberikan DMG skill."
+ [3500220]={
+
},
[4300120]={
- ["desc"]="Kristal Es: Menyebabkan DMG skill tambahan dengan efek Freeze selama 1 giliran."
- },
- [4300220]={
- ["desc"]="Tombak Tajam: Menyebabkan satu kali DMG skill tambahan dengan efek Korosi selama 1 giliran."
+
},
[4400120]={
- ["desc"]="Tarian Pedang Frost: Menghapus 3 elemen acak dan memberikan damage skill sekali. Menimbulkan efek Freeze selama 1 giliran."
+
},
- [4400220]={
- ["desc"]="Kutukan Firaun: Menyebakan satu kali DMG skill tambahan dengan efek Kutuk selama 1 giliran."
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="Seni Perisai: Terapkan perisai ke tim untuk 1 giliran."
+ [4500220]={
+
},
[5300120]={
- ["desc"]="Sapu Ajaib: Menyebabkan beberapa DMG skill tambahan."
- },
- [5300220]={
- ["desc"]="Blast Jiwa: Menyebabkan beberapa DMG skill tambahan."
+
},
[5400120]={
- ["desc"]="Tarian Bunga: Menyebakan beberapa DMG skill tambahan."
+
},
- [5400220]={
- ["desc"]="Strike Phantom: Menyebabkan beberapa DMG skill tambahan."
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="Pemicu Api Neraka: Memberikan DMG skill beberapa kali dan memberikan Rentan selama 2 giliran."
- },
- [2400320]={
- ["desc"]="Kedipan Mata: Memberikan DMG skill beberapa kali dan memiliki 50% peluang untuk memberikan Stun selama 1 giliran."
- },
- [3400320]={
- ["desc"]="Gigitan Maut: Memberikan DMG skill beberapa kali dan menghapus 3 elemen acak."
- },
- [4400320]={
- ["desc"]="Roda Berputar: Memberikan DMG skill beberapa kali dan memiliki 50% peluang untuk memberikan Freeze selama 1 giliran."
- },
- [5400320]={
- ["desc"]="Pedang Karunia: Memberikan satu serangan tambahan dari DMG skill masif dan memberikan efek Korosi selama 1 giliran."
- },
- [1400420]={
- ["desc"]="Mujur Ekor Sembilan: Ubah warna 4 elemen yang berdekatan dan berikan DMG skill yang besar beberapa kali."
- },
- [2400420]={
- ["desc"]="Ah, bertarung!: Meningkatkan DMG skill dan memberikan DMG skill beberapa kali."
- },
- [3400420]={
- ["desc"]="Seni Bunuh: Meningkatkan DMG skill dan memberikan DMG skill beberapa kali."
- },
- [4400420]={
- ["desc"]="Peti Terbang: Menyebabkan DMG skill tambahan dengan efek Freeze selama 1 giliran."
- },
- [5400420]={
- ["desc"]="Peti Terbang: Menghilangkan 3 elemen secara acak dan memberikan DMG skill."
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ja/skill.lua b/lua/app/config/strings/ja/skill.lua
index 68c04587..a64239b3 100644
--- a/lua/app/config/strings/ja/skill.lua
+++ b/lua/app/config/strings/ja/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="消滅の舞:横に5マスを消し、スキルを1回発動する。"
- },
[1300120]={
- ["desc"]="旋風切:追加でスキルを複数回発動する。"
- },
- [1300220]={
- ["desc"]="ファイアパンチ:縦に5マスを消し、スキルを1回発動する。50%の確率で敵に2ターン⽕傷効果を付与する。"
+
},
[1400120]={
- ["desc"]="ヘヴィーヒット:縦横4マスの元素を変え、大ダメージを与えるスキルを複数回発動する。"
+
},
- [1400220]={
- ["desc"]="パンダ爆竹:追加で特大ダメージを与えるスキルを1回発動する。"
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="居合斬:追加でスキルを1回発動する。"
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="骨旋風:追加でスキルを複数回発動する。"
- },
- [2300220]={
- ["desc"]="ファントムストライク:発動するターンダメージがアップ、追加で大ダメージを与えるスキルを複数回発動する。"
+
},
[2400120]={
- ["desc"]="大剣インパクト:追加で特⼤ダメージを与えるスキルを1回発動する。"
+
},
- [2400220]={
- ["desc"]="ソーのハンマー:追加で大ダメージを与えるスキルを1回発動する。"
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="ランススラスト:追加でスキルを1回発動する。"
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="急速回復:HPを回復する。"
- },
- [3300220]={
- ["desc"]="ウルフアサルト:発動するターンダメージがアップ、ダメージを与えるスキルを複数回発動する。"
+
},
[3400120]={
- ["desc"]="ムーンチェイサー:発動するターンダメージがアップ、特⼤ダメージを与えるスキルを1回発動する。"
+
},
- [3400220]={
- ["desc"]="アリュールナイトメア:追加で大ダメージを与えるスキルを1回発動し、50%の確率で敵に1ターン昏睡効果を付与する。"
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="元素連接:ランダムで3つの元素を消し、スキルを1回発動する。"
+ [3500220]={
+
},
[4300120]={
- ["desc"]="フロストバイトクリスタル:追加でスキルを1回発動し、敵に1ターン凍傷効果を付与する。"
- },
- [4300220]={
- ["desc"]="コラプトブレード:追加でスキルを1回発動し、敵に1ターン腐敗効果を付与する。"
+
},
[4400120]={
- ["desc"]="氷結の舞:ランダムで3つの元素を消し、1ターン凍傷効果付きのスキルを1回発動する。"
+
},
- [4400220]={
- ["desc"]="ファラオの呪い:追加でスキルを1回発動し、敵に1ターン呪い効果を付与する。"
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="シールド術:全員に1ターンシールドを付与する。"
+ [4500220]={
+
},
[5300120]={
- ["desc"]="魔法のほうき:追加でスキルを複数回発動する。"
- },
- [5300220]={
- ["desc"]="ソールブラスト:追加でスキルを複数回発動する。"
+
},
[5400120]={
- ["desc"]="花舞斬:追加でスキルを複数回発動する。"
+
},
- [5400220]={
- ["desc"]="ファントムヒット:追加でスキルを複数回発動する。"
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="煉獄のトリガー:追加でスキルを複数回発動し、敵に2ターン被ダメージアップ効果を付与する。"
- },
- [2400320]={
- ["desc"]="神速一閃:追加でスキルを複数回発動し、50%の確率で敵に1ターンスタン効果を付与する。"
- },
- [3400320]={
- ["desc"]="リーサルバイト:追加でスキルを複数回発動し、ランダムで3つの元素を消す。"
- },
- [4400320]={
- ["desc"]="回転チャクラム:追加でスキルを複数回発動し、50%の確率で敵に1ターン凍結効果を付与する。"
- },
- [5400320]={
- ["desc"]="堕落の剣:追加で大ダメージを与えるスキルを1回発動し、敵に1ターン腐敗効果を付与する。"
- },
- [1400420]={
- ["desc"]="幸運の九尾:縦横4マスの元素を変え、大ダメージを与えるスキルを1回発動する。"
- },
- [2400420]={
- ["desc"]="喰らえ!:発動するターンダメージがアップ、追加で大ダメージを与えるスキルを複数回発動する。"
- },
- [3400420]={
- ["desc"]="暗殺の芸術:発動するターンダメージがアップ、追加で大ダメージを与えるスキルを複数回発動する。"
- },
- [4400420]={
- ["desc"]="空飛ぶ棺:追加でスキルを複数回発動し、敵に1ターン凍傷効果を付与する。"
- },
- [5400420]={
- ["desc"]="武神の意志:ランダムで3つの元素を消し、スキルを1回発動する。"
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ko/skill.lua b/lua/app/config/strings/ko/skill.lua
index ef806655..a64239b3 100644
--- a/lua/app/config/strings/ko/skill.lua
+++ b/lua/app/config/strings/ko/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="무희의 춤: 가로 방향으로 5개의 그리드를 소멸하고 스킬 피해를 한 번 입힙니다."
- },
[1300120]={
- ["desc"]="대검 회오리바람: 여러 번의 스킬 피해를 추가로 입힙니다."
- },
- [1300220]={
- ["desc"]="불타는 펀치: 세로 방향으로 5개의 그리드를 소멸하고 스킬 피해를 한 번 입힙니다. 50% 확률로 2턴 동안 버닝 효과를 부여합니다."
+
},
[1400120]={
- ["desc"]="강철 스트라이크: 주위4개 원소의 색상을 변경하며 대량의 스킬 피해를 여러 차례 입힙니다."
+
},
- [1400220]={
- ["desc"]="판다 폭죽: 추가로 엄청난 양의 스킬 피해를 한 번 입힙니다."
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="진검 베기: 추가로 스킬 피해를 한 번 입힙니다."
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="뼈의 회오리바람: 추가로 스킬 피해를 여러 차례 입힙니다."
- },
- [2300220]={
- ["desc"]="팬텀 소드: 사용 후, 이번 스킬의 대미지가 상승하며 추가로 스킬 피해를 여러 차례 입힙니다."
+
},
[2400120]={
- ["desc"]="대검 폭격: 추가로 엄청난 양의 스킬 피해를 한 번 입힙니다."
+
},
- [2400220]={
- ["desc"]="토르의 망치: 추가로 대량의 스킬 피해를 한 번 입힙니다."
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="장창 돌격: 추가로 스킬 피해를 한 번 입힙니다."
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="신속한 치유: 사용 후, 이번 턴에 HP를 회복합니다."
- },
- [3300220]={
- ["desc"]="울프 스트라이크: 사용 후, 이번 턴의 대미지가 상승하며 여러 차례 스킬 피해를 입힙니다."
+
},
[3400120]={
- ["desc"]="유성과 달의 숨바꼭질: 사용 후, 이번 공격 대미지가 상승하며 엄청난 양의 스킬 피해를 한 번 입힙니다."
+
},
- [3400220]={
- ["desc"]="아름다운 악몽: 추가로 대량의 스킬 피해를 한 번 입히며 50% 확률로 1턴 동안 수면 효과를 부여합니다."
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="원소 연결: 무작위로 3개의 원소를 소멸하고 스킬 피해를 한 번 입힙니다."
+ [3500220]={
+
},
[4300120]={
- ["desc"]="얼음 크리스탈: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 서리 효과를 부여합니다."
- },
- [4300220]={
- ["desc"]="부패의 칼날: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 부패 효과를 부여합니다."
+
},
[4400120]={
- ["desc"]="눈과 서리의 검무: 무작위로 3개의 원소를 소멸하고 한 번의 스킬 피해를 입히는 동시에 1턴 동안 서리 효과를 부여합니다."
+
},
- [4400220]={
- ["desc"]="파라오의 저주: 추가로 한 번의 스킬 피해를 입히며 1턴 동안 저주 효과를 부여합니다."
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="보호막 기술: 팀에게 1턴 동안 보호막을 부여합니다."
+ [4500220]={
+
},
[5300120]={
- ["desc"]="마법의 빗자루: 여러 번의 스킬 피해를 추가로 입힙니다."
- },
- [5300220]={
- ["desc"]="영혼 폭발: 여러 번의 스킬 피해를 추가로 입힙니다."
+
},
[5400120]={
- ["desc"]="화월참: 추가로 여러 번의 스킬 피해를 줍니다."
+
},
- [5400220]={
- ["desc"]="팬텀 콤보: 여러 번의 스킬 피해를 추가로 입힙니다."
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="연옥의 트리거: 추가로 여러 번 스킬 피해를 입히고 2턴 동안 부상 효과를 부여합니다."
- },
- [2400320]={
- ["desc"]="번개같은 스피드: 추가로 여러 번 스킬 피해를 입히고 1턴 동안 50% 확률로 기절 효과를 부여합니다."
- },
- [3400320]={
- ["desc"]="필사적인 물기: 추가로 여러 번 스킬 피해를 입히는 동시에 무작위로 3개의 원소를 소멸합니다."
- },
- [4400320]={
- ["desc"]="회전 달 바퀴: 추가로 여러 번의 스킬 피해를 입히며 1턴 동안 50% 확률로 동결효과를 부여합니다."
- },
- [5400320]={
- ["desc"]="타락한 검: 추가로 대량의 스킬 피해를 한 번 입히며 1턴 동안 부패 효과를 부여합니다."
- },
- [1400420]={
- ["desc"]="상서로운 아홉 꼬리: 주위 4개 원소의 색상을 변경하며 대량의 스킬 피해를 한 번 입힙니다."
- },
- [2400420]={
- ["desc"]="아뵤!: 사용 후, 이번 스킬의 대미지가 상승하며 추가로 대량의 스킬 피해를 여러 차례 입힙니다."
- },
- [3400420]={
- ["desc"]="암살의 예술: 사용 후, 이번 스킬의 대미지가 상승하며 추가로 대량의 스킬 피해를 여러 차례 입힙니다."
- },
- [4400420]={
- ["desc"]="공중 관 투척: 추가로 여러 번 스킬 피해를 입히고 1턴 동안 서리 효과를 부여합니다."
- },
- [5400420]={
- ["desc"]="전쟁 신의 의지: 무작위로 3개의 원소를 소멸하고 스킬 피해를 한 번 입힙니다."
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/pt/skill.lua b/lua/app/config/strings/pt/skill.lua
index b8b74690..a64239b3 100644
--- a/lua/app/config/strings/pt/skill.lua
+++ b/lua/app/config/strings/pt/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="Dança Dissipadora: elimina 5 blocos horizontalmente e causa um dano de habilidade."
- },
[1300120]={
- ["desc"]="Turbilhão de Espadão: causa vários golpes adicionais de dano de habilidade."
- },
- [1300220]={
- ["desc"]="Punho Flamejante: elimina 5 blocos verticalmente e causa um dano de habilidade, com 50% de chance de acionar Conflagração por 2 turnos."
+
},
[1400120]={
- ["desc"]="Golpe Metálico: muda a cor dos 4 elementos ao redor e causa vários golpes de dano de habilidade massivo."
+
},
- [1400220]={
- ["desc"]="Foguete Pandar: Causa uma enorme quantidade adicional de dano de habilidade."
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="Corte Veloz: causa mais um golpe de dano de habilidade."
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="Redemoinho de Ossos: causa vários golpes adicionais de dano de habilidade."
- },
- [2300220]={
- ["desc"]="Golpe da Espada Ilusória: aumenta o dano de habilidade no turno atual e causa mais golpes de dano de habilidade massivo."
+
},
[2400120]={
- ["desc"]="Colisão Colossal: causa um golpe de enorme dano de habilidade."
+
},
- [2400220]={
- ["desc"]="Martelo do Deus do Trovão: Causa grande dano de habilidade adicional."
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="Perfuração de Lança: causa mais um golpe de dano de habilidade."
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="Cura Rápida: recupera a vida no turno atual."
- },
- [3300220]={
- ["desc"]="Ataque Lobo Relâmpago: Aumenta o dano desta vez e causa múltiplos danos de habilidade."
+
},
[3400120]={
- ["desc"]="Disparada do Meteoro: aumenta o dano causado no turno atual e causa um golpe de enorme dano de habilidade."
+
},
- [3400220]={
- ["desc"]="Pesadelo da Beleza: causa adicionalmente um golpe de habilidade massivo com 50% de chance de acionar o efeito de Sonolento que dura 1 turnos."
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="Elo Elemental: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade."
+ [3500220]={
+
},
[4300120]={
- ["desc"]="Cristal Congelante: causa adicionalmente um golpe de habilidade, acionando Gelidez por 1 turno."
- },
- [4300220]={
- ["desc"]="Lâmina Corruptora: causa adicionalmente um golpe de habilidade, acionando Corrupção por 1 turno."
+
},
[4400120]={
- ["desc"]="Esgrima Enregelante: elimina 3 elementos aleatórios e causa um golpe de dano de habilidade, acionando Gelidez por 1 turno."
+
},
- [4400220]={
- ["desc"]="Maldição do Faraó: causa adicionalmente um golpe de habilidade, acionando Maldição por 1 turno."
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="Feitiço de Amparo: adiciona um escudo à equipe por 1 turno."
+ [4500220]={
+
},
[5300120]={
- ["desc"]="Vassoura Mágica: Causa múltiplos danos de habilidade adicionais."
- },
- [5300220]={
- ["desc"]="Explosão de Alma: Causa múltiplos danos de habilidade adicionais."
+
},
[5400120]={
- ["desc"]="Corte Floral: causa adicionalmente vários golpes de habilidade."
+
},
- [5400220]={
- ["desc"]="Ataque Fantasma: Causa múltiplos danos de habilidade adicionais."
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="Gatilho do Purgatório: causa adicionalmente muitos danos de habilidade e torna vulneráveis os inimigos por 2 turnos."
- },
- [2400320]={
- ["desc"]="Relâmpago Instantâneo: causa adicionalmente muitos danos de habilidade, com 50% de probabilidade de adicionar um efeito de atordoamento por turno."
- },
- [3400320]={
- ["desc"]="Mordida Desesperada: causa dano de habilidade extra várias vezes e elimina aleatoriamente 3 elementos."
- },
- [4400320]={
- ["desc"]="Roda Lunar Giratória: Causa dano de habilidade extra várias vezes, com uma probabilidade de 50% de efeito de congelamento por 1 rodada."
- },
- [5400320]={
- ["desc"]="Espada Corrompida: Causa uma grande quantidade de dano de habilidade, adiciona efeito de corrupção por 1 rodada."
- },
- [1400420]={
- ["desc"]="Augúrio de Nove Caudas: transforma 4 elementos ao redor em cores diferentes, e causa um massivo golpe de habilidade."
- },
- [2400420]={
- ["desc"]="Ah-dah! : aumenta o dano desta vez e causa vários golpes extras de habilidade."
- },
- [3400420]={
- ["desc"]="Arte do Assassinato: aumenta o dano desta vez e causa vários golpes extras de habilidade."
- },
- [4400420]={
- ["desc"]="Queda de Caixões: causa vários golpes extras de habilidade, aplicando o efeito gélido por 1 rodada."
- },
- [5400420]={
- ["desc"]="Vontade da Valquíria: elimina 3 elementos aleatórios e causa um golpe de habilidade."
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/ru/skill.lua b/lua/app/config/strings/ru/skill.lua
index aa45a9e6..a64239b3 100644
--- a/lua/app/config/strings/ru/skill.lua
+++ b/lua/app/config/strings/ru/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
-
- },
[1300120]={
- },
- [1300220]={
-
},
[1400120]={
},
- [1400220]={
+ [1500120]={
},
- [2200120]={
+ [1500220]={
+
+ },
+ [1600120]={
},
[2300120]={
- },
- [2300220]={
-
},
[2400120]={
},
- [2400220]={
+ [2500120]={
},
- [3200120]={
+ [2500220]={
+
+ },
+ [2600120]={
},
[3300120]={
- },
- [3300220]={
-
},
[3400120]={
},
- [3400220]={
+ [3500120]={
},
- [4200120]={
+ [3500220]={
},
[4300120]={
- },
- [4300220]={
-
},
[4400120]={
},
- [4400220]={
+ [4500120]={
},
- [5200120]={
+ [4500220]={
},
[5300120]={
- },
- [5300220]={
-
},
[5400120]={
},
- [5400220]={
+ [5500120]={
},
- [1400320]={
-
- },
- [2400320]={
-
- },
- [3400320]={
-
- },
- [4400320]={
-
- },
- [5400320]={
-
- },
- [1400420]={
-
- },
- [2400420]={
-
- },
- [3400420]={
-
- },
- [4400420]={
-
- },
- [5400420]={
+ [5500220]={
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/th/skill.lua b/lua/app/config/strings/th/skill.lua
index 1a577da7..a64239b3 100644
--- a/lua/app/config/strings/th/skill.lua
+++ b/lua/app/config/strings/th/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="ท่าเต้นกระจาย: กำจัด5ช่องตามแนวนอน และสร้างดาเมจสกิล 1 ครั้ง"
- },
[1300120]={
- ["desc"]="ลมกรดดาบ: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง"
- },
- [1300220]={
- ["desc"]="หมัดเพลิง: กำจัด 5ช่องตามแนวตั้ง และสร้างดาเมจสกิล 1 ครั้ง มีโอกาส50%เพิ่มเอฟเฟกต์เผาไหม้ 2 รอบ"
+
},
[1400120]={
- ["desc"]="เหล็กตีหนัก: เปลี่ยนสีของธาตุ4อันที่อยู่รอบ ๆ และสร้างดาเมจสกิลมหาศาลหลายครั้ง"
+
},
- [1400220]={
- ["desc"]="ประทัดแพนด้า: สร้างดาเมจสกิลมหาศาลเพิ่มเติม 1 ครั้ง"
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="จั่วดาบเพื่อสับ: สร้างคดาเมจสกิลเพิ่มเติม 1 ครั้ง"
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="ลมกรดกระดูก: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง"
- },
- [2300220]={
- ["desc"]="ดาบมายาบุก: ดาเมจสกิลครั้งนี้จะเพิ่มขึ้นหลังจากการใช้ และสร้างดาเมจสกิลมหาศาลเพิ่มเติมหลายครั้ง"
+
},
[2400120]={
- ["desc"]="ดาบยักษ์โจมตี: สร้างดาเมจสกิลมหาศาลเพิ่มเติม 1 ครั้ง"
+
},
- [2400220]={
- ["desc"]="ค้อนของเทพสายฟ้า: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง"
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="หอกยาวแทง: สร้างคดาเมจสกิลเพิ่มเติม 1 ครั้ง"
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="รักษาด่วน: ฟื้นฟู HP ในครั้งนี้หลังจากการใช้"
- },
- [3300220]={
- ["desc"]="หมาป่าสังหาร: หลังใช้แล้ว ดาเมจครั้งนี้จะเพิ่มขึ้น และสร้างดาเมจสกิลหลายครั้ง"
+
},
[3400120]={
- ["desc"]="ดาวตกไล่ดวงจันทร์: ดาเมจครั้งนี้จะเพิ่มขึ้นหลังจากการใช้ และสร้างดาเมจสกิลมหาศาล 1 ครั้ง"
+
},
- [3400220]={
- ["desc"]="ฝันร้ายที่สวยงาม: สร้างดาเมจสกิลมากมายเพิ่มเติม 1 ครั้ง มีโอกาส 50% เพิ่มเอฟเฟกต์หลับ 1รอบ"
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="การเชื่อมโยงธาตุ: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง"
+ [3500220]={
+
},
[4300120]={
- ["desc"]="ผลึกฟรอสต์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1 รอบ"
- },
- [4300220]={
- ["desc"]="ดาบทุจริต: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ทุจริต 1รอบ"
+
},
[4400120]={
- ["desc"]="ระบำดาบฟรอสต์: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ"
+
},
- [4400220]={
- ["desc"]="คำสาปฟาโรห์: สร้างดาเมจสกิลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์คำสาป 1รอบ"
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="มนต์โล่: เพิ่มโล่ 1 อันให้ทีม 1รอบ"
+ [4500220]={
+
},
[5300120]={
- ["desc"]="ไม้กวาดวิเศษ: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง"
- },
- [5300220]={
- ["desc"]="ระเบิดวิญญาณ: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง"
+
},
[5400120]={
- ["desc"]="บุปผาสะบั้น: สร้างคดาเมจสกิลเพิ่มเติมหลายครั้ง"
+
},
- [5400220]={
- ["desc"]="เงามายาคอมโบ: สร้างคดาเมจสกิลเพิ่มเติมหลายครั้ง"
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="ปืนไฟนรก: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง เพิ่มเอฟเฟกต์เปราะบาง 2 รอบ"
- },
- [2400320]={
- ["desc"]="เร็วฟ้าผ่า:: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง มีโอกาส 50% ที่จะเพิ่มเอฟเฟกต์ มึนงง 1 รอบ"
- },
- [3400320]={
- ["desc"]="ขย้ำดับชีพ: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง และสุ่มกำจัด 3 ธาตุ"
- },
- [4400320]={
- ["desc"]="กงจันทร์หมุน: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง มีโอกาส 50% ที่จะเพิ่มเอฟเฟกต์ แช่แข็ง 1 รอบ"
- },
- [5400320]={
- ["desc"]="ดาบร่วงหล่น: สร้างดาเมจสกิลมหาศาลเพิ่มเติม 1 ครั้ง เพิ่มเอฟเฟกต์ทุจริต1 รอบ"
- },
- [1400420]={
- ["desc"]="สิริมงคลเก้าหาง: เปลี่ยนสีของธาตุ4อันที่อยู่รอบ ๆ และสร้างดาเมจสกิลมหาศาล 1 ครั้ง"
- },
- [2400420]={
- ["desc"]="อ่า ต้า!: ดาเมจครั้งนี้จะเพิ่มขึ้นหลังจากการใช้ และสร้างดาเมจสกิลมหาศาลเพิ่มเติมหลายครั้ง"
- },
- [3400420]={
- ["desc"]="ศิลปะลอบสังหาร: ดาเมจครั้งนี้จะเพิ่มขึ้นหลังจากการใช้ และสร้างดาเมจสกิลมหาศาลเพิ่มเติมหลายครั้ง"
- },
- [4400420]={
- ["desc"]="วัตถุหล่นจากโลงศพบิน: สร้างดาเมจสกิลเพิ่มเติมหลายครั้ง เพิ่มเอฟเฟกต์ฟรอสต์ 1รอบ"
- },
- [5400420]={
- ["desc"]="เจตจำนงเทพบู๊: สุ่มกำจัดธาตุ3อัน และสร้างดาเมจสกิล 1 ครั้ง"
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/vi/skill.lua b/lua/app/config/strings/vi/skill.lua
index 6ee573cb..a64239b3 100644
--- a/lua/app/config/strings/vi/skill.lua
+++ b/lua/app/config/strings/vi/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="Bước Nhảy Xua Tan: Xua tan 5 ô theo hàng ngang, gây 1 lần sát thương kỹ năng."
- },
[1300120]={
- ["desc"]="Lốc Xoáy Cự Kiếm: Gây thêm nhiều lần sát thương kỹ năng."
- },
- [1300220]={
- ["desc"]="Viêm Quyền: Xua tan 5 ô theo hàng dọc, và gây 1 lần ST kỹ năng, có 50% kèm Thiêu Đốt, 2 hiệp."
+
},
[1400120]={
- ["desc"]="Trọng Kích Sắt Thép: 4 Nguyên Tố xung quanh đổi màu, gây nhiều lần sát thương kỹ năng."
+
},
- [1400220]={
- ["desc"]="Pháo Gấu Trúc: Gây thêm 1 lần cực nhiều sát thương kỹ năng."
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="Đao Trảm: Gây thêm 1 lần sát thương kỹ năng."
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="Lốc Xoáy Xương: Gây thêm nhiều lần sát thương kỹ năng"
- },
- [2300220]={
- ["desc"]="Ảo Ảnh Kiếm Kích: Dùng xong tăng sát thương kỹ năng lần này, gây thêm nhiều lần sát thương kỹ năng."
+
},
[2400120]={
- ["desc"]="Cự Kiếm Oanh Kích: Gây thêm 1 lần sát thương kỹ năng cực lớn."
+
},
- [2400220]={
- ["desc"]="Búa Thor: Gây thêm 1 lần nhiều sát thương kỹ năng."
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="Trường Thương Đột Kích: Gây thêm 1 lần sát thương kỹ năng."
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="Trị Liệu Cấp Tốc: Dùng xong lần này hồi phục HP."
- },
- [3300220]={
- ["desc"]="Lang Tập Thuấn Sát: Sau khi dùng tăng sát thương lần này, đồng thời gây nhiều lần sát thương kỹ năng."
+
},
[3400120]={
- ["desc"]="Sao Băng Siêu Tốc: Dùng xong tăng sát thương lần này, 1 lần sát thương kỹ năng cực lớn."
+
},
- [3400220]={
- ["desc"]="Ác Mộng Tươi Đẹp: Gây thêm 1 lần nhiều ST kỹ năng, cos 50% kèm Ngủ Say, 1 hiệp."
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="Liên Kết Nguyên Tố: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần sát thương kỹ năng."
+ [3500220]={
+
},
[4300120]={
- ["desc"]="Sương Băng Tinh: Gây thêm 1 lần ST kỹ năng, kèm Băng Sương, 1 hiệp."
- },
- [4300220]={
- ["desc"]="Đao Sa Đọa: Gây thêm 1 lần ST kỹ năng, kèm Sa Đọa, 1 hiệp."
+
},
[4400120]={
- ["desc"]="Băng Sương Kiếm Vũ: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần ST kỹ năng, kèm Băng Sương, 1 hiệp."
+
},
- [4400220]={
- ["desc"]="Lời Nguyền Pharaoh: Gây thêm 1 lần sát thương kỹ năng, kèm Lời Nguyền, 1 hiệp."
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="Thuật Khiên: Giúp đồng đội nhận 1 Khiên, 1 hiệp."
+ [4500220]={
+
},
[5300120]={
- ["desc"]="Chổi Phép: Gây thêm nhiều lần sát thương kỹ năng."
- },
- [5300220]={
- ["desc"]="Linh Hồn Bùng Nổ: Gây thêm nhiều lần sát thương kỹ năng."
+
},
[5400120]={
- ["desc"]="Hoa Vũ Trảm: Gây thêm nhiều lần sát thương kỹ năng."
+
},
- [5400220]={
- ["desc"]="Ảo Ảnh Liên Kích: Gây thêm nhiều lần sát thương kỹ năng."
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="Cò Súng Địa Ngục: Gây thêm nhiều lần sát thương kỹ năng, kèm Trọng Thương, 2 hiệp."
- },
- [2400320]={
- ["desc"]="Lóe Thần Tốc: Gây thêm nhiều lần sát thương kỹ năng, có 50% kèm Choáng, 1 hiệp."
- },
- [3400320]={
- ["desc"]="Gặm Cắn Chí Mạng: Gây thêm nhiều lần sát thương kỹ năng, xua tan ngẫu nhiên 3 nguyên tố."
- },
- [4400320]={
- ["desc"]="Vầng Trăng Xoay Tròn: Gây thêm nhiều lần sát thương kỹ năng, có 50% kèm Đóng Băng, 1 hiệp."
- },
- [5400320]={
- ["desc"]="Kiếm Sa Đọa: Gây thêm 1 lần nhiều sát thương kỹ năng, kèm Sa Đọa, 1 hiệp."
- },
- [1400420]={
- ["desc"]="Cửu Vĩ May Mắn: 4 Nguyên Tố xung quanh đổi màu, gây 1 lần sát thương kỹ năng."
- },
- [2400420]={
- ["desc"]="Đánh nào!: Dùng xong tăng sát thương lần này, gây thêm nhiều lần sát thương kỹ năng."
- },
- [3400420]={
- ["desc"]="Nghệ Thuật Ám Sát: Dùng xong tăng sát thương lần này, gây thêm nhiều lần sát thương kỹ năng."
- },
- [4400420]={
- ["desc"]="Vật Rơi Quan Tài: Gây thêm nhiều lần ST kỹ năng, kèm Băng Sương, 1 hiệp."
- },
- [5400420]={
- ["desc"]="Ý Chí Võ Thần: Ngẫu nhiên xua tan 3 Nguyên Tố, gây 1 lần sát thương kỹ năng."
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file
diff --git a/lua/app/config/strings/zh/skill.lua b/lua/app/config/strings/zh/skill.lua
index 2330e310..a64239b3 100644
--- a/lua/app/config/strings/zh/skill.lua
+++ b/lua/app/config/strings/zh/skill.lua
@@ -1,111 +1,72 @@
local skill = {
- [1200120]={
- ["desc"]="舞步消散:沿橫向消除5格,並造成一次技能傷害。"
- },
[1300120]={
- ["desc"]="巨劍旋風:額外造成數次技能傷害。"
- },
- [1300220]={
- ["desc"]="炎拳:沿直向消除5格,並造成一次技能傷害,50%機率附加灼燒效果,2回合。"
+
},
[1400120]={
- ["desc"]="鋼鐵重擊:將周圍4個元素變色,並造成數次大量技能傷害。"
+
},
- [1400220]={
- ["desc"]="熊貓爆竹:額外造成一次巨大技能傷害。"
+ [1500120]={
+
},
- [2200120]={
- ["desc"]="拔刀斬:額外造成一次技能傷害。"
+ [1500220]={
+
+ },
+ [1600120]={
+
},
[2300120]={
- ["desc"]="骨旋風:額外造成數次技能傷害。"
- },
- [2300220]={
- ["desc"]="幻影劍襲:使用後本次技能傷害提高,並額外造成數次大量技能傷害。"
+
},
[2400120]={
- ["desc"]="巨劍轟擊:額外造成一次巨大技能傷害。"
+
},
- [2400220]={
- ["desc"]="雷神之鎚:額外造成一次大量技能傷害。"
+ [2500120]={
+
},
- [3200120]={
- ["desc"]="長槍突刺:額外造成一次技能傷害。"
+ [2500220]={
+
+ },
+ [2600120]={
+
},
[3300120]={
- ["desc"]="急速治療:使用後本次回復生命。"
- },
- [3300220]={
- ["desc"]="狼襲瞬殺:使用後本次傷害提高,並造成數次技能傷害。"
+
},
[3400120]={
- ["desc"]="流星追月:使用後本次傷害提高,並造成一次巨大技能傷害。"
+
},
- [3400220]={
- ["desc"]="美麗夢魘:額外造成一次大量技能傷害,50%機率附加昏睡效果,1回合。"
+ [3500120]={
+
},
- [4200120]={
- ["desc"]="元素連接:隨機消除3個元素,並造成一次技能傷害。"
+ [3500220]={
+
},
[4300120]={
- ["desc"]="霜凍冰晶:額外造成一次技能傷害,附帶冰霜效果,1回合。"
- },
- [4300220]={
- ["desc"]="腐敗利刃:額外造成一次技能傷害,附帶腐敗效果,1回合。"
+
},
[4400120]={
- ["desc"]="冰霜劍舞:隨機消除3個元素,並造成一次技能傷害,附帶冰霜效果,1回合。"
+
},
- [4400220]={
- ["desc"]="法老詛咒:額外造成一次技能傷害,附帶詛咒效果,1回合。"
+ [4500120]={
+
},
- [5200120]={
- ["desc"]="護盾術:賦予團隊一個護盾,1回合。"
+ [4500220]={
+
},
[5300120]={
- ["desc"]="魔法掃帚:額外造成數次技能傷害。"
- },
- [5300220]={
- ["desc"]="靈魂爆破:額外造成數次技能傷害。"
+
},
[5400120]={
- ["desc"]="花舞斬:額外造成數次技能傷害。"
+
},
- [5400220]={
- ["desc"]="幻影連擊:額外造成數次技能傷害。"
+ [5500120]={
+
},
- [1400320]={
- ["desc"]="煉獄扳機:額外造成數次技能傷害,附帶易傷效果,2回合。"
- },
- [2400320]={
- ["desc"]="神速一閃:額外造成數次技能傷害,50%機率附帶暈眩效果,1回合。"
- },
- [3400320]={
- ["desc"]="絕命啃咬:額外造成數次技能傷害,並隨機消除3個元素。"
- },
- [4400320]={
- ["desc"]="旋轉月輪:額外造成數次技能傷害,50%機率附帶凍結效果,1回合。"
- },
- [5400320]={
- ["desc"]="墮落之劍:額外造成一次大量技能傷害,附帶腐敗效果,1回合。"
- },
- [1400420]={
- ["desc"]="九尾祥瑞:將周圍4個元素變色,並造成一次大量技能傷害。"
- },
- [2400420]={
- ["desc"]="啊,打! :使用後本次傷害提高,並額外造成數次大量技能傷害。"
- },
- [3400420]={
- ["desc"]="刺殺藝術:使用後本次傷害提高,並額外造成數次大量技能傷害。"
- },
- [4400420]={
- ["desc"]="飛棺降物:額外造成數次技能傷害,附帶冰霜效果,1回合。"
- },
- [5400420]={
- ["desc"]="武神意志:隨機消除3個元素,並造成一次技能傷害。"
+ [5500220]={
+
}
}
local config = {
-data=skill,count=35
+data=skill,count=22
}
return config
\ No newline at end of file