35 lines
2.8 KiB
Lua
35 lines
2.8 KiB
Lua
|
|
----------------------------------------------------
|
||
|
|
-- 此文件由数据工具生成
|
||
|
|
-- 配置数据--cross_ground_data.xml
|
||
|
|
--------------------------------------
|
||
|
|
|
||
|
|
Config = Config or {}
|
||
|
|
Config.CrossGroundData = Config.CrossGroundData or {}
|
||
|
|
|
||
|
|
-- -------------------base_start-------------------
|
||
|
|
Config.CrossGroundData.data_base_length = 4
|
||
|
|
Config.CrossGroundData.data_base = {
|
||
|
|
[1] = {{index=7, id=1007, name="巅峰冠軍賽", open_limit={{'world_lev',120},{'lev',115}}, award={38,1,60131}, desc="每周一场/20点30分开战", res_id="challenge_23", groud=1}, {index=2, id=1004, name="周冠軍賽", open_limit={{'lev',55}}, award={14001,10453}, desc="每周日12点-13点开启", res_id="challenge_07", groud=1}, {index=1, id=1001, name="跨服天梯", open_limit={{'lev',55}}, award={50801,38101}, desc="每周六0点-周日23点开启", res_id="challenge_08", groud=1}},
|
||
|
|
[3] = {{index=4, id=1002, name="超凡段位賽", open_limit={{'world_lev',90},{'lev',90}}, award={51001,72111,10454,27,3}, desc="每日0点-23点30分开启", res_id="challenge_10", groud=3}},
|
||
|
|
[2] = {{index=6, id=1006, name="跨服競技場", open_limit={{'world_lev',120},{'lev',115}}, award={51101,30,10450}, desc="每周二、四、六全天开启", res_id="challenge_22", groud=2}, {index=3, id=1005, name="組隊競技場", open_limit={{'lev',70}}, award={51201,30,3,29961}, desc="每周五12点-周日23点开启", res_id="challenge_09", groud=2}},
|
||
|
|
[4] = {{index=5, id=1009, name="競技場", open_limit={{'lev',8}}, award={1,3,8}, desc="全天开放", res_id="challenge_21", groud=4}}
|
||
|
|
}
|
||
|
|
-- -------------------base_end---------------------
|
||
|
|
|
||
|
|
|
||
|
|
-- -------------------adventure_activity_start-------------------
|
||
|
|
Config.CrossGroundData.data_adventure_activity_length = 3
|
||
|
|
Config.CrossGroundData.data_adventure_activity = {
|
||
|
|
[1] = {id=1, activate={{'lev',50}}, activate_2={}, award={{1,1},{72001,1},{10450,1}}, desc="30级开启", desc2="", res_id=1, retrue_id=1, item_desc="殲星迷途在每週一零點重置"},
|
||
|
|
[3] = {id=3, activate={{'lev',90}}, activate_2={}, award={{17011,1},{17001,1},{17002,1},{17003,1},{17004,1},{17005,1}}, desc="90级开启", desc2="", res_id=2, retrue_id=2, item_desc="周一到周五轮流开启,周末全部开启"},
|
||
|
|
[4] = {id=4, activate={{'world_lev',85},{'lev',90}}, activate_2={{'lev',90}}, award={{17193,1},{28,1},{10030,1},{3,1}}, desc="105级 且 世界等级110级 开启", desc2="或 只需个人达120级开启", res_id=3, retrue_id=3, item_desc="全天开放,参与获英雄神装"}
|
||
|
|
}
|
||
|
|
Config.CrossGroundData.data_adventure_activity_fun = function(key)
|
||
|
|
local data=Config.CrossGroundData.data_adventure_activity[key]
|
||
|
|
if DATA_DEBUG and data == nil then
|
||
|
|
print('(Config.CrossGroundData.data_adventure_activity['..key..'])not found') return
|
||
|
|
end
|
||
|
|
return data
|
||
|
|
end
|
||
|
|
-- -------------------adventure_activity_end---------------------
|