源战役客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

463 lines
24 KiB

Config = Config or {}
--[[
服务端推送活动类型为 1~2000
客户端本地活动类型为 2001~2999
新加的活动,要把必填的填上
--]]
--活动的静态配置
Config.ConfigActStatic = {}
--需要请求活动奖励的活动[走通用奖励][选填]
Config.ConfigActStatic.NeedRequireReward = {
[1] = true,
[2] = true,
[3] = true,
[4] = true,
[7] = true,
[11] = true,
[14] = true,
[15] = true,
[17] = true,
[23] = true,
[25] = true,
[19] = true,
[20] = true,
[21] = true,
[22] = true,
[30] = true,
[33] = true,
[34] = true,
[24] = true,
[27] = true,
[39] = true,
[40] = true,
[41] = true,
[42] = true,
[43] = true,
[44] = true,
[46] = true,
[47] = true,
[48] = true,
[51] = true,
[56] = true,
[55] = true,
[57] = true,
[58] = true,
[37] = true,
[38] = true,
[61] = true,
[60] = true,
[59] = true,
[63] = true,
}
--活动类型[1:开服活动 2:合服活动 3:运营活动 4:单独图标 5:封测活动 6:节日活动]
Config.ConfigActStatic.ActType = {
OPEN = 1,
COMBINE = 2,
RUN = 3,
SOLO = 4,
CLOSED = 5,
FESTIVAL = 6,
}
--配置对应活动类型的活动[主要用于活动未开启时候,来获取活动的类型][选填]
Config.ConfigActStatic.ActTypeToAct = {
--开服活动
[1] = {1, 4, 5, 7, 20, 33, 39},
--合服活动
[2] = {},
--运营活动
[3] = {3, 13},
--单独图标
[4] = {2},
--封测活动
[5] = {},
--节日活动
[6] = {},
}
--需要显示在精彩活动界面中的活动[选填]
Config.ConfigActStatic.NeedShowInOperateView = {
--[3] = {sub_view = MarryRankView, sort_index = 256,},
[1] = {sub_view = CharmRankView, sort_index = 255,},
-- [13] = {sub_view = ThrowEggView, sort_index = 254,},
[14] = {sub_view = RechargeGiftView,sort_index = 253},
[15] = {sub_view = LoginGiftView,sort_index = 252},
[17] = {sub_view = DiscountShopView,sort_index = 251},
[12] = {sub_view = DungeonMultipleDropView, sort_index = 257},
[16] = {sub_view = DungeonMultipleExpView, sort_index = 258},
[19] = {sub_view = EudemonsAttackEnterView, sort_index = 259},
[20] = {sub_view = ActivityBossView, sort_index = 260},
[23] = {sub_view = HighPointView, sort_index = 261},
[22] = {sub_view = FireworksView, sort_index = 262},
[21] = {sub_view = ActivityExchangeView, sort_index = 263},
[29] = {sub_view = ActRedBagView, sort_index = 264},
[7] = {sub_view = CumulativeRechargeView, sort_index = 252},
[30] = {sub_view = AccConsumeView, sort_index = 253},
--[31] = {sub_view = LuckyAccView, sort_index = 253},
[4] = {sub_view = CollectingActSubView, sort_index = 258},
[32] = {sub_view = ILoveGoddessView, sort_index = 265},
--[33] = {sub_view = RechargeRankView, sort_index = 250},
--[34] = {sub_view = KingAndQueenView, sort_index = 266},
-- [39] = {sub_view = RechargeRankView, sort_index = 251},
-- [46] = {sub_view = ActivityInvestValueView, sort_index = 252},
[47] = {sub_view = NewDailyRechargeSubView, sort_index = 253},
[48] = {sub_view = SingleRechargeSubView, sort_index = 253},
[52] = {sub_view = BossActDropSubView, sort_index = 253},
[13] = {sub_view = ThrowEggView, sort_index = 254},
[54] = {sub_view = OnlineTimeView, sort_index = 255},
[56] = {sub_view = EverydayLivelyView, sort_index = 256},
[57] = {sub_view = RepeatRechargeView, sort_index = 265},
[58] = {sub_view = RechargeDialView, sort_index = 266},
[59] = {sub_view = EverydayTargetView, sort_index = 249},
[60] = {sub_view = GrowthIntegralView, sort_index = 250},
}
--需要显示在合服活动界面中的活动[选填]
Config.ConfigActStatic.NeedShowInCombineView = {
[15] = {sub_view = LoginGiftView,sort_index = 251},
[4] = {sub_view = CollectingActSubView, sort_index = 252},
[21] = {sub_view = ActivityExchangeView, sort_index = 253},
[16] = {sub_view = DungeonMultipleExpView, sort_index = 254},
[12] = {sub_view = DungeonMultipleDropView, sort_index = 255},
[30] = {sub_view = AccConsumeView, sort_index = 256},
[33] = {sub_view = RechargeRankView, sort_index = 257},
[17] = {sub_view = DiscountShopView,sort_index = 258},
[44] = {sub_view = CombineGuildCompeteSubView,sort_index = 259},
[27] = {sub_view = CombineGuildCompeteSubView,sort_index = 260},
[52] = {sub_view = BossActDropSubView, sort_index = 253},
}
--活动开启等级[默认优先读取后台活动配置{role_lv,1}][没有等级要求的,可不填]
Config.ConfigActStatic.ActOpenLevel = {
[3] = 1,
[4] = 80,
[15] = 150,
[25] = 80,
[20] = 60,
[13] = 75,
[29] = Config.ConfigOpenLv.RightTop.activity or 75,
[30] = 75,
[31] = 75,
[32] = 75,
[43] = 75,
[45] = 50,
[46] = 75,
[50] = 75,
[51] = 75,
[54] = Config.ConfigOpenLv.Activity.onlineTime or 80,
[41] = 150,
[35] = 100,
[55] = 150,
[61] = 150,
}
--活动开启等级[默认优先读取后台活动配置{role_lv,1}][没有等级要求的,可不填]
Config.ConfigActStatic.MulSubActOpenLevel = {
[42] = {
[1] = 100,
[2] = 500,
[3] = 500,
[4] = 999,
}
}
--需要显示在[开服狂欢]界面中的活动[选填]
Config.ConfigActStatic.NeedShowInKaiFuRevelView = {
-- 勇者盟约
[24] = {base_type = 24,sub_view = KFBraveGuildSubView,sort_index = 254,open_level = 70,name = "勇者盟约", light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
-- 完美情人(三世恋人)
[25] = {base_type = 25,sub_view = PerfectLoverView,sort_index = 259,open_level = 70,name = "完美情人", light_res = "icon_jh1_1", dark_res = "icon_jh1_2"},
-- 社团争霸
[27] = {base_type = 27,sub_view = KFGuildCompeteSubView,sort_index = 257,open_level = 70,name = "社团争霸", light_res = "icon_gh1_1", dark_res = "icon_gh1_2"},
-- BOSS首杀
[26] = {base_type = 26,sub_view = KFKillBossFirstSubView,sort_index = 255,open_level = 70,name = "首领首杀", light_res = "icon_sl1_1", dark_res = "icon_sl1_2"},
-- 新加 集字
[4] = {base_type = 4, sub_view = CollectingActSubView, sort_index = 258,open_level = 30, name = "集字狂欢", light_res = "icon_jz1_1", dark_res = "icon_jz1_2"},
-- -- 新加 七日累充
-- [7] = {base_type = 7, sub_view = SevenRechargeView, sort_index = 256,open_level = 30, name = "七日累充", light_res = "icon_qr1_1", dark_res = "icon_qr1_2"},
-- 新加 每日活跃
[56] = {base_type = 56, sub_view = EverydayLivelyRevelView, sort_index = 256,open_level = 30, name = "七日累充", light_res = "icon_qr1_1", dark_res = "icon_qr1_2"},
}
--需要显示在开服活动图标下拉的活动[选填]
Config.ConfigActStatic.NeedShowInKFDropView = {
-- [1] = {view_index = 1, base_type = 9999, sub_view = KFHighView, sort_index = 256, name = "开服狂欢"},--开服狂欢[弃用]
-- [2] = {view_index = 2, base_type = 8888, sub_view = KFMonumentSubView, sort_index = 255, name = "永恒碑谷"},
-- [3] = {view_index = 3, base_type = 10, sub_view = RushRankMainView, sort_index = 257, name = "开服冲榜"},
-- -- [3] = {view_index = 3, base_type = 10, sub_view = RushRankMainView, sort_index = 257, name = "开服冲榜"},
-- -- [4] = {view_index = 4, base_type = 4, sub_view = CollectingActSubView, sort_index = 258, name = "集字狂欢"},
-- -- [5] = {view_index = 5, base_type = 7, sub_view = SevenRechargeView, sort_index = 259, name = "七日累充"},
-- -- [999] = {view_index = 999, base_type = 999, sub_view = KFActPreView, sort_index = 999, name = "活动总览"},
[10] = {base_type = 10, sub_view = RushRankMainView, sort_index = 257, name = "开服冲榜"},
-- [2] = {view_index = 2, base_type = 10, sub_view = RushRankTargetView, sort_index = 258, name = "目标奖励"}, --开服冲榜的目标奖励 从开服冲榜分离出来了 需要特殊显示
[60] = {base_type = 60, sub_view = GrowthIntegralOpenView, sort_index = 258, name = "成长积分"},
[59] = {base_type = 59, sub_view = EverydayTargetOpenView, sort_index = 259, name = "每日目标"},
[7] = {base_type = 7, sub_view = SevenRechargeOpenView, sort_index = 260, name = "开服累充"},
[17] = {base_type = 17, sub_view = DiscountShopView, sort_index = 261, name = "限时抢购"},
}
Config.ConfigActStatic.KFDropViewTabSource = {
[7] = {default = {light_res = "icon_fl1_1", dark_res = "icon_fl1_2"}, --开服累充
--[[[1] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
[2] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
[3] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
[4] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
[5] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
[6] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
[7] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},--]]},
[10] = {default = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"}, --开服冲榜
[1] = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"},
[2] = {light_res = "icon_hh1_1", dark_res = "icon_hh1_2"},
[3] = {light_res = "icon_xl1_1", dark_res = "icon_xl1_2"},
[4] = {light_res = "icon_hz1_1", dark_res = "icon_hz1_2"},
[5] = {light_res = "icon_tz1_1", dark_res = "icon_tz1_2"},
[6] = {light_res = "icon_gh1_1", dark_res = "icon_gh1_2"},},
[60] = {default = {light_res = "icon_qr1_1", dark_res = "icon_qr1_2"}},
[59] = {default = {light_res = "icon_yz1_1", dark_res = "icon_yz1_2"}},
[17] = {default = {light_res = "icon_th1_1", dark_res = "icon_th1_2"}},
}
--需要独立显示图标的活动[选填]
Config.ConfigActStatic.SingleIcon = {
[1] = {base_type = 2, sub_view = CrossCharmRankView, name = "跨服魅力榜"},
[2] = {base_type = 46, sub_view = InvestValueView, name = "超值投资"}
}
--活动对应外部独立图标,主要用来处理删除活动时候清除倒计时还没结束的情况[使用独立图标的必填]
Config.ConfigActStatic.ActToIcon = {
[20] = 41,
[19] = 603,
[13] = 42,
[36] = 48,
[31] = 51,
[41] = {[1] = 411, [2] = 412, [3] = 413, [4] = 414, [5] = 415, [6] = 416, [7] = 417, [8] = 418, [9] = 419, [10] = 420, [11] = 421, [12] = 422},
[42] = 55,
[40] = {[1] = 53, [10001] = 56},
[35] = 57,
[28] = 43,
[43] = 62,
[16] = 45,
[34] = 60,
[33] = 61
}
--节日阶段配置[sort顺序一定要按着日期的顺序]
Config.ConfigActStatic.ActDateInfo = {
--七夕专题活动(8.26-8.28)
[1] = {sort = 6, index = 1, open_date = "8-22", close_date = "8-28", source = "icon_rightTop_30", name = "七夕专题活动(8.26-8.28)"},
--开学 中元 教师节(9.05-9.10)
[2] = {sort = 7, index = 2, open_date = "9-1", close_date = "9-10", source = "icon_rightTop_30", name = "开学 中元 教师节(9.05-9.10)"},
--国庆 中秋(10.01-10.07)
[3] = {sort = 8, index = 3, open_date = "9-27", close_date = "10-9", source = "icon_rightTop_30", name = "国庆 中秋(10.01-10.09)"},
--重阳 万圣节(10.28-11.1)
[4] = {sort = 9, index = 4, open_date = "10-24", close_date = "11-1", source = "icon_rightTop_30", name = "重阳 万圣节(10.28-11.1)"},
--双11(11.11-11.12)
[5] = {sort = 10, index = 5, open_date = "11-7", close_date ="11-12", source = "icon_rightTop_30", name = "双11(11.11-11.12)"},
--寒衣节(11.18-11.19)
[14] = {sort = 11, index = 14, open_date = "11-18", close_date ="11-19", source = "icon_rightTop_30", name = "寒衣节(11.18-11.19)"},
--感恩节(11.23-11.25)
[6] = {sort = 12, index = 6, open_date = "11-21", close_date ="11-25", source = "icon_rightTop_30", name = "感恩节(11.23-11.25)"},
--下元节(11.30-12.04)
[7] = {sort = 13, index = 7, open_date = "11-30", close_date ="12-4", source = "icon_rightTop_30", name = "下元节(11.30-12.04)"},
--双12(12.12-12.14)
[15] = {sort = 14, index = 15, open_date = "12-11", close_date ="12-14", source = "icon_rightTop_30", name = "双12(12.12-12.14)"},
--冬至 圣诞节(12.22-12.25)
[8] = {sort = 15, index = 8, open_date = "12-22", close_date ="12-25", source = "icon_rightTop_30", name = "冬至 圣诞节(12.22-12.25)"},
--元旦(12.30-1.01)
[9] = {sort = 16, index = 9, open_date = "12-28", close_date = "1-3", source = "icon_rightTop_30", name = "元旦(12.30-1.01)"},
--腊八节(1.22-1.24)
[10] = {sort = 1, index = 10, open_date = "1-18", close_date = "1-24", source = "icon_rightTop_30", name = "腊八节(1.22-1.24)"},
--小年(2.06-2.09)
[11] = {sort = 2, index = 11, open_date = "2-4", close_date = "2-9", source = "icon_rightTop_30", name = "小年(2.06-2.09)"},
--情人节(2.11-2.14)
[12] = {sort = 3, index = 12, open_date = "2-11", close_date = "2-14", source = "icon_rightTop_30", name = "情人节(2.11-2.14)"},
--春节 (2.15-2.26)
[16] = {sort = 4, index = 16, open_date = "2-15", close_date = "2-26", source = "icon_rightTop_30", name = "春节(2.15-2.26)"},
--元宵佳节(3.01-3.03)
[13] = {sort = 5, index = 13, open_date = "2-28", close_date = "3-5", source = "icon_rightTop_30", name = "元宵佳节(3.01-3.03)"},
--女神节(3.07-3.09)
[17] = {sort = 5.1, index = 17, open_date = "3-6", close_date = "3-10", source = "icon_rightTop_30", name = "女神节(3.07-3.09)"},
--植树迎春(3.12-3.14)
[18] = {sort = 5.2, index = 18, open_date = "3-11", close_date = "3-16", source = "icon_rightTop_30", name = "植树迎春(3.01-3.03)"},
--周年庆(3.18-3.27)
[21] = {sort = 5.25, index = 21, open_date = "3-18", close_date = "3-2", source = "icon_rightTop_30", name = "周年庆(3.18-3.27)"},
--愚人节(3.29-4.03)
[19] = {sort = 5.3, index = 19, open_date = "3-29", close_date = "4-3", source = "icon_rightTop_30", name = "愚人节(3.29-4.03)"},
--清明节(4.04-4.08)
[20] = {sort = 5.4, index = 20, open_date = "4-4", close_date = "4-8", source = "icon_rightTop_qmj", name = "清明节(4.04-4.08)"},
--春游踏青(4.13-4.15)
[22] = {sort = 5.41, index = 22, open_date = "4-13", close_date = "4-15", source = "icon_rightTop_cytq", name = "春游踏青(4.13-4.15)"},
--爱护地球(4.17-4.22)
[23] = {sort = 5.42, index = 23, open_date = "4-17", close_date = "4-22", source = "icon_rightTop_ahdq", name = "爱护地球(4.17-4.22)"},
--劳动光荣(4.28-5.1)
[24] = {sort = 5.43, index = 24, open_date = "4-28", close_date = "5-1", source = "icon_rightTop_ldgr", name = "劳动光荣(4.28-5.1)"},
--活力青春(5.4-5.7)
[25] = {sort = 5.44, index = 25, open_date = "5-4", close_date = "5-7", source = "icon_rightTop_hlqc", name = "活力青春(5.4-5.7)"},
--妈妈爱我(5.11-5.13)
[26] = {sort = 5.45, index = 26, open_date = "5-11", close_date = "5-13", source = "icon_rightTop_mmaw", name = "妈妈爱我(5.11-5.13)"},
}
--漫灵联运需屏蔽的定制活动
Config.ConfigActStatic.HideInManlingLianYun = {
[6] = true,
[7] = true,
[14] = true,
[33] = true,
[39] = true,
}
Config.ConfigActStatic.CloudShoppingDescBenFu = [[
幸运云购:
1.本次幸运云购为单服活动
2.在活动开启期间,玩家可以消耗抽奖券购买云购份数,并且还可以从奖池中随机获得丰厚奖励。
3.若达到开奖进度,则22点中已购买的玩家中抽取大奖,否则不开奖
4.幸运大奖在本服购买份数中随机抽取,购买份数越多,中奖几率越大
5.若幸运云购购买份数已达开奖进度上限,则玩家不能继续购买
6.特权等级越高,每日可购买的份数越多
7.每日18点后,不再个人购买次数上限
8.特权等级购买次数限制:
vip0:5
vip1:10
vip2:15
vip3:20
vip4:30
vip5:40
vip6:50
vip7:60
vip8:80
vip9:100
vip10:120
vip11:150
vip12:200
vip13:250
vip14:300
vip15:400
]]
Config.ConfigActStatic.CloudShoppingDescKuaFu = [[
1.每天0点至22点可参与购买,购买后可随机获得一份奖励
2.特权等级越高,每日可购买的份数越多
3.开奖前四个小时不再限制购买次数
4.若达到开奖进度,则22点抽取幸运大奖,否则不开奖
5.幸运大奖在全服购买份数中随机抽取,购买份数越多中奖几率越大
6.本次幸运云购为全服活动
]]
--幸运转盘说明
Config.ConfigActStatic.LuckyTurntableDesc = [[
1.活动开启期间,玩家每充值680彩钻,即可获得一张抽奖券
2.抽奖可以获得返利红钻*倍数,每天获得的抽奖券最多为5张
3.每天24:00将会清空抽奖券,请抓紧时间把握机会!
]]
--幸运鉴宝图标资源[新加的资源必须加在这里]
Config.ConfigActStatic.LuckyAccIconRes = {
[8] = "lyzj",
[9] = "wsws",
[10] = "clzy",
[11] = "xtsq",
[12] = "hssb",
[13] = "mwhq",
[14] = "slyd",
[15] = "jlwz",
[17] = "mwbt",
[19] = "hjbb",
[21] = "chfb",
[23] = "jwzj",
[25] = "lyzy",
[27] = "clhz",
}
--活跃转盘图标资源
Config.ConfigActStatic.ActiveTurnIconRes = {
[1] = "jljl",
[2] = "qzyb",
[3] = "jljh",
}
Config.ConfigActStatic.RushRankTitle = {
[1] =[[开服第一、二天,冲击<color=#ffee35>等级榜</color>可获得7阶神装、专属称号等丰厚奖励!
活动结束后,夺得第一名的冒险者可获得<color=#ffee35>7阶无级别粉装衣服</color>!
]],
[2] = [[开服第三天,冲击<color=#ffee35>坐骑榜</color>可获得7阶神装、专属称号等丰厚奖励!
活动结束后,夺得第一名的冒险者可获得<color=#ffee35>7阶无级别粉装武器</color>!
]],
[3] = [[开服第四天,冲击<color=#ffee35>降神榜</color>可获得7阶神装、专属称号等丰厚奖励!
活动结束后,夺得第一名的冒险者可获得<color=#ffee35>7阶无级别粉装帽子</color>!
]],
[4] = [[开服第五天,冲击<color=#ffee35>魂珠榜</color>可获得7阶神装、专属称号等丰厚奖励!
活动结束后,夺得第一名的冒险者可获得<color=#ffee35>7阶无级别粉装裤子</color>!
]],
[5] = [[开服第六天,冲击<color=#ffee35>装备榜</color>可获得7阶神装、专属称号等丰厚奖励!
活动结束后,夺得第一名的冒险者可获得<color=#ffee35>7阶无级别粉装手腕</color>!
]],
[6] = [[开服第七天,冲击<color=#ffee35>战力榜</color>可获得7阶神装、专属称号等丰厚奖励!
活动结束后,夺得第一名的冒险者可获得<color=#ffee35>7阶无级别粉装鞋子</color>!
]],
[7] = [[]],
}
--七天登录图标资源
Config.ConfigActStatic.SevenDayIconRes = {
[1] = "icon_13_qtdl",
[2] = "icon_150_qisl",
[3] = "icon_150_qisl",
[4] = "icon_150_qisl",
}
-- 开服冲榜之'我要上榜'的变强途径 winid和subid都是openfun的内容 sort_id排序 recommend_star推荐星级
-- min_lv 和max_lv 是系统的开启等级 可以这里配置 也可以对openfun的
Config.ConfigActStatic.KFRushRankWay = {
[1] = {
{name = "经验宝库", winid = 610, subid = 31, desc = "每天可参与2次经验宝库,获取超高额经验,V4及以上可额外购买进入次数", min_lv = 75, max_lv = 1000, sort_id = 1, recommend_star = 6},
{name = "经验书馆", winid = 90, subid = 2, desc = "唤醒魔法书可领取大量经验,初始可领取10次,VIP可获得额外领取次数", min_lv = 75, max_lv = 1000, sort_id = 2, recommend_star = 6},
{name = "限时抢购", winid = 331, subid = 13, desc = "冲榜特惠,不容错过", min_lv = 75, max_lv = 1000, sort_id = 3, recommend_star = 6},
{name = "经验馆主", winid = 153, subid = 3, desc = "佩戴经验馆主+50%经验加成,自动拾取掉落物品,挂机必备", min_lv = 1, max_lv = 1000, sort_id = 4, recommend_star = 5},
{name = "飞艇护送", winid = 500, subid = 0, desc = "飞艇护送即可获得海量经验和金币,最高品质更有红钻奖励哦", min_lv = 130, max_lv = 1000, sort_id = 5, recommend_star = 5},
{name = "日常任务", winid = 300, subid = 2, desc = "完成日常任务可获取海量的经验和金币奖励", min_lv = 55, max_lv = 1000, sort_id = 6, recommend_star = 3},
{name = "社团任务", winid = 300, subid = 3, desc = "完成社团任务可获得大量的社团贡献,金币和经验奖励", min_lv = 155, max_lv = 1000, sort_id = 7, recommend_star = 3},
},
[2] = {
{name = "坐骑许愿", winid = 331, subid = 61, desc = "参与坐骑许愿可获得坐骑·规划中外观,加海量坐骑战力", min_lv = 115, max_lv = 1000, sort_id = 1, recommend_star = 6},
{name = "限时抢购", winid = 331, subid = 13, desc = "冲榜特惠,不容错过", min_lv = 75, max_lv = 1000, sort_id = 2, recommend_star = 6},
{name = "限购商城", winid = 153, subid = 1, desc = "所有商品打折出售,每周一凌晨4点刷新哦", min_lv = 1, max_lv = 1000, sort_id = 3, recommend_star = 6},
{name = "常用商城", winid = 153, subid = 2, desc = "在商城,消耗彩钻和红钻购买坐骑树果,可快速升星提升坐骑战力", min_lv = 1, max_lv = 1000, sort_id = 4, recommend_star = 3},
{name = "坐骑升星", winid = 19, subid = 1, desc = "在坐骑界面可进行坐骑升星,推荐勾选材料不足自动购买", min_lv = 24, max_lv = 1000, sort_id = 5, recommend_star = 3},
},
[3] = {
{name = "降神许愿", winid = 331, subid = 61, desc = "参与降神许愿可获得降神·规划中外观,加海量降神战力", min_lv = 80, max_lv = 1000, sort_id = 1, recommend_star = 6},
{name = "限时抢购", winid = 331, subid = 13, desc = "冲榜特惠,不容错过", min_lv = 75, max_lv = 1000, sort_id = 2, recommend_star = 6},
{name = "每周限购", winid = 153, subid = 1, desc = "每周限购神源之火,快速提升降神战力", min_lv = 1, max_lv = 1000, sort_id = 3, recommend_star = 6},
{name = "常用商城", winid = 153, subid = 2, desc = "商城,消耗彩钻和红钻购买神源之火,可快速升星提升降神战力", min_lv = 1, max_lv = 1000, sort_id = 4, recommend_star = 4},
{name = "降神升阶", winid = 440, subid = 1, desc = "在降神界面可进行降神升阶,推荐勾选材料不足自动购买", min_lv = 75, max_lv = 1000, sort_id = 5, recommend_star = 3},
},
[4] = {
{name = "魂珠秘宝", winid = 181, subid = 5, desc = "参与魂珠秘宝,快速获得成品魂珠,10连抽必得橙色以上魂珠,加海量魂珠战力", min_lv = 200, max_lv = 1000, sort_id = 1, recommend_star = 6},
{name = "魂珠副本", winid = 610, subid = 5, desc = "通关魂珠副本,可获得大量魂珠道具", min_lv = 105, max_lv = 1000, sort_id = 2, recommend_star = 4},
{name = "魂珠限购", winid = 331, subid = 411, desc = "参与魂珠巨折,极低折扣价,享受超值魂珠,魂珠升战快速有效", min_lv = 150, max_lv = 1000, sort_id = 3, recommend_star = 3},
{name = "限时抢购", winid = 331, subid = 13, desc = "冲榜特惠,不容错过", min_lv = 75, max_lv = 1000, sort_id = 4, recommend_star = 3},
},
[5] = {
{name = "合成红装", winid = 4, subid = 1, desc = "红装属性逆天,战力爆棚,使用橙二装备可合成红装", min_lv = 55, max_lv = 1000, sort_id = 1, recommend_star = 6},
{name = "打造套装", winid = 152, subid = 7, desc = "激活2,4,5件套装,加海量装备战力", min_lv = 240, max_lv = 1000, sort_id = 2, recommend_star = 6},
{name = "宝石限购", winid = 331, subid = 412, desc = "参与宝石巨折,极低折扣价,享受超值宝石,装备战力飞快提升", min_lv = 150, max_lv = 1000, sort_id = 3, recommend_star = 5},
{name = "龙王秘宝", winid = 416, subid = 1, desc = "参与龙王秘宝即有概率获得高级宝石及各类极品道具", min_lv = 1, max_lv = 1000, sort_id = 4, recommend_star = 4},
{name = "限时抢购", winid = 331, subid = 13, desc = "冲榜特惠,不容错过", min_lv = 75, max_lv = 1000, sort_id = 5, recommend_star = 3},
{name = "原罪祭坛", winid = 460, subid = 1, desc = "挑战击败各类BOSS即有概率获得橙二、红二装备,每日5次BOSS次数不容错过", min_lv = 94, max_lv = 1000, sort_id = 6, recommend_star = 2},
},
[6] = {
{name = "合成红装", winid = 4, subid = 1, desc = "红装属性逆天,战力爆棚,使用橙二装备可合成红装", min_lv = 55, max_lv = 1000, sort_id = 1, recommend_star = 6},
{name = "打造套装", winid = 152, subid = 7, desc = "激活2,4,5件套装,加海量装备战力", min_lv = 240, max_lv = 1000, sort_id = 2, recommend_star = 6},
{name = "魂珠秘宝", winid = 181, subid = 5, desc = "参与魂珠秘宝,快速获得成品魂珠,10连抽必得橙色以上魂珠,加海量魂珠战力", min_lv = 200, max_lv = 1000, sort_id = 3, recommend_star = 5},
{name = "限时抢购", winid = 331, subid = 13, desc = "冲榜特惠,不容错过", min_lv = 75, max_lv = 1000, sort_id = 4, recommend_star = 4},
{name = "星灵收集", winid = 430, subid = 1, desc = "收集星灵可带来丰富的羁绊技能,升阶、升星更可带来强大的战力提升", min_lv = 75, max_lv = 1000, sort_id = 5, recommend_star = 3},
{name = "坐骑升星", winid = 19, subid = 1, desc = "在坐骑界面可进行坐骑升星,推荐勾选材料不足自动购买", min_lv = 24, max_lv = 1000, sort_id = 6, recommend_star = 3},
{name = "降神升阶", winid = 440, subid = 1, desc = "在降神界面可进行降神升阶,推荐勾选材料不足自动购买", min_lv = 75, max_lv = 1000, sort_id = 7, recommend_star = 3},
},
}