diff --git a/src/api_s2c/event/huangqijiuguan/ApiDuiHuan.ts b/src/api_s2c/event/huangqijiuguan/ApiDuiHuan.ts new file mode 100644 index 0000000..958a0bf --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiDuiHuan.ts @@ -0,0 +1,41 @@ +import HQJGFun from "./fun"; +import { ApiCall } from "tsrpc"; +import { PlayerFun } from "../../../public/player"; +import { ReqDuiHuan, ResDuiHuan } from "../../../shared/protocols/event/huangqijiuguan/PtlDuiHuan"; + + + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + if (!hd || Object.keys(hd).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let need = []; + let prize = []; + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + for (let id in call.req.dh) { + let con = hd.data.duihuan.filter(x => x.id == Number(id))[0]; + + if ((mydata.duihuan[id] || 0) + call.req.dh[id] > con.buyNum) { + return call.error("", { code: -2, message: globalThis.lng.hqjgtips_28 }) + } + + for (let i = 0; i < call.req.dh[id]; i++) { + need.push(...con.need); + prize.push(...con.prize); + } + + mydata.duihuan[id] = (mydata.duihuan[id] || 0) + call.req.dh[id]; + } + + // 检查消耗 + await PlayerFun.checkNeedIsMeet(call, need); + // 发送奖励 + await PlayerFun.sendPrize(call, prize); + // 记录兑换次数 + await HQJGFun.setMyData(call.uid, hd.hdid, { duihuan: mydata.duihuan }); + + call.succ({ prize: prize, data: mydata }) +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiFight.ts b/src/api_s2c/event/huangqijiuguan/ApiFight.ts new file mode 100644 index 0000000..d4ee3a8 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiFight.ts @@ -0,0 +1,42 @@ +import { ApiCall } from "tsrpc"; +import { ReqFight, ResFight } from "../../../shared/protocols/event/huangqijiuguan/PtlFight"; +import { HuoDongFun } from "../../../public/huodongfun"; +import HQJGFun from "./fun"; +import { fightResult } from "../../../shared/fightControl/fightType"; +import { FightFun } from "../../../public/fight"; + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + + if (!hd) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + // 个人活动信息 + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + + // 开始战斗 + let result: fightResult = await FightFun.fightNpc(call, hd.data.boss.npcId, 'hqjg'); + + let up = false; + let today = HQJGFun.today(hd); + // 历史最大伤害 + if (result.totalDamage[0] > mydata.bossres.maxdps) { + up = true; + mydata.bossres.maxdps = result.totalDamage[0]; + } + + // 今日最大伤害 + if (result.totalDamage[0] > (mydata.bossres.todaydps[today] || 0)) { + up = true; + mydata.bossres.todaydps[today] = result.totalDamage[0]; + } + + // 更新伤害数据 + up && await HQJGFun.setMyData(call.uid, call.req.hdid, { bossres: mydata.bossres }); + + call.succ({ data: mydata, result: result }); + + G.server.sendMsgByUid(call.uid, "msg_s2c/HongDianChange", ["huodonghd"]) +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiGiftRec.ts b/src/api_s2c/event/huangqijiuguan/ApiGiftRec.ts new file mode 100644 index 0000000..39f9e97 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiGiftRec.ts @@ -0,0 +1,44 @@ +import { ApiCall } from "tsrpc"; +import { ReqGiftRec, ResGiftRec } from "../../../shared/protocols/event/huangqijiuguan/PtlGiftRec"; +import HQJGFun from "./fun"; + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + if (!hd || Object.keys(hd).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let gift = hd.data.gift.filter(i => i.id == call.req.giftid)[0]; + if (!gift || !gift.free) { + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + if ((mydata.giftbuy[call.req.giftid] || { num: 0 }).num + 1 > gift.buynum) { + return call.error("", { code: -2, message: globalThis.lng.hqjgtips_28 }) + } + + let prize: atn[] = [].concat(gift.prize); + if (!mydata.giftbuy[call.req.giftid]) { + mydata.giftbuy[call.req.giftid] = { num: 0, select: [] }; + } + + if (gift.dlz) { + for (let i = 0; i < gift.dlz.length; i++) { + if (!mydata.giftbuy[call.req.giftid].select[i]) { + let ids = Object.keys(gift.dlz[i]) + prize.push(gift.dlz[i][ids[0]]); + mydata.giftbuy[call.req.giftid].select[i] = Number(ids[0]); + } else { + prize.push(gift.dlz[i][mydata.giftbuy[call.req.giftid].select[i]]); + } + } + } + mydata.giftbuy[call.req.giftid].num++; + await HQJGFun.setMyData(call.uid, call.req.hdid, { giftbuy: mydata.giftbuy }); + + call.succ({ data: mydata, prize: prize }) + + G.server.sendMsgByUid(call.uid, "msg_s2c/HongDianChange", ["huodonghd"]) +} diff --git a/src/api_s2c/event/huangqijiuguan/ApiGiftSelect.ts b/src/api_s2c/event/huangqijiuguan/ApiGiftSelect.ts new file mode 100644 index 0000000..40df551 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiGiftSelect.ts @@ -0,0 +1,35 @@ +import { ApiCall } from "tsrpc"; +import { ReqGiftSelect, ResGiftSelect } from "../../../shared/protocols/event/huangqijiuguan/PtlGiftSelect"; +import HQJGFun from "./fun"; + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + if (!hd || Object.keys(hd).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let gift = hd.data.gift.filter(i => i.id == call.req.giftid)[0]; + if (!gift || !gift.dlz) { + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + for (let i = 0; i < call.req.seletc.length; i++) { + if (!gift.dlz[i] || !gift.dlz[i][call.req.seletc[i]]) { + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + } + + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + if (!mydata.giftbuy[call.req.giftid]) { + mydata.giftbuy[call.req.giftid] = { + num: 0, select: call.req.seletc + } + } else { + mydata.giftbuy[call.req.giftid].select = call.req.seletc; + } + + await HQJGFun.setMyData(call.uid, call.req.hdid, { giftbuy: mydata.giftbuy }); + + call.succ({ data: mydata }); +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiOpen.ts b/src/api_s2c/event/huangqijiuguan/ApiOpen.ts new file mode 100644 index 0000000..660ba47 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiOpen.ts @@ -0,0 +1,15 @@ +import HQJGFun from "./fun"; +import { ApiCall } from "tsrpc"; +import { ReqOpen, ResOpen } from "../../../shared/protocols/event/huangqijiuguan/PtlOpen"; + +export default async (call: ApiCall) => { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + if (!hd || Object.keys(hd).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + + call.succ({ data: mydata }) +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiRankList.ts b/src/api_s2c/event/huangqijiuguan/ApiRankList.ts new file mode 100644 index 0000000..27cb7e1 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiRankList.ts @@ -0,0 +1,7 @@ +import { ApiCall } from "tsrpc"; +import { ReqRankList, ResRankList } from "../../../shared/protocols/event/huangqijiuguan/PtlRankList"; +import HQJGFun from "./fun"; + +export default async function (call: ApiCall) { + HQJGFun.getRankList(call.req.hdid).then(data => call.succ({ rankList: data })); +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiRecDpsPrize.ts b/src/api_s2c/event/huangqijiuguan/ApiRecDpsPrize.ts new file mode 100644 index 0000000..2f77d9a --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiRecDpsPrize.ts @@ -0,0 +1,48 @@ +import { ApiCall } from "tsrpc"; +import HQJGFun, { Data } from "./fun"; +import { ReqRecDpsPrize, ResRecDpsPrize } from "../../../shared/protocols/event/huangqijiuguan/PtlRecDpsPrize"; +import { PlayerFun } from "../../../public/player"; + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + + if (!hd) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let data = hd.data as Data + + // 个人活动信息 + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + + // 领取伤害奖励 + let prize = []; + for (let rec of call.req.recid) { + let con = data.bossTask.filter(x => x.id == rec)[0]; + + if (mydata.bossres.recdpstask.includes(con.id)) { + continue + } + + if (con.need > (mydata.bossres.maxdps || 0)) { + continue + } + + mydata.bossres.recdpstask.push(con.id); + prize = prize.concat(con.prize); + } + + if (prize.length <= 0) { + call.error("", { code: -2, message: lng.hqjgtips_27 }); + } else { + // 发送奖励 + await PlayerFun.sendPrize(call, prize); + // 设置领奖记录 + await HQJGFun.setMyData(call.uid, call.req.hdid, { bossres: mydata.bossres }); + } + + call.succ({ data: mydata, prize: prize }) + + G.server.sendMsgByUid(call.uid, "msg_s2c/HongDianChange", ["huodonghd"]) +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiTaskRec.ts b/src/api_s2c/event/huangqijiuguan/ApiTaskRec.ts new file mode 100644 index 0000000..558aab3 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiTaskRec.ts @@ -0,0 +1,54 @@ +import HQJGFun from "./fun"; +import { ApiCall } from "tsrpc"; +import { ReqTaskRec, ResTaskRec } from "../../../shared/protocols/event/huangqijiuguan/PtlTaskRec"; +import { PlayerFun } from "../../../public/player"; + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + if (!hd || Object.keys(hd).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let today = HQJGFun.today(hd); + if (today < call.req.day) { + // 未到领取时间 + return call.error('', { code: -1, message: globalThis.lng.hqjgtips_29 }) + } + + let prize = []; + let taskday = `day${call.req.day}` + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + + for (let id of call.req.taskid) { + let con = hd.data.task[taskday][id]; + + if (!con) { + continue + } + + if (mydata.task.rec[taskday] && mydata.task.rec[taskday].includes(id)) { + continue + } + + if (!mydata.task.val[taskday] || (mydata.task.val[taskday][id] || 0) < con.pval) { + continue + } + + prize = prize.concat(con.prize); + mydata.task.rec[taskday] = (mydata.task.rec[taskday] || []).push(id) + } + + if (prize.length <= 0) { + return call.error("", { code: -2, message: globalThis.lng.hqjgtips_28 }) + } + + // 发送奖励 + await PlayerFun.sendPrize(call, prize); + // 设置领取记录 + await HQJGFun.setMyData(call.uid, call.req.hdid, mydata); + + call.succ({ data: mydata, prize: prize }); + + G.server.sendMsgByUid(call.uid, "msg_s2c/HongDianChange", ["huodonghd"]) +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiZhaoMu.ts b/src/api_s2c/event/huangqijiuguan/ApiZhaoMu.ts new file mode 100644 index 0000000..f2dfefe --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiZhaoMu.ts @@ -0,0 +1,51 @@ +import { ApiCall } from "tsrpc"; +import { ReqZhaoMu, ResZhaoMu } from "../../../shared/protocols/event/huangqijiuguan/PtlZhaoMu"; +import HQJGFun from "./fun"; +import { PlayerFun } from "../../../public/player"; +import { PublicShared } from "../../../shared/public/public"; + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + if (!hd || Object.keys(hd).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let need = [{ a: hd.data.huobi.a, t: hd.data.huobi.t, n: hd.data.huobi.n * call.req.num }]; + + // 检测消耗 + await PlayerFun.checkNeedIsMeet(call, need); + + let prize = []; + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + + for (let n = 1; n <= call.req.num; n++) { + let num = mydata.zhaomu.num + n; + let baodi = hd.data.baodi.filter(x => x.num == num); + if (baodi.length > 0) { + // 触发保底 + prize = prize.concat(baodi[0].prize); + } else { + // 常规掉落 + let temp = PublicShared.randomDropAny<{ + a: string, t: string, n: number, p: number + }>( + hd.data.chouka.filter(x => x.cishu <= num) + ); + prize.push({ a: temp.a, t: temp.t, n: temp.n }); + } + } + + mydata.zhaomu.num += call.req.num; + + // 扣除消耗 + await PlayerFun.cutNeed(call, need); + // 发送奖励 + await PlayerFun.sendPrize(call, prize); + // 设置抽卡数据 + await HQJGFun.setMyData(call.uid, call.req.hdid, { zhaomu: mydata.zhaomu }); + + call.succ({ data: mydata, prize: prize }) + + G.emit("Class_task_159", 'Class_task_159', call, 1, 0); +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/ApiZhaoMuPrizeRec.ts b/src/api_s2c/event/huangqijiuguan/ApiZhaoMuPrizeRec.ts new file mode 100644 index 0000000..546de54 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/ApiZhaoMuPrizeRec.ts @@ -0,0 +1,44 @@ +import { ApiCall } from "tsrpc"; +import { ReqZhaoMuPrizeRec, ResZhaoMuPrizeRec } from "../../../shared/protocols/event/huangqijiuguan/PtlZhaoMuPrizeRec"; +import HQJGFun from "./fun"; +import { PlayerFun } from "../../../public/player"; + +export default async function (call: ApiCall) { + let hd = await HQJGFun.HdInfo(call, call.req.hdid); + if (!hd || Object.keys(hd).length <= 0) { + // 无此活动 + return call.error('', { code: -1, message: globalThis.lng.huodong_open_1 }) + } + + let prize = []; + let mydata = await HQJGFun.getMydata(call, call.req.hdid); + + for (let rec of call.req.recid) { + let con = hd.data.choukajiangli[rec.idx]; + + if (con.num > mydata.zhaomu.num || mydata.zhaomu.prize.includes(rec.idx)) { + continue + } + + if (con.dlz) { + prize.push(con.dlz[0][rec.sec]); + } else { + prize = prize.concat(con.prize); + } + + mydata.zhaomu.prize.push(rec.idx); + } + + if (prize.length <= 0) { + return call.error('', { code: -2, message: globalThis.lng.hqjgtips_28 }) + } + + // 发送奖励 + await PlayerFun.sendPrize(call, prize); + // 设置领取数据 + await HQJGFun.setMyData(call.uid, call.req.hdid, { zhaomu: mydata.zhaomu }); + + call.succ({ prize: prize, data: mydata }) + + G.server.sendMsgByUid(call.uid, "msg_s2c/HongDianChange", ["huodonghd"]) +} \ No newline at end of file diff --git a/src/api_s2c/event/huangqijiuguan/fun.ts b/src/api_s2c/event/huangqijiuguan/fun.ts new file mode 100644 index 0000000..1494752 --- /dev/null +++ b/src/api_s2c/event/huangqijiuguan/fun.ts @@ -0,0 +1,501 @@ +import { ApiCall } from "tsrpc" +import { ReqAddHuoDong } from "../../../monopoly/protocols/PtlAddHuoDong" +import { HuoDongFun } from "../../../public/huodongfun" +import { PublicShared } from "../../../shared/public/public" +import { EmailFun } from "../../../public/email" +import { playerInfo } from "../../../shared/protocols/user/PtlLogin" +import { PlayerFun } from "../../../public/player" +import { Player } from "../../../shared/fightControl/Player" + +// hddata.data +export interface Data { + show: 1 + task: { + [k: `day${number}`]: { + [k: string]: { pval: number, stype: number, cond: string[], tiaozhuan: number, prize: atn[], des: string } + } + } + + huobi: atn // 抽卡货币 + boss: { + img: string + npcId: number + } + + // boss排行邮件 + bossRank_des: string + bossRank_title: string + + // boss挑战等级奖励邮 + bossLvReward_des: string + bossLvReward_title: string + + chouka: { a: string, t: string, n: number, p: number, gailv: number, cishu: number }[] + + choukajiangli: { num: number, prize?: any[], dlz: { [k: string]: atn } }[] + + baodi: { num: number, prize: any[] }[] + + gift: { id: number, free: boolean, payId: string, buynum: number, prize: atn[], dlz?: { [k: string]: atn }[] }[] + + duihuan: { id: number, need: atn[], prize: atn[], buyNum: number }[] + + bossLvReward: { lv: number, need: number, prize: atn[] }[] + + bossTask: { id: number, need: number, prize: atn[] }[] + + bossRank: { id: string, rank: [number, number], prize: atn[] } + + zhuanhuan: { start: atn, end: atn }[] + end_mail_title: string + end_mail_des: string +} + +export interface PlayerData { + // 招募数据 + zhaomu: { + // 招募次数 + num: number + // 次数奖励领取记录 + prize: number[] + }; + + // 任务计数 + task: { + rec: { [k: `day${number}`]: number[] } + val: { [k: `day${number}`]: { [id: string]: number } } + }, + + // 礼包购买记录 + giftbuy: { [id: string]: { num: number, select: number[] } } + + // 兑换次数记录 + duihuan: { [id: string]: number } + + // boss挑战数据 + bossres: { + // 历史最大伤害 + maxdps: number + // 今日最大伤害 + todaydps: { + [k: string]: number + } + // 今日奖励领取记录 + recdpstask: number[] + } + + // 最后修改数据时间 + lasttime: number +} + +export default class HQJGFun { + static get htype() { + return 15 + }; + + static rankkey(hdid: number) { + return `rank:huangqijiuguan_${hdid}` + } + + /** 默认数据 */ + static get defaultData() { + return { + zhaomu: { + num: 0, + prize: [] + }, + task: { + val: {}, + rec: {} + }, + giftbuy: {}, + duihuan: {}, + bossres: { + maxdps: 0, + zhanli: 0, + todaydps: {}, + recdpstask: [] + }, + lasttime: 0 + } + } + + static today(hdinfo: ReqAddHuoDong) { + /** + * 获取活动开启到第几天 从1开始 + */ + return PublicShared.getDiff(hdinfo.stime, G.time) + } + + /** + * 获取排行榜 + */ + static async getRankList(hdid: number) { + let uids = await G.mongodb.collection("event").find( + { type: this.dataType(hdid), "bossres.maxdps": { $gt: 0 } }, + { + sort: { "bossres.maxdps": -1, "bossres.zhanli": -1 }, + projection: { uid: 1, bossres: 1 } + } + ).limit(50).toArray(); + + let userinfo = await G.mongodb.collection('user').find( + { uid: { $in: uids.map(v => v.uid) } }, + ).toArray(); + + let res = []; + for (let rank = 1; rank <= uids.length; rank++) { + let uid = uids[rank - 1].uid; + let user = userinfo.find(v => v.uid == uid); + if (user) { + res.push({ rank, ...user, valArr: [uids[rank - 1].bossres.maxdps] }); + } + } + + return res + } + + /** 数据类型 */ + static dataType(hdid: number) { + return `huangqijiuguan_${hdid}` as `huangqijiuguan_${number}` + } + + /** 获取活动数据 */ + static async HdInfo(call: ApiCall, hdid?: number): Promise { + if (!hdid) { + let hdlist = await HuoDongFun.gethdList( + call, this.htype + ); + return hdlist.length > 0 ? hdlist[0] : null + } else { + return await HuoDongFun.getHdidInfo(call, hdid) as any as ReqAddHuoDong & { data: Data } + } + } + + + /** 获取我的数据 */ + static async getMydata(call: ApiCall, hdid?: number) { + if (!hdid) { + hdid = (await HQJGFun.HdInfo(call)).hdid; + } + let data = await G.mongodb.cEvent(this.dataType(hdid)).findOne({ + uid: call.uid, type: this.dataType(hdid) + }, { projection: { _id: 0 } }); + + if (!data) { + data = (await G.mongodb.cEvent(this.dataType(hdid)).findOneAndUpdate({ + uid: call.uid, type: this.dataType(hdid) + }, { + $set: this.defaultData + }, { upsert: true, returnDocument: 'after', projection: { _id: 0 } })).value; + } + + return data + } + + /** 设置我的数据 */ + static async setMyData(uid: string, hdid: number, update: { [k in keyof Partial]: PlayerData[k] }) { + if (!update.lasttime) { + update.lasttime = G.time; + } + + let res = await G.mongodb.cEvent(this.dataType(hdid)).updateOne( + { uid: uid, type: this.dataType(hdid) }, { $set: update } + ); + + if (res.upsertedCount <= 0) { + await G.mongodb.cEvent(this.dataType(hdid)).updateOne( + { uid: uid, type: this.dataType(hdid) }, { $set: Object.assign(this.defaultData, update) } + ); + } + } + + /** + * 每日伤害等级奖励结算 + */ + static async dayDpsLvPrize(time: number) { + console.log( + "黄旗酒馆 每日伤害等级奖励结算 开始执行。。。" + ) + // 取stime小于当前时间的最后一条数据 + let hdinfo = await G.mongodb.collection("hdinfo").find({ + htype: this.htype, stime: { $lte: time } + }, { sort: { stime: -1 } }).limit(1).toArray(); + + // 没有活动数 + if (hdinfo.length <= 0) { + return + } + + let hd = hdinfo[0]; + let hdid = hdinfo[0].hdid; + // 活动结束 + if (hd.etime < G.time - 300) { + return + } + + let today = PublicShared.getDiff(hd.stime, G.time - 300); + G.mongodb.collection("event").find({ type: `huangqijiuguan_${hdid}` }).toArray().then(datas => { + let hddata = hd.data as Data; + for (let i = 0; i < datas.length; i++) { + let data = datas[i]; + + let lvprize: { lv: number; need?: number; prize?: atn[] }; + let dps = data.bossres.todaydps[today] || 0; + for (let lvinfo of hddata.bossLvReward) { + if (dps < lvinfo.need) { + continue; + } + if (!lvprize || lvprize.lv < lvinfo.lv) { + lvprize = lvinfo; + } + } + + if (!lvprize) continue + let title = hddata.bossLvReward_title; + let content = hddata.bossLvReward_des; + EmailFun.addEmail({ + uid: data.uid, + title: title, + type: "system", + content: content, + prize: lvprize.prize, + contentInsertArr: [lvprize.lv], + }) + } + console.log( + "黄旗酒馆 每日伤害等级奖励结算 执行完成!!!" + ) + }) + } + + /** + * 最大伤害排行奖励结算 + */ + static async endDpsRankPrize(time: number) { + console.log( + "黄旗酒馆 最大伤害排行奖励结算 开始执行。。。" + ) + let today = PublicShared.getToDayZeroTime(time + 300); + let yesterday = PublicShared.getToDayZeroTime(time - 300); + + // 查询昨天23:59:00或者今天00:00:00结束的活动 + let hdinfo = await G.mongodb.collection("hdinfo").find({ + htype: this.htype, rtime: { $gt: yesterday, $lte: today } + }).toArray(); + + // 没有活动数 或者发奖标识已设置 + if (hdinfo.length <= 0 || hdinfo[0].data.sendrank) { + return + } + + let hd = hdinfo[0]; + let hdid = hdinfo[0].hdid; + let hddata = hdinfo[0].data as Data; + if (hd.data.sendrank) { + return + } + + let uids = await G.mongodb.collection("event").find( + { type: this.dataType(hdid) }, + { + sort: { "bossres.maxdps": -1, "bossres.zhanli": -1 }, + projection: { uid: 1, bossres: 1 } + } + ).toArray(); + + for (let rank = 1; rank <= uids.length; rank++) { + let con = hd.data.bossRank.filter( + (x: { rank: number[] }) => rank >= x.rank[0] && rank <= x.rank[1] + )[0]; + if (!con) continue; + // 发送排名奖励 + await EmailFun.addEmail({ + uid: uids[rank - 1].uid, + title: hd.data.bossRank_title, + type: "system", + content: hd.data.bossRank_des, + prize: con.prize, + contentInsertArr: [rank], + }) + } + // 标记已发送 + await G.mongodb.collection("hdinfo").updateOne( + { hdid: hdid }, { $set: { "data.sendrank": true } } + ); + // 货币兑换 + G.mongodb.collection("user").find().toArray().then(async (users) => { + for (let i = 0; i < users.length; i++) { + let prize = []; + let change = {}; + let user = users[i]; + for (let con of hddata.zhuanhuan) { + let num = user[con.start.t]; + if (num < con.start.n) { + continue + } + change[con.start.t] = 0; + prize.push({ + a: con.end.a, t: con.end.t, n: con.end.n * (num / con.start.n), + }) + } + if (prize.length <= 0) continue + // 扣除消耗 + await PlayerFun.changeAttr(user.uid, change); + G.server?.sendMsgByUid(user.uid, "msg_s2c/PlayerChange", change); + // 发送奖励邮件 + await EmailFun.addEmail({ + uid: user.uid, + type: "system", + prize: prize, + title: hddata.end_mail_title, + content: hddata.end_mail_des, + }) + } + }) + + console.log( + "黄旗酒馆 最大伤害排行奖励结算 执行结束!!!" + ) + } + + /**设置任务 */ + static async setTaskVal(call: ApiCall, stype: number, val: number, chkCall: Function, chkval: number = 0, isinc: number = 0, alchangeVal: Function, arg) { + // 活动过期,不计数 + let hd = await this.HdInfo(call) + if (!hd) return + + let today = this.today(hd); + let tasks = hd.data.task[`day${today}`]; + + if (!tasks) return + + let mydata = await this.getMydata(call, hd.hdid); + + if (!mydata.task.val[`day${today}`]) { + mydata.task.val[`day${today}`] = {} + } + + let isset = 0; + let setData = { + $inc: {}, + $set: {} + }; + + for (let taskid of Object.keys(tasks)) { + let taskCon = tasks[taskid]; + if (taskCon.stype != stype) continue + + // 不符合任务要求 + if (!(await chkCall(taskCon["cond"], chkval, arg))) continue + + // 根据需求改写 + val = await alchangeVal(call, taskCon, val, arg) + + isset = 1 + if (isinc == 1) { // 累加 + mydata.task.val[`day${today}`][taskid] = (mydata.task.val[`day${today}`][taskid] || 0) + val + setData["$inc"][`task.val.day${today}.${taskid}`] = val + } else { + mydata.task.val[`day${today}`][taskid] = val + setData["$set"][`task.val.day${today}.${taskid}`] = val + } + } + + // 设置任务 + if (isset == 1) { + await G.mongodb.collection('event').updateOne({ uid: call.uid, type: this.dataType(hd.hdid) }, setData) + + if ((await this.getHongDian(call, hd, mydata)).show) { + G.server.sendMsgByUid(call.uid, "msg_s2c/HongDianChange", ["huodonghd"]) + } + } + } + + static async buy(player: playerInfo, payId: string, payArgs: any, call: ApiCall) { + let hd = await this.HdInfo(call); + + if (!hd) { // 活动不存在 + return + } + + // 判断购买次数 + let gift = hd.data.gift.filter(x => x.payId == payId)[0]; + if (!gift) { + return + } + + let mydata = await this.getMydata(call); + if (!mydata.giftbuy[gift.id]) { + mydata.giftbuy[gift.id] = { num: 0, select: [] }; + } + + let prize: atn[] = []; + if (mydata.giftbuy[gift.id].num + 1 > gift.buynum) { + let pay = G.gc.pay[payId]; + prize.push({ a: "attr", t: "rmbmoney", n: pay.payExp[0].n }) + } else { + prize = gift.prize; + for (let i = 0; i < gift.dlz.length; i++) { + if (!mydata.giftbuy[gift.id].select[i]) { + let ids = Object.keys(gift.dlz[i]) + prize.push(gift.dlz[i][ids[0]]); + mydata.giftbuy[gift.id].select[i] = Number(ids[0]); + } else { + prize.push(gift.dlz[i][mydata.giftbuy[gift.id].select[i]]); + } + } + } + + mydata.giftbuy[gift.id].num++; + // 发送奖励 + await PlayerFun.sendPrize(call, prize, true); + await this.setMyData(call.uid, hd.hdid, { giftbuy: mydata.giftbuy }); + } + + static async getHongDian(call: ApiCall, hd: ReqAddHuoDong, mydata?: PlayerData) { + let hdid = hd.hdid; + let hddata = hd.data as Data; + + mydata = mydata || await this.getMydata(call, hdid); + // 当黄旗招募存在可领取的可选奖励时 + for (let i = 0; i < hddata.choukajiangli.length; i++) { + let ele = hddata.choukajiangli[i]; + if (mydata.zhaomu.num >= ele.num && !mydata.zhaomu.prize.includes(i)) { + return { show: true } + } + } + + let today = this.today(hd); + // 当今日没有进行boss挑战时 + if (!mydata.bossres.todaydps[today]) { + return { show: true } + } + + // 当每日任务界面存在可领取的任务奖励时 + for (let day = 1; day <= today; day++) { + for (let taskid in hddata.task[`day${day}`]) { + let task = hddata.task[`day${day}`][taskid]; + if (mydata.task.val[`day${day}`]?.[taskid] >= task.pval && !(mydata.task.rec?.[`day${day}`] || []).includes(Number(taskid))) { + return { show: true } + } + } + } + + // 当干部挑战界面存在可领取的挑战任务奖励时 + for (let mb of hddata.bossTask) { + if (mb.need <= mydata.bossres.maxdps && !mydata.bossres.recdpstask.includes(mb.id)) { + return { show: true } + } + } + + // 当存在可以领取的免费礼包时 + for (let gift of hddata.gift) { + if (gift.free && (mydata.giftbuy[gift.id]?.num || 0) < gift.buynum) { + return { show: true } + } + } + + return { show: false } + } +} \ No newline at end of file diff --git a/src/api_s2c/hongdian/fun.ts b/src/api_s2c/hongdian/fun.ts index 99973d6..410378c 100644 --- a/src/api_s2c/hongdian/fun.ts +++ b/src/api_s2c/hongdian/fun.ts @@ -21,6 +21,7 @@ import kfjsFun from "../../public/kaifujingsai"; import {RankKfjs} from "../../public/rank/rank_kfjs"; import {ShopFun} from "../../public/shop"; import {Christmasfun} from '../event/christmas/fun'; +import HQJGFun from '../event/huangqijiuguan/fun'; export class HongDianFun { /**黑榜争霸红点 */ @@ -352,6 +353,10 @@ export class HuoDongHongDianFun { // 检测 htype 10 元旦活动红点 ishd = await this.yuandan(call, element) } + if (element.htype == 15) { + // 检测 htype 15 黄芪酒馆活动红点 + ishd = await HQJGFun.getHongDian(call, element) + } // 此活动有红点 if (ishd.show) { diff --git a/src/globalListener.ts b/src/globalListener.ts index 57fee50..234a823 100644 --- a/src/globalListener.ts +++ b/src/globalListener.ts @@ -15,13 +15,15 @@ import { ZhanLingTasks } from './public/zhanling'; import { player } from './shared/protocols/user/type'; import { PublicShared } from './shared/public/public'; import { setGud } from './public/gud'; -import {checkResetBuyLog} from "./api_s2c/event/zhoumolibao/ApiOpen"; -import {Christmasfun} from "./api_s2c/event/christmas/fun"; -import {PushGiftFun} from "./public/pushgift"; -import {LeiChongLiBaoBuyGift} from "./api_s2c/event/leichonglibao/ApiReceive"; +import { checkResetBuyLog } from "./api_s2c/event/zhoumolibao/ApiOpen"; +import { PushGiftFun } from "./public/pushgift"; +import { LeiChongLiBaoBuyGift } from "./api_s2c/event/leichonglibao/ApiReceive"; import { HongDianChange } from './api_s2c/hongdian/fun'; +import HQJGFun from './api_s2c/event/huangqijiuguan/fun'; export type gEventType = { + /**新的一天 */ + NEW_DAY: (time: number) => void; /**玩家断开连接 */ PLAYER_DISCONNECT: (uid: string) => void; /**玩家修改名字 */ @@ -152,6 +154,8 @@ export type gEventType = { Class_task_157: (eventname, call, val, chkVal) => void; /**今日参与{1}次抓娃娃小游戏 */ Class_task_158: (eventname, call, val, chkVal) => void; + /**黄旗酒馆累计抽卡X次*/ + Class_task_159: (eventname, call, val, chkVal) => void; }; export function addListener() { @@ -165,7 +169,7 @@ export function addListener() { XstaskFun.uidTask[uid] = null; delete XstaskFun.uidTask[uid]; } - setGud(uid,{ logoutTime: G.time }); + setGud(uid, { logoutTime: G.time }); G.mongodb.collection('user').updateOne({ uid: uid }, { $set: { logoutTime: G.time } }); }); @@ -177,7 +181,7 @@ export function addListener() { } }); - G.on('PLAYER_PAY', async (player, payId, payArgs,call) => { + G.on('PLAYER_PAY', async (player, payId, payArgs, call) => { let conf: any = await PayFun.getConf(payId, payArgs); ActionLog.addDayLog(player.uid, { key: 'pay', val: conf.payExp[0].n }); ActionLog.addRetainLog(player.uid, { key: 'pay', val: conf.payExp[0].n }); @@ -261,4 +265,9 @@ export function addListener() { let call = PayFun.getCall(gud); G.emit("Class_task_134", 'Class_task_134', call, 1, 0, items); }); + + // 黄旗酒馆 + G.on("NEW_DAY", HQJGFun.dayDpsLvPrize.bind(HQJGFun)); + G.on("NEW_DAY", HQJGFun.endDpsRankPrize.bind(HQJGFun)); + G.on("PLAYER_PAY", HQJGFun.buy.bind(HQJGFun)); } \ No newline at end of file diff --git a/src/json/huodong.json5 b/src/json/huodong.json5 index 0d50fa0..c3f9411 100644 --- a/src/json/huodong.json5 +++ b/src/json/huodong.json5 @@ -1,7397 +1,18546 @@ [ - { - "hdid" : 1, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 9999, // 活动开始天数 - "rtime" : 300, // 活动显示结束天数 - "etime" : 300, // 活动实际结束 - "name": "intr_ychd_title_1", - "icon": "dfry_qhdr", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //模板 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr1: 'intr_yczm_tips_2', - intr2: 'intr_yczm_tips_3', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_1', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab1: 'intr_ychd_tab_name_2', - tab2: 'intr_ychd_tab_name_4', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '1': '8', - '2': '4', - //礼包 - gift: [ - { - index: 0, - need: [], - free: true, - payId: '', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 200} ] - }, - { - index: 1, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 500}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '2', 'n': 2000} ], - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_1_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_1_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_1_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_1_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_1_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] - }, - { - index: 7, - need: [], - free: false, - payId: 'ycmb_1_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [[2],5], - tasklist:{ - '1': { - '1001': { - 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 5, - 'cond': ['4'], - 'stype': 115, - //任务进度计数是否清零:0-不配 1-清零 - 'zero': 1 - }, - '1002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 10, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '1003': { - 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 15, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '1004': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 1, - 'pval': 25, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - }, - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 600, - 'cond': ['2'], - 'stype': 134 - }, - '2002': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 2000, - 'cond': ['2'], - 'stype': 134 - }, - '2003': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 13000, - 'cond': ['2'], - 'stype': 134 - }, - '2004': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 2, - 'pval': 35000, - 'cond': ['2'], - 'stype': 134 - }, - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - }, - '3003': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 5, - 'cond': [], - 'stype': 135 - }, - }, - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 3000, - 'cond': ['9'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 10000, - 'cond': ['9'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 20000, - 'cond': ['9'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 40000, - 'cond': ['9'], - 'stype': 134 - }, - } + { + "hdid": 1, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 9999, + // 活动开始天数 + "rtime": 300, + // 活动显示结束天数 + "etime": 300, + // 活动实际结束 + "name": "intr_ychd_title_1", + "icon": "dfry_qhdr", + "showtime": "仅供参考,会复写正确值", + "data": { + //模板 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr1: 'intr_yczm_tips_2', + intr2: 'intr_yczm_tips_3', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_1', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab1: 'intr_ychd_tab_name_2', + tab2: 'intr_ychd_tab_name_4', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '1': '8', + '2': '4', + //礼包 + gift: [ + { + index: 0, + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 } - } - }, - { - "hdid" : 3, - "htype" : 1, - "stype" : 100, - "ttype" : 0, - "stime" : 0, - "rtime" : 3, - "etime" : 3, - "name": "intr_ychd_title_4", - "icon": "dfry_qhdr", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日获得紫色装备 mfmid 1683191 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_4', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '8', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 800}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '2', 'n': 1000} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_1_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '2', 'n': 1000},{'a': 'attr', 't': 'jinbi', 'n': 100000} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_1_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '2', 'n': 3000},{'a': 'attr', 't': 'jinbi', 'n': 600000} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_1_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '615', 'n': 1},{'a': 'item', 't': '2', 'n': 4000} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_1_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '615', 'n': 2},{'a': 'item', 't': '2', 'n': 8000} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_1_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '609', 'n': 1},{'a': 'item', 't': '2', 'n': 20000} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_1_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '611', 'n': 1},{'a': 'item', 't': '2', 'n': 40000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录(一次性任务) 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '2', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 5, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '4002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 10, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '4003': { - 'prize': [{'a': 'item', 't': '2', 'n': 700}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 15, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '4004': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_1', - 'type': 4, - 'pval': 25, - 'cond': ['4'], - 'stype': 115, - 'zero': 1 - }, - '4005': { - 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 600, - 'cond': ['2'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 2000, - 'cond': ['2'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '2', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 13000, - 'cond': ['2'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_huan_des_1', - 'type': 4, - 'pval': 35000, - 'cond': ['2'], - 'stype': 134 - }, - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '2', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '2', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 4, - "htype" : 1, - "stype" : 100, - "ttype" : 0, - "stime" : 3, - "rtime" : 6, - "etime" : 6, - "name": "intr_ychd_title_5", - "icon": "dfry_cscp", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日修复胶 mfmid 1683192 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_5', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '38', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 4000}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '21', 'n': 1000} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_5_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_5_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_5_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_5_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_5_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_5_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 600, - 'cond': ['21'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 1200, - 'cond': ['21'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 2000, - 'cond': ['21'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 3600, - 'cond': ['21'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 5400, - 'cond': ['21'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 7200, - 'cond': ['21'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 9200, - 'cond': ['21'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 12000, - 'cond': ['21'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 5, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 6, // 活动开始天数 - "rtime" : 9, // 活动显示结束天数 - "etime" : 9, // 活动实际结束 - "name": "intr_ychd_title_6", - "icon": "dfry_zswq", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日专属材料 mfmid 1683193 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_6', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '2', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 3500}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '9', 'n': 5000} ] - }, - { - index: 1, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 3200}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '10', 'n': 200} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_3_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '10', 'n': 70} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_3_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '9', 'n': 3000} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_3_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '9', 'n': 3000}, {'a': 'item', 't': '10', 'n': 150} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_3_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '9', 'n': 5000}, {'a': 'item', 't': '10', 'n': 300} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_3_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '9', 'n': 20000}, {'a': 'item', 't': '10', 'n': 500} ] - }, - { - index: 7, - need: [], - free: false, - payId: 'ycmb_3_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '9', 'n': 40000}, {'a': 'item', 't': '10', 'n': 1000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 3000, - 'cond': ['9'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 10000, - 'cond': ['9'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 20000, - 'cond': ['9'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 40000, - 'cond': ['9'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 100, - 'cond': ['10'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 300, - 'cond': ['10'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 500, - 'cond': ['10'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 1000, - 'cond': ['10'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 6, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 9, // 活动开始天数 - "rtime" : 12, // 活动显示结束天数 - "etime" : 12, // 活动实际结束 - "name": "intr_ychd_title_7", - "icon": "dfry_ypj", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日紫色配件 mfmid 1683194 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_7', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '37', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 140}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '28', 'n': 2000} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_4_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '28', 'n': 1000},{'a': 'item', 't': '29', 'n': 20} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_4_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '28', 'n': 5000},{'a': 'item', 't': '29', 'n': 40} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_4_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '606', 'n': 2}, {'a': 'item', 't': '29', 'n': 80} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_4_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '606', 'n': 4}, {'a': 'item', 't': '29', 'n': 150} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_4_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '605', 'n': 6}, {'a': 'item', 't': '29', 'n': 400} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_4_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '605', 'n': 12}, {'a': 'item', 't': '29', 'n': 800} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 1, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4002': { - 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 6, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4003': { - 'prize': [{'a': 'item', 't': '28', 'n': 2500}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 12, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4004': { - 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 18, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4005': { - 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 40, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4006': { - 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 50, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4007': { - 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 60, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4008': { - 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 70, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - } - - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 7, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 12, // 活动开始天数 - "rtime" : 15, // 活动显示结束天数 - "etime" : 15, // 活动实际结束 - "name": "intr_ychd_title_8", - "icon": "dfry_sxzs", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日装备蓝图 mfmid 1683195 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_8', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '13', 'n': 600} ] - }, - { - index: 1, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 2500}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '13', 'n': 1000} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_7_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_7_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '13', 'n': 500} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_7_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '13', 'n': 1000} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_7_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '13', 'n': 1000} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_7_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 30}, {'a': 'item', 't': '13', 'n': 3000} ] - }, - { - index: 7, - need: [], - free: false, - payId: 'ycmb_7_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 60}, {'a': 'item', 't': '13', 'n': 5000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 100, - 'cond': ['18'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '18', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 400, - 'cond': ['18'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 900, - 'cond': ['18'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '18', 'n': 80}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 1600, - 'cond': ['18'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '18', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 2500, - 'cond': ['18'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '18', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 3500, - 'cond': ['18'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '627', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 4500, - 'cond': ['18'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_5', - 'type': 4, - 'pval': 6000, - 'cond': ['18'], - 'stype': 134 - } - - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '18', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '18', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 8, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 15, // 活动开始天数 - "rtime" : 18, // 活动显示结束天数 - "etime" : 18, // 活动实际结束 - "name": "intr_ychd_title_9", - "icon": "dfry_jxtj", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日装备调校合金 mfmid 1683198 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_9', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '2', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 7000}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '19', 'n': 500} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_6_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '19', 'n': 50},{'a': 'attr', 't': 'jinbi', 'n': 100000} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_6_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '19', 'n': 150},{'a': 'attr', 't': 'jinbi', 'n': 600000} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_6_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '19', 'n': 200}, {'a': 'item', 't': '615', 'n': 1} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_6_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '19', 'n': 400}, {'a': 'item', 't': '615', 'n': 2} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_6_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '19', 'n': 1000}, {'a': 'item', 't': '609', 'n': 1} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_6_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '19', 'n': 2000}, {'a': 'item', 't': '611', 'n': 1} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '19', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 90, - 'cond': ['19'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '19', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 200, - 'cond': ['19'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '19', 'n': 40}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 400, - 'cond': ['19'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '19', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 700, - 'cond': ['19'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '19', 'n': 60}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 1000, - 'cond': ['19'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '19', 'n': 70}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 1500, - 'cond': ['19'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '615', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 2000, - 'cond': ['19'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '625', 'n': 1}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_6', - 'type': 4, - 'pval': 3000, - 'cond': ['19'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '19', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '19', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 9, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 18, // 活动开始天数 - "rtime" : 21, // 活动显示结束天数 - "etime" : 21, // 活动实际结束 - "name": "intr_ychd_title_10", - "icon": "dfry_qnbf", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日人才档案和营养液 mfmid 1683199 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_10', - //活动icon - icon: 'dfry_qnbf', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '13', 'n': 600} ] - }, - { - index: 1, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 2500}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '13', 'n': 1000} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_7_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_7_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '27', 'n': 7000} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_7_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '27', 'n': 15000} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_7_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '27', 'n': 20000}, {'a': 'item', 't': '13', 'n': 900} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_7_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '27', 'n': 50000} ] - }, - { - index: 7, - need: [], - free: false, - payId: 'ycmb_7_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 40}, {'a': 'item', 't': '27', 'n': 100000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 20000, - 'cond': ['27'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 40000, - 'cond': ['27'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 60000, - 'cond': ['27'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 80000, - 'cond': ['27'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 120000, - 'cond': ['27'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 400, - 'cond': ['13'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1000, - 'cond': ['13'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1800, - 'cond': ['13'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 10, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 21, // 活动开始天数 - "rtime" : 24, // 活动显示结束天数 - "etime" : 24, // 活动实际结束 - "name": "intr_ychd_title_5", - "icon": "dfry_cscp", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日修复胶 mfmid 16831910 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_5', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '38', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 4000}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '21', 'n': 1000} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_5_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '21', 'n': 200} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_5_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '21', 'n': 600} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_5_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '21', 'n': 1500} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_5_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '21', 'n': 2500} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_5_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '21', 'n': 6000} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_5_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '21', 'n': 12000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '21', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 600, - 'cond': ['21'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 1200, - 'cond': ['21'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '21', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 2000, - 'cond': ['21'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '21', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 3600, - 'cond': ['21'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '21', 'n': 300}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 5400, - 'cond': ['21'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '21', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 7200, - 'cond': ['21'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '21', 'n': 500}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 9200, - 'cond': ['21'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '21', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_3', - 'type': 4, - 'pval': 12000, - 'cond': ['21'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '21', 'n': 20}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '21', 'n': 100}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 11, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 24, // 活动开始天数 - "rtime" : 27, // 活动显示结束天数 - "etime" : 27, // 活动实际结束 - "name": "intr_ychd_title_6", - "icon": "dfry_zswq", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日专属材料 mfmid 16831911 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_6', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '2', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 3500}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '9', 'n': 5000} ] - }, - { - index: 1, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 3200}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '10', 'n': 200} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_3_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '10', 'n': 70} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_3_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '9', 'n': 3000} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_3_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '9', 'n': 3000}, {'a': 'item', 't': '10', 'n': 150} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_3_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '9', 'n': 5000}, {'a': 'item', 't': '10', 'n': 300} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_3_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '9', 'n': 20000}, {'a': 'item', 't': '10', 'n': 500} ] - }, - { - index: 7, - need: [], - free: false, - payId: 'ycmb_3_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '9', 'n': 40000}, {'a': 'item', 't': '10', 'n': 1000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '9', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 3000, - 'cond': ['9'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '10', 'n': 50}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 10000, - 'cond': ['9'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '9', 'n': 400}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 20000, - 'cond': ['9'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '10', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_10', - 'type': 4, - 'pval': 40000, - 'cond': ['9'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '9', 'n': 600}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 100, - 'cond': ['10'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '9', 'n': 800}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 300, - 'cond': ['10'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '10', 'n': 200}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 500, - 'cond': ['10'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '9', 'n': 2000}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_11', - 'type': 4, - 'pval': 1000, - 'cond': ['10'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '10', 'n': 5}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '9', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 12, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 27, // 活动开始天数 - "rtime" : 30, // 活动显示结束天数 - "etime" : 30, // 活动实际结束 - "name": "intr_ychd_title_7", - "icon": "dfry_ypj", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日紫色配件 mfmid 16831912 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_7', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '3': '37', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 140}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '28', 'n': 2000} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_4_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '28', 'n': 1000},{'a': 'item', 't': '29', 'n': 20} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_4_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '28', 'n': 5000},{'a': 'item', 't': '29', 'n': 40} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_4_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '606', 'n': 2}, {'a': 'item', 't': '29', 'n': 80} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_4_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '606', 'n': 4}, {'a': 'item', 't': '29', 'n': 150} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_4_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '605', 'n': 6}, {'a': 'item', 't': '29', 'n': 400} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_4_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '605', 'n': 12}, {'a': 'item', 't': '29', 'n': 800} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '28', 'n': 1000}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 1, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4002': { - 'prize': [{'a': 'item', 't': '28', 'n': 1500}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 6, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4003': { - 'prize': [{'a': 'item', 't': '28', 'n': 3500}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 12, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4004': { - 'prize': [{'a': 'item', 't': '28', 'n': 10000}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_4', - 'type': 4, - 'pval': 18, - 'cond': ['4'], - 'stype': 137, - 'zero': 1 - }, - '4005': { - 'prize': [{'a': 'item', 't': '20', 'n': 100}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 40, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4006': { - 'prize': [{'a': 'item', 't': '20', 'n': 150}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 50, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4007': { - 'prize': [{'a': 'item', 't': '606', 'n': 2}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 60, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - }, - '4008': { - 'prize': [{'a': 'item', 't': '606', 'n': 4}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_9', - 'type': 4, - 'pval': 70, - 'cond': ['4'], - 'stype': 138, - 'zero': 1 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '29', 'n': 10}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '20', 'n': 50}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 13, // 唯一活动id - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 30, // 活动开始天数 - "rtime" : 33, // 活动显示结束天数 - "etime" : 33, // 活动实际结束 - "name": "intr_ychd_title_10", - "icon": "dfry_qnbf", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //每日人才档案和营养液 mfmid 16831915 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr0: 'intr_yczm_tips_1', - intr3: 'intr_yczm_tips_5', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_10', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab0: 'intr_ychd_tab_name_1', - tab3: 'intr_ychd_tab_name_3', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 2100}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '13', 'n': 600} ] - }, - { - index: 1, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 2500}], - free: false, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '13', 'n': 1000} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_7_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 60},{'a': 'item', 't': '13', 'n': 200} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_7_2', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '13', 'n': 500} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_7_3', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680}, {'a': 'item', 't': '13', 'n': 1000} ] - }, - { - index: 5, - need: [], - free: false, - payId: 'ycmb_7_4', - buyNum: 2, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '600', 'n': 20}, {'a': 'item', 't': '13', 'n': 1000} ] - }, - { - index: 6, - need: [], - free: false, - payId: 'ycmb_7_5', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '600', 'n': 30}, {'a': 'item', 't': '13', 'n': 3000} ] - }, - { - index: 7, - need: [], - free: false, - payId: 'ycmb_7_6', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '600', 'n': 60}, {'a': 'item', 't': '13', 'n': 5000} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [], - tasklist:{ - '4': { - '4001': { - 'prize': [{'a': 'item', 't': '13', 'n': 5}, {'a': 'attr', 't': 'rmbmoney', 'n': 100}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 20000, - 'cond': ['27'], - 'stype': 134 - }, - '4002': { - 'prize': [{'a': 'item', 't': '13', 'n': 10}, {'a': 'attr', 't': 'rmbmoney', 'n': 200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 40000, - 'cond': ['27'], - 'stype': 134 - }, - '4003': { - 'prize': [{'a': 'item', 't': '13', 'n': 15}, {'a': 'attr', 't': 'rmbmoney', 'n': 300}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 60000, - 'cond': ['27'], - 'stype': 134 - }, - '4004': { - 'prize': [{'a': 'item', 't': '13', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 500}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 80000, - 'cond': ['27'], - 'stype': 134 - }, - '4005': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'rmbmoney', 'n': 700}], - 'tujing': '', - 'title': 'intr_yczm_day_des_8', - 'type': 4, - 'pval': 120000, - 'cond': ['27'], - 'stype': 134 - }, - '4006': { - 'prize': [{'a': 'item', 't': '13', 'n': 30}, {'a': 'attr', 't': 'rmbmoney', 'n': 1000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 400, - 'cond': ['13'], - 'stype': 134 - }, - '4007': { - 'prize': [{'a': 'item', 't': '13', 'n': 35}, {'a': 'attr', 't': 'rmbmoney', 'n': 1200}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1000, - 'cond': ['13'], - 'stype': 134 - }, - '4008': { - 'prize': [{'a': 'item', 't': '600', 'n': 20}, {'a': 'attr', 't': 'rmbmoney', 'n': 2000}], - 'tujing': '', - 'title': 'intr_yczm_day_des_7', - 'type': 4, - 'pval': 1800, - 'cond': ['13'], - 'stype': 134 - } - }, - '3': { - '3001': { - 'prize': [{'a': 'item', 't': '27', 'n': 500}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 1, - 'cond': [], - 'stype': 135 - }, - '3002': { - 'prize': [{'a': 'item', 't': '13', 'n': 25}, {'a': 'attr', 't': 'jinbi', 'n': 200000}], - 'tujing': '', - 'title': 'intr_yczm_denglu_des_1', - 'type': 3, - 'pval': 2, - 'cond': [], - 'stype': 135 - } - } - } - } - }, - { - "hdid" : 100, // 唯一活动id 人才计划 - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 7, // 活动显示结束天数 - "etime" : 7, // 活动实际结束 - "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //轮数抽卡 mfmid 168318 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr2: 'intr_yczm_tips_3', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_3', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab2: 'intr_ychd_tab_name_4', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '2': '9', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], - free: true, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_2_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '4', 'n': 5},{'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_2_2', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '4', 'n': 10},{'a': 'item', 't': '4', 'n': 10} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_2_3', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '4', 'n': 25},{'a': 'item', 't': '4', 'n': 25} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_4', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '4', 'n': 50},{'a': 'item', 't': '4', 'n': 50} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_5', - buyNum: 10, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '4', 'n': 100},{'a': 'item', 't': '4', 'n': 100} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [[2],5], - tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 - } - } - } - } - }, - - { - "hdid" : 101, // 唯一活动id 人才计划 - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 14, // 活动开始天数 - "rtime" : 21, // 活动显示结束天数 - "etime" : 21, // 活动实际结束 - "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //轮数抽卡 mfmid 168318 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr2: 'intr_yczm_tips_3', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_3', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab2: 'intr_ychd_tab_name_4', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '2': '9', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], - free: true, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_2_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '4', 'n': 5},{'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_2_2', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '4', 'n': 10},{'a': 'item', 't': '4', 'n': 10} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_2_3', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '4', 'n': 25},{'a': 'item', 't': '4', 'n': 25} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_4', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '4', 'n': 50},{'a': 'item', 't': '4', 'n': 50} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_5', - buyNum: 10, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '4', 'n': 100},{'a': 'item', 't': '4', 'n': 100} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [[2],5], - tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 - } - } - } - } - }, - - { - "hdid" : 102, // 唯一活动id 人才计划 - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 28, // 活动开始天数 - "rtime" : 35, // 活动显示结束天数 - "etime" : 35, // 活动实际结束 - "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //轮数抽卡 mfmid 168318 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr2: 'intr_yczm_tips_3', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_3', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab2: 'intr_ychd_tab_name_4', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '2': '9', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], - free: true, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_2_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '4', 'n': 5},{'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_2_2', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '4', 'n': 10},{'a': 'item', 't': '4', 'n': 10} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_2_3', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '4', 'n': 25},{'a': 'item', 't': '4', 'n': 25} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_4', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '4', 'n': 50},{'a': 'item', 't': '4', 'n': 50} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_5', - buyNum: 10, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '4', 'n': 100},{'a': 'item', 't': '4', 'n': 100} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [[2],5], - tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 - } - } - } - } - }, - { - "hdid" : 103, // 唯一活动id 人才计划 - "htype" : 1, // 后端唯一识别标识(1:养成目标) - "stype" : 101, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 42, // 活动开始天数 - "rtime" : 49, // 活动显示结束天数 - "etime" : 49, // 活动实际结束 - "name": "intr_ychd_title_3", - "icon": "dfry_rcjh", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //轮数抽卡 mfmid 168318 - //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - intr2: 'intr_yczm_tips_3', - intr4: 'intr_yczm_tips_4', - //活动名称 - name: 'intr_ychd_title_3', - //活动icon - icon: 'icon_ydlb', - //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - tab2: 'intr_ychd_tab_name_4', - tab4: 'intr_ychd_tab_name_5', - //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 - '2': '9', - //礼包 - gift: [ - { - index: 0, - need: [{'a': 'attr', t: 'rmbmoney', 'n': 0}], - free: true, - payId: '', - buyNum: 1, - prize: [ {'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 1, - need: [], - free: false, - payId: 'ycmb_2_1', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'attr', 't': 'rmbmoney', 'n': 300},{'a': 'item', 't': '4', 'n': 5},{'a': 'item', 't': '4', 'n': 5} ] - }, - { - index: 2, - need: [], - free: false, - payId: 'ycmb_2_2', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'attr', 't': 'rmbmoney', 'n': 680},{'a': 'item', 't': '4', 'n': 10},{'a': 'item', 't': '4', 'n': 10} ] - }, - { - index: 3, - need: [], - free: false, - payId: 'ycmb_2_3', - buyNum: 1, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'attr', 't': 'rmbmoney', 'n': 1280},{'a': 'item', 't': '4', 'n': 25},{'a': 'item', 't': '4', 'n': 25} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_4', - buyNum: 3, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'attr', 't': 'rmbmoney', 'n': 3280},{'a': 'item', 't': '4', 'n': 50},{'a': 'item', 't': '4', 'n': 50} ] - }, - { - index: 4, - need: [], - free: false, - payId: 'ycmb_2_5', - buyNum: 10, - prize: [ {'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'attr', 't': 'rmbmoney', 'n': 6480},{'a': 'item', 't': '4', 'n': 100},{'a': 'item', 't': '4', 'n': 100} ] - } - ], - //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 - maxlun: [[2],5], - tasklist:{ - '2': { - '2001': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 50, - 'cond': [], - 'stype': 118 - }, - '2002': { - 'prize': [{'a': 'item', 't': '4', 'n': 5}, {'a': 'item', 't': '626', 'n': 10}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 100, - 'cond': [], - 'stype': 118 - }, - '2003': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 200, - 'cond': [], - 'stype': 118 - }, - '2004': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 250, - 'cond': [], - 'stype': 118 - }, - '2005': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '600', 'n': 20}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 300, - 'cond': [], - 'stype': 118 - }, - '2006': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 400, - 'cond': [], - 'stype': 118 - }, - '2007': { - 'prize': [{'a': 'item', 't': '4', 'n': 10}, {'a': 'item', 't': '619', 'n': 1}], - 'tujing': '', - 'title': 'intr_yczm_day_des_2', - 'type': 2, - 'pval': 500, - 'cond': [], - 'stype': 118 - } - } - } - } - }, - { - "hdid" : 2000, // 唯一活动id 掉落兑换活动 - "htype" : 2, // 后端唯一识别标识 - "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 7, // 活动开始天数 - "rtime" : 14, // 活动显示结束天数 - "etime" : 14, // 活动实际结束 - "name": "diaoluoduihuan", - "icon": "icon_ywtx", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //对应mfm 14701 - diaoluo: [ - //掉落的物品 - { - a: 'item', - t: '49', - n: 4, - p: 10, - s: 3600 - } - - ], - tiaozhuan: 3, - event: { - itemId: '49', - duihuan: [ - { need: [{a: 'item', t: '49', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, - { need: [{a: 'item', t: '49', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 10000}], num: 4 }, - { need: [{a: 'item', t: '49', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, - { need: [{a: 'item', t: '49', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, - { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, - { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, - { need: [{a: 'item', t: '49', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, - { need: [{a: 'item', t: '49', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, - { need: [{a: 'item', t: '49', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, - ], - shop: [ - { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, - { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false } - ], - gift: [ - { payId: '', num: 1, prize: [{a: 'item', t: '49', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, - { payId: 'duihuan_1_1', prize: [{a: 'item', t: '49', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, - { payId: 'duihuan_1_2', prize: [{a: 'item', t: '49', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, - { payId: 'duihuan_1_3', prize: [{a: 'item', t: '49', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, - { payId: 'duihuan_1_4', prize: [{a: 'item', t: '49', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, - { payId: 'duihuan_1_5', prize: [{a: 'item', t: '49', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, - ] - } - } - }, - - { - "hdid" : 2001, // 唯一活动id 掉落兑换活动 - "htype" : 2, // 后端唯一识别标识 - "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 21, // 活动开始天数 - "rtime" : 28, // 活动显示结束天数 - "etime" : 28, // 活动实际结束 - "name": "diaoluoduihuan", - "icon": "icon_ywtx", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //对应mfm 14701 - diaoluo: [ - //掉落的物品 - { - a: 'item', - t: '49', - n: 4, - p: 10, - s: 3600 - } - - ], - tiaozhuan: 3, - event: { - itemId: '49', - duihuan: [ - { need: [{a: 'item', t: '49', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, - { need: [{a: 'item', t: '49', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 20000}], num: 4 }, - { need: [{a: 'item', t: '49', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, - { need: [{a: 'item', t: '49', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, - { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, - { need: [{a: 'item', t: '49', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, - { need: [{a: 'item', t: '49', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, - { need: [{a: 'item', t: '49', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, - { need: [{a: 'item', t: '49', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, - ], - shop: [ - { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, - { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '624', n: 20}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '629', n: 20}], num: 3, free: false }, - ], - gift: [ - { payId: '', num: 1, prize: [{a: 'item', t: '49', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, - { payId: 'duihuan_1_1', prize: [{a: 'item', t: '49', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, - { payId: 'duihuan_1_2', prize: [{a: 'item', t: '49', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, - { payId: 'duihuan_1_3', prize: [{a: 'item', t: '49', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, - { payId: 'duihuan_1_4', prize: [{a: 'item', t: '49', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, - { payId: 'duihuan_1_5', prize: [{a: 'item', t: '49', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, - ] - } - } - }, - - { - "hdid" : 2002, // 唯一活动id 掉落兑换活动 - "htype" : 2, // 后端唯一识别标识 - "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 35, // 活动开始天数 - "rtime" : 42, // 活动显示结束天数 - "etime" : 42, // 活动实际结束 - "name": "diaoluoduihuan", - "icon": "icon_ywtx", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //对应mfm 14701 - diaoluo: [ - //掉落的物品 - { - a: 'item', - t: '50', - n: 4, - p: 10, - s: 3600 - } - - ], - tiaozhuan: 3, - event: { - itemId: '50', - duihuan: [ - { need: [{a: 'item', t: '50', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, - { need: [{a: 'item', t: '50', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 20000}], num: 4 }, - { need: [{a: 'item', t: '50', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, - { need: [{a: 'item', t: '50', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, - { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, - { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, - { need: [{a: 'item', t: '50', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, - { need: [{a: 'item', t: '50', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, - { need: [{a: 'item', t: '50', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, - ], - shop: [ - { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, - { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '624', n: 20}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '629', n: 20}], num: 3, free: false }, - ], - gift: [ - { payId: '', num: 1, prize: [{a: 'item', t: '50', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, - { payId: 'duihuan_1_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, - { payId: 'duihuan_1_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, - { payId: 'duihuan_1_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, - { payId: 'duihuan_1_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, - { payId: 'duihuan_1_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, - ] - } - } - }, - - { - "hdid" : 2003, // 唯一活动id 掉落兑换活动 - "htype" : 2, // 后端唯一识别标识 - "stype" : 200, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 49, // 活动开始天数 - "rtime" : 56, // 活动显示结束天数 - "etime" : 56, // 活动实际结束 - "name": "diaoluoduihuan", - "icon": "icon_ywtx", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //对应mfm 14701 - diaoluo: [ - //掉落的物品 - { - a: 'item', - t: '50', - n: 4, - p: 10, - s: 3600 - } - - ], - tiaozhuan: 3, - event: { - itemId: '50', - duihuan: [ - { need: [{a: 'item', t: '50', n: 6000}], prize: [{a: 'item', t: '610', n: 1}], num: 2 }, - { need: [{a: 'item', t: '50', n: 3500}], prize: [{a: 'item', t: '600', n: 80},{a: 'item', t: '12', n: 20000}], num: 4 }, - { need: [{a: 'item', t: '50', n: 1200}], prize: [{a: 'item', t: '600', n: 20},{a: 'item', t: '609', n: 1},{a: 'item', t: '4', n: 20}], num: 1 }, - { need: [{a: 'item', t: '50', n: 1500}], prize: [{a: 'item', t: '611', n: 1},{a: 'item', t: '624', n: 50}], num: 1 }, - { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '607', n: 20}], num: 1 }, - { need: [{a: 'item', t: '50', n: 350}], prize: [{a: 'item', t: '600', n: 5}], num: 1 }, - { need: [{a: 'item', t: '50', n: 100}], prize: [{a: 'item', t: '4', n: 1}], num: 99 }, - { need: [{a: 'item', t: '50', n: 10}], prize: [{a: 'item', t: '12', n: 25}], num: 99 }, - { need: [{a: 'item', t: '50', n: 2}], prize: [{a: 'item', t: '2', n: 10}], num: 99 }, - ], - shop: [ - { need: [{a: 'attr', t: 'rmbmoney', n: 0}], prize: [{a: 'attr', t: 'rmbmoney', n: 500}], num: 1, free: true }, - { need: [{a: 'attr', t: 'rmbmoney', n: 800}], prize: [{a: 'item', t: '4', n: 5},{a: 'item', t: '2', n: 1000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 2250}], prize: [{a: 'item', t: '4', n: 10},{a: 'item', t: '12', n: 2000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '12', n: 6000}], num: 1, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '2', n: 12000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '9', n: 6000}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '10', n: 300}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '612', n: 20}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 20000}], prize: [{a: 'item', t: '607', n: 40},{a: 'item', t: '600', n: 40}], num: 4, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '624', n: 20}], num: 3, free: false }, - { need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '629', n: 20}], num: 3, free: false }, - ], - gift: [ - { payId: '', num: 1, prize: [{a: 'item', t: '50', n: 20}, {a: 'attr', t: 'rmbmoney', n: 200}], free: true }, - { payId: 'duihuan_1_1', prize: [{a: 'item', t: '50', n: 50}, {a: 'attr', t: 'rmbmoney', n: 600}], free: false }, - { payId: 'duihuan_1_2', prize: [{a: 'item', t: '50', n: 100}, {a: 'attr', t: 'rmbmoney', n: 1360}], free: false }, - { payId: 'duihuan_1_3', prize: [{a: 'item', t: '50', n: 200}, {a: 'attr', t: 'rmbmoney', n: 2560}], free: false }, - { payId: 'duihuan_1_4', prize: [{a: 'item', t: '50', n: 600}, {a: 'attr', t: 'rmbmoney', n: 6560}], free: false }, - { payId: 'duihuan_1_5', prize: [{a: 'item', t: '50', n: 1200}, {a: 'attr', t: 'rmbmoney', n: 12960}], free: false }, - ] - } - } - }, - - { - "hdid" : 3000, // 唯一活动id 传说之路 - "htype" : 3, // 后端唯一识别标识 - "stype" : 300, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 30, // 活动显示结束天数 - "etime" : 30, // 活动实际结束 - "name": "xinfupeiyang", - "icon": "icon_qiridenglu", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //干部id - hid: '5001', - //任务 - task: [ - { idx: 0,total: 3, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, - { idx: 1,total: 50, type: 'lv', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, - { idx: 2,total: 4, type: 'jieji', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 90, type: 'lv', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, - { idx: 4,total: 5, type: 'jieji', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 130, type: 'lv', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, - { idx: 6,total: 6, type: 'jieji', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 170, type: 'lv', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, - { idx: 8,total: 7, type: 'jieji', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 210, type: 'lv', prize: [{a: 'item', t: '5001', n: 20}], des:'intr_cszl_des_2' } - ], - //宝箱 - box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } - } - }, - { - "hdid" : 3001, // 唯一活动id 传说之路 - "htype" : 3, // 后端唯一识别标识 - "stype" : 300, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 30, // 活动开始天数 - "rtime" : 60, // 活动显示结束天数 - "etime" : 60, // 活动实际结束 - "name": "xinfupeiyang", - "icon": "icon_qiridenglu", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //干部id - hid: '5002', - //任务 - task: [ - { idx: 0,total: 80, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, - { idx: 1,total: 4, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, - { idx: 2,total: 120, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, - { idx: 4,total: 160, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, - { idx: 6,total: 200, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, - { idx: 8,total: 240, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 8, type: 'jieji', prize: [{a: 'item', t: '5002', n: 20}], des:'intr_cszl_des_2' } - ], - //宝箱 - box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } - } - }, - { - "hdid" : 3002, // 唯一活动id 传说之路 心腹培养 - "htype" : 3, // 后端唯一识别标识 - "stype" : 300, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 60, // 活动开始天数 - "rtime" : 90, // 活动显示结束天数 - "etime" : 90, // 活动实际结束 - "name": "xinfupeiyang", - "icon": "icon_xfdj", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //干部id - hid: '5004', - //任务 - task: [ - { idx: 0,total: 100, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1'}, - { idx: 1,total: 5, type: 'jieji', prize: [{a: 'item', t: '12', n: 500}], des:'intr_cszl_des_2' }, - { idx: 2,total: 140, type: 'lv', prize: [{a: 'item', t: '1', n: 500000}], des:'intr_cszl_des_1' }, - { idx: 3,total: 6, type: 'jieji', prize: [{a: 'item', t: '12', n: 1000}], des:'intr_cszl_des_2' }, - { idx: 4,total: 180, type: 'lv', prize: [{a: 'item', t: '1', n: 800000}], des:'intr_cszl_des_1' }, - { idx: 5,total: 7, type: 'jieji', prize: [{a: 'item', t: '12', n: 1500}], des:'intr_cszl_des_2' }, - { idx: 6,total: 220, type: 'lv', prize: [{a: 'item', t: '1', n: 1200000}], des:'intr_cszl_des_1' }, - { idx: 7,total: 8, type: 'jieji', prize: [{a: 'item', t: '12', n: 2000}], des:'intr_cszl_des_2' }, - { idx: 8,total: 260, type: 'lv', prize: [{a: 'item', t: '1', n: 2000000}], des:'intr_cszl_des_1' }, - { idx: 9,total: 9, type: 'jieji', prize: [{a: 'item', t: '5004', n: 20}], des:'intr_cszl_des_2' } - ], - //宝箱 - box: { total: 10, prize: [{a: 'item', t: '610', n: 1}] } - } - }, - { - "hdid" : 4000, // 唯一活动id 自选礼包 - "htype" : 4, // 后端唯一识别标识 - "stype" : 400, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 15, // 活动开始天数 - "rtime" : 29, // 活动显示结束天数 - "etime" : 29, // 活动实际结束 - "name": "zixuanlibao", - "icon": "icon_tuisonglibao", - "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 - "data" : { - //活动文本描述 - intr: "intr_zixuan_1", - //礼包 - gift: [ - { - need: [], - free: true, - payId: '', - buyNum: 1, - prize: [{a: 'attr', t: 'rmbmoney', n: 30}], - dlz: [ - { - "1":{a: 'attr', t: 'jinbi', n: 50000}, - "2":{a: 'item', t: '1', n: 50000} - } - ] - }, - { - need: [], - free: false, - payId: 'zixuanlibao6', - buyNum: 1, - prize: [{a: 'attr', t: 'rmbmoney', n: 60}], - dlz: [ - { - "1":{a: 'item', t: '2', n: 60}, - "2":{a: 'item', t: '12', n: 50} - }, - { - "1":{a: 'item', t: '27', n: 1500}, - "2":{a: 'item', t: '1', n: 100000} - } - ] - }, - { - need: [], - free: false, - payId: 'zixuanlibao30', - buyNum: 2, - prize: [{a: 'attr', t: 'rmbmoney', n: 300}], - dlz: [ - { - "1":{a: 'item', t: '2', n: 200}, - "2":{a: 'item', t: '12', n: 100} - }, - { - "1":{a: 'item', t: '27', n: 7000}, - "2":{a: 'item', t: '1', n: 200000} - } - ] - }, - { - need: [], - free: false, - payId: 'zixuanlibao68', - buyNum: 2, - prize: [{a: 'attr', t: 'rmbmoney', n: 680}], - dlz: [ - { - "1":{a: 'item', t: '18', n: 100}, - "2":{a: 'item', t: '21', n: 200}, - "3":{a: 'item', t: '9', n: 1000} - }, - { - "1":{a: 'item', t: '27', n: 15000}, - "2":{a: 'item', t: '1', n: 300000} - } - ] - }, - { - need: [], - free: false, - payId: 'zixuanlibao128', - buyNum: 2, - prize: [{a: 'attr', t: 'rmbmoney', n: 1280}], - dlz: [ - { - "1":{a: 'item', t: '18', n: 200}, - "2":{a: 'item', t: '9', n: 2000}, - "3":{a: 'item', t: '10', n: 200} - }, - { - "1":{a: 'item', t: '27', n: 20000}, - "2":{a: 'item', t: '1', n: 500000} - } - ] - }, - { - need: [], - free: false, - payId: 'zixuanlibao328', - buyNum: 3, - prize: [{a: 'attr', t: 'rmbmoney', n: 3280}], - dlz: [ - { - "1":{a: 'item', t: '600', n: 20}, - "2":{a: 'item', t: '601', n: 20}, - "3":{a: 'item', t: '616', n: 40} - }, - { - "1":{a: 'item', t: '27', n: 50000}, - "2":{a: 'item', t: '1', n: 700000} - } - ] - }, - { - need: [], - free: false, - payId: 'zixuanlibao648', - buyNum: 3, - prize: [{a: 'attr', t: 'rmbmoney', n: 6480}], - dlz: [ - { - "1":{a: 'item', t: '600', n: 40}, - "2":{a: 'item', t: '601', n: 40}, - "3":{a: 'item', t: '616', n: 80} - }, - { - "1":{a: 'item', t: '27', n: 100000}, - "2":{a: 'item', t: '1', n: 1000000} - } - ] - } - ] - } - }, - - { - "hdid" : 5000, // 唯一活动id 累计充值 - "htype" : 5, // 后端唯一识别标识 - "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 7, // 活动显示结束天数 - "etime" : 7, // 活动实际结束 - "name": "leijichongzhi", - "icon": "icon_leijichongzhi", - "showtime" : "仅供参考,会复写正确值", - "data" : { - tasks: [ - { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, - { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, - { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, - { total: 10000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, - { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, - { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, - { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, - { - "hdid" : 5001, // 唯一活动id 累计充值 - "htype" : 5, // 后端唯一识别标识 - "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 7, // 活动开始天数 - "rtime" : 14, // 活动显示结束天数 - "etime" : 14, // 活动实际结束 - "name": "leijichongzhi", - "icon": "icon_leijichongzhi", - "showtime" : "仅供参考,会复写正确值", - "data" : { - tasks: [ - { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, - { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, - { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, - { total: 10000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, - { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, - { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, - { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, - { - "hdid" : 5002, // 唯一活动id 累计充值 - "htype" : 5, // 后端唯一识别标识 - "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 14, // 活动开始天数 - "rtime" : 21, // 活动显示结束天数 - "etime" : 21, // 活动实际结束 - "name": "leijichongzhi", - "icon": "icon_leijichongzhi", - "showtime" : "仅供参考,会复写正确值", - "data" : { - tasks: [ - { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, - { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, - { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, - { total: 10000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, - { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, - { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, - { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, - { - "hdid" : 5003, // 唯一活动id 累计充值 - "htype" : 5, // 后端唯一识别标识 - "stype" : 500, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 21, // 活动开始天数 - "rtime" : 28, // 活动显示结束天数 - "etime" : 28, // 活动实际结束 - "name": "leijichongzhi", - "icon": "icon_leijichongzhi", - "showtime" : "仅供参考,会复写正确值", - "data" : { - tasks: [ - { total: 1000, prize: [{a: 'attr', t: 'rmbmoney', n: 500},{a: 'item', t: '4', n: 2}] }, - { total: 2000, prize: [{a: 'attr', t: 'rmbmoney', n: 1000},{a: 'item', t: '12', n: 500}]}, - { total: 5000, prize: [{a: 'attr', t: 'rmbmoney', n: 1500},{a: 'item', t: '4', n: 5}]}, - { total: 10000, prize: [{a: 'attr', t: 'rmbmoney', n: 2000},{a: 'item', t: '600', n: 20}]}, - { total: 20000, prize: [{a: 'attr', t: 'rmbmoney', n: 3000},{a: 'item', t: '609', n: 1}]}, - { total: 30000, prize: [{a: 'attr', t: 'rmbmoney', n: 6000},{a: 'item', t: '611', n: 1}]}, - { total: 50000, prize: [{a: 'attr', t: 'rmbmoney', n: 10000},{a: 'item', t: '610', n: 1}]} - ] - } - }, - { - "hdid" : 6000, // 唯一活动id 七日登录 - "htype" : 6, // 后端唯一识别标识 - "stype" : 600, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 1, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 7, // 活动显示结束天数 - "etime" : 7, // 活动实际结束 - "name": "mainView_txt_huod1450", - "icon": "icon_qiridenglu", - "showtime" : "仅供参考,会复写正确值", - "data" : { - "arr": [ - { - day: 1, - prize: [{a: 'attr', t: 'rmbmoney', n: 200}] - }, - { - day: 2, - prize: [{a: 'hero', t: '4001', n: 1}] - }, - { - day: 3, - prize: [{a: 'equip', t: '1009', n: 1}] - }, - { - day: 4, - prize: [{a: 'item', t: '9', n: 200}] - }, - { - day: 5, - prize: [{a: 'item', t: '4', n: 10}] - }, - { - day: 6, - prize: [{a: 'attr', t: 'rmbmoney', n: 1000}] - }, - { - day: 7, - prize: [{a: 'hero', t: '5005', n: 1}] - } - ] - } - }, - { - "hdid" : 7000, // 唯一活动id 开服狂欢 - "htype" : 7, // 后端唯一识别标识 - "stype" : 700, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 0, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 7, // 活动显示结束天数 - "etime" : 7, // 活动实际结束 - "name": "KFKH", - "icon": "btn_kfkh", - "showtime" : "仅供参考,会复写正确值", - "data" : { - //登陆奖励 - loginPrize: [ - [{ a: 'equip', t: '3003', n: 1 }], - [{ a: 'item', t: '618', n: 1 }], - [{ a: 'item', t: '12', n: 200 }], - [{ a: 'item', t: '2', n: 400 }], - [{ a: 'attr', t: 'rmbmoney', n: 1500 }], - [{ a: 'attr', t: 'jinbi', n: 300000 }], - [{ a: 'item', t: '617', n: 1 }] - ], - //商品 - shop: [ - { buyNum: 1, day: 1, vip: 1, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 400 }], prize: [{ a: 'item', t: '2', n: 1000 }] }, - { buyNum: 1, day: 1, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1200 }], prize: [{ a: 'hero', t: '4010', n: 1 }] }, - { buyNum: 1, day: 2, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 680 }], prize: [{ a: 'item', t: '27', n: 5000 }] }, - { buyNum: 1, day: 2, vip: 3, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '620', n: 1 }] }, - { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '6', n: 20 }] }, - { buyNum: 1, day: 3, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 670 }], prize: [{ a: 'item', t: '615', n: 1 }] }, - { buyNum: 1, day: 4, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 600 }], prize: [{ a: 'item', t: '12', n: 800 }] }, - { buyNum: 1, day: 4, vip: 5, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, - { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1250 }], prize: [{ a: 'item', t: '1', n: 3000000 }] }, - { buyNum: 1, day: 5, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '621', n: 1 }] }, - { buyNum: 1, day: 6, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 625 }], prize: [{ a: 'attr', t: 'jinbi', n: 10000000 }] }, - { buyNum: 1, day: 6, vip: 6, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4440 }], prize: [{ a: 'item', t: '18', n: 888 }] }, - { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 500 }], prize: [{ a: 'item', t: '24', n: 10 }] }, - { buyNum: 1, day: 7, vip: 0, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 4500 }], prize: [{ a: 'item', t: '617', n: 1 }] }, - { buyNum: 1, day: 7, vip: 7, sale: 5, need: [{ a: 'attr', t: 'rmbmoney', n: 1340 }], prize: [{ a: 'item', t: '625', n: 1 }] }, - ], - //任务 - taskType: { - '今日登陆': 'toDayLogin_x', - '今日累计充值x元': 'toDayPay_x', - '任意装备强化至x级': 'equip_qh_lv', - '竞技场排名达到x': 'jjc_rank', - '同时出战x名紫色干部': 'fight_hero_colour_4', - '通过黑暗塔关卡': 'zccg_level', - '拥有x件蓝色及以上装备': 'has_equip_color_3', - '拥有x名进阶+1的干部': 'has_hero_jieji_1', - '佣兵助战上阵x个干部 ': 'helpHeros', - '维修厂老实轿车突破到x阶x星 ': 'wxcLv', - '干部羁绊属性激活x条 ': 'hero_jiban', - '玩家等级达到x级': 'lv', - '玩家总战力达到x': 'power', - '主线关卡': 'mapId' - }, - task: { - '1': [ - { taskId:'intr_task_name_444', taskType: 'toDayLogin_1', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_430', taskType: 'toDayPay_1', total: 1000, prize: [{ a:'attr', t:'rmbmoney', n: 500 },{ a:'item', t:'2', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_431', taskType: 'toDayPay_1', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'item', t:'12', n: 500 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_432', taskType: 'toDayPay_1', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'item', t:'2', n: 2000 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_433', taskType: 'toDayPay_1', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'12', n: 1000 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_434', taskType: 'mapId' , total: 20, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_435', taskType: 'mapId' , total: 30, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_436', taskType: 'mapId' , total: 40, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'12', n: 30 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_437', taskType: 'mapId' , total: 50, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_438', taskType: 'mapId' , total: 60, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'12', n: 50 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_439', taskType: 'equip_qh_lv', total: 10, prize: [{ a:'attr', t:'jinbi', n: 10000 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_440', taskType: 'equip_qh_lv', total: 20, prize: [{ a:'attr', t:'jinbi', n: 20000 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_441', taskType: 'equip_qh_lv', total: 30, prize: [{ a:'attr', t:'jinbi', n: 30000 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_442', taskType: 'equip_qh_lv', total: 40, prize: [{ a:'attr', t:'jinbi', n: 40000 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_443', taskType: 'equip_qh_lv', total: 50, prize: [{ a:'attr', t:'jinbi', n: 100000 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } - ], - '2': [ - { taskId:'intr_task_name_444', taskType: 'toDayLogin_2', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'618', n: 1 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_445', taskType: 'toDayPay_2', total: 2000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_446', taskType: 'toDayPay_2', total: 4000, prize: [{ a:'attr', t:'rmbmoney', n: 600 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'616', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_447', taskType: 'toDayPay_2', total: 6000, prize: [{ a:'attr', t:'rmbmoney', n: 800 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_448', taskType: 'toDayPay_2', total: 8000, prize: [{ a:'attr', t:'rmbmoney', n: 1000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_449', taskType: 'jjc_rank', total: 100, prize: [{ a:'attr', t:'rmbmoney', n: 100 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_450', taskType: 'jjc_rank', total: 50, prize: [{ a:'attr', t:'rmbmoney', n: 150 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_451', taskType: 'jjc_rank', total: 20, prize: [{ a:'attr', t:'rmbmoney', n: 200 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_452', taskType: 'jjc_rank', total: 10, prize: [{ a:'attr', t:'rmbmoney', n: 250 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_453', taskType: 'jjc_rank', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 }],"tiaozhuan": 28 }, - { taskId:'intr_task_name_454', taskType: 'fight_hero_colour_4', total: 2, prize: [{ a:'item', t:'2', n: 20 },{ a:'attr', t:'jinbi', n: 10000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_455', taskType: 'fight_hero_colour_4', total: 3, prize: [{ a:'item', t:'2', n: 30 },{ a:'attr', t:'jinbi', n: 20000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_456', taskType: 'fight_hero_colour_4', total: 4, prize: [{ a:'item', t:'2', n: 50 },{ a:'attr', t:'jinbi', n: 30000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_457', taskType: 'fight_hero_colour_4', total: 5, prize: [{ a:'item', t:'2', n: 100 },{ a:'attr', t:'jinbi', n: 40000 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_458', taskType: 'fight_hero_colour_4', total: 6, prize: [{ a:'item', t:'2', n: 150 },{ a:'attr', t:'jinbi', n: 100000 }],"tiaozhuan": 2 } - ], - '3': [ - { taskId:'intr_task_name_459', taskType: 'toDayLogin_3', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'equip', t:'3003', n: 1 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_460', taskType: 'toDayPay_3', total: 3000, prize: [{ a:'attr', t:'rmbmoney', n: 1500 },{ a:'item', t:'23', n: 50000 },{ a:'item', t:'601', n: 2 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_461', taskType: 'toDayPay_3', total: 5000, prize: [{ a:'item', t:'12', n: 2500 },{ a:'attr', t:'nexp', n: 10000 },{ a:'item', t:'601', n: 5 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_462', taskType: 'toDayPay_3', total: 10000, prize: [{ a:'item', t:'2', n: 5000 },{ a:'attr', t:'nexp', n: 40000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_463', taskType: 'toDayPay_3', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 2000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'601', n: 20 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_464', taskType: 'zccg_level', total: 15, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'26', n: 1 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_465', taskType: 'zccg_level', total: 17, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 2 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_466', taskType: 'zccg_level', total: 19, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'26', n: 3 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_467', taskType: 'zccg_level', total: 22, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 4 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_468', taskType: 'zccg_level', total: 25, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'26', n: 5 }],"tiaozhuan": 29 }, - { taskId:'intr_task_name_469', taskType: 'has_equip_color_3', total: 8, prize: [{ a:'item', t:'23', n: 10000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_470', taskType: 'has_equip_color_3', total: 12, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70002', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_471', taskType: 'has_equip_color_4', total: 2, prize: [{ a:'item', t:'23', n: 20000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_472', taskType: 'has_equip_color_4', total: 4, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 8 }, - { taskId:'intr_task_name_473', taskType: 'has_equip_color_4', total: 6, prize: [{ a:'item', t:'23', n: 25000 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 8 } - ], - '4': [ - { taskId:'intr_task_name_474', taskType: 'toDayLogin_4', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'12', n: 100 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_475', taskType: 'toDayPay_4', total: 5000, prize: [{ a:'attr', t:'rmbmoney', n: 2500 },{ a:'item', t:'12', n: 1800 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_476', taskType: 'toDayPay_4', total: 8000, prize: [{ a:'item', t:'12', n: 3000 },{ a:'attr', t:'nexp', n: 100000 },{ a:'item', t:'616', n: 10 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_477', taskType: 'toDayPay_4', total: 15000, prize: [{ a:'item', t:'9', n: 1250 },{ a:'attr', t:'nexp', n: 200000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_478', taskType: 'toDayPay_4', total: 20000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'601', n: 10 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_479', taskType: 'mapId' , total: 70, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_480', taskType: 'mapId' , total: 75, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_481', taskType: 'mapId' , total: 80, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_482', taskType: 'mapId' , total: 85, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_483', taskType: 'mapId' , total: 90, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_484', taskType: 'has_hero_jieji_1', total: 6, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_485', taskType: 'has_hero_jieji_2', total: 5, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_486', taskType: 'has_hero_jieji_3', total: 3, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_487', taskType: 'has_hero_jieji_4', total: 1, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_488', taskType: 'has_hero_jieji_4', total: 2, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } - ], - '5': [ - { taskId:'intr_task_name_489', taskType: 'toDayLogin_5', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 300 },{ a:'item', t:'2', n: 200 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_490', taskType: 'toDayPay_5', total: 10000, prize: [{ a:'attr', t:'rmbmoney', n: 5000 },{ a:'item', t:'600', n: 2 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_491', taskType: 'toDayPay_5', total: 15000, prize: [{ a:'item', t:'10', n: 250 },{ a:'attr', t:'nexp', n: 250000 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'600', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_492', taskType: 'toDayPay_5', total: 20000, prize: [{ a:'item', t:'9', n: 3000 },{ a:'attr', t:'nexp', n: 300000 },{ a:'item', t:'6', n: 50 },{ a:'item', t:'600', n: 5 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_493', taskType: 'toDayPay_5', total: 28000, prize: [{ a:'attr', t:'rmbmoney', n: 10000 },{ a:'attr', t:'nexp', n: 500000 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 10 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_494', taskType: 'helpHeros', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_495', taskType: 'helpHeros', total: 2, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'70004', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_496', taskType: 'helpHeros', total: 3, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_497', taskType: 'helpHeros', total: 4, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'70005', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_498', taskType: 'helpHeros', total: 5, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'70006', n: 1 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_499', taskType: 'mapId' , total: 100, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 1 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_500', taskType: 'mapId' , total: 115, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 2 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_501', taskType: 'mapId' , total: 130, prize: [{ a:'item', t:'12', n: 30 },{ a:'item', t:'25', n: 3 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_502', taskType: 'mapId' , total: 150, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 4 }],"tiaozhuan": 3 }, - { taskId:'intr_task_name_503', taskType: 'mapId' , total: 170, prize: [{ a:'item', t:'12', n: 50 },{ a:'item', t:'25', n: 5 }],"tiaozhuan": 3 } - ], - '6': [ - { taskId:'intr_task_name_504', taskType: 'toDayLogin_6', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 350 },{ a:'attr', t:'jinbi', n: 300000 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_505', taskType: 'toDayPay_6', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'6', n: 40 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_506', taskType: 'toDayPay_6', total: 28000, prize: [{ a:'item', t:'2', n: 4500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_507', taskType: 'toDayPay_6', total: 42000, prize: [{ a:'item', t:'29', n: 800 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_508', taskType: 'toDayPay_6', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_509', taskType: 'wxcLv', total: 22, prize: [{ a:'item', t:'44', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_510', taskType: 'wxcLv', total: 24, prize: [{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_511', taskType: 'wxcLv', total: 26, prize: [{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_512', taskType: 'wxcLv', total: 28, prize: [{ a:'item', t:'44', n: 5 },{ a:'item', t:'46', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_513', taskType: 'wxcLv', total: 30, prize: [{ a:'item', t:'46', n: 5 },{ a:'item', t:'45', n: 5 }],"tiaozhuan": 6 }, - { taskId:'intr_task_name_514', taskType: 'hero_jiban', total: 12, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_515', taskType: 'hero_jiban', total: 14, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_516', taskType: 'hero_jiban', total: 16, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_517', taskType: 'hero_jiban', total: 18, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 2 }, - { taskId:'intr_task_name_518', taskType: 'hero_jiban', total: 20, prize: [{ a:'item', t:'616', n: 2 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 2 } - ], - '7': [ - { taskId:'intr_task_name_519', taskType: 'toDayLogin_7', total: 1, prize: [{ a:'attr', t:'rmbmoney', n: 400 },{ a:'item', t:'617', n: 1 }],"tiaozhuan": 24 }, - { taskId:'intr_task_name_520', taskType: 'toDayPay_7', total: 15000, prize: [{ a:'attr', t:'rmbmoney', n: 7500 },{ a:'item', t:'24', n: 20 },{ a:'item', t:'617', n: 3 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_521', taskType: 'toDayPay_7', total: 28000, prize: [{ a:'item', t:'10', n: 120 },{ a:'item', t:'29', n: 500 },{ a:'item', t:'6', n: 60 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_522', taskType: 'toDayPay_7', total: 42000, prize: [{ a:'item', t:'9', n: 2000 },{ a:'item', t:'29', n: 1000 },{ a:'item', t:'6', n: 70 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_523', taskType: 'toDayPay_7', total: 55000, prize: [{ a:'attr', t:'rmbmoney', n: 15000 },{ a:'item', t:'20', n: 230 },{ a:'item', t:'6', n: 80 },{ a:'item', t:'600', n: 20 }],"tiaozhuan": 33 }, - { taskId:'intr_task_name_524', taskType: 'lv', total: 35, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'6', n: 1 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_525', taskType: 'lv', total: 38, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'6', n: 2 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_526', taskType: 'lv', total: 41, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'6', n: 3 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_527', taskType: 'lv', total: 44, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'6', n: 4 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_528', taskType: 'lv', total: 47, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'6', n: 5 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_529', taskType: 'power' , total: 200000, prize: [{ a:'attr', t:'rmbmoney', n: 50 },{ a:'item', t:'2', n: 20 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_530', taskType: 'power' , total: 400000, prize: [{ a:'attr', t:'rmbmoney', n: 100 },{ a:'item', t:'2', n: 30 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_531', taskType: 'power' , total: 600000, prize: [{ a:'attr', t:'rmbmoney', n: 150 },{ a:'item', t:'2', n: 50 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_532', taskType: 'power' , total: 1200000, prize: [{ a:'attr', t:'rmbmoney', n: 200 },{ a:'item', t:'2', n: 100 }],"tiaozhuan": 1 }, - { taskId:'intr_task_name_533', taskType: 'power' , total: 1800000, prize: [{ a:'attr', t:'rmbmoney', n: 250 },{ a:'item', t:'2', n: 150 }],"tiaozhuan": 1 } - ], - }, - //宝箱奖励 - taskBoxPrize: [ - { total: 60, prize: [{ a: 'attr', t: 'rmbmoney', n: 100 },{ a: 'item', t: '12', n: 200 },{ a: 'item', t: '2', n: 100 }] }, - { total: 70, prize: [{ a: 'attr', t: 'rmbmoney', n: 200 },{ a: 'item', t: '21', n: 200 },{ a: 'attr', t: 'jinbi', n: 2000000 }] }, - { total: 80, prize: [{ a: 'attr', t: 'rmbmoney', n: 300 },{ a: 'item', t: '10', n: 30 },{ a: 'item', t: '9', n: 200 }] }, - { total: 90, prize: [{ a: 'attr', t: 'rmbmoney', n: 500 },{ a: 'item', t: '19', n: 30 },{ a: 'item', t: '2', n: 300 }] }, - { total: 95, prize: [{ a: 'attr', t: 'rmbmoney', n: 1000 },{ a: 'item', t: '12', n: 500 },{ a: 'item', t: '28', n: 3000 },{ a: 'item', t: '6', n: 10 }] }, - { total: 100, prize: [{ a: 'attr', t: 'rmbmoney', n: 2000 },{ a: 'item', t: '12', n: 1000 },{ a: 'item', t: '609', n: 1 },{ a: 'item', t: '625', n: 1 },{ a: 'item', t: '50008', n: 1 }] }, - ], - //补发奖励邮件 - email: { - title: 'email_title_kfkh', - content: 'email_content_kfkh' - }, - //持续时间(秒数) - cxtime: 604800 - } - }, - { - "hdid" : 8000, // 唯一活动id 圣诞活动 - "htype" : 8, - "stype" : 800, - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 60, - "rtime" : 90, - "etime" : 90, - "name" : "sdhd_tips_1", - "icon" : "icon_xfdj", - "showtime" : "根据玩家注册时间,游戏返回时复写", - "data" : { - //任务 - "task" : { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, + ] }, - //玩游戏需要消耗 - "gameneed": [{"a": "attr", "t":"shengdanBullet", "n": 1}], - //玩游戏拿分 - "game": [5,10,20,30,50], - //免费玩游戏次数 - "gamefree": 3, - //战令 - "zhanling":[ + { + index: 1, + need: [ { - "val": 2500, - "pt": [{"a": "item", "t":"1", "n": 200000}], - "gj": [{"a": "item", "t":"50009", "n": 1},{"a": "item", "t":"1", "n": 500000}] - }, - { - "val": 5000, - "pt": [{"a": "attr", "t":"rmbmoney", "n": 500}], - "gj": [{"a": "item", "t":"23", "n": 2000},{"a": "item", "t":"1", "n": 500000}] - }, - { - "val": 7500, - "pt": [{"a": "item", "t":"50104", "n": 1}], - "gj": [{"a": "item", "t":"9", "n": 100},{"a": "item", "t":"10", "n": 800}] - }, - { - "val": 10000, - "pt": [{"a": "item", "t":"4", "n": 10}], - "gj": [{"a": "item", "t":"28", "n": 5000},{"a": "item", "t":"605", "n": 2}] - }, - { - "val": 12500, - "pt": [{"a": "item", "t":"2", "n": 500}], - "gj": [{"a": "item", "t":"9", "n": 150},{"a": "item", "t":"10", "n": 1500}] - }, - { - "val": 15000, - "pt": [{"a": "item", "t":"600", "n": 10}], - "gj": [{"a": "item", "t":"605", "n": 2},{"a": "item", "t":"28", "n": 10000}] - }, - { - "val": 17500, - "pt": [{"a": "item", "t":"600", "n": 10}], - "gj": [{"a": "item", "t":"605", "n": 2},{"a": "item", "t":"28", "n": 20000}] - }, - { - "val": 20000, - "pt": [{"a": "item", "t":"10", "n": 800}], - "gj": [{"a": "item", "t":"600", "n": 20},{"a": "item", "t":"28", "n": 20000}] - }, - { - "val": 22500, - "pt": [{"a": "attr", "t":"rmbmoney", "n": 2000}], - "gj": [{"a": "item", "t":"600", "n": 20},{"a": "item", "t":"28", "n": 20000}] + 'a': 'attr', + t: 'rmbmoney', + 'n': 500 } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '2', + 'n': 2000 + } + ], + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '21', + 'n': 200 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '21', + 'n': 600 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '21', + 'n': 1500 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '21', + 'n': 2500 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '21', + 'n': 6000 + } + ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '21', + 'n': 12000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [ + [ + 2 ], - "zlpayid":"ycmb_1_1", - //活动礼包 - "libao": { + 5 + ], + tasklist: { + '1': { + '1001': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 5, + 'cond': [ + '4' + ], + 'stype': 115, + //任务进度计数是否清零:0-不配 1-清零 + 'zero': 1 + }, + '1002': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 10, + 'cond': [ + '4' + ], + 'stype': 115, + 'zero': 1 + }, + '1003': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 700 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 15, + 'cond': [ + '4' + ], + 'stype': 115, + 'zero': 1 + }, + '1004': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 1, + 'pval': 25, + 'cond': [ + '4' + ], + 'stype': 115, + 'zero': 1 + }, + }, + '2': { + '2001': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 600, + 'cond': [ + '2' + ], + 'stype': 134 + }, + '2002': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 2000, + 'cond': [ + '2' + ], + 'stype': 134 + }, + '2003': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 13000, + 'cond': [ + '2' + ], + 'stype': 134 + }, + '2004': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 2, + 'pval': 35000, + 'cond': [ + '2' + ], + 'stype': 134 + }, + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + }, + '3003': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 5, + 'cond': [], + 'stype': 135 + }, + }, + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 10000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 400 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 20000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 40000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + } + } + } + }, + { + "hdid": 3, + "htype": 1, + "stype": 100, + "ttype": 0, + "stime": 0, + "rtime": 3, + "etime": 3, + "name": "intr_ychd_title_4", + "icon": "dfry_qhdr", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日获得紫色装备 mfmid 1683191 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_4', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '8', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 800 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_1_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 100000 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_1_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '2', + 'n': 3000 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 600000 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_1_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '615', + 'n': 1 + }, + { + 'a': 'item', + 't': '2', + 'n': 4000 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_1_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '615', + 'n': 2 + }, + { + 'a': 'item', + 't': '2', + 'n': 8000 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_1_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '609', + 'n': 1 + }, + { + 'a': 'item', + 't': '2', + 'n': 20000 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_1_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '611', + 'n': 1 + }, + { + 'a': 'item', + 't': '2', + 'n': 40000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录(一次性任务) 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 5, + 'cond': [ + '4' + ], + 'stype': 115, + 'zero': 1 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 10, + 'cond': [ + '4' + ], + 'stype': 115, + 'zero': 1 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 700 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 15, + 'cond': [ + '4' + ], + 'stype': 115, + 'zero': 1 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_1', + 'type': 4, + 'pval': 25, + 'cond': [ + '4' + ], + 'stype': 115, + 'zero': 1 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 600, + 'cond': [ + '2' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 2000, + 'cond': [ + '2' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 13000, + 'cond': [ + '2' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '615', + 'n': 1 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_huan_des_1', + 'type': 4, + 'pval': 35000, + 'cond': [ + '2' + ], + 'stype': 134 + }, + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '2', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 4, + "htype": 1, + "stype": 100, + "ttype": 0, + "stime": 3, + "rtime": 6, + "etime": 6, + "name": "intr_ychd_title_5", + "icon": "dfry_cscp", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日修复胶 mfmid 1683192 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_5', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '38', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 4000 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '21', + 'n': 1000 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_5_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '21', + 'n': 200 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_5_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '21', + 'n': 600 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_5_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '21', + 'n': 1500 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_5_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '21', + 'n': 2500 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_5_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '21', + 'n': 6000 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_5_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '21', + 'n': 12000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 150 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 300 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 400 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 600 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': [ + '21' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 20 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 5, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 6, + // 活动开始天数 + "rtime": 9, + // 活动显示结束天数 + "etime": 9, + // 活动实际结束 + "name": "intr_ychd_title_6", + "icon": "dfry_zswq", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日专属材料 mfmid 1683193 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_6', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 3500 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '9', + 'n': 5000 + } + ] + }, + { + index: 1, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 3200 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '10', + 'n': 200 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_3_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '10', + 'n': 70 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_3_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '9', + 'n': 3000 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_3_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '9', + 'n': 3000 + }, + { + 'a': 'item', + 't': '10', + 'n': 150 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_3_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '9', + 'n': 5000 + }, + { + 'a': 'item', + 't': '10', + 'n': 300 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_3_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '9', + 'n': 20000 + }, + { + 'a': 'item', + 't': '10', + 'n': 500 + } + ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_3_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '9', + 'n': 40000 + }, + { + 'a': 'item', + 't': '10', + 'n': 1000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 400 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 600 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': [ + '10' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 800 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': [ + '10' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': [ + '10' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 2000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': [ + '10' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 5 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 6, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 9, + // 活动开始天数 + "rtime": 12, + // 活动显示结束天数 + "etime": 12, + // 活动实际结束 + "name": "intr_ychd_title_7", + "icon": "dfry_ypj", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日紫色配件 mfmid 1683194 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_7', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '37', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 140 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '28', + 'n': 2000 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_4_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '28', + 'n': 1000 + }, + { + 'a': 'item', + 't': '29', + 'n': 20 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_4_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '28', + 'n': 5000 + }, + { + 'a': 'item', + 't': '29', + 'n': 40 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_4_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '606', + 'n': 2 + }, + { + 'a': 'item', + 't': '29', + 'n': 80 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_4_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '606', + 'n': 4 + }, + { + 'a': 'item', + 't': '29', + 'n': 150 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_4_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '605', + 'n': 6 + }, + { + 'a': 'item', + 't': '29', + 'n': 400 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_4_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '605', + 'n': 12 + }, + { + 'a': 'item', + 't': '29', + 'n': 800 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 1500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 2500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 3500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '20', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '20', + 'n': 150 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '606', + 'n': 2 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '606', + 'n': 4 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '29', + 'n': 10 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '20', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 7, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 12, + // 活动开始天数 + "rtime": 15, + // 活动显示结束天数 + "etime": 15, + // 活动实际结束 + "name": "intr_ychd_title_8", + "icon": "dfry_sxzs", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日装备蓝图 mfmid 1683195 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_8', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 2100 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + index: 1, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 2500 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 1000 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '13', + 'n': 200 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '13', + 'n': 500 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '13', + 'n': 1000 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + }, + { + 'a': 'item', + 't': '13', + 'n': 1000 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '600', + 'n': 30 + }, + { + 'a': 'item', + 't': '13', + 'n': 3000 + } + ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '600', + 'n': 60 + }, + { + 'a': 'item', + 't': '13', + 'n': 5000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 10 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 100, + 'cond': [ + '18' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 30 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 400, + 'cond': [ + '18' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 900, + 'cond': [ + '18' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 80 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 1600, + 'cond': [ + '18' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 2500, + 'cond': [ + '18' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 300 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 3500, + 'cond': [ + '18' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '627', + 'n': 1 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 4500, + 'cond': [ + '18' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '625', + 'n': 1 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_5', + 'type': 4, + 'pval': 6000, + 'cond': [ + '18' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 10 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '18', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 8, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 15, + // 活动开始天数 + "rtime": 18, + // 活动显示结束天数 + "etime": 18, + // 活动实际结束 + "name": "intr_ychd_title_9", + "icon": "dfry_jxtj", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日装备调校合金 mfmid 1683198 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_9', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 7000 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '19', + 'n': 500 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_6_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '19', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 100000 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_6_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '19', + 'n': 150 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 600000 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_6_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '19', + 'n': 200 + }, + { + 'a': 'item', + 't': '615', + 'n': 1 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_6_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '19', + 'n': 400 + }, + { + 'a': 'item', + 't': '615', + 'n': 2 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_6_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '19', + 'n': 1000 + }, + { + 'a': 'item', + 't': '609', + 'n': 1 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_6_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '19', + 'n': 2000 + }, + { + 'a': 'item', + 't': '611', + 'n': 1 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 20 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 90, + 'cond': [ + '19' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 30 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 200, + 'cond': [ + '19' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 40 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 400, + 'cond': [ + '19' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 700, + 'cond': [ + '19' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 60 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1000, + 'cond': [ + '19' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 70 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 1500, + 'cond': [ + '19' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '615', + 'n': 1 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 2000, + 'cond': [ + '19' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '625', + 'n': 1 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_6', + 'type': 4, + 'pval': 3000, + 'cond': [ + '19' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 5 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '19', + 'n': 25 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 9, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 18, + // 活动开始天数 + "rtime": 21, + // 活动显示结束天数 + "etime": 21, + // 活动实际结束 + "name": "intr_ychd_title_10", + "icon": "dfry_qnbf", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日人才档案和营养液 mfmid 1683199 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_10', + //活动icon + icon: 'dfry_qnbf', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 2100 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + index: 1, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 2500 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 1000 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '13', + 'n': 200 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '27', + 'n': 7000 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '27', + 'n': 15000 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '27', + 'n': 20000 + }, + { + 'a': 'item', + 't': '13', + 'n': 900 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + }, + { + 'a': 'item', + 't': '27', + 'n': 50000 + } + ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '600', + 'n': 40 + }, + { + 'a': 'item', + 't': '27', + 'n': 100000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 5 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 10 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 15 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 20 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 25 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 30 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': [ + '13' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 35 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': [ + '13' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '600', + 'n': 20 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': [ + '13' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '27', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 25 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 10, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 21, + // 活动开始天数 + "rtime": 24, + // 活动显示结束天数 + "etime": 24, + // 活动实际结束 + "name": "intr_ychd_title_5", + "icon": "dfry_cscp", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日修复胶 mfmid 16831910 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_5', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '38', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 4000 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '21', + 'n': 1000 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_5_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '21', + 'n': 200 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_5_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '21', + 'n': 600 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_5_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '21', + 'n': 1500 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_5_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '21', + 'n': 2500 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_5_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '21', + 'n': 6000 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_5_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '21', + 'n': 12000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 600, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 1200, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 150 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 2000, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 3600, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 300 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 5400, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 400 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 7200, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 9200, + 'cond': [ + '21' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 600 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_3', + 'type': 4, + 'pval': 12000, + 'cond': [ + '21' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 20 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '21', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 11, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 24, + // 活动开始天数 + "rtime": 27, + // 活动显示结束天数 + "etime": 27, + // 活动实际结束 + "name": "intr_ychd_title_6", + "icon": "dfry_zswq", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日专属材料 mfmid 16831911 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_6', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '2', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 3500 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '9', + 'n': 5000 + } + ] + }, + { + index: 1, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 3200 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '10', + 'n': 200 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_3_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '10', + 'n': 70 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_3_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '9', + 'n': 3000 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_3_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '9', + 'n': 3000 + }, + { + 'a': 'item', + 't': '10', + 'n': 150 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_3_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '9', + 'n': 5000 + }, + { + 'a': 'item', + 't': '10', + 'n': 300 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_3_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '9', + 'n': 20000 + }, + { + 'a': 'item', + 't': '10', + 'n': 500 + } + ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_3_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '9', + 'n': 40000 + }, + { + 'a': 'item', + 't': '10', + 'n': 1000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 3000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 10000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 400 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 20000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_10', + 'type': 4, + 'pval': 40000, + 'cond': [ + '9' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 600 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 100, + 'cond': [ + '10' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 800 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 300, + 'cond': [ + '10' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 200 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 500, + 'cond': [ + '10' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 2000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_11', + 'type': 4, + 'pval': 1000, + 'cond': [ + '10' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '10', + 'n': 5 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '9', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 12, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 27, + // 活动开始天数 + "rtime": 30, + // 活动显示结束天数 + "etime": 30, + // 活动实际结束 + "name": "intr_ychd_title_7", + "icon": "dfry_ypj", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日紫色配件 mfmid 16831912 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_7', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '3': '37', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 140 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '28', + 'n': 2000 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_4_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '28', + 'n': 1000 + }, + { + 'a': 'item', + 't': '29', + 'n': 20 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_4_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '28', + 'n': 5000 + }, + { + 'a': 'item', + 't': '29', + 'n': 40 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_4_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '606', + 'n': 2 + }, + { + 'a': 'item', + 't': '29', + 'n': 80 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_4_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '606', + 'n': 4 + }, + { + 'a': 'item', + 't': '29', + 'n': 150 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_4_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '605', + 'n': 6 + }, + { + 'a': 'item', + 't': '29', + 'n': 400 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_4_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '605', + 'n': 12 + }, + { + 'a': 'item', + 't': '29', + 'n': 800 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 1000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 1, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 1500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 6, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 3500 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 12, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '28', + 'n': 10000 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_4', + 'type': 4, + 'pval': 18, + 'cond': [ + '4' + ], + 'stype': 137, + 'zero': 1 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '20', + 'n': 100 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 40, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '20', + 'n': 150 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 50, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '606', + 'n': 2 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 60, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '606', + 'n': 4 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_9', + 'type': 4, + 'pval': 70, + 'cond': [ + '4' + ], + 'stype': 138, + 'zero': 1 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '29', + 'n': 10 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '20', + 'n': 50 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 13, + // 唯一活动id + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 30, + // 活动开始天数 + "rtime": 33, + // 活动显示结束天数 + "etime": 33, + // 活动实际结束 + "name": "intr_ychd_title_10", + "icon": "dfry_qnbf", + "showtime": "仅供参考,会复写正确值", + "data": { + //每日人才档案和营养液 mfmid 16831915 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr0: 'intr_yczm_tips_1', + intr3: 'intr_yczm_tips_5', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_10', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab0: 'intr_ychd_tab_name_1', + tab3: 'intr_ychd_tab_name_3', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 2100 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + index: 1, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 2500 + } + ], + free: false, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 1000 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_7_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 60 + }, + { + 'a': 'item', + 't': '13', + 'n': 200 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_7_2', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '13', + 'n': 500 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_7_3', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '13', + 'n': 1000 + } + ] + }, + { + index: 5, + need: [], + free: false, + payId: 'ycmb_7_4', + buyNum: 2, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + }, + { + 'a': 'item', + 't': '13', + 'n': 1000 + } + ] + }, + { + index: 6, + need: [], + free: false, + payId: 'ycmb_7_5', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '600', + 'n': 30 + }, + { + 'a': 'item', + 't': '13', + 'n': 3000 + } + ] + }, + { + index: 7, + need: [], + free: false, + payId: 'ycmb_7_6', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '600', + 'n': 60 + }, + { + 'a': 'item', + 't': '13', + 'n': 5000 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [], + tasklist: { + '4': { + '4001': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 5 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 100 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 20000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4002': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 10 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 40000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4003': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 15 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 60000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4004': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 20 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 500 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 80000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4005': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 25 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 700 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_8', + 'type': 4, + 'pval': 120000, + 'cond': [ + '27' + ], + 'stype': 134 + }, + '4006': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 30 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 400, + 'cond': [ + '13' + ], + 'stype': 134 + }, + '4007': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 35 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1200 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1000, + 'cond': [ + '13' + ], + 'stype': 134 + }, + '4008': { + 'prize': [ + { + 'a': 'item', + 't': '600', + 'n': 20 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 2000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_7', + 'type': 4, + 'pval': 1800, + 'cond': [ + '13' + ], + 'stype': 134 + } + }, + '3': { + '3001': { + 'prize': [ + { + 'a': 'item', + 't': '27', + 'n': 500 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 1, + 'cond': [], + 'stype': 135 + }, + '3002': { + 'prize': [ + { + 'a': 'item', + 't': '13', + 'n': 25 + }, + { + 'a': 'attr', + 't': 'jinbi', + 'n': 200000 + } + ], + 'tujing': '', + 'title': 'intr_yczm_denglu_des_1', + 'type': 3, + 'pval': 2, + 'cond': [], + 'stype': 135 + } + } + } + } + }, + { + "hdid": 100, + // 唯一活动id 人才计划 + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 101, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 7, + // 活动显示结束天数 + "etime": 7, + // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime": "仅供参考,会复写正确值", + "data": { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 0 + } + ], + free: true, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [ + [ + 2 + ], + 5 + ], + tasklist: { + '2': { + '2001': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, + { + "hdid": 101, + // 唯一活动id 人才计划 + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 101, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 14, + // 活动开始天数 + "rtime": 21, + // 活动显示结束天数 + "etime": 21, + // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime": "仅供参考,会复写正确值", + "data": { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 0 + } + ], + free: true, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [ + [ + 2 + ], + 5 + ], + tasklist: { + '2': { + '2001': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, + { + "hdid": 102, + // 唯一活动id 人才计划 + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 101, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 28, + // 活动开始天数 + "rtime": 35, + // 活动显示结束天数 + "etime": 35, + // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime": "仅供参考,会复写正确值", + "data": { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 0 + } + ], + free: true, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [ + [ + 2 + ], + 5 + ], + tasklist: { + '2': { + '2001': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, + { + "hdid": 103, + // 唯一活动id 人才计划 + "htype": 1, + // 后端唯一识别标识(1:养成目标) + "stype": 101, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 42, + // 活动开始天数 + "rtime": 49, + // 活动显示结束天数 + "etime": 49, + // 活动实际结束 + "name": "intr_ychd_title_3", + "icon": "dfry_rcjh", + "showtime": "仅供参考,会复写正确值", + "data": { + //轮数抽卡 mfmid 168318 + //活动文本描述 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + intr2: 'intr_yczm_tips_3', + intr4: 'intr_yczm_tips_4', + //活动名称 + name: 'intr_ychd_title_3', + //活动icon + icon: 'icon_ydlb', + //页签名称 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + tab2: 'intr_ychd_tab_name_4', + tab4: 'intr_ychd_tab_name_5', + //界面跳转 0-每日登录 1-每日任务 2-活动任务 3-一次性任务 4-活动商店 + '2': '9', + //礼包 + gift: [ + { + index: 0, + need: [ + { + 'a': 'attr', + t: 'rmbmoney', + 'n': 0 + } + ], + free: true, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 1, + need: [], + free: false, + payId: 'ycmb_2_1', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 300 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '4', + 'n': 5 + } + ] + }, + { + index: 2, + need: [], + free: false, + payId: 'ycmb_2_2', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 680 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '4', + 'n': 10 + } + ] + }, + { + index: 3, + need: [], + free: false, + payId: 'ycmb_2_3', + buyNum: 1, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 1280 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + }, + { + 'a': 'item', + 't': '4', + 'n': 25 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_4', + buyNum: 3, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 3280 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + }, + { + 'a': 'item', + 't': '4', + 'n': 50 + } + ] + }, + { + index: 4, + need: [], + free: false, + payId: 'ycmb_2_5', + buyNum: 10, + prize: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 6480 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + }, + { + 'a': 'item', + 't': '4', + 'n': 100 + } + ] + } + ], + //任务相关 type 1 每日任务(每天刷新) 2 活动任务(轮数) 3 每日登录 4-一次性任务 任务hdid一定要唯一 + maxlun: [ + [ + 2 + ], + 5 + ], + tasklist: { + '2': { + '2001': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 50, + 'cond': [], + 'stype': 118 + }, + '2002': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '626', + 'n': 10 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 100, + 'cond': [], + 'stype': 118 + }, + '2003': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 200, + 'cond': [], + 'stype': 118 + }, + '2004': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 250, + 'cond': [], + 'stype': 118 + }, + '2005': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '600', + 'n': 20 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 300, + 'cond': [], + 'stype': 118 + }, + '2006': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 400, + 'cond': [], + 'stype': 118 + }, + '2007': { + 'prize': [ + { + 'a': 'item', + 't': '4', + 'n': 10 + }, + { + 'a': 'item', + 't': '619', + 'n': 1 + } + ], + 'tujing': '', + 'title': 'intr_yczm_day_des_2', + 'type': 2, + 'pval': 500, + 'cond': [], + 'stype': 118 + } + } + } + } + }, + { + "hdid": 2000, + // 唯一活动id 掉落兑换活动 + "htype": 2, + // 后端唯一识别标识 + "stype": 200, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 7, + // 活动开始天数 + "rtime": 14, + // 活动显示结束天数 + "etime": 14, + // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime": "仅供参考,会复写正确值", + "data": { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '49', + n: 4, + p: 10, + s: 3600 + } + ], + tiaozhuan: 3, + event: { + itemId: '49', + duihuan: [ + { + need: [ + { + a: 'item', + t: '49', + n: 6000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 1 + } + ], + num: 2 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 3500 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 80 + }, + { + a: 'item', + t: '12', + n: 10000 + } + ], + num: 4 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 1200 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 20 + }, + { + a: 'item', + t: '609', + n: 1 + }, + { + a: 'item', + t: '4', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 1500 + } + ], + prize: [ + { + a: 'item', + t: '611', + n: 1 + }, + { + a: 'item', + t: '624', + n: 50 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 5 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 100 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 1 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 10 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 25 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 2 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 10 + } + ], + num: 99 + }, + ], + shop: [ + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 0 + } + ], + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + } + ], + num: 1, + free: true + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 800 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 5 + }, + { + a: 'item', + t: '2', + n: 1000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2250 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 10 + }, + { + a: 'item', + t: '12', + n: 2000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 6000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 12000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '9', + n: 6000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '10', + n: 300 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '612', + n: 20 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 20000 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 40 + }, + { + a: 'item', + t: '600', + n: 40 + } + ], + num: 4, + free: false + } + ], + gift: [ + { + payId: '', + num: 1, + prize: [ + { + a: 'item', + t: '49', + n: 20 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 200 + } + ], + free: true + }, + { + payId: 'duihuan_1_1', + prize: [ + { + a: 'item', + t: '49', + n: 50 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 600 + } + ], + free: false + }, + { + payId: 'duihuan_1_2', + prize: [ + { + a: 'item', + t: '49', + n: 100 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 1360 + } + ], + free: false + }, + { + payId: 'duihuan_1_3', + prize: [ + { + a: 'item', + t: '49', + n: 200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 2560 + } + ], + free: false + }, + { + payId: 'duihuan_1_4', + prize: [ + { + a: 'item', + t: '49', + n: 600 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 6560 + } + ], + free: false + }, + { + payId: 'duihuan_1_5', + prize: [ + { + a: 'item', + t: '49', + n: 1200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 12960 + } + ], + free: false + }, + ] + } + } + }, + { + "hdid": 2001, + // 唯一活动id 掉落兑换活动 + "htype": 2, + // 后端唯一识别标识 + "stype": 200, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 21, + // 活动开始天数 + "rtime": 28, + // 活动显示结束天数 + "etime": 28, + // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime": "仅供参考,会复写正确值", + "data": { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '49', + n: 4, + p: 10, + s: 3600 + } + ], + tiaozhuan: 3, + event: { + itemId: '49', + duihuan: [ + { + need: [ + { + a: 'item', + t: '49', + n: 6000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 1 + } + ], + num: 2 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 3500 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 80 + }, + { + a: 'item', + t: '12', + n: 20000 + } + ], + num: 4 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 1200 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 20 + }, + { + a: 'item', + t: '609', + n: 1 + }, + { + a: 'item', + t: '4', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 1500 + } + ], + prize: [ + { + a: 'item', + t: '611', + n: 1 + }, + { + a: 'item', + t: '624', + n: 50 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 5 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 100 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 1 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 10 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 25 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '49', + n: 2 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 10 + } + ], + num: 99 + }, + ], + shop: [ + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 0 + } + ], + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + } + ], + num: 1, + free: true + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 800 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 5 + }, + { + a: 'item', + t: '2', + n: 1000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2250 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 10 + }, + { + a: 'item', + t: '12', + n: 2000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 6000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 12000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '9', + n: 6000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '10', + n: 300 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '612', + n: 20 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 20000 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 40 + }, + { + a: 'item', + t: '600', + n: 40 + } + ], + num: 4, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '624', + n: 20 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '629', + n: 20 + } + ], + num: 3, + free: false + }, + ], + gift: [ + { + payId: '', + num: 1, + prize: [ + { + a: 'item', + t: '49', + n: 20 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 200 + } + ], + free: true + }, + { + payId: 'duihuan_1_1', + prize: [ + { + a: 'item', + t: '49', + n: 50 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 600 + } + ], + free: false + }, + { + payId: 'duihuan_1_2', + prize: [ + { + a: 'item', + t: '49', + n: 100 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 1360 + } + ], + free: false + }, + { + payId: 'duihuan_1_3', + prize: [ + { + a: 'item', + t: '49', + n: 200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 2560 + } + ], + free: false + }, + { + payId: 'duihuan_1_4', + prize: [ + { + a: 'item', + t: '49', + n: 600 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 6560 + } + ], + free: false + }, + { + payId: 'duihuan_1_5', + prize: [ + { + a: 'item', + t: '49', + n: 1200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 12960 + } + ], + free: false + }, + ] + } + } + }, + { + "hdid": 2002, + // 唯一活动id 掉落兑换活动 + "htype": 2, + // 后端唯一识别标识 + "stype": 200, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 35, + // 活动开始天数 + "rtime": 42, + // 活动显示结束天数 + "etime": 42, + // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime": "仅供参考,会复写正确值", + "data": { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '50', + n: 4, + p: 10, + s: 3600 + } + ], + tiaozhuan: 3, + event: { + itemId: '50', + duihuan: [ + { + need: [ + { + a: 'item', + t: '50', + n: 6000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 1 + } + ], + num: 2 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 3500 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 80 + }, + { + a: 'item', + t: '12', + n: 20000 + } + ], + num: 4 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 1200 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 20 + }, + { + a: 'item', + t: '609', + n: 1 + }, + { + a: 'item', + t: '4', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 1500 + } + ], + prize: [ + { + a: 'item', + t: '611', + n: 1 + }, + { + a: 'item', + t: '624', + n: 50 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 5 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 100 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 1 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 10 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 25 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 2 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 10 + } + ], + num: 99 + }, + ], + shop: [ + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 0 + } + ], + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + } + ], + num: 1, + free: true + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 800 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 5 + }, + { + a: 'item', + t: '2', + n: 1000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2250 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 10 + }, + { + a: 'item', + t: '12', + n: 2000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 6000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 12000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '9', + n: 6000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '10', + n: 300 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '612', + n: 20 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 20000 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 40 + }, + { + a: 'item', + t: '600', + n: 40 + } + ], + num: 4, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '624', + n: 20 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '629', + n: 20 + } + ], + num: 3, + free: false + }, + ], + gift: [ + { + payId: '', + num: 1, + prize: [ + { + a: 'item', + t: '50', + n: 20 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 200 + } + ], + free: true + }, + { + payId: 'duihuan_1_1', + prize: [ + { + a: 'item', + t: '50', + n: 50 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 600 + } + ], + free: false + }, + { + payId: 'duihuan_1_2', + prize: [ + { + a: 'item', + t: '50', + n: 100 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 1360 + } + ], + free: false + }, + { + payId: 'duihuan_1_3', + prize: [ + { + a: 'item', + t: '50', + n: 200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 2560 + } + ], + free: false + }, + { + payId: 'duihuan_1_4', + prize: [ + { + a: 'item', + t: '50', + n: 600 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 6560 + } + ], + free: false + }, + { + payId: 'duihuan_1_5', + prize: [ + { + a: 'item', + t: '50', + n: 1200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 12960 + } + ], + free: false + }, + ] + } + } + }, + { + "hdid": 2003, + // 唯一活动id 掉落兑换活动 + "htype": 2, + // 后端唯一识别标识 + "stype": 200, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 49, + // 活动开始天数 + "rtime": 56, + // 活动显示结束天数 + "etime": 56, + // 活动实际结束 + "name": "diaoluoduihuan", + "icon": "icon_ywtx", + "showtime": "仅供参考,会复写正确值", + "data": { + //对应mfm 14701 + diaoluo: [ + //掉落的物品 + { + a: 'item', + t: '50', + n: 4, + p: 10, + s: 3600 + } + ], + tiaozhuan: 3, + event: { + itemId: '50', + duihuan: [ + { + need: [ + { + a: 'item', + t: '50', + n: 6000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 1 + } + ], + num: 2 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 3500 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 80 + }, + { + a: 'item', + t: '12', + n: 20000 + } + ], + num: 4 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 1200 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 20 + }, + { + a: 'item', + t: '609', + n: 1 + }, + { + a: 'item', + t: '4', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 1500 + } + ], + prize: [ + { + a: 'item', + t: '611', + n: 1 + }, + { + a: 'item', + t: '624', + n: 50 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 20 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 350 + } + ], + prize: [ + { + a: 'item', + t: '600', + n: 5 + } + ], + num: 1 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 100 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 1 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 10 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 25 + } + ], + num: 99 + }, + { + need: [ + { + a: 'item', + t: '50', + n: 2 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 10 + } + ], + num: 99 + }, + ], + shop: [ + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 0 + } + ], + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + } + ], + num: 1, + free: true + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 800 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 5 + }, + { + a: 'item', + t: '2', + n: 1000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2250 + } + ], + prize: [ + { + a: 'item', + t: '4', + n: 10 + }, + { + a: 'item', + t: '12', + n: 2000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 6000 + } + ], + num: 1, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 12000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '9', + n: 6000 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '10', + n: 300 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '612', + n: 20 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 20000 + } + ], + prize: [ + { + a: 'item', + t: '607', + n: 40 + }, + { + a: 'item', + t: '600', + n: 40 + } + ], + num: 4, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '624', + n: 20 + } + ], + num: 3, + free: false + }, + { + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '629', + n: 20 + } + ], + num: 3, + free: false + }, + ], + gift: [ + { + payId: '', + num: 1, + prize: [ + { + a: 'item', + t: '50', + n: 20 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 200 + } + ], + free: true + }, + { + payId: 'duihuan_1_1', + prize: [ + { + a: 'item', + t: '50', + n: 50 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 600 + } + ], + free: false + }, + { + payId: 'duihuan_1_2', + prize: [ + { + a: 'item', + t: '50', + n: 100 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 1360 + } + ], + free: false + }, + { + payId: 'duihuan_1_3', + prize: [ + { + a: 'item', + t: '50', + n: 200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 2560 + } + ], + free: false + }, + { + payId: 'duihuan_1_4', + prize: [ + { + a: 'item', + t: '50', + n: 600 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 6560 + } + ], + free: false + }, + { + payId: 'duihuan_1_5', + prize: [ + { + a: 'item', + t: '50', + n: 1200 + }, + { + a: 'attr', + t: 'rmbmoney', + n: 12960 + } + ], + free: false + }, + ] + } + } + }, + { + "hdid": 3000, + // 唯一活动id 传说之路 + "htype": 3, + // 后端唯一识别标识 + "stype": 300, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 30, + // 活动显示结束天数 + "etime": 30, + // 活动实际结束 + "name": "xinfupeiyang", + "icon": "icon_qiridenglu", + "showtime": "仅供参考,会复写正确值", + "data": { + //干部id + hid: '5001', + //任务 + task: [ + { + idx: 0, + total: 3, + type: 'jieji', + prize: [ + { + a: 'item', + t: '1', + n: 500000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 1, + total: 50, + type: 'lv', + prize: [ + { + a: 'item', + t: '12', + n: 500 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 2, + total: 4, + type: 'jieji', + prize: [ + { + a: 'item', + t: '1', + n: 500000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 3, + total: 90, + type: 'lv', + prize: [ + { + a: 'item', + t: '12', + n: 1000 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 4, + total: 5, + type: 'jieji', + prize: [ + { + a: 'item', + t: '1', + n: 800000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 5, + total: 130, + type: 'lv', + prize: [ + { + a: 'item', + t: '12', + n: 1500 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 6, + total: 6, + type: 'jieji', + prize: [ + { + a: 'item', + t: '1', + n: 1200000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 7, + total: 170, + type: 'lv', + prize: [ + { + a: 'item', + t: '12', + n: 2000 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 8, + total: 7, + type: 'jieji', + prize: [ + { + a: 'item', + t: '1', + n: 2000000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 9, + total: 210, + type: 'lv', + prize: [ + { + a: 'item', + t: '5001', + n: 20 + } + ], + des: 'intr_cszl_des_2' + } + ], + //宝箱 + box: { + total: 10, + prize: [ + { + a: 'item', + t: '610', + n: 1 + } + ] + } + } + }, + { + "hdid": 3001, + // 唯一活动id 传说之路 + "htype": 3, + // 后端唯一识别标识 + "stype": 300, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 30, + // 活动开始天数 + "rtime": 60, + // 活动显示结束天数 + "etime": 60, + // 活动实际结束 + "name": "xinfupeiyang", + "icon": "icon_qiridenglu", + "showtime": "仅供参考,会复写正确值", + "data": { + //干部id + hid: '5002', + //任务 + task: [ + { + idx: 0, + total: 80, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 500000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 1, + total: 4, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 500 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 2, + total: 120, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 500000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 3, + total: 5, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 1000 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 4, + total: 160, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 800000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 5, + total: 6, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 1500 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 6, + total: 200, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 1200000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 7, + total: 7, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 2000 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 8, + total: 240, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 2000000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 9, + total: 8, + type: 'jieji', + prize: [ + { + a: 'item', + t: '5002', + n: 20 + } + ], + des: 'intr_cszl_des_2' + } + ], + //宝箱 + box: { + total: 10, + prize: [ + { + a: 'item', + t: '610', + n: 1 + } + ] + } + } + }, + { + "hdid": 3002, + // 唯一活动id 传说之路 心腹培养 + "htype": 3, + // 后端唯一识别标识 + "stype": 300, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 60, + // 活动开始天数 + "rtime": 90, + // 活动显示结束天数 + "etime": 90, + // 活动实际结束 + "name": "xinfupeiyang", + "icon": "icon_xfdj", + "showtime": "仅供参考,会复写正确值", + "data": { + //干部id + hid: '5004', + //任务 + task: [ + { + idx: 0, + total: 100, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 500000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 1, + total: 5, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 500 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 2, + total: 140, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 500000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 3, + total: 6, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 1000 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 4, + total: 180, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 800000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 5, + total: 7, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 1500 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 6, + total: 220, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 1200000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 7, + total: 8, + type: 'jieji', + prize: [ + { + a: 'item', + t: '12', + n: 2000 + } + ], + des: 'intr_cszl_des_2' + }, + { + idx: 8, + total: 260, + type: 'lv', + prize: [ + { + a: 'item', + t: '1', + n: 2000000 + } + ], + des: 'intr_cszl_des_1' + }, + { + idx: 9, + total: 9, + type: 'jieji', + prize: [ + { + a: 'item', + t: '5004', + n: 20 + } + ], + des: 'intr_cszl_des_2' + } + ], + //宝箱 + box: { + total: 10, + prize: [ + { + a: 'item', + t: '610', + n: 1 + } + ] + } + } + }, + { + "hdid": 4000, + // 唯一活动id 自选礼包 + "htype": 4, + // 后端唯一识别标识 + "stype": 400, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 15, + // 活动开始天数 + "rtime": 29, + // 活动显示结束天数 + "etime": 29, + // 活动实际结束 + "name": "zixuanlibao", + "icon": "icon_tuisonglibao", + "showtime": "仅供参考,会复写正确值", + // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 + "data": { + //活动文本描述 + intr: "intr_zixuan_1", + //礼包 + gift: [ + { + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 30 + } + ], + dlz: [ + { "1": { - "payid": "", - "buynum": 1, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 100}], - "des" : "intr_cszl_des_10", - "dlz": [ - { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} - } - ] - }, - "2": { - "payid": "pay_name_sdhd_libao_2", - "buynum": 2, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 120}], - "des" : "intr_cszl_des_11", - "dlz": [ - { - "1": {"a": "item", "t":"2", "n": 400}, - "2": {"a": "item", "t":"12", "n": 200} - }, - { - "1": {"a": "attr", "t":"jinbi", "n": 1000000}, - "2": {"a": "item", "t":"1", "n": 500000} - } - ] - }, - "3": { - "payid": "pay_name_sdhd_libao_3", - "buynum": 2, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 300}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - } - ] - }, - "4": { - "payid": "pay_name_sdhd_libao_4", - "buynum": 5, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 680}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - } - ] - }, - "5": { - "payid": "pay_name_sdhd_libao_5", - "buynum": 9, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 1280}], - "des" : "intr_cszl_des_13", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - "6": { - "payid": "pay_name_sdhd_libao_6", - "buynum": 9, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 3280}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"1", "n": 10000000}, - "2": {"a": "item", "t":"12", "n": 1000}, - "3": {"a": "item", "t":"2", "n": 2000}, - "4": {"a": "item", "t":"18", "n": 500} - } - ] - }, - "7": { - "payid": "pay_name_sdhd_libao_7", - "buynum": 9, - "basep": [{"a": "attr", "t":"rmbmoney", "n": 6480}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"605", "n": 4}, - "2": {"a": "item", "t":"606", "n": 2}, - "3": {"a": "item", "t":"18", "n": 1000}, - "4": {"a": "item", "t":"23", "n": 1000000} - } - ] - }, - }, - //签到奖励 - "qiandao": [ - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"4", "n": 10},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "attr", "t":"rmbmoney", "n": 300},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"12", "n": 300},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"9", "n": 200},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"2", "n": 400},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"27", "n": 5000},{"a": "item", "t":"1", "n": 300000}], - [{"a": "attr", "t":"shengdanExp", "n": 100},{"a": "attr", "t":"shengdanBullet", "n": 1},{"a": "item", "t":"4", "n": 10},{"a": "item", "t":"1", "n": 300000}], - ] - } - }, - { - "hdid" : 9000, // 唯一活动id 周末礼包 - "htype" : 9, // 后端唯一识别标识 - "stype" : 900, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 30, // 活动显示结束天数 - "etime" : 30, // 活动实际结束 - "name": "wkdlibao", - "icon": "icon_tuisonglibao", - "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 - "data" : { - //活动文本描述 - intr: "wkdtips_1", - intr: "wkdtips_2", - //礼包 - gift: [ - { - id: '1', - name: 'wkdtips_4', - need: [], - free: true, - payId: '', - buyNum: 1, - prize: [{'a': 'item', 't': '13', 'n': 600}] - }, - { - id: '2', - name: 'wkdtips_5', - need: [], - free: false, - payId: 'wkdlibao_1', - buyNum: 1, - prize: [{'a': 'item', 't': '4', 'n': 1},{'a': 'item', 't': '13', 'n': 800},{'a': 'item', 't': '2', 'n': 1000},{'a': 'item', 't': '1', 'n': 1000}] - }, - { - id: '3', - name: 'wkdtips_6', - need: [], - free: false, - payId: 'wkdlibao_2', - buyNum: 2, - prize: [{'a': 'item', 't': '4', 'n': 2},{'a': 'item', 't': '13', 'n': 1000},{'a': 'item', 't': '2', 'n': 1200},{'a': 'item', 't': '1', 'n': 1200}] - }, - { - id: '4', - name: 'wkdtips_7', - need: [], - free: false, - payId: 'wkdlibao_3', - buyNum: 2, - prize: [{'a': 'item', 't': '4', 'n': 5},{'a': 'item', 't': '13', 'n': 1200},{'a': 'item', 't': '2', 'n': 1200},{'a': 'item', 't': '1', 'n': 1200}] - } - ] - } - }, - { - "hdid" : 10000, // 唯一活动id 超值好礼 - "htype" : 10, // 后端唯一识别标识 - "stype" : 1000, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 30, // 活动显示结束天数 - "etime" : 30, // 活动实际结束 - "name": "czlibao", - "icon": "icon_czlibao", - "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 - "data" : { - //活动文本描述 - intr: "czlbtips_1", - intr: "czlbtips_2", - //礼包 - //礼包 - gift: [ - { - id: '1', - name: 'czlbtips_4', - need: [], - free: false, - payId: 'czlb_1', - buyNum: 1, - equal: 15000, - prize: [ - { - "a": "item", - "t": "13", - "n": 601 - } - ], - "recPrize1": [ - { - "a": "item", - "t": "12", - "n": 600 - }, - { - "a": "attr", - "t": "rmbmoney", - "n": 333 - } - ], - "recPrize2": [ - { - "a": "item", - "t": "4", - "n": 10 - } - ] - }, - { - id: '2', - name: 'czlbtips_5', - need: [], - free: false, - payId: 'czlb_2', - buyNum: 1, - equal: 35000, - prize: [ - { - "a": "item", - "t": "1", - "n": 1200 - } - ], - "recPrize1": [ - { - "a": "item", - "t": "2", - "n": 4400 - } - ], - "recPrize2": [ - { - "a": "item", - "t": "9", - "n": 63300 - }, - { - "a": "attr", - "t": "jinbi", - "n": 114514 - }, - { - "a": "attr", - "t": "rmbmoney", - "n": 31313 - }, - { - "a": "item", - "t": "2", - "n": 111 - }, - { - "a": "item", - "t": "13", - "n": 515 - },{ - "a": "item", - "t": "601", - "n": 1 - }, - { - "a": "item", - "t": "633", - "n": 2 - }, - { - "a": "hero", - "t": "5001", - "n": 1 - } - ] - }, - { - id: '3', - name: 'czlbtips_6', - need: [], - free: false, - payId: 'czlb_3', - buyNum: 1, - equal: 65000, - prize: [ - { - "a": "item", - "t": "13", - "n": 123 - } - ], - "recPrize1": [ - { - "a": "item", - "t": "13", - "n": 321 - } - ], - "recPrize2": [ - { - "a": "item", - "t": "13", - "n": 548 - } - ] - } - ] - } - }, - { - "hdid" : 11000, // 唯一活动id 消费竞赛 - "htype" : 11, // 后端唯一识别标识 - "stype" : 1100, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 30, // 活动显示结束天数 - "etime" : 30, // 活动实际结束 - "name": "xfjs", - "icon": "icon_xfjs", - "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 - "data" : { - //活动文本描述 - intr: "xfjstips_1", - intr2: "xfjstips_2", - //奖励邮件标题 - mailTitle: "intr_xfjs_mailTitle", - //奖励邮件内容 - mailDes: "intr_xfjs_mailDes", - //排名 - rank: [ - { - id: '1', - name: 'xfjstips_3', - rank:[1,1], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 20000}], - prize: [{'a': 'item', 't': '13', 'n': 600}] - }, - { - id: '2', - name: 'xfjstips_4', - rank:[2,2], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 18000}], - prize: [{'a': 'item', 't': '13', 'n': 600}] - }, - { - id: '3', - name: 'xfjstips_5', - rank:[3,3], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 16000}], - prize: [{'a': 'item', 't': '13', 'n': 600}] - }, - { - id: '4', - name: 'xfjstips_6', - rank:[4,10], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 14000}], - prize: [{'a': 'item', 't': '13', 'n': 600}] - }, - { - id: '5', - name: 'xfjstips_7', - rank:[11,30], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 12000}], - prize: [{'a': 'item', 't': '13', 'n': 600}] - }, - { - id: '6', - name: 'xfjstips_8', - rank:[31,9999], - need: [{'a': 'attr', 't': 'rmbmoney', 'n': 12000}], - prize: [{'a': 'item', 't': '13', 'n': 600}] - } - ] - } - }, - { - "hdid" : 12000, // 唯一活动id 累计购买礼包 - "htype" : 12, // 后端唯一识别标识 - "stype" : 1200, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 30, // 活动显示结束天数 - "etime" : 30, // 活动实际结束 - "name": "ljlibao", - "icon": "icon_ljlibao", - "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 - "data" : { - //礼包 - gift: [ - { - id: '1', - need:[], - free: false, - payId: 'ljlibao_1', - //返利比 - scale: 200, - buynum: 1, - prize:[ - { - "a": "item", - "t": "13", - "n": 123 - } - ] - }, - { - id: '2', - need:[], - free: false, - payId: 'ljlibao_2', - buynum: 1, - scale: 201, - prize:[ - { - "a": "item", - "t": "12", - "n": 111 - } - ] - }, - { - id: '3', - need:[], - free: false, - payId: 'ljlibao_3', - buynum: 1, - scale: 203, - prize:[ - { - "a": "item", - "t": "1", - "n": 111111 - } - ] - }, - { - id: '4', - need:[], - free: false, - payId: 'ljlibao_4', - buynum: 1, - scale: 204, - prize:[ - { - "a": "item", - "t": "13", - "n": 123 - }, - { - "a": "item", - "t": "2", - "n": 123 - } - ] - }, - { - id: '5', - need:[], - free: false, - payId: 'ljlibao_5', - buynum: 1, - scale: 201, - prize:[ - { - "a": "item", - "t": "13", - "n": 12 - }, - { - "a": "item", - "t": "1", - "n": 31 - } - ] - }, - { - id: '6', - need:[], - free: false, - payId: 'ljlibao_6', - buynum: 1, - scale: 200, - prize:[ - { - "a": "item", - "t": "1", - "n": 123 - }, - { - "a": "item", - "t": "2", - "n": 123 - } - ] - }, - { - id: '7', - need:[], - free: false, - payId: 'ljlibao_7', - buynum: 1, - scale: 300, - prize:[ - { - "a": "item", - "t": "4", - "n": 123 - }, - { - "a": "item", - "t": "2", - "n": 123 - } - ] - }, - ], - //买X次可以领大奖 - payRewardNum: 5, - //自选框掉落池 - //配几组就显示有几个格子 - //配置的是可选的道具 - dlz: [ - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"1", "n": 10000000}, - "2": {"a": "item", "t":"12", "n": 1000}, - "3": {"a": "item", "t":"2", "n": 2000}, - "4": {"a": "item", "t":"18", "n": 500} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - } - ] - } - }, - { - "hdid" : 13000, // 唯一活动id 充值分红包 - "htype" : 13, // 后端唯一识别标识 - "stype" : 1300, // 前端唯一识别标识(看前端需要是否修改) - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 0, // 活动开始天数 - "rtime" : 30, // 活动显示结束天数 - "etime" : 30, // 活动实际结束 - "name": "fenhongbao", - "icon": "icon_fenhongbao", - "showtime" : "仅供参考,会复写正确值", // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 - "data" : { - //活动文本描述 - intr: "zuanshihongbao_5", - //分红包所需最低钻石数 - price: 1000, - reset: 0, - //奖池总数量 - totalmoney: 100000, - groupConf: { - //档位 - base: { - loglimit:2000, - arr:[ - { - //权重 - "weight": 50, - //获得范围 - "numrange": [1000,1500] - }, - { - //权重 - "weight": 30, - //获得范围 - "numrange": [1500,2000] - }, - { - //权重 - "weight": 15, - //获得范围 - "numrange": [2000,3000] - }, - { - //权重 - "weight": 5, - //获得范围 - "numrange": [3000,8000] - } - ] - } - } - } - }, - { - "hdid" : 14000, // 唯一活动id 元旦活动 - "htype" : 14, - "stype" : 1400, - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 60, - "rtime" : 90, - "etime" : 90, - "name" : "xnhd_tips_1", - "icon" : "icon_xfdj", - "showtime" : "根据玩家注册时间,游戏返回时复写", - "data" : { - //任务 - "task" : { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - //玩游戏需要消耗 - "gameneed": [{"a": "attr", "t":"yuandanyouxi", "n": 1}], - //游戏奖品池 - "game": [ - //P是权重 - //gailv是显示的概率 - {"a": "item", "t":"1", "n": 10000000, "p": 10, "gailv": 10}, - {"a": "item", "t":"12", "n": 1000, "p": 10, "gailv": 10}, - {"a": "item", "t":"2", "n": 2000, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 100, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 200, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 300, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 400, "p": 10, "gailv": 10} - ], - //免费玩游戏次数 - "gamefree": 3, - //钻石兑换 - "duihuan": [ - {id:1, need: [{a: 'attr', t: 'rmbmoney', n: 1000}], prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}], buyNum: 2 }, - {id:2, need: [{a: 'attr', t: 'rmbmoney', n: 2000}], prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}], buyNum: 1 }, - {id:3, need: [{a: 'attr', t: 'rmbmoney', n: 3000}], prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}], buyNum: 1 }, - {id:4, need: [{a: 'attr', t: 'rmbmoney', n: 4000}], prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}], buyNum: 3 }, - {id:5, need: [{a: 'attr', t: 'rmbmoney', n: 5000}], prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}], buyNum: 5 }, - {id:6, need: [{a: 'attr', t: 'rmbmoney', n: 6000}], prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}], buyNum: 6 } - ], - //活动礼包 - "gift": [ - { - "id": 1, - "free": true, - "payId": "", - "buynum": 1, - //固定奖励 - "prize": [{"a": "attr", "t":"rmbmoney", "n": 100}], - "des" : "intr_cszl_des_10", - //自选池 - "dlz": [ - { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} - } - ] - }, - { - "id": 2, - "free": false, - "payId": "xnhd_libao_1", - "buynum": 2, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 120}], - "des" : "intr_cszl_des_11", - "dlz": [ - { - "1": {"a": "item", "t":"2", "n": 400}, - "2": {"a": "item", "t":"12", "n": 200} - }, - { - "1": {"a": "attr", "t":"jinbi", "n": 1000000}, - "2": {"a": "item", "t":"1", "n": 500000} - } - ] - }, - { - "id": 3, - "free": false, - "payId": "xnhd_libao_2", - "buynum": 2, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 300}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - } - ] - }, - { - "id": 4, - "free": false, - "payId": "xnhd_libao_3", - "buynum": 5, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 680}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - } - ] - }, - { - "id": 5, - "free": false, - "payId": "xnhd_libao_4", - "buynum": 9, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 1280}], - "des" : "intr_cszl_des_13", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - { - "id": 6, - "free": false, - "payId": "xnhd_libao_5", - "buynum": 9, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 3280}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"1", "n": 10000000}, - "2": {"a": "item", "t":"12", "n": 1000}, - "3": {"a": "item", "t":"2", "n": 2000}, - "4": {"a": "item", "t":"18", "n": 500} - } - ] - }, - { - "id": 7, - "free": false, - "payId": "xnhd_libao_6", - "buynum": 9, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 6480}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"605", "n": 4}, - "2": {"a": "item", "t":"606", "n": 2}, - "3": {"a": "item", "t":"18", "n": 1000}, - "4": {"a": "item", "t":"23", "n": 1000000} - } - ] - }, - ], - //签到奖励 - "qiandao": { - "1": { - //固定奖励 - "prize": [{"a": "attr", "t":"rmbmoney", "n": 100}], - "des" : "intr_cszl_des_10", - //自选池 - "dlz": [ - { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} - } - ] - }, - "2": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 120}], - "des" : "intr_cszl_des_11", - "dlz": [ - { - "1": {"a": "item", "t":"2", "n": 400}, - "2": {"a": "item", "t":"12", "n": 200} - }, - { - "1": {"a": "attr", "t":"jinbi", "n": 1000000}, - "2": {"a": "item", "t":"1", "n": 500000} - } - ] - }, - "3": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 300}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - }, - { - "1": {"a": "item", "t":"9", "n": 500}, - "2": {"a": "item", "t":"10", "n": 100} - } - ] - }, - "4": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 680}], - "des" : "intr_cszl_des_12", - "dlz": [ - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - }, - { - "1": {"a": "item", "t":"615", "n": 1}, - "2": {"a": "item", "t":"18", "n": 200} - } - ] - }, - "5": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 1280}], - "des" : "intr_cszl_des_13", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"600", "n": 10}, - "2": {"a": "item", "t":"605", "n": 2}, - "3": {"a": "item", "t":"606", "n": 1} - }, - { - "1": {"a": "item", "t":"1", "n": 5000000}, - "2": {"a": "attr", "t":"jinbi", "n": 10000000} - } - ] - }, - "6": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 3280}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"600", "n": 20}, - "2": {"a": "item", "t":"5002", "n": 10}, - "3": {"a": "item", "t":"5004", "n": 10} - }, - { - "1": {"a": "item", "t":"1", "n": 10000000}, - "2": {"a": "item", "t":"12", "n": 1000}, - "3": {"a": "item", "t":"2", "n": 2000}, - "4": {"a": "item", "t":"18", "n": 500} - } - ] - }, - "7": { - "prize": [{"a": "attr", "t":"rmbmoney", "n": 6480}], - "des" : "intr_cszl_des_14", - "dlz": [ - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"600", "n": 30}, - "2": {"a": "item", "t":"5002", "n": 20}, - "3": {"a": "item", "t":"5004", "n": 20} - }, - { - "1": {"a": "item", "t":"605", "n": 4}, - "2": {"a": "item", "t":"606", "n": 2}, - "3": {"a": "item", "t":"18", "n": 1000}, - "4": {"a": "item", "t":"23", "n": 1000000} - } - ] - } - } - } - }, - { - "hdid" : 15000, // 唯一活动id 黄旗酒馆(活动结束需要清掉货币) - "htype" : 15, - "stype" : 1500, - "ttype" : 4, // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 - "stime" : 60, - "rtime" : 90, - "etime" : 90, - "name" : "hqjgtips_1", - "icon" : "icon_xfdj", - "showtime" : "根据玩家注册时间,游戏返回时复写", - "data" : { - //展示干部皮肤ID - "show": 1, - //任务 - "task" : { - "day1" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - } - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - "day2" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - "day3" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - "day4" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - "day5" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - "day6" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, - }, - "day7" : - { - "1": { - "pval" : 1, - "stype" : "128", - "cond": [], - "tiaozhuan": 4, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_1" - }, - "2": { - "pval" : 300, - "stype" : "116", - "cond": [], - "tiaozhuan": 5, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 3 - }, - { - "a" : "item", - "t" : "600", - "n" : 5 - }, - { - "a" : "item", - "t" : "1", - "n" : 500000 - } - ], - "des" : "intr_cszl_des_2" - }, - "3": { - "pval" : 1000, - "stype" : "116", - "cond": [], - "tiaozhuan": 2, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 300 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 5 - }, - { - "a" : "item", - "t" : "600", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 1000000 - } - ], - "des" : "intr_cszl_des_3" - }, - "4": { - "pval" : 2000, - "stype" : "116", - "cond": [], - "tiaozhuan": 1, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 150 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "6", - "n" : 10 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_4" - }, - "5": { - "pval" : 3, - "stype" : "142", - "cond": [2], - "tiaozhuan": 6, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "2", - "n" : 500 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_5" - }, - "6": { - "pval" : 3, - "stype" : "122", - "cond": [], - "tiaozhuan": 7, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 200 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "12", - "n" : 400 - }, - { - "a" : "item", - "t" : "1", - "n" : 200000 - } - ], - "des" : "intr_cszl_des_6" - }, - "7": { - "pval" : 1, - "stype" : "155", - "cond": [], - "tiaozhuan": 8, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "rmbmoney", - "n" : 200 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_7" - }, - "8": { - "pval" : 1, - "stype" : "127", - "cond": [], - "tiaozhuan": 10, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "item", - "t" : "21", - "n" : 50 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_8" - }, - "9": { - "pval" : 1, - "stype" : "154", - "cond": [], - "tiaozhuan": 11, - "prize" : [ - { - "a" : "attr", - "t" : "shengdanExp", - "n" : 100 - }, - { - "a" : "attr", - "t" : "shengdanBullet", - "n" : 2 - }, - { - "a" : "attr", - "t" : "jinbi", - "n" : 100000 - }, - { - "a" : "item", - "t" : "1", - "n" : 100000 - } - ], - "des" : "intr_cszl_des_9" - }, + a: 'attr', + t: 'jinbi', + n: 50000 + }, + "2": { + a: 'item', + t: '1', + n: 50000 + } } + ] }, - //抽卡 - "chouka": [ - //P是权重 - //gailv是显示的概率 - {"a": "item", "t":"1", "n": 10000000, "p": 10, "gailv": 10}, - {"a": "item", "t":"12", "n": 1000, "p": 10, "gailv": 10}, - {"a": "item", "t":"2", "n": 2000, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 100, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 200, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 300, "p": 10, "gailv": 10}, - {"a": "item", "t":"18", "n": 400, "p": 10, "gailv": 10} - ], - //抽卡货币 - "huobi": {"a": "attr", "t":"huangqijiuguan", "n": 1}, - //抽卡次数奖励 - "choukajiangli": [ - {"num": 30, - "prize":[ - { - "a": "item", "t":"1", "n": 10000000 - } - ] - }, - {"num": 40, - "dlz": [ - { - "1": {"a": "attr", "t":"jinbi", "n": 100000}, - "2": {"a": "item", "t":"1", "n": 50000} - } - ] - }, - {"num": 50, - "dlz": [ - { - "1": {"a": "attr", "t":"jinbi", "n": 200000}, - "2": {"a": "item", "t":"1", "n": 40000} - } - ] - }, - {"num": 60, - "prize":[ - { - "a": "item", "t":"1", "n": 10000000 - } - ] - }, - {"num": 70, - "dlz": [ - { - "1": {"a": "attr", "t":"jinbi", "n": 130000}, - "2": {"a": "item", "t":"1", "n": 60000} - } - ] - }, - ], - //抽卡保底 - "baodi": - {"num": 20, - "prize":[ - { - "a": "item", "t":"1", "n": 123456 - } - ] - }, - //黄旗礼包 - "gift": [ + { + need: [], + free: false, + payId: 'zixuanlibao6', + buyNum: 1, + prize: [ { - "id": 1, - "free": true, - "payId": "", - "buynum": 1, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 5}] + a: 'attr', + t: 'rmbmoney', + n: 60 + } + ], + dlz: [ + { + "1": { + a: 'item', + t: '2', + n: 60 + }, + "2": { + a: 'item', + t: '12', + n: 50 + } }, { - "id": 2, - "free": false, - "payId": "hqjg_libao_1", - "buynum": 2, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 10},{"a": "item", "t":"1", "n": 100}] + "1": { + a: 'item', + t: '27', + n: 1500 + }, + "2": { + a: 'item', + t: '1', + n: 100000 + } + } + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao30', + buyNum: 2, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 300 + } + ], + dlz: [ + { + "1": { + a: 'item', + t: '2', + n: 200 + }, + "2": { + a: 'item', + t: '12', + n: 100 + } }, { - "id": 3, - "free": false, - "payId": "hqjg_libao_2", - "buynum": 3, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 50},{"a": "item", "t":"1", "n": 30}] + "1": { + a: 'item', + t: '27', + n: 7000 + }, + "2": { + a: 'item', + t: '1', + n: 200000 + } + } + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao68', + buyNum: 2, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 680 + } + ], + dlz: [ + { + "1": { + a: 'item', + t: '18', + n: 100 + }, + "2": { + a: 'item', + t: '21', + n: 200 + }, + "3": { + a: 'item', + t: '9', + n: 1000 + } }, { - "id": 4, - "free": false, - "payId": "hqjg_libao_3", - "buynum": 5, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 1000},{"a": "item", "t":"2", "n": 100}] + "1": { + a: 'item', + t: '27', + n: 15000 + }, + "2": { + a: 'item', + t: '1', + n: 300000 + } + } + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao128', + buyNum: 2, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1280 + } + ], + dlz: [ + { + "1": { + a: 'item', + t: '18', + n: 200 + }, + "2": { + a: 'item', + t: '9', + n: 2000 + }, + "3": { + a: 'item', + t: '10', + n: 200 + } }, { - "id": 5, - "free": false, - "payId": "hqjg_libao_4", - "buynum": 10, - "prize": [{"a": "attr", "t":"rmbmoney", "n": 10000},{"a": "item", "t":"1", "n": 50}] + "1": { + a: 'item', + t: '27', + n: 20000 + }, + "2": { + a: 'item', + t: '1', + n: 500000 + } + } + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao328', + buyNum: 3, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3280 + } + ], + dlz: [ + { + "1": { + a: 'item', + t: '600', + n: 20 + }, + "2": { + a: 'item', + t: '601', + n: 20 + }, + "3": { + a: 'item', + t: '616', + n: 40 + } }, + { + "1": { + a: 'item', + t: '27', + n: 50000 + }, + "2": { + a: 'item', + t: '1', + n: 700000 + } + } + ] + }, + { + need: [], + free: false, + payId: 'zixuanlibao648', + buyNum: 3, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 6480 + } + ], + dlz: [ + { + "1": { + a: 'item', + t: '600', + n: 40 + }, + "2": { + a: 'item', + t: '601', + n: 40 + }, + "3": { + a: 'item', + t: '616', + n: 80 + } + }, + { + "1": { + a: 'item', + t: '27', + n: 100000 + }, + "2": { + a: 'item', + t: '1', + n: 1000000 + } + } + ] + } + ] + } + }, + { + "hdid": 5000, + // 唯一活动id 累计充值 + "htype": 5, + // 后端唯一识别标识 + "stype": 500, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 7, + // 活动显示结束天数 + "etime": 7, + // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime": "仅供参考,会复写正确值", + "data": { + tasks: [ + { + total: 1000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + }, + { + a: 'item', + t: '4', + n: 2 + } + ] + }, + { + total: 2000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'item', + t: '12', + n: 500 + } + ] + }, + { + total: 5000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1500 + }, + { + a: 'item', + t: '4', + n: 5 + } + ] + }, + { + total: 10000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2000 + }, + { + a: 'item', + t: '600', + n: 20 + } + ] + }, + { + total: 20000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + }, + { + a: 'item', + t: '609', + n: 1 + } + ] + }, + { + total: 30000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 6000 + }, + { + a: 'item', + t: '611', + n: 1 + } + ] + }, + { + total: 50000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 10000 + }, + { + a: 'item', + t: '610', + n: 1 + } + ] + } + ] + } + }, + { + "hdid": 5001, + // 唯一活动id 累计充值 + "htype": 5, + // 后端唯一识别标识 + "stype": 500, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 7, + // 活动开始天数 + "rtime": 14, + // 活动显示结束天数 + "etime": 14, + // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime": "仅供参考,会复写正确值", + "data": { + tasks: [ + { + total: 1000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + }, + { + a: 'item', + t: '4', + n: 2 + } + ] + }, + { + total: 2000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'item', + t: '12', + n: 500 + } + ] + }, + { + total: 5000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1500 + }, + { + a: 'item', + t: '4', + n: 5 + } + ] + }, + { + total: 10000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2000 + }, + { + a: 'item', + t: '600', + n: 20 + } + ] + }, + { + total: 20000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + }, + { + a: 'item', + t: '609', + n: 1 + } + ] + }, + { + total: 30000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 6000 + }, + { + a: 'item', + t: '611', + n: 1 + } + ] + }, + { + total: 50000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 10000 + }, + { + a: 'item', + t: '610', + n: 1 + } + ] + } + ] + } + }, + { + "hdid": 5002, + // 唯一活动id 累计充值 + "htype": 5, + // 后端唯一识别标识 + "stype": 500, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 14, + // 活动开始天数 + "rtime": 21, + // 活动显示结束天数 + "etime": 21, + // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime": "仅供参考,会复写正确值", + "data": { + tasks: [ + { + total: 1000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + }, + { + a: 'item', + t: '4', + n: 2 + } + ] + }, + { + total: 2000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'item', + t: '12', + n: 500 + } + ] + }, + { + total: 5000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1500 + }, + { + a: 'item', + t: '4', + n: 5 + } + ] + }, + { + total: 10000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2000 + }, + { + a: 'item', + t: '600', + n: 20 + } + ] + }, + { + total: 20000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + }, + { + a: 'item', + t: '609', + n: 1 + } + ] + }, + { + total: 30000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 6000 + }, + { + a: 'item', + t: '611', + n: 1 + } + ] + }, + { + total: 50000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 10000 + }, + { + a: 'item', + t: '610', + n: 1 + } + ] + } + ] + } + }, + { + "hdid": 5003, + // 唯一活动id 累计充值 + "htype": 5, + // 后端唯一识别标识 + "stype": 500, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 21, + // 活动开始天数 + "rtime": 28, + // 活动显示结束天数 + "etime": 28, + // 活动实际结束 + "name": "leijichongzhi", + "icon": "icon_leijichongzhi", + "showtime": "仅供参考,会复写正确值", + "data": { + tasks: [ + { + total: 1000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + }, + { + a: 'item', + t: '4', + n: 2 + } + ] + }, + { + total: 2000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'item', + t: '12', + n: 500 + } + ] + }, + { + total: 5000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1500 + }, + { + a: 'item', + t: '4', + n: 5 + } + ] + }, + { + total: 10000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2000 + }, + { + a: 'item', + t: '600', + n: 20 + } + ] + }, + { + total: 20000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + }, + { + a: 'item', + t: '609', + n: 1 + } + ] + }, + { + total: 30000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 6000 + }, + { + a: 'item', + t: '611', + n: 1 + } + ] + }, + { + total: 50000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 10000 + }, + { + a: 'item', + t: '610', + n: 1 + } + ] + } + ] + } + }, + { + "hdid": 6000, + // 唯一活动id 七日登录 + "htype": 6, + // 后端唯一识别标识 + "stype": 600, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 1, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 7, + // 活动显示结束天数 + "etime": 7, + // 活动实际结束 + "name": "mainView_txt_huod1450", + "icon": "icon_qiridenglu", + "showtime": "仅供参考,会复写正确值", + "data": { + "arr": [ + { + day: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 200 + } + ] + }, + { + day: 2, + prize: [ + { + a: 'hero', + t: '4001', + n: 1 + } + ] + }, + { + day: 3, + prize: [ + { + a: 'equip', + t: '1009', + n: 1 + } + ] + }, + { + day: 4, + prize: [ + { + a: 'item', + t: '9', + n: 200 + } + ] + }, + { + day: 5, + prize: [ + { + a: 'item', + t: '4', + n: 10 + } + ] + }, + { + day: 6, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + } + ] + }, + { + day: 7, + prize: [ + { + a: 'hero', + t: '5005', + n: 1 + } + ] + } + ] + } + }, + { + "hdid": 7000, + // 唯一活动id 开服狂欢 + "htype": 7, + // 后端唯一识别标识 + "stype": 700, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 0, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 7, + // 活动显示结束天数 + "etime": 7, + // 活动实际结束 + "name": "KFKH", + "icon": "btn_kfkh", + "showtime": "仅供参考,会复写正确值", + "data": { + //登陆奖励 + loginPrize: [ + [ + { + a: 'equip', + t: '3003', + n: 1 + } ], - //兑换商店 - "duihuan": [ - {id:1, need: [{a: 'attr', t: 'huangqiduihuan', n: 1000}], prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}], buyNum: 2 }, - {id:2, need: [{a: 'attr', t: 'huangqiduihuan', n: 2000}], prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}], buyNum: 1 }, - {id:3, need: [{a: 'attr', t: 'huangqiduihuan', n: 3000}], prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}], buyNum: 1 }, - {id:4, need: [{a: 'attr', t: 'huangqiduihuan', n: 4000}], prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}], buyNum: 3 }, - {id:5, need: [{a: 'attr', t: 'huangqiduihuan', n: 5000}], prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}], buyNum: 5 }, - {id:6, need: [{a: 'attr', t: 'huangqiduihuan', n: 6000}], prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}], buyNum: 6 } - ], - //boss表的ID - "bossId": 17001, - //boss挑战等级奖励 - "bossLvReward": [ - {lv:1, "need": 10000, prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 1000}]}, - {lv:2, "need": 20000, prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 550}]}, - {lv:3, "need": 50000, prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 230}]}, - {lv:4, "need": 100000, prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 690}]}, - {lv:5, "need": 1000000, prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 900},{a: 'item', t: '1', n: 3300}]}, - {lv:6, "need": 10000000, prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 1000},{a: 'item', t: '1', n: 130}]} - ], - //boss挑战等级奖励邮件标题 - "bossLvReward_title": "email_title_hqjg_dps", - //boss挑战等级奖励邮件内容 - "bossLvReward_des": "email_content_hqjg_dps", - //boss挑战任务(每日刷新) - "bossTask": [ - {id:1, "need": 100000, prize: [{a: 'item', t: '610', n: 1},{a: 'item', t: '2', n: 100},{a: 'item', t: '1', n: 1000}]}, - {id:2, "need": 200000, prize: [{a: 'item', t: '610', n: 2},{a: 'item', t: '2', n: 200},{a: 'item', t: '1', n: 2000}]}, - {id:3, "need": 300000, prize: [{a: 'item', t: '610', n: 3},{a: 'item', t: '2', n: 300},{a: 'item', t: '1', n: 3000}]}, - {id:4, "need": 400000, prize: [{a: 'item', t: '610', n: 4},{a: 'item', t: '2', n: 400},{a: 'item', t: '1', n: 4000}]}, - {id:5, "need": 500000, prize: [{a: 'item', t: '610', n: 5},{a: 'item', t: '2', n: 500},{a: 'item', t: '1', n: 5000}]}, - {id:6, "need": 600000, prize: [{a: 'item', t: '610', n: 6},{a: 'item', t: '2', n: 600},{a: 'item', t: '1', n: 6000}]}, - {id:7, "need": 700000, prize: [{a: 'item', t: '610', n: 7},{a: 'item', t: '2', n: 700},{a: 'item', t: '1', n: 7000}]}, - {id:8, "need": 800000, prize: [{a: 'item', t: '610', n: 8},{a: 'item', t: '2', n: 800},{a: 'item', t: '1', n: 8000}]} + [ + { + a: 'item', + t: '618', + n: 1 + } + ], + [ + { + a: 'item', + t: '12', + n: 200 + } + ], + [ + { + a: 'item', + t: '2', + n: 400 + } + ], + [ + { + a: 'attr', + t: 'rmbmoney', + n: 1500 + } + ], + [ + { + a: 'attr', + t: 'jinbi', + n: 300000 + } + ], + [ + { + a: 'item', + t: '617', + n: 1 + } + ] + ], + //商品 + shop: [ + { + buyNum: 1, + day: 1, + vip: 1, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 400 + } + ], + prize: [ + { + a: 'item', + t: '2', + n: 1000 + } + ] + }, + { + buyNum: 1, + day: 1, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1200 + } + ], + prize: [ + { + a: 'hero', + t: '4010', + n: 1 + } + ] + }, + { + buyNum: 1, + day: 2, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 680 + } + ], + prize: [ + { + a: 'item', + t: '27', + n: 5000 + } + ] + }, + { + buyNum: 1, + day: 2, + vip: 3, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + } + ], + prize: [ + { + a: 'item', + t: '620', + n: 1 + } + ] + }, + { + buyNum: 1, + day: 3, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 670 + } + ], + prize: [ + { + a: 'item', + t: '6', + n: 20 + } + ] + }, + { + buyNum: 1, + day: 3, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 670 + } + ], + prize: [ + { + a: 'item', + t: '615', + n: 1 + } + ] + }, + { + buyNum: 1, + day: 4, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 600 + } + ], + prize: [ + { + a: 'item', + t: '12', + n: 800 + } + ] + }, + { + buyNum: 1, + day: 4, + vip: 5, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1340 + } + ], + prize: [ + { + a: 'item', + t: '621', + n: 1 + } + ] + }, + { + buyNum: 1, + day: 5, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1250 + } + ], + prize: [ + { + a: 'item', + t: '1', + n: 3000000 + } + ] + }, + { + buyNum: 1, + day: 5, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1340 + } + ], + prize: [ + { + a: 'item', + t: '621', + n: 1 + } + ] + }, + { + buyNum: 1, + day: 6, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 625 + } + ], + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 10000000 + } + ] + }, + { + buyNum: 1, + day: 6, + vip: 6, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 4440 + } + ], + prize: [ + { + a: 'item', + t: '18', + n: 888 + } + ] + }, + { + buyNum: 1, + day: 7, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + } + ], + prize: [ + { + a: 'item', + t: '24', + n: 10 + } + ] + }, + { + buyNum: 1, + day: 7, + vip: 0, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 4500 + } + ], + prize: [ + { + a: 'item', + t: '617', + n: 1 + } + ] + }, + { + buyNum: 1, + day: 7, + vip: 7, + sale: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1340 + } + ], + prize: [ + { + a: 'item', + t: '625', + n: 1 + } + ] + }, + ], + //任务 + taskType: { + '今日登陆': 'toDayLogin_x', + '今日累计充值x元': 'toDayPay_x', + '任意装备强化至x级': 'equip_qh_lv', + '竞技场排名达到x': 'jjc_rank', + '同时出战x名紫色干部': 'fight_hero_colour_4', + '通过黑暗塔关卡': 'zccg_level', + '拥有x件蓝色及以上装备': 'has_equip_color_3', + '拥有x名进阶+1的干部': 'has_hero_jieji_1', + '佣兵助战上阵x个干部 ': 'helpHeros', + '维修厂老实轿车突破到x阶x星 ': 'wxcLv', + '干部羁绊属性激活x条 ': 'hero_jiban', + '玩家等级达到x级': 'lv', + '玩家总战力达到x': 'power', + '主线关卡': 'mapId' + }, + task: { + '1': [ + { + taskId: 'intr_task_name_444', + taskType: 'toDayLogin_1', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 100 + }, + { + a: 'attr', + t: 'jinbi', + n: 20000 + } ], - //BOSS挑战排行奖励 - "bossRank": [ - { - id: '1', - rank:[1,1], - prize: [{'a': 'item', 't': '13', 'n': 600}, - {'a': 'item', 't': '1', 'n': 100} - ] - }, - { - id: '2', - rank:[2,2], - prize: [{'a': 'item', 't': '13', 'n': 700}, - {'a': 'item', 't': '1', 'n': 200} - ] - }, - { - id: '3', - rank:[3,3], - prize: [{'a': 'item', 't': '13', 'n': 800}, - {'a': 'item', 't': '1', 'n': 300} - ] - }, - { - id: '4', - rank:[4,10], - prize: [{'a': 'item', 't': '13', 'n': 900}, - {'a': 'item', 't': '1', 'n': 400} - ] - }, - { - id: '5', - rank:[11,30], - prize: [{'a': 'item', 't': '13', 'n': 1000}, - {'a': 'item', 't': '1', 'n': 500} - ] - }, - { - id: '6', - rank:[31,9999], - prize: [{'a': 'item', 't': '13', 'n': 50}, - {'a': 'item', 't': '1', 'n': 600} - ] - } + "tiaozhuan": 24 + }, + { + taskId: 'intr_task_name_430', + taskType: 'toDayPay_1', + total: 1000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + }, + { + a: 'item', + t: '2', + n: 500 + }, + { + a: 'item', + t: '600', + n: 5 + } ], - //boss排行邮件标题 - "bossRank_title": "email_title_hqjg_rank", - //boss排行邮件内容 - "bossRank_des": "email_content_hqjg_rank" - } + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_431', + taskType: 'toDayPay_1', + total: 3000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 600 + }, + { + a: 'item', + t: '12', + n: 500 + }, + { + a: 'item', + t: '600', + n: 5 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_432', + taskType: 'toDayPay_1', + total: 5000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 800 + }, + { + a: 'item', + t: '2', + n: 2000 + }, + { + a: 'item', + t: '600', + n: 10 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_433', + taskType: 'toDayPay_1', + total: 8000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'item', + t: '12', + n: 1000 + }, + { + a: 'item', + t: '600', + n: 20 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_434', + taskType: 'mapId', + total: 20, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 10000 + }, + { + a: 'item', + t: '12', + n: 30 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_435', + taskType: 'mapId', + total: 30, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 20000 + }, + { + a: 'item', + t: '12', + n: 30 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_436', + taskType: 'mapId', + total: 40, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 30000 + }, + { + a: 'item', + t: '12', + n: 30 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_437', + taskType: 'mapId', + total: 50, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 40000 + }, + { + a: 'item', + t: '12', + n: 50 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_438', + taskType: 'mapId', + total: 60, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 100000 + }, + { + a: 'item', + t: '12', + n: 50 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_439', + taskType: 'equip_qh_lv', + total: 10, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 10000 + }, + { + a: 'item', + t: '2', + n: 20 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_440', + taskType: 'equip_qh_lv', + total: 20, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 20000 + }, + { + a: 'item', + t: '2', + n: 30 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_441', + taskType: 'equip_qh_lv', + total: 30, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 30000 + }, + { + a: 'item', + t: '2', + n: 50 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_442', + taskType: 'equip_qh_lv', + total: 40, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 40000 + }, + { + a: 'item', + t: '2', + n: 100 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_443', + taskType: 'equip_qh_lv', + total: 50, + prize: [ + { + a: 'attr', + t: 'jinbi', + n: 100000 + }, + { + a: 'item', + t: '2', + n: 150 + } + ], + "tiaozhuan": 2 + } + ], + '2': [ + { + taskId: 'intr_task_name_444', + taskType: 'toDayLogin_2', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 150 + }, + { + a: 'item', + t: '618', + n: 1 + }, + { + a: 'item', + t: '12', + n: 100 + } + ], + "tiaozhuan": 24 + }, + { + taskId: 'intr_task_name_445', + taskType: 'toDayPay_2', + total: 2000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'item', + t: '616', + n: 5 + }, + { + a: 'item', + t: '600', + n: 2 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_446', + taskType: 'toDayPay_2', + total: 4000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 600 + }, + { + a: 'attr', + t: 'nexp', + n: 10000 + }, + { + a: 'item', + t: '616', + n: 5 + }, + { + a: 'item', + t: '600', + n: 3 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_447', + taskType: 'toDayPay_2', + total: 6000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 800 + }, + { + a: 'attr', + t: 'nexp', + n: 40000 + }, + { + a: 'item', + t: '616', + n: 10 + }, + { + a: 'item', + t: '600', + n: 5 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_448', + taskType: 'toDayPay_2', + total: 8000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'attr', + t: 'nexp', + n: 100000 + }, + { + a: 'item', + t: '616', + n: 20 + }, + { + a: 'item', + t: '600', + n: 10 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_449', + taskType: 'jjc_rank', + total: 100, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 100 + } + ], + "tiaozhuan": 28 + }, + { + taskId: 'intr_task_name_450', + taskType: 'jjc_rank', + total: 50, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 150 + } + ], + "tiaozhuan": 28 + }, + { + taskId: 'intr_task_name_451', + taskType: 'jjc_rank', + total: 20, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 200 + } + ], + "tiaozhuan": 28 + }, + { + taskId: 'intr_task_name_452', + taskType: 'jjc_rank', + total: 10, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 250 + } + ], + "tiaozhuan": 28 + }, + { + taskId: 'intr_task_name_453', + taskType: 'jjc_rank', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 300 + } + ], + "tiaozhuan": 28 + }, + { + taskId: 'intr_task_name_454', + taskType: 'fight_hero_colour_4', + total: 2, + prize: [ + { + a: 'item', + t: '2', + n: 20 + }, + { + a: 'attr', + t: 'jinbi', + n: 10000 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_455', + taskType: 'fight_hero_colour_4', + total: 3, + prize: [ + { + a: 'item', + t: '2', + n: 30 + }, + { + a: 'attr', + t: 'jinbi', + n: 20000 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_456', + taskType: 'fight_hero_colour_4', + total: 4, + prize: [ + { + a: 'item', + t: '2', + n: 50 + }, + { + a: 'attr', + t: 'jinbi', + n: 30000 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_457', + taskType: 'fight_hero_colour_4', + total: 5, + prize: [ + { + a: 'item', + t: '2', + n: 100 + }, + { + a: 'attr', + t: 'jinbi', + n: 40000 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_458', + taskType: 'fight_hero_colour_4', + total: 6, + prize: [ + { + a: 'item', + t: '2', + n: 150 + }, + { + a: 'attr', + t: 'jinbi', + n: 100000 + } + ], + "tiaozhuan": 2 + } + ], + '3': [ + { + taskId: 'intr_task_name_459', + taskType: 'toDayLogin_3', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 200 + }, + { + a: 'equip', + t: '3003', + n: 1 + }, + { + a: 'item', + t: '2', + n: 200 + } + ], + "tiaozhuan": 24 + }, + { + taskId: 'intr_task_name_460', + taskType: 'toDayPay_3', + total: 3000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1500 + }, + { + a: 'item', + t: '23', + n: 50000 + }, + { + a: 'item', + t: '601', + n: 2 + }, + { + a: 'item', + t: '600', + n: 2 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_461', + taskType: 'toDayPay_3', + total: 5000, + prize: [ + { + a: 'item', + t: '12', + n: 2500 + }, + { + a: 'attr', + t: 'nexp', + n: 10000 + }, + { + a: 'item', + t: '601', + n: 5 + }, + { + a: 'item', + t: '600', + n: 3 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_462', + taskType: 'toDayPay_3', + total: 10000, + prize: [ + { + a: 'item', + t: '2', + n: 5000 + }, + { + a: 'attr', + t: 'nexp', + n: 40000 + }, + { + a: 'item', + t: '601', + n: 10 + }, + { + a: 'item', + t: '600', + n: 5 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_463', + taskType: 'toDayPay_3', + total: 15000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2000 + }, + { + a: 'attr', + t: 'nexp', + n: 100000 + }, + { + a: 'item', + t: '601', + n: 20 + }, + { + a: 'item', + t: '600', + n: 10 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_464', + taskType: 'zccg_level', + total: 15, + prize: [ + { + a: 'item', + t: '23', + n: 10000 + }, + { + a: 'item', + t: '26', + n: 1 + } + ], + "tiaozhuan": 29 + }, + { + taskId: 'intr_task_name_465', + taskType: 'zccg_level', + total: 17, + prize: [ + { + a: 'item', + t: '23', + n: 20000 + }, + { + a: 'item', + t: '26', + n: 2 + } + ], + "tiaozhuan": 29 + }, + { + taskId: 'intr_task_name_466', + taskType: 'zccg_level', + total: 19, + prize: [ + { + a: 'item', + t: '23', + n: 20000 + }, + { + a: 'item', + t: '26', + n: 3 + } + ], + "tiaozhuan": 29 + }, + { + taskId: 'intr_task_name_467', + taskType: 'zccg_level', + total: 22, + prize: [ + { + a: 'item', + t: '23', + n: 25000 + }, + { + a: 'item', + t: '26', + n: 4 + } + ], + "tiaozhuan": 29 + }, + { + taskId: 'intr_task_name_468', + taskType: 'zccg_level', + total: 25, + prize: [ + { + a: 'item', + t: '23', + n: 25000 + }, + { + a: 'item', + t: '26', + n: 5 + } + ], + "tiaozhuan": 29 + }, + { + taskId: 'intr_task_name_469', + taskType: 'has_equip_color_3', + total: 8, + prize: [ + { + a: 'item', + t: '23', + n: 10000 + }, + { + a: 'item', + t: '70002', + n: 1 + } + ], + "tiaozhuan": 8 + }, + { + taskId: 'intr_task_name_470', + taskType: 'has_equip_color_3', + total: 12, + prize: [ + { + a: 'item', + t: '23', + n: 20000 + }, + { + a: 'item', + t: '70002', + n: 1 + } + ], + "tiaozhuan": 8 + }, + { + taskId: 'intr_task_name_471', + taskType: 'has_equip_color_4', + total: 2, + prize: [ + { + a: 'item', + t: '23', + n: 20000 + }, + { + a: 'item', + t: '70004', + n: 1 + } + ], + "tiaozhuan": 8 + }, + { + taskId: 'intr_task_name_472', + taskType: 'has_equip_color_4', + total: 4, + prize: [ + { + a: 'item', + t: '23', + n: 25000 + }, + { + a: 'item', + t: '70004', + n: 1 + } + ], + "tiaozhuan": 8 + }, + { + taskId: 'intr_task_name_473', + taskType: 'has_equip_color_4', + total: 6, + prize: [ + { + a: 'item', + t: '23', + n: 25000 + }, + { + a: 'item', + t: '70005', + n: 1 + } + ], + "tiaozhuan": 8 + } + ], + '4': [ + { + taskId: 'intr_task_name_474', + taskType: 'toDayLogin_4', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 250 + }, + { + a: 'item', + t: '12', + n: 100 + } + ], + "tiaozhuan": 24 + }, + { + taskId: 'intr_task_name_475', + taskType: 'toDayPay_4', + total: 5000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2500 + }, + { + a: 'item', + t: '12', + n: 1800 + }, + { + a: 'item', + t: '616', + n: 10 + }, + { + a: 'item', + t: '600', + n: 2 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_476', + taskType: 'toDayPay_4', + total: 8000, + prize: [ + { + a: 'item', + t: '12', + n: 3000 + }, + { + a: 'attr', + t: 'nexp', + n: 100000 + }, + { + a: 'item', + t: '616', + n: 10 + }, + { + a: 'item', + t: '600', + n: 3 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_477', + taskType: 'toDayPay_4', + total: 15000, + prize: [ + { + a: 'item', + t: '9', + n: 1250 + }, + { + a: 'attr', + t: 'nexp', + n: 200000 + }, + { + a: 'item', + t: '601', + n: 10 + }, + { + a: 'item', + t: '600', + n: 5 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_478', + taskType: 'toDayPay_4', + total: 20000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 5000 + }, + { + a: 'attr', + t: 'nexp', + n: 300000 + }, + { + a: 'item', + t: '601', + n: 10 + }, + { + a: 'item', + t: '600', + n: 10 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_479', + taskType: 'mapId', + total: 70, + prize: [ + { + a: 'item', + t: '12', + n: 30 + }, + { + a: 'item', + t: '25', + n: 1 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_480', + taskType: 'mapId', + total: 75, + prize: [ + { + a: 'item', + t: '12', + n: 30 + }, + { + a: 'item', + t: '25', + n: 2 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_481', + taskType: 'mapId', + total: 80, + prize: [ + { + a: 'item', + t: '12', + n: 30 + }, + { + a: 'item', + t: '25', + n: 3 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_482', + taskType: 'mapId', + total: 85, + prize: [ + { + a: 'item', + t: '12', + n: 50 + }, + { + a: 'item', + t: '25', + n: 4 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_483', + taskType: 'mapId', + total: 90, + prize: [ + { + a: 'item', + t: '12', + n: 50 + }, + { + a: 'item', + t: '25', + n: 5 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_484', + taskType: 'has_hero_jieji_1', + total: 6, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 20 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_485', + taskType: 'has_hero_jieji_2', + total: 5, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 30 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_486', + taskType: 'has_hero_jieji_3', + total: 3, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 50 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_487', + taskType: 'has_hero_jieji_4', + total: 1, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 100 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_488', + taskType: 'has_hero_jieji_4', + total: 2, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 150 + } + ], + "tiaozhuan": 2 + } + ], + '5': [ + { + taskId: 'intr_task_name_489', + taskType: 'toDayLogin_5', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 300 + }, + { + a: 'item', + t: '2', + n: 200 + } + ], + "tiaozhuan": 24 + }, + { + taskId: 'intr_task_name_490', + taskType: 'toDayPay_5', + total: 10000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 5000 + }, + { + a: 'item', + t: '600', + n: 2 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_491', + taskType: 'toDayPay_5', + total: 15000, + prize: [ + { + a: 'item', + t: '10', + n: 250 + }, + { + a: 'attr', + t: 'nexp', + n: 250000 + }, + { + a: 'item', + t: '6', + n: 40 + }, + { + a: 'item', + t: '600', + n: 3 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_492', + taskType: 'toDayPay_5', + total: 20000, + prize: [ + { + a: 'item', + t: '9', + n: 3000 + }, + { + a: 'attr', + t: 'nexp', + n: 300000 + }, + { + a: 'item', + t: '6', + n: 50 + }, + { + a: 'item', + t: '600', + n: 5 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_493', + taskType: 'toDayPay_5', + total: 28000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 10000 + }, + { + a: 'attr', + t: 'nexp', + n: 500000 + }, + { + a: 'item', + t: '6', + n: 60 + }, + { + a: 'item', + t: '600', + n: 10 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_494', + taskType: 'helpHeros', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 50 + }, + { + a: 'item', + t: '70004', + n: 1 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_495', + taskType: 'helpHeros', + total: 2, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 100 + }, + { + a: 'item', + t: '70004', + n: 1 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_496', + taskType: 'helpHeros', + total: 3, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 150 + }, + { + a: 'item', + t: '70005', + n: 1 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_497', + taskType: 'helpHeros', + total: 4, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 200 + }, + { + a: 'item', + t: '70005', + n: 1 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_498', + taskType: 'helpHeros', + total: 5, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 250 + }, + { + a: 'item', + t: '70006', + n: 1 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_499', + taskType: 'mapId', + total: 100, + prize: [ + { + a: 'item', + t: '12', + n: 30 + }, + { + a: 'item', + t: '25', + n: 1 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_500', + taskType: 'mapId', + total: 115, + prize: [ + { + a: 'item', + t: '12', + n: 30 + }, + { + a: 'item', + t: '25', + n: 2 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_501', + taskType: 'mapId', + total: 130, + prize: [ + { + a: 'item', + t: '12', + n: 30 + }, + { + a: 'item', + t: '25', + n: 3 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_502', + taskType: 'mapId', + total: 150, + prize: [ + { + a: 'item', + t: '12', + n: 50 + }, + { + a: 'item', + t: '25', + n: 4 + } + ], + "tiaozhuan": 3 + }, + { + taskId: 'intr_task_name_503', + taskType: 'mapId', + total: 170, + prize: [ + { + a: 'item', + t: '12', + n: 50 + }, + { + a: 'item', + t: '25', + n: 5 + } + ], + "tiaozhuan": 3 + } + ], + '6': [ + { + taskId: 'intr_task_name_504', + taskType: 'toDayLogin_6', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 350 + }, + { + a: 'attr', + t: 'jinbi', + n: 300000 + } + ], + "tiaozhuan": 24 + }, + { + taskId: 'intr_task_name_505', + taskType: 'toDayPay_6', + total: 15000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 7500 + }, + { + a: 'item', + t: '6', + n: 40 + }, + { + a: 'item', + t: '617', + n: 3 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_506', + taskType: 'toDayPay_6', + total: 28000, + prize: [ + { + a: 'item', + t: '2', + n: 4500 + }, + { + a: 'item', + t: '6', + n: 60 + }, + { + a: 'item', + t: '600', + n: 20 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_507', + taskType: 'toDayPay_6', + total: 42000, + prize: [ + { + a: 'item', + t: '29', + n: 800 + }, + { + a: 'item', + t: '6', + n: 70 + }, + { + a: 'item', + t: '600', + n: 20 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_508', + taskType: 'toDayPay_6', + total: 55000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 15000 + }, + { + a: 'item', + t: '6', + n: 80 + }, + { + a: 'item', + t: '600', + n: 20 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_509', + taskType: 'wxcLv', + total: 22, + prize: [ + { + a: 'item', + t: '44', + n: 5 + } + ], + "tiaozhuan": 6 + }, + { + taskId: 'intr_task_name_510', + taskType: 'wxcLv', + total: 24, + prize: [ + { + a: 'item', + t: '45', + n: 5 + } + ], + "tiaozhuan": 6 + }, + { + taskId: 'intr_task_name_511', + taskType: 'wxcLv', + total: 26, + prize: [ + { + a: 'item', + t: '46', + n: 5 + } + ], + "tiaozhuan": 6 + }, + { + taskId: 'intr_task_name_512', + taskType: 'wxcLv', + total: 28, + prize: [ + { + a: 'item', + t: '44', + n: 5 + }, + { + a: 'item', + t: '46', + n: 5 + } + ], + "tiaozhuan": 6 + }, + { + taskId: 'intr_task_name_513', + taskType: 'wxcLv', + total: 30, + prize: [ + { + a: 'item', + t: '46', + n: 5 + }, + { + a: 'item', + t: '45', + n: 5 + } + ], + "tiaozhuan": 6 + }, + { + taskId: 'intr_task_name_514', + taskType: 'hero_jiban', + total: 12, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 20 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_515', + taskType: 'hero_jiban', + total: 14, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 30 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_516', + taskType: 'hero_jiban', + total: 16, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 50 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_517', + taskType: 'hero_jiban', + total: 18, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 100 + } + ], + "tiaozhuan": 2 + }, + { + taskId: 'intr_task_name_518', + taskType: 'hero_jiban', + total: 20, + prize: [ + { + a: 'item', + t: '616', + n: 2 + }, + { + a: 'item', + t: '2', + n: 150 + } + ], + "tiaozhuan": 2 + } + ], + '7': [ + { + taskId: 'intr_task_name_519', + taskType: 'toDayLogin_7', + total: 1, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 400 + }, + { + a: 'item', + t: '617', + n: 1 + } + ], + "tiaozhuan": 24 + }, + { + taskId: 'intr_task_name_520', + taskType: 'toDayPay_7', + total: 15000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 7500 + }, + { + a: 'item', + t: '24', + n: 20 + }, + { + a: 'item', + t: '617', + n: 3 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_521', + taskType: 'toDayPay_7', + total: 28000, + prize: [ + { + a: 'item', + t: '10', + n: 120 + }, + { + a: 'item', + t: '29', + n: 500 + }, + { + a: 'item', + t: '6', + n: 60 + }, + { + a: 'item', + t: '600', + n: 20 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_522', + taskType: 'toDayPay_7', + total: 42000, + prize: [ + { + a: 'item', + t: '9', + n: 2000 + }, + { + a: 'item', + t: '29', + n: 1000 + }, + { + a: 'item', + t: '6', + n: 70 + }, + { + a: 'item', + t: '600', + n: 20 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_523', + taskType: 'toDayPay_7', + total: 55000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 15000 + }, + { + a: 'item', + t: '20', + n: 230 + }, + { + a: 'item', + t: '6', + n: 80 + }, + { + a: 'item', + t: '600', + n: 20 + } + ], + "tiaozhuan": 33 + }, + { + taskId: 'intr_task_name_524', + taskType: 'lv', + total: 35, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 50 + }, + { + a: 'item', + t: '6', + n: 1 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_525', + taskType: 'lv', + total: 38, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 100 + }, + { + a: 'item', + t: '6', + n: 2 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_526', + taskType: 'lv', + total: 41, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 150 + }, + { + a: 'item', + t: '6', + n: 3 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_527', + taskType: 'lv', + total: 44, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 200 + }, + { + a: 'item', + t: '6', + n: 4 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_528', + taskType: 'lv', + total: 47, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 250 + }, + { + a: 'item', + t: '6', + n: 5 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_529', + taskType: 'power', + total: 200000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 50 + }, + { + a: 'item', + t: '2', + n: 20 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_530', + taskType: 'power', + total: 400000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 100 + }, + { + a: 'item', + t: '2', + n: 30 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_531', + taskType: 'power', + total: 600000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 150 + }, + { + a: 'item', + t: '2', + n: 50 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_532', + taskType: 'power', + total: 1200000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 200 + }, + { + a: 'item', + t: '2', + n: 100 + } + ], + "tiaozhuan": 1 + }, + { + taskId: 'intr_task_name_533', + taskType: 'power', + total: 1800000, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 250 + }, + { + a: 'item', + t: '2', + n: 150 + } + ], + "tiaozhuan": 1 + } + ], + }, + //宝箱奖励 + taskBoxPrize: [ + { + total: 60, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 100 + }, + { + a: 'item', + t: '12', + n: 200 + }, + { + a: 'item', + t: '2', + n: 100 + } + ] + }, + { + total: 70, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 200 + }, + { + a: 'item', + t: '21', + n: 200 + }, + { + a: 'attr', + t: 'jinbi', + n: 2000000 + } + ] + }, + { + total: 80, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 300 + }, + { + a: 'item', + t: '10', + n: 30 + }, + { + a: 'item', + t: '9', + n: 200 + } + ] + }, + { + total: 90, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 500 + }, + { + a: 'item', + t: '19', + n: 30 + }, + { + a: 'item', + t: '2', + n: 300 + } + ] + }, + { + total: 95, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + }, + { + a: 'item', + t: '12', + n: 500 + }, + { + a: 'item', + t: '28', + n: 3000 + }, + { + a: 'item', + t: '6', + n: 10 + } + ] + }, + { + total: 100, + prize: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2000 + }, + { + a: 'item', + t: '12', + n: 1000 + }, + { + a: 'item', + t: '609', + n: 1 + }, + { + a: 'item', + t: '625', + n: 1 + }, + { + a: 'item', + t: '50008', + n: 1 + } + ] + }, + ], + //补发奖励邮件 + email: { + title: 'email_title_kfkh', + content: 'email_content_kfkh' + }, + //持续时间(秒数) + cxtime: 604800 + } + }, + { + "hdid": 8000, + // 唯一活动id 圣诞活动 + "htype": 8, + "stype": 800, + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 60, + "rtime": 90, + "etime": 90, + "name": "sdhd_tips_1", + "icon": "icon_xfdj", + "showtime": "根据玩家注册时间,游戏返回时复写", + "data": { + //任务 + "task": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + //玩游戏需要消耗 + "gameneed": [ + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + } + ], + //玩游戏拿分 + "game": [ + 5, + 10, + 20, + 30, + 50 + ], + //免费玩游戏次数 + "gamefree": 3, + //战令 + "zhanling": [ + { + "val": 2500, + "pt": [ + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "gj": [ + { + "a": "item", + "t": "50009", + "n": 1 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ] + }, + { + "val": 5000, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 500 + } + ], + "gj": [ + { + "a": "item", + "t": "23", + "n": 2000 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ] + }, + { + "val": 7500, + "pt": [ + { + "a": "item", + "t": "50104", + "n": 1 + } + ], + "gj": [ + { + "a": "item", + "t": "9", + "n": 100 + }, + { + "a": "item", + "t": "10", + "n": 800 + } + ] + }, + { + "val": 10000, + "pt": [ + { + "a": "item", + "t": "4", + "n": 10 + } + ], + "gj": [ + { + "a": "item", + "t": "28", + "n": 5000 + }, + { + "a": "item", + "t": "605", + "n": 2 + } + ] + }, + { + "val": 12500, + "pt": [ + { + "a": "item", + "t": "2", + "n": 500 + } + ], + "gj": [ + { + "a": "item", + "t": "9", + "n": 150 + }, + { + "a": "item", + "t": "10", + "n": 1500 + } + ] + }, + { + "val": 15000, + "pt": [ + { + "a": "item", + "t": "600", + "n": 10 + } + ], + "gj": [ + { + "a": "item", + "t": "605", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 10000 + } + ] + }, + { + "val": 17500, + "pt": [ + { + "a": "item", + "t": "600", + "n": 10 + } + ], + "gj": [ + { + "a": "item", + "t": "605", + "n": 2 + }, + { + "a": "item", + "t": "28", + "n": 20000 + } + ] + }, + { + "val": 20000, + "pt": [ + { + "a": "item", + "t": "10", + "n": 800 + } + ], + "gj": [ + { + "a": "item", + "t": "600", + "n": 20 + }, + { + "a": "item", + "t": "28", + "n": 20000 + } + ] + }, + { + "val": 22500, + "pt": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 2000 + } + ], + "gj": [ + { + "a": "item", + "t": "600", + "n": 20 + }, + { + "a": "item", + "t": "28", + "n": 20000 + } + ] + } + ], + "zlpayid": "ycmb_1_1", + //活动礼包 + "libao": { + "1": { + "payid": "", + "buynum": 1, + "basep": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "des": "intr_cszl_des_10", + "dlz": [ + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + "2": { + "a": "item", + "t": "1", + "n": 50000 + } + } + ] + }, + "2": { + "payid": "pay_name_sdhd_libao_2", + "buynum": 2, + "basep": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + } + ], + "des": "intr_cszl_des_11", + "dlz": [ + { + "1": { + "a": "item", + "t": "2", + "n": 400 + }, + "2": { + "a": "item", + "t": "12", + "n": 200 + } + }, + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + "2": { + "a": "item", + "t": "1", + "n": 500000 + } + } + ] + }, + "3": { + "payid": "pay_name_sdhd_libao_3", + "buynum": 2, + "basep": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "des": "intr_cszl_des_12", + "dlz": [ + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + }, + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + }, + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + } + ] + }, + "4": { + "payid": "pay_name_sdhd_libao_4", + "buynum": 5, + "basep": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + } + ], + "des": "intr_cszl_des_12", + "dlz": [ + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + }, + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + }, + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + } + ] + }, + "5": { + "payid": "pay_name_sdhd_libao_5", + "buynum": 9, + "basep": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + } + ], + "des": "intr_cszl_des_13", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 10 + }, + "2": { + "a": "item", + "t": "605", + "n": 2 + }, + "3": { + "a": "item", + "t": "606", + "n": 1 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 10 + }, + "2": { + "a": "item", + "t": "605", + "n": 2 + }, + "3": { + "a": "item", + "t": "606", + "n": 1 + } + }, + { + "1": { + "a": "item", + "t": "1", + "n": 5000000 + }, + "2": { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + } + ] + }, + "6": { + "payid": "pay_name_sdhd_libao_6", + "buynum": 9, + "basep": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + } + ], + "des": "intr_cszl_des_14", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "1", + "n": 10000000 + }, + "2": { + "a": "item", + "t": "12", + "n": 1000 + }, + "3": { + "a": "item", + "t": "2", + "n": 2000 + }, + "4": { + "a": "item", + "t": "18", + "n": 500 + } + } + ] + }, + "7": { + "payid": "pay_name_sdhd_libao_7", + "buynum": 9, + "basep": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + } + ], + "des": "intr_cszl_des_14", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 30 + }, + "2": { + "a": "item", + "t": "5002", + "n": 20 + }, + "3": { + "a": "item", + "t": "5004", + "n": 20 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 30 + }, + "2": { + "a": "item", + "t": "5002", + "n": 20 + }, + "3": { + "a": "item", + "t": "5004", + "n": 20 + } + }, + { + "1": { + "a": "item", + "t": "605", + "n": 4 + }, + "2": { + "a": "item", + "t": "606", + "n": 2 + }, + "3": { + "a": "item", + "t": "18", + "n": 1000 + }, + "4": { + "a": "item", + "t": "23", + "n": 1000000 + } + } + ] + }, + }, + //签到奖励 + "qiandao": [ + [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + }, + { + "a": "item", + "t": "4", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + }, + { + "a": "item", + "t": "12", + "n": 300 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + }, + { + "a": "item", + "t": "9", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + }, + { + "a": "item", + "t": "2", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + }, + { + "a": "item", + "t": "27", + "n": 5000 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 1 + }, + { + "a": "item", + "t": "4", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 300000 + } + ], + ] + } + }, + { + "hdid": 9000, + // 唯一活动id 周末礼包 + "htype": 9, + // 后端唯一识别标识 + "stype": 900, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 30, + // 活动显示结束天数 + "etime": 30, + // 活动实际结束 + "name": "wkdlibao", + "icon": "icon_tuisonglibao", + "showtime": "仅供参考,会复写正确值", + // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 + "data": { + //活动文本描述 + intr: "wkdtips_1", + intr: "wkdtips_2", + //礼包 + gift: [ + { + id: '1', + name: 'wkdtips_4', + need: [], + free: true, + payId: '', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + id: '2', + name: 'wkdtips_5', + need: [], + free: false, + payId: 'wkdlibao_1', + buyNum: 1, + prize: [ + { + 'a': 'item', + 't': '4', + 'n': 1 + }, + { + 'a': 'item', + 't': '13', + 'n': 800 + }, + { + 'a': 'item', + 't': '2', + 'n': 1000 + }, + { + 'a': 'item', + 't': '1', + 'n': 1000 + } + ] + }, + { + id: '3', + name: 'wkdtips_6', + need: [], + free: false, + payId: 'wkdlibao_2', + buyNum: 2, + prize: [ + { + 'a': 'item', + 't': '4', + 'n': 2 + }, + { + 'a': 'item', + 't': '13', + 'n': 1000 + }, + { + 'a': 'item', + 't': '2', + 'n': 1200 + }, + { + 'a': 'item', + 't': '1', + 'n': 1200 + } + ] + }, + { + id: '4', + name: 'wkdtips_7', + need: [], + free: false, + payId: 'wkdlibao_3', + buyNum: 2, + prize: [ + { + 'a': 'item', + 't': '4', + 'n': 5 + }, + { + 'a': 'item', + 't': '13', + 'n': 1200 + }, + { + 'a': 'item', + 't': '2', + 'n': 1200 + }, + { + 'a': 'item', + 't': '1', + 'n': 1200 + } + ] + } + ] + } + }, + { + "hdid": 10000, + // 唯一活动id 超值好礼 破冰礼包 + "htype": 10, + // 后端唯一识别标识 + "stype": 1000, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 30, + // 活动显示结束天数 + "etime": 30, + // 活动实际结束 + "name": "czlibao", + "icon": "icon_czlibao", + "showtime": "仅供参考,会复写正确值", + // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 + "data": { + //活动文本描述 + intr: "czlbtips_1", + intr: "czlbtips_2", + //礼包 + //礼包 + gift: [ + { + id: '1', + name: 'czlbtips_4', + need: [], + free: false, + payId: 'czlb_1', + buyNum: 1, + equal: 15000, + prize: [ + { + "a": "item", + "t": "13", + "n": 601 + } + ], + "recPrize1": [ + { + "a": "item", + "t": "12", + "n": 600 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 333 + } + ], + "recPrize2": [ + { + "a": "item", + "t": "4", + "n": 10 + } + ] + }, + { + id: '2', + name: 'czlbtips_5', + need: [], + free: false, + payId: 'czlb_2', + buyNum: 1, + equal: 35000, + prize: [ + { + "a": "item", + "t": "1", + "n": 1200 + } + ], + "recPrize1": [ + { + "a": "item", + "t": "2", + "n": 4400 + } + ], + "recPrize2": [ + { + "a": "item", + "t": "9", + "n": 63300 + }, + { + "a": "attr", + "t": "jinbi", + "n": 114514 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 31313 + }, + { + "a": "item", + "t": "2", + "n": 111 + }, + { + "a": "item", + "t": "13", + "n": 515 + }, + { + "a": "item", + "t": "601", + "n": 1 + }, + { + "a": "item", + "t": "633", + "n": 2 + }, + { + "a": "hero", + "t": "5001", + "n": 1 + } + ] + }, + { + id: '3', + name: 'czlbtips_6', + need: [], + free: false, + payId: 'czlb_3', + buyNum: 1, + equal: 65000, + prize: [ + { + "a": "item", + "t": "13", + "n": 123 + } + ], + "recPrize1": [ + { + "a": "item", + "t": "13", + "n": 321 + } + ], + "recPrize2": [ + { + "a": "item", + "t": "13", + "n": 548 + } + ] + } + ] + } + }, + { + "hdid": 11000, + // 唯一活动id 消费竞赛 + "htype": 11, + // 后端唯一识别标识 + "stype": 1100, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 30, + // 活动显示结束天数 + "etime": 30, + // 活动实际结束 + "name": "xfjs", + "icon": "icon_xfjs", + "showtime": "仅供参考,会复写正确值", + // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 + "data": { + //活动文本描述 + intr: "xfjstips_1", + intr2: "xfjstips_2", + //奖励邮件标题 + mailTitle: "intr_xfjs_mailTitle", + //奖励邮件内容 + mailDes: "intr_xfjs_mailDes", + //排名 + rank: [ + { + id: '1', + name: 'xfjstips_3', + rank: [ + 1, + 1 + ], + need: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 20000 + } + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + id: '2', + name: 'xfjstips_4', + rank: [ + 2, + 2 + ], + need: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 18000 + } + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + id: '3', + name: 'xfjstips_5', + rank: [ + 3, + 3 + ], + need: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 16000 + } + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + id: '4', + name: 'xfjstips_6', + rank: [ + 4, + 10 + ], + need: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 14000 + } + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + id: '5', + name: 'xfjstips_7', + rank: [ + 11, + 30 + ], + need: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 12000 + } + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + }, + { + id: '6', + name: 'xfjstips_8', + rank: [ + 31, + 9999 + ], + need: [ + { + 'a': 'attr', + 't': 'rmbmoney', + 'n': 12000 + } + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + } + ] + } + ] + } + }, + { + "hdid": 12000, + // 唯一活动id 累计购买礼包 + "htype": 12, + // 后端唯一识别标识 + "stype": 1200, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 30, + // 活动显示结束天数 + "etime": 30, + // 活动实际结束 + "name": "ljlibao", + "icon": "icon_ljlibao", + "showtime": "仅供参考,会复写正确值", + // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 + "data": { + //礼包 + gift: [ + { + id: '1', + need: [], + free: false, + payId: 'ljlibao_1', + //返利比 + scale: 200, + buynum: 1, + prize: [ + { + "a": "item", + "t": "13", + "n": 123 + } + ] + }, + { + id: '2', + need: [], + free: false, + payId: 'ljlibao_2', + buynum: 1, + scale: 201, + prize: [ + { + "a": "item", + "t": "12", + "n": 111 + } + ] + }, + { + id: '3', + need: [], + free: false, + payId: 'ljlibao_3', + buynum: 1, + scale: 203, + prize: [ + { + "a": "item", + "t": "1", + "n": 111111 + } + ] + }, + { + id: '4', + need: [], + free: false, + payId: 'ljlibao_4', + buynum: 1, + scale: 204, + prize: [ + { + "a": "item", + "t": "13", + "n": 123 + }, + { + "a": "item", + "t": "2", + "n": 123 + } + ] + }, + { + id: '5', + need: [], + free: false, + payId: 'ljlibao_5', + buynum: 1, + scale: 201, + prize: [ + { + "a": "item", + "t": "13", + "n": 12 + }, + { + "a": "item", + "t": "1", + "n": 31 + } + ] + }, + { + id: '6', + need: [], + free: false, + payId: 'ljlibao_6', + buynum: 1, + scale: 200, + prize: [ + { + "a": "item", + "t": "1", + "n": 123 + }, + { + "a": "item", + "t": "2", + "n": 123 + } + ] + }, + { + id: '7', + need: [], + free: false, + payId: 'ljlibao_7', + buynum: 1, + scale: 300, + prize: [ + { + "a": "item", + "t": "4", + "n": 123 + }, + { + "a": "item", + "t": "2", + "n": 123 + } + ] + }, + ], + //买X次可以领大奖 + payRewardNum: 5, + //自选框掉落池 + //配几组就显示有几个格子 + //配置的是可选的道具 + dlz: [ + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "1", + "n": 10000000 + }, + "2": { + "a": "item", + "t": "12", + "n": 1000 + }, + "3": { + "a": "item", + "t": "2", + "n": 2000 + }, + "4": { + "a": "item", + "t": "18", + "n": 500 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + } + ] + } + }, + { + "hdid": 13000, + // 唯一活动id 充值分红包 + "htype": 13, + // 后端唯一识别标识 + "stype": 1300, + // 前端唯一识别标识(看前端需要是否修改) + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 0, + // 活动开始天数 + "rtime": 30, + // 活动显示结束天数 + "etime": 30, + // 活动实际结束 + "name": "fenhongbao", + "icon": "icon_fenhongbao", + "showtime": "仅供参考,会复写正确值", + // 自选礼包,如果存在多个活动,计费点不要设置一样;如果是一样,可能会存在付费一次,购买多次。 + "data": { + //活动文本描述 + intr: "zuanshihongbao_5", + //分红包所需最低钻石数 + price: 1000, + reset: 0, + //奖池总数量 + totalmoney: 100000, + groupConf: { + //档位 + base: { + loglimit: 2000, + arr: [ + { + //权重 + "weight": 50, + //获得范围 + "numrange": [ + 1000, + 1500 + ] + }, + { + //权重 + "weight": 30, + //获得范围 + "numrange": [ + 1500, + 2000 + ] + }, + { + //权重 + "weight": 15, + //获得范围 + "numrange": [ + 2000, + 3000 + ] + }, + { + //权重 + "weight": 5, + //获得范围 + "numrange": [ + 3000, + 8000 + ] + } + ] + } + } + } + }, + { + "hdid": 14000, + // 唯一活动id 元旦活动 + "htype": 14, + "stype": 1400, + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 60, + "rtime": 90, + "etime": 90, + "name": "xnhd_tips_1", + "icon": "icon_xfdj", + "showtime": "根据玩家注册时间,游戏返回时复写", + "data": { + //任务 + "task": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + //玩游戏需要消耗 + "gameneed": [ + { + "a": "attr", + "t": "yuandanyouxi", + "n": 1 + } + ], + //游戏奖品池 + "game": [ + //P是权重 + //gailv是显示的概率 + { + "a": "item", + "t": "1", + "n": 10000000, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "12", + "n": 1000, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "2", + "n": 2000, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 100, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 200, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 300, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 400, + "p": 10, + "gailv": 10 + } + ], + //免费玩游戏次数 + "gamefree": 3, + //钻石兑换 + "duihuan": [ + { + id: 1, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 1000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 1 + }, + { + a: 'item', + t: '2', + n: 500 + }, + { + a: 'item', + t: '1', + n: 1000 + } + ], + buyNum: 2 + }, + { + id: 2, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 2000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 2 + }, + { + a: 'item', + t: '2', + n: 600 + }, + { + a: 'item', + t: '1', + n: 550 + } + ], + buyNum: 1 + }, + { + id: 3, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 3 + }, + { + a: 'item', + t: '2', + n: 700 + }, + { + a: 'item', + t: '1', + n: 230 + } + ], + buyNum: 1 + }, + { + id: 4, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 4000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 4 + }, + { + a: 'item', + t: '2', + n: 800 + }, + { + a: 'item', + t: '1', + n: 690 + } + ], + buyNum: 3 + }, + { + id: 5, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 5000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 5 + }, + { + a: 'item', + t: '2', + n: 900 + }, + { + a: 'item', + t: '1', + n: 3300 + } + ], + buyNum: 5 + }, + { + id: 6, + need: [ + { + a: 'attr', + t: 'rmbmoney', + n: 6000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 6 + }, + { + a: 'item', + t: '2', + n: 1000 + }, + { + a: 'item', + t: '1', + n: 130 + } + ], + buyNum: 6 + } + ], + //活动礼包 + "gift": [ + { + "id": 1, + "free": true, + "payId": "", + "buynum": 1, + //固定奖励 + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "des": "intr_cszl_des_10", + //自选池 + "dlz": [ + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + "2": { + "a": "item", + "t": "1", + "n": 50000 + } + } + ] + }, + { + "id": 2, + "free": false, + "payId": "xnhd_libao_1", + "buynum": 2, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + } + ], + "des": "intr_cszl_des_11", + "dlz": [ + { + "1": { + "a": "item", + "t": "2", + "n": 400 + }, + "2": { + "a": "item", + "t": "12", + "n": 200 + } + }, + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + "2": { + "a": "item", + "t": "1", + "n": 500000 + } + } + ] + }, + { + "id": 3, + "free": false, + "payId": "xnhd_libao_2", + "buynum": 2, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "des": "intr_cszl_des_12", + "dlz": [ + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + }, + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + }, + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + } + ] + }, + { + "id": 4, + "free": false, + "payId": "xnhd_libao_3", + "buynum": 5, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + } + ], + "des": "intr_cszl_des_12", + "dlz": [ + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + }, + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + }, + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + } + ] + }, + { + "id": 5, + "free": false, + "payId": "xnhd_libao_4", + "buynum": 9, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + } + ], + "des": "intr_cszl_des_13", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 10 + }, + "2": { + "a": "item", + "t": "605", + "n": 2 + }, + "3": { + "a": "item", + "t": "606", + "n": 1 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 10 + }, + "2": { + "a": "item", + "t": "605", + "n": 2 + }, + "3": { + "a": "item", + "t": "606", + "n": 1 + } + }, + { + "1": { + "a": "item", + "t": "1", + "n": 5000000 + }, + "2": { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + } + ] + }, + { + "id": 6, + "free": false, + "payId": "xnhd_libao_5", + "buynum": 9, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + } + ], + "des": "intr_cszl_des_14", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "1", + "n": 10000000 + }, + "2": { + "a": "item", + "t": "12", + "n": 1000 + }, + "3": { + "a": "item", + "t": "2", + "n": 2000 + }, + "4": { + "a": "item", + "t": "18", + "n": 500 + } + } + ] + }, + { + "id": 7, + "free": false, + "payId": "xnhd_libao_6", + "buynum": 9, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + } + ], + "des": "intr_cszl_des_14", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 30 + }, + "2": { + "a": "item", + "t": "5002", + "n": 20 + }, + "3": { + "a": "item", + "t": "5004", + "n": 20 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 30 + }, + "2": { + "a": "item", + "t": "5002", + "n": 20 + }, + "3": { + "a": "item", + "t": "5004", + "n": 20 + } + }, + { + "1": { + "a": "item", + "t": "605", + "n": 4 + }, + "2": { + "a": "item", + "t": "606", + "n": 2 + }, + "3": { + "a": "item", + "t": "18", + "n": 1000 + }, + "4": { + "a": "item", + "t": "23", + "n": 1000000 + } + } + ] + }, + ], + //签到奖励 + "qiandao": { + "1": { + //固定奖励 + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 100 + } + ], + "des": "intr_cszl_des_10", + //自选池 + "dlz": [ + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + "2": { + "a": "item", + "t": "1", + "n": 50000 + } + } + ] + }, + "2": { + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 120 + } + ], + "des": "intr_cszl_des_11", + "dlz": [ + { + "1": { + "a": "item", + "t": "2", + "n": 400 + }, + "2": { + "a": "item", + "t": "12", + "n": 200 + } + }, + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 1000000 + }, + "2": { + "a": "item", + "t": "1", + "n": 500000 + } + } + ] + }, + "3": { + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 300 + } + ], + "des": "intr_cszl_des_12", + "dlz": [ + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + }, + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + }, + { + "1": { + "a": "item", + "t": "9", + "n": 500 + }, + "2": { + "a": "item", + "t": "10", + "n": 100 + } + } + ] + }, + "4": { + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 680 + } + ], + "des": "intr_cszl_des_12", + "dlz": [ + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + }, + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + }, + { + "1": { + "a": "item", + "t": "615", + "n": 1 + }, + "2": { + "a": "item", + "t": "18", + "n": 200 + } + } + ] + }, + "5": { + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1280 + } + ], + "des": "intr_cszl_des_13", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 10 + }, + "2": { + "a": "item", + "t": "605", + "n": 2 + }, + "3": { + "a": "item", + "t": "606", + "n": 1 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 10 + }, + "2": { + "a": "item", + "t": "605", + "n": 2 + }, + "3": { + "a": "item", + "t": "606", + "n": 1 + } + }, + { + "1": { + "a": "item", + "t": "1", + "n": 5000000 + }, + "2": { + "a": "attr", + "t": "jinbi", + "n": 10000000 + } + } + ] + }, + "6": { + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 3280 + } + ], + "des": "intr_cszl_des_14", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 20 + }, + "2": { + "a": "item", + "t": "5002", + "n": 10 + }, + "3": { + "a": "item", + "t": "5004", + "n": 10 + } + }, + { + "1": { + "a": "item", + "t": "1", + "n": 10000000 + }, + "2": { + "a": "item", + "t": "12", + "n": 1000 + }, + "3": { + "a": "item", + "t": "2", + "n": 2000 + }, + "4": { + "a": "item", + "t": "18", + "n": 500 + } + } + ] + }, + "7": { + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 6480 + } + ], + "des": "intr_cszl_des_14", + "dlz": [ + { + "1": { + "a": "item", + "t": "600", + "n": 30 + }, + "2": { + "a": "item", + "t": "5002", + "n": 20 + }, + "3": { + "a": "item", + "t": "5004", + "n": 20 + } + }, + { + "1": { + "a": "item", + "t": "600", + "n": 30 + }, + "2": { + "a": "item", + "t": "5002", + "n": 20 + }, + "3": { + "a": "item", + "t": "5004", + "n": 20 + } + }, + { + "1": { + "a": "item", + "t": "605", + "n": 4 + }, + "2": { + "a": "item", + "t": "606", + "n": 2 + }, + "3": { + "a": "item", + "t": "18", + "n": 1000 + }, + "4": { + "a": "item", + "t": "23", + "n": 1000000 + } + } + ] + } + } + } + }, + { + "hdid": 15000, + // 唯一活动id 黄旗酒馆(活动结束需要清掉货币) + "htype": 15, + "stype": 1500, + "ttype": 4, + // 0 按照开服时间计算,1 玩家注册时间计算 4 屏蔽此活动 + "stime": 60, + "rtime": 90, + "etime": 90, + "name": "hqjgtips_1", + "icon": "icon_xfdj", + "showtime": "根据玩家注册时间,游戏返回时复写", + "data": { + //展示干部皮肤ID + "show": 1, + //任务 + "task": { + "day1": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + } + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + "day2": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + "day3": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + "day4": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + "day5": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + "day6": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + }, + "day7": { + "1": { + "pval": 1, + "stype": "128", + "cond": [], + "tiaozhuan": 4, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_1" + }, + "2": { + "pval": 300, + "stype": "116", + "cond": [], + "tiaozhuan": 5, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 3 + }, + { + "a": "item", + "t": "600", + "n": 5 + }, + { + "a": "item", + "t": "1", + "n": 500000 + } + ], + "des": "intr_cszl_des_2" + }, + "3": { + "pval": 1000, + "stype": "116", + "cond": [], + "tiaozhuan": 2, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 300 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 5 + }, + { + "a": "item", + "t": "600", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 1000000 + } + ], + "des": "intr_cszl_des_3" + }, + "4": { + "pval": 2000, + "stype": "116", + "cond": [], + "tiaozhuan": 1, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 150 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "6", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_4" + }, + "5": { + "pval": 3, + "stype": "142", + "cond": [ + 2 + ], + "tiaozhuan": 6, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "2", + "n": 500 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_5" + }, + "6": { + "pval": 3, + "stype": "122", + "cond": [], + "tiaozhuan": 7, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 200 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "12", + "n": 400 + }, + { + "a": "item", + "t": "1", + "n": 200000 + } + ], + "des": "intr_cszl_des_6" + }, + "7": { + "pval": 1, + "stype": "155", + "cond": [], + "tiaozhuan": 8, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "rmbmoney", + "n": 200 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_7" + }, + "8": { + "pval": 1, + "stype": "127", + "cond": [], + "tiaozhuan": 10, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "item", + "t": "21", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_8" + }, + "9": { + "pval": 1, + "stype": "154", + "cond": [], + "tiaozhuan": 11, + "prize": [ + { + "a": "attr", + "t": "shengdanExp", + "n": 100 + }, + { + "a": "attr", + "t": "shengdanBullet", + "n": 2 + }, + { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + { + "a": "item", + "t": "1", + "n": 100000 + } + ], + "des": "intr_cszl_des_9" + }, + } + }, + //抽卡 + "chouka": [ + //P是权重 + //gailv是显示的概率 + { + "a": "item", + "t": "1", + "n": 10000000, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "12", + "n": 1000, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "2", + "n": 2000, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 100, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 200, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 300, + "p": 10, + "gailv": 10 + }, + { + "a": "item", + "t": "18", + "n": 400, + "p": 10, + "gailv": 10 + } + ], + //抽卡货币 + "huobi": { + "a": "attr", + "t": "huangqijiuguan", + "n": 1 + }, + //抽卡次数奖励 + "choukajiangli": [ + { + "num": 30, + "prize": [ + { + "a": "item", + "t": "1", + "n": 10000000 + } + ] + }, + { + "num": 40, + "dlz": [ + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 100000 + }, + "2": { + "a": "item", + "t": "1", + "n": 50000 + } + } + ] + }, + { + "num": 50, + "dlz": [ + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 200000 + }, + "2": { + "a": "item", + "t": "1", + "n": 40000 + } + } + ] + }, + { + "num": 60, + "prize": [ + { + "a": "item", + "t": "1", + "n": 10000000 + } + ] + }, + { + "num": 70, + "dlz": [ + { + "1": { + "a": "attr", + "t": "jinbi", + "n": 130000 + }, + "2": { + "a": "item", + "t": "1", + "n": 60000 + } + } + ] + }, + ], + //抽卡保底 + "baodi": { + "num": 20, + "prize": [ + { + "a": "item", + "t": "1", + "n": 123456 + } + ] + }, + //黄旗礼包 + "gift": [ + { + "id": 1, + "free": true, + "payId": "", + "buynum": 1, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 5 + } + ] + }, + { + "id": 2, + "free": false, + "payId": "hqjg_libao_1", + "buynum": 2, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10 + }, + { + "a": "item", + "t": "1", + "n": 100 + } + ] + }, + { + "id": 3, + "free": false, + "payId": "hqjg_libao_2", + "buynum": 3, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 50 + }, + { + "a": "item", + "t": "1", + "n": 30 + } + ] + }, + { + "id": 4, + "free": false, + "payId": "hqjg_libao_3", + "buynum": 5, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 1000 + }, + { + "a": "item", + "t": "2", + "n": 100 + } + ] + }, + { + "id": 5, + "free": false, + "payId": "hqjg_libao_4", + "buynum": 10, + "prize": [ + { + "a": "attr", + "t": "rmbmoney", + "n": 10000 + }, + { + "a": "item", + "t": "1", + "n": 50 + } + ] + }, + ], + //兑换商店 + "duihuan": [ + { + id: 1, + need: [ + { + a: 'attr', + t: 'huangqiduihuan', + n: 1000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 1 + }, + { + a: 'item', + t: '2', + n: 500 + }, + { + a: 'item', + t: '1', + n: 1000 + } + ], + buyNum: 2 + }, + { + id: 2, + need: [ + { + a: 'attr', + t: 'huangqiduihuan', + n: 2000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 2 + }, + { + a: 'item', + t: '2', + n: 600 + }, + { + a: 'item', + t: '1', + n: 550 + } + ], + buyNum: 1 + }, + { + id: 3, + need: [ + { + a: 'attr', + t: 'huangqiduihuan', + n: 3000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 3 + }, + { + a: 'item', + t: '2', + n: 700 + }, + { + a: 'item', + t: '1', + n: 230 + } + ], + buyNum: 1 + }, + { + id: 4, + need: [ + { + a: 'attr', + t: 'huangqiduihuan', + n: 4000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 4 + }, + { + a: 'item', + t: '2', + n: 800 + }, + { + a: 'item', + t: '1', + n: 690 + } + ], + buyNum: 3 + }, + { + id: 5, + need: [ + { + a: 'attr', + t: 'huangqiduihuan', + n: 5000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 5 + }, + { + a: 'item', + t: '2', + n: 900 + }, + { + a: 'item', + t: '1', + n: 3300 + } + ], + buyNum: 5 + }, + { + id: 6, + need: [ + { + a: 'attr', + t: 'huangqiduihuan', + n: 6000 + } + ], + prize: [ + { + a: 'item', + t: '610', + n: 6 + }, + { + a: 'item', + t: '2', + n: 1000 + }, + { + a: 'item', + t: '1', + n: 130 + } + ], + buyNum: 6 + } + ], + //boss表的ID + "bossId": 17001, + //boss挑战等级奖励 + "bossLvReward": [ + { + lv: 1, + "need": 10000, + prize: [ + { + a: 'item', + t: '610', + n: 1 + }, + { + a: 'item', + t: '2', + n: 500 + }, + { + a: 'item', + t: '1', + n: 1000 + } + ] + }, + { + lv: 2, + "need": 20000, + prize: [ + { + a: 'item', + t: '610', + n: 2 + }, + { + a: 'item', + t: '2', + n: 600 + }, + { + a: 'item', + t: '1', + n: 550 + } + ] + }, + { + lv: 3, + "need": 50000, + prize: [ + { + a: 'item', + t: '610', + n: 3 + }, + { + a: 'item', + t: '2', + n: 700 + }, + { + a: 'item', + t: '1', + n: 230 + } + ] + }, + { + lv: 4, + "need": 100000, + prize: [ + { + a: 'item', + t: '610', + n: 4 + }, + { + a: 'item', + t: '2', + n: 800 + }, + { + a: 'item', + t: '1', + n: 690 + } + ] + }, + { + lv: 5, + "need": 1000000, + prize: [ + { + a: 'item', + t: '610', + n: 5 + }, + { + a: 'item', + t: '2', + n: 900 + }, + { + a: 'item', + t: '1', + n: 3300 + } + ] + }, + { + lv: 6, + "need": 10000000, + prize: [ + { + a: 'item', + t: '610', + n: 6 + }, + { + a: 'item', + t: '2', + n: 1000 + }, + { + a: 'item', + t: '1', + n: 130 + } + ] + } + ], + //boss挑战等级奖励邮件标题 + "bossLvReward_title": "email_title_hqjg_dps", + //boss挑战等级奖励邮件内容 + "bossLvReward_des": "email_content_hqjg_dps", + //boss挑战任务(每日刷新) + "bossTask": [ + { + id: 1, + "need": 100000, + prize: [ + { + a: 'item', + t: '610', + n: 1 + }, + { + a: 'item', + t: '2', + n: 100 + }, + { + a: 'item', + t: '1', + n: 1000 + } + ] + }, + { + id: 2, + "need": 200000, + prize: [ + { + a: 'item', + t: '610', + n: 2 + }, + { + a: 'item', + t: '2', + n: 200 + }, + { + a: 'item', + t: '1', + n: 2000 + } + ] + }, + { + id: 3, + "need": 300000, + prize: [ + { + a: 'item', + t: '610', + n: 3 + }, + { + a: 'item', + t: '2', + n: 300 + }, + { + a: 'item', + t: '1', + n: 3000 + } + ] + }, + { + id: 4, + "need": 400000, + prize: [ + { + a: 'item', + t: '610', + n: 4 + }, + { + a: 'item', + t: '2', + n: 400 + }, + { + a: 'item', + t: '1', + n: 4000 + } + ] + }, + { + id: 5, + "need": 500000, + prize: [ + { + a: 'item', + t: '610', + n: 5 + }, + { + a: 'item', + t: '2', + n: 500 + }, + { + a: 'item', + t: '1', + n: 5000 + } + ] + }, + { + id: 6, + "need": 600000, + prize: [ + { + a: 'item', + t: '610', + n: 6 + }, + { + a: 'item', + t: '2', + n: 600 + }, + { + a: 'item', + t: '1', + n: 6000 + } + ] + }, + { + id: 7, + "need": 700000, + prize: [ + { + a: 'item', + t: '610', + n: 7 + }, + { + a: 'item', + t: '2', + n: 700 + }, + { + a: 'item', + t: '1', + n: 7000 + } + ] + }, + { + id: 8, + "need": 800000, + prize: [ + { + a: 'item', + t: '610', + n: 8 + }, + { + a: 'item', + t: '2', + n: 800 + }, + { + a: 'item', + t: '1', + n: 8000 + } + ] + } + ], + //BOSS挑战排行奖励 + "bossRank": [ + { + id: '1', + rank: [ + 1, + 1 + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 600 + }, + { + 'a': 'item', + 't': '1', + 'n': 100 + } + ] + }, + { + id: '2', + rank: [ + 2, + 2 + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 700 + }, + { + 'a': 'item', + 't': '1', + 'n': 200 + } + ] + }, + { + id: '3', + rank: [ + 3, + 3 + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 800 + }, + { + 'a': 'item', + 't': '1', + 'n': 300 + } + ] + }, + { + id: '4', + rank: [ + 4, + 10 + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 900 + }, + { + 'a': 'item', + 't': '1', + 'n': 400 + } + ] + }, + { + id: '5', + rank: [ + 11, + 30 + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 1000 + }, + { + 'a': 'item', + 't': '1', + 'n': 500 + } + ] + }, + { + id: '6', + rank: [ + 31, + 9999 + ], + prize: [ + { + 'a': 'item', + 't': '13', + 'n': 50 + }, + { + 'a': 'item', + 't': '1', + 'n': 600 + } + ] + } + ], + //boss排行邮件标题 + "bossRank_title": "email_title_hqjg_rank", + //boss排行邮件内容 + "bossRank_des": "email_content_hqjg_rank" + } ] \ No newline at end of file diff --git a/src/jsonType.ts b/src/jsonType.ts index 9f21d4d..c8899e8 100644 --- a/src/jsonType.ts +++ b/src/jsonType.ts @@ -800,6 +800,8 @@ type gc_npc = k_v<{ 'ghname': string /**npc名称 */ 'npcname': string + /**怪物皮肤*/ + 'skin': number[] }>; type gc_openCond = k_v<{ diff --git a/src/lng.ts b/src/lng.ts index b399088..55bd6f7 100644 --- a/src/lng.ts +++ b/src/lng.ts @@ -359,6 +359,10 @@ class Lng { weiwang_12: "weiwang_12"; + hqjgtips_27: "hqjgtips_27"; + hqjgtips_28: "hqjgtips_28"; + hqjgtips_29: "hqjgtips_29"; + "11111" = "globalThis.lng.chat_1" // return call.error('', { code: -3, message: globalThis.lng.chat_2 }); } \ No newline at end of file diff --git a/src/module/collection_event.ts b/src/module/collection_event.ts index 9679fcc..22753cc 100644 --- a/src/module/collection_event.ts +++ b/src/module/collection_event.ts @@ -24,6 +24,7 @@ import {ResOpen as ResOpenZhoumolibao} from '../shared/protocols/event/zhoumolib import {ResOpen as ResOpenPobinglibao} from '../shared/protocols/event/pobinglibao/PtlOpen'; import {ResOpen as ResOpenLeiChongLiBao} from '../shared/protocols/event/leichonglibao/PtlOpen'; import {event as ResOpenYuandan} from '../shared/protocols/event/yuandan/PtlOpen'; +import {PlayerData} from "../api_s2c/event/huangqijiuguan/fun"; export type eventType = { shouchong: { @@ -74,6 +75,7 @@ export type eventType = { [k: `leichonglibao${number}`]: ResOpenLeiChongLiBao & { opentime: number }; [k: `yuandan${number}`]: ResOpenYuandan; [k: `pobinglibao${number}`]: ResOpenPobinglibao; + [k: `huangqijiuguan_${number}`]: PlayerData; }; export type CollectionEvent = { diff --git a/src/public/fight.ts b/src/public/fight.ts index f857147..9b4611f 100644 --- a/src/public/fight.ts +++ b/src/public/fight.ts @@ -11,7 +11,7 @@ import { re, string } from "mathjs"; import { getGud } from './gud'; import { PushGiftFun } from "./pushgift"; -type fightType = 'tanxian' | 'pata' | 'jjc' | 'gbtx' | 'qjzzd' | 'meirishilian' | 'wzrycross'; +type fightType = 'tanxian' | 'pata' | 'jjc' | 'gbtx' | 'qjzzd' | 'meirishilian' | 'wzrycross' | 'hqjg'; let fights: { [key: string]: FightControl } = { diff --git a/src/public/player.ts b/src/public/player.ts index 87e3d43..61aeea6 100644 --- a/src/public/player.ts +++ b/src/public/player.ts @@ -127,7 +127,7 @@ export class PlayerFun { /** * 发送奖励 */ - static async sendPrize(call: call, prizeList: atn[]) { + static async sendPrize(call: call, prizeList: atn[], pushToClient=false) { prizeList = PublicShared.mergePrize(prizeList); let attr = prizeList.filter(atn => atn.a == 'attr' && atn.n != 0); @@ -150,6 +150,14 @@ export class PlayerFun { heroskin.length > 0 && this.addHeroskin(call, heroskin), ]); + if(pushToClient){ + G.server.sendMsgByUid(call.uid, 'msg_s2c/Collection', { + fromApi: `PlayerFun_sendPrize`, + msg: call.eventMsg + }); + call.eventMsg = {}; + } + return prizeList; }; diff --git a/src/public/scheduler/scheduler_newDay.ts b/src/public/scheduler/scheduler_newDay.ts index 2e6598a..c85e193 100644 --- a/src/public/scheduler/scheduler_newDay.ts +++ b/src/public/scheduler/scheduler_newDay.ts @@ -26,8 +26,8 @@ export class SchedulerNewDayLocalCtor extends Scheduler { } async start() { - - clusterRunOnce(async ()=>{ + + clusterRunOnce(async () => { //这个定时器会被每个进程都启动,这是这部分逻辑,应该只执行1次 //重置所有的ActionLog @@ -39,7 +39,7 @@ export class SchedulerNewDayLocalCtor extends Scheduler { let logs = await G.mongodb.collection("payLogNew").find( { key: "zhongshenka", del_time: { $exists: false } }, { projection: { _id: 0, } } ).toArray(); - + if (logs.length == 0) { console.log("没有终身卡数据,不发放终身卡"); } @@ -54,11 +54,14 @@ export class SchedulerNewDayLocalCtor extends Scheduler { content: con.content, contentInsertArr: [], createTime: G.time, - prize:con.prize, + prize: con.prize, }) - } + } } })() + + // 转点刷新事件 + G.emit('NEW_DAY', G.time); }) let users = Object.values(G.server.uid_connections) diff --git a/src/public/taskclass.ts b/src/public/taskclass.ts index 878a7a2..9475f29 100644 --- a/src/public/taskclass.ts +++ b/src/public/taskclass.ts @@ -1,19 +1,20 @@ -import {ApiCall} from "tsrpc" -import {YangChengMuBiaofun} from "../api_s2c/event/yangchengmubiao/fun" -import {Christmasfun} from "../api_s2c/event/christmas/fun" +import { ApiCall } from "tsrpc" +import { YangChengMuBiaofun } from "../api_s2c/event/yangchengmubiao/fun" +import { Christmasfun } from "../api_s2c/event/christmas/fun" // import { YangChengMuBiaofun } from "../api_s2c/event/yangchengmubiao/fun" -import {Wjjl} from "../module/collection_wjjl" -import {PublicShared} from "../shared/public/public" -import {PayFun} from "./pay" -import {TaskFun} from "./task" -import {CollectionWanted} from "../module/collection_wanted"; -import {TanXianFun} from "./tanxian"; -import {PataFun} from "./pata"; -import {weixiuchangType} from "../shared/protocols/weixiuchang/type"; -import {FunWeiXiuChang} from "./weixiuchang"; -import {JJCFun} from "./jjc"; -import {getGud} from "./gud"; -import {Yuandanfun} from "../api_s2c/event/yuandan/fun"; +import { Wjjl } from "../module/collection_wjjl" +import { PublicShared } from "../shared/public/public" +import { PayFun } from "./pay" +import { TaskFun } from "./task" +import { CollectionWanted } from "../module/collection_wanted"; +import { TanXianFun } from "./tanxian"; +import { PataFun } from "./pata"; +import { weixiuchangType } from "../shared/protocols/weixiuchang/type"; +import { FunWeiXiuChang } from "./weixiuchang"; +import { JJCFun } from "./jjc"; +import { getGud } from "./gud"; +import { Yuandanfun } from "../api_s2c/event/yuandan/fun"; +import HQJGFun from "../api_s2c/event/huangqijiuguan/fun" let _classNameFunc = {} /** @@ -72,13 +73,15 @@ export module manager { // 设置数据 async setVal(call: ApiCall, val: number, chkval, arg) { - TaskFun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg) + TaskFun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg); // 养成目标任务计数 - YangChengMuBiaofun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg) + YangChengMuBiaofun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg); // 圣诞活动任务计数 - Christmasfun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg) + Christmasfun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg); // 元旦活动任务计数 - Yuandanfun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg) + Yuandanfun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg); + // 黄旗酒馆 + HQJGFun.setTaskVal(call, this.stype, val, this.chkCall, chkval, this.isinc, this.alchangeVal, arg); } // 任务数值, 和检测值,看情况需要上层复写 @@ -167,12 +170,12 @@ export module manager { async initVal(call: ApiCall, con) { let _chk = parseInt(con.cond[0]) - return await G.mongodb.collection('hero').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + return await G.mongodb.collection('hero').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 } async alchangeVal(call: ApiCall, con, val: number) { let _chk = parseInt(con.cond[0]) - return await G.mongodb.collection('hero').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + return await G.mongodb.collection('hero').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 } } @@ -194,13 +197,13 @@ export module manager { async initVal(call: ApiCall, con) { let _chk = parseInt(con.cond[0]) - let _num = await G.mongodb.collection('hero').countDocuments({uid: call.uid, jieji: {$gte: _chk}}) || 0 + let _num = await G.mongodb.collection('hero').countDocuments({ uid: call.uid, jieji: { $gte: _chk } }) || 0 return _num } async alchangeVal(call: ApiCall, con, val: number) { let _chk = parseInt(con.cond[0]) - let _num = await G.mongodb.collection('hero').countDocuments({uid: call.uid, jieji: {$gte: _chk}}) || 0 + let _num = await G.mongodb.collection('hero').countDocuments({ uid: call.uid, jieji: { $gte: _chk } }) || 0 return _num } } @@ -256,13 +259,13 @@ export module manager { async initVal(call: ApiCall, con) { let _chk = parseInt(con.cond[0]) - let _num = await G.mongodb.collection('equip').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + let _num = await G.mongodb.collection('equip').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 return _num } async alchangeVal(call: ApiCall, con, val: number) { let _chk = parseInt(con.cond[0]) - let _num = await G.mongodb.collection('equip').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + let _num = await G.mongodb.collection('equip').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 return _num } } @@ -426,7 +429,7 @@ export module manager { isinc = 1 async initVal(call: ApiCall, con) { - let myData = await G.mongodb.cPlayerInfo('meirishilian').findOne({uid: call.uid, type: 'meirishilian'}); + let myData = await G.mongodb.cPlayerInfo('meirishilian').findOne({ uid: call.uid, type: 'meirishilian' }); if (myData.data.refreshTime > PublicShared.getToDayZeroTime()) { return R.compose(R.sum(), R.map(i => i[0].useFightNum), R.values())(myData.data.numInfo) || 0 } @@ -446,7 +449,7 @@ export module manager { isinc = 1 async initVal(call: ApiCall, con) { - let myData = await G.mongodb.cPlayerInfo('qjzzd').findOne({uid: call.uid, type: 'qjzzd'}); + let myData = await G.mongodb.cPlayerInfo('qjzzd').findOne({ uid: call.uid, type: 'qjzzd' }); if (myData?.refreFightTime > PublicShared.getToDayZeroTime()) { return myData?.useFightNum || 0 } @@ -505,7 +508,7 @@ export module manager { isinc = 1 async initVal(call: ApiCall, con) { - let data: Partial = await G.mongodb.collection('wanted').findOne({uid: call.uid}) || {}; + let data: Partial = await G.mongodb.collection('wanted').findOne({ uid: call.uid }) || {}; if (data.refreshTime > PublicShared.getToDayZeroTime()) { return data.toDayUseNum || 0 } @@ -608,12 +611,12 @@ export module manager { async initVal(call: ApiCall, con) { let _chk = parseInt(con.cond[0]) - return await G.mongodb.collection('peijian').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + return await G.mongodb.collection('peijian').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 } async alchangeVal(call: ApiCall, con, val: number) { let _chk = parseInt(con.cond[0]) - return await G.mongodb.collection('peijian').countDocuments({uid: call.uid, lv: {$gte: _chk}}) || 0 + return await G.mongodb.collection('peijian').countDocuments({ uid: call.uid, lv: { $gte: _chk } }) || 0 } } @@ -675,11 +678,11 @@ export module manager { isinc = 0 async initVal(call: ApiCall, con) { - return await G.mongodb.collection('equip').countDocuments({uid: call.uid, wearaId: {$ne: ""}}) || 0 + return await G.mongodb.collection('equip').countDocuments({ uid: call.uid, wearaId: { $ne: "" } }) || 0 } async alchangeVal(call: ApiCall, con, val: number) { - return await G.mongodb.collection('equip').countDocuments({uid: call.uid, wearaId: {$ne: ""}}) || 0 + return await G.mongodb.collection('equip').countDocuments({ uid: call.uid, wearaId: { $ne: "" } }) || 0 } } @@ -833,6 +836,11 @@ export module manager { } } + // 第61个任务 黄旗酒馆累计抽卡X次 + export class Class_task_159 extends BaseClass { + stype = 159 + isinc = 1 + } } diff --git a/src/shared/fightControl/fightFun.ts b/src/shared/fightControl/fightFun.ts index 3230eca..ea85f64 100644 --- a/src/shared/fightControl/fightFun.ts +++ b/src/shared/fightControl/fightFun.ts @@ -121,7 +121,7 @@ export function createNpc(npcId: string | number, fixData: Partial [i + 1, function () { - + d['skin'] = (npcConf.skin?.[i] || ''); let { id, atk, def, mindps, maxdps, hp, speed, ...ops } = G.gc.armyattr[d.countId]; let buff = HeroShared.getHeroBasicAttr({ heroId: d.heroId, lv: d.lv }); @@ -149,9 +149,9 @@ export function createNpc(npcId: string | number, fixData: Partial = { }, { "id": 52, - "name": "event/huobanzhaomu/Open", + "name": "event/huangqijiuguan/DuiHuan", "type": "api" }, { "id": 53, - "name": "event/huobanzhaomu/Rec", + "name": "event/huangqijiuguan/Fight", "type": "api" }, { "id": 54, - "name": "event/jierihuodong/Get", + "name": "event/huangqijiuguan/GiftRec", "type": "api" }, { "id": 55, - "name": "event/jierihuodong/Open", + "name": "event/huangqijiuguan/GiftSelect", "type": "api" }, { "id": 56, - "name": "event/jierihuodong/Rec", + "name": "event/huangqijiuguan/Open", "type": "api" }, { "id": 57, - "name": "event/jijin/CheckOpen", + "name": "event/huangqijiuguan/RankList", "type": "api" }, { "id": 58, - "name": "event/jijin/Open", + "name": "event/huangqijiuguan/RecDpsPrize", "type": "api" }, { "id": 59, - "name": "event/jijin/Receive", + "name": "event/huangqijiuguan/TaskRec", "type": "api" }, { "id": 60, - "name": "event/kaifukuanghuan/LoginPrize", + "name": "event/huangqijiuguan/ZhaoMu", "type": "api" }, { "id": 61, - "name": "event/kaifukuanghuan/Open", + "name": "event/huangqijiuguan/ZhaoMuPrizeRec", "type": "api" }, { "id": 62, - "name": "event/kaifukuanghuan/ShopBuy", + "name": "event/huobanzhaomu/Open", "type": "api" }, { "id": 63, - "name": "event/kaifukuanghuan/TaskBox", + "name": "event/huobanzhaomu/Rec", "type": "api" }, { "id": 64, - "name": "event/kaifukuanghuan/TaskPrize", + "name": "event/jierihuodong/Get", "type": "api" }, { "id": 65, - "name": "event/leichonglibao/Open", + "name": "event/jierihuodong/Open", "type": "api" }, { "id": 66, - "name": "event/leichonglibao/Receive", + "name": "event/jierihuodong/Rec", "type": "api" }, { "id": 67, - "name": "event/leijichongzhi/Open", + "name": "event/jijin/CheckOpen", "type": "api" }, { "id": 68, - "name": "event/leijichongzhi/Rec", + "name": "event/jijin/Open", "type": "api" }, { "id": 69, - "name": "event/niudanji/Lottery", + "name": "event/jijin/Receive", "type": "api" }, { "id": 70, - "name": "event/niudanji/Open", + "name": "event/kaifukuanghuan/LoginPrize", "type": "api" }, { "id": 71, - "name": "event/payForDiamond/CanReceive", + "name": "event/kaifukuanghuan/Open", "type": "api" }, { "id": 72, - "name": "event/payForDiamond/Receive", + "name": "event/kaifukuanghuan/ShopBuy", "type": "api" }, { "id": 73, - "name": "event/pobinglibao/Open", + "name": "event/kaifukuanghuan/TaskBox", "type": "api" }, { "id": 74, - "name": "event/pobinglibao/Receive", + "name": "event/kaifukuanghuan/TaskPrize", "type": "api" }, { "id": 75, - "name": "event/qirichongzhi/Open", + "name": "event/leichonglibao/Open", "type": "api" }, { "id": 76, - "name": "event/qirichongzhi/Rec", + "name": "event/leichonglibao/Receive", "type": "api" }, { "id": 77, - "name": "event/qiridenglu/Open", + "name": "event/leijichongzhi/Open", "type": "api" }, { "id": 78, - "name": "event/qiridenglu/RecPrize", + "name": "event/leijichongzhi/Rec", "type": "api" }, { "id": 79, - "name": "event/shiwuleichong/Open", + "name": "event/niudanji/Lottery", "type": "api" }, { "id": 80, - "name": "event/shouchong/Open", + "name": "event/niudanji/Open", "type": "api" }, { "id": 81, - "name": "event/shouchong/Receive", + "name": "event/payForDiamond/CanReceive", "type": "api" }, { "id": 82, - "name": "event/xianshizhaomu/Buy", + "name": "event/payForDiamond/Receive", "type": "api" }, { "id": 83, - "name": "event/xianshizhaomu/Duihuan", + "name": "event/pobinglibao/Open", "type": "api" }, { "id": 84, - "name": "event/xianshizhaomu/Lottery", + "name": "event/pobinglibao/Receive", "type": "api" }, { "id": 85, - "name": "event/xianshizhaomu/Open", + "name": "event/qirichongzhi/Open", "type": "api" }, { "id": 86, - "name": "event/xianshizhaomu/Rec", + "name": "event/qirichongzhi/Rec", "type": "api" }, { "id": 87, - "name": "event/xiaofeijingsai/Open", + "name": "event/qiridenglu/Open", "type": "api" }, { "id": 88, - "name": "event/xinshoulibao/Open", + "name": "event/qiridenglu/RecPrize", "type": "api" }, { "id": 89, - "name": "event/yangchengmubiao/Buy", + "name": "event/shiwuleichong/Open", "type": "api" }, { "id": 90, - "name": "event/yangchengmubiao/Open", + "name": "event/shouchong/Open", "type": "api" }, { "id": 91, - "name": "event/yangchengmubiao/Rec", + "name": "event/shouchong/Receive", "type": "api" }, { "id": 92, - "name": "event/yibaichou/Open", + "name": "event/xianshizhaomu/Buy", "type": "api" }, { "id": 93, - "name": "event/yibaichou/Rec", + "name": "event/xianshizhaomu/Duihuan", "type": "api" }, { "id": 94, - "name": "event/yibaichou/RecAll", + "name": "event/xianshizhaomu/Lottery", "type": "api" }, { "id": 95, - "name": "event/yuandan/DMRec", + "name": "event/xianshizhaomu/Open", "type": "api" }, { "id": 96, - "name": "event/yuandan/DZRec", + "name": "event/xianshizhaomu/Rec", "type": "api" }, { "id": 97, - "name": "event/yuandan/Exchange", + "name": "event/xiaofeijingsai/Open", "type": "api" }, { "id": 98, - "name": "event/yuandan/Open", + "name": "event/xinshoulibao/Open", "type": "api" }, { "id": 99, - "name": "event/yuandan/TaskRec", + "name": "event/yangchengmubiao/Buy", "type": "api" }, { "id": 100, - "name": "event/yuandan/ZLRec", + "name": "event/yangchengmubiao/Open", "type": "api" }, { "id": 101, + "name": "event/yangchengmubiao/Rec", + "type": "api" + }, + { + "id": 102, + "name": "event/yibaichou/Open", + "type": "api" + }, + { + "id": 103, + "name": "event/yibaichou/Rec", + "type": "api" + }, + { + "id": 104, + "name": "event/yibaichou/RecAll", + "type": "api" + }, + { + "id": 105, + "name": "event/yuandan/DMRec", + "type": "api" + }, + { + "id": 106, + "name": "event/yuandan/DZRec", + "type": "api" + }, + { + "id": 107, + "name": "event/yuandan/Exchange", + "type": "api" + }, + { + "id": 108, + "name": "event/yuandan/Open", + "type": "api" + }, + { + "id": 109, + "name": "event/yuandan/TaskRec", + "type": "api" + }, + { + "id": 110, + "name": "event/yuandan/ZLRec", + "type": "api" + }, + { + "id": 111, "name": "event/yuedujijin/Open", "type": "api", "conf": { @@ -2246,157 +2341,157 @@ export const serviceProto: ServiceProto = { } }, { - "id": 102, + "id": 112, "name": "event/yuedujijin/Rec", "type": "api" }, { - "id": 103, + "id": 113, "name": "event/zhanling/BuyLv", "type": "api" }, { - "id": 104, + "id": 114, "name": "event/zhanling/Open", "type": "api" }, { - "id": 105, + "id": 115, "name": "event/zhanling/RecPrize", "type": "api" }, { - "id": 106, + "id": 116, "name": "event/zhanling/RecTask", "type": "api" }, { - "id": 107, + "id": 117, "name": "event/zhoulibao/Open", "type": "api" }, { - "id": 108, + "id": 118, "name": "event/zhoumolibao/Open", "type": "api" }, { - "id": 109, + "id": 119, "name": "event/zhoumolibao/Receive", "type": "api" }, { - "id": 110, + "id": 120, "name": "event/zixuanlibao/Buy", "type": "api" }, { - "id": 111, + "id": 121, "name": "event/zixuanlibao/Open", "type": "api" }, { - "id": 112, + "id": 122, "name": "eventlist/hdGetList", "type": "api" }, { - "id": 113, + "id": 123, "name": "friend/Apply", "type": "api" }, { - "id": 114, + "id": 124, "name": "friend/Del", "type": "api" }, { - "id": 115, + "id": 125, "name": "friend/Gift", "type": "api" }, { - "id": 116, + "id": 126, "name": "friend/List", "type": "api" }, { - "id": 117, + "id": 127, "name": "friend/Open", "type": "api" }, { - "id": 118, + "id": 128, "name": "friend/Respond", "type": "api" }, { - "id": 119, + "id": 129, "name": "friend/RmBlackList", "type": "api" }, { - "id": 120, + "id": 130, "name": "friend/Search", "type": "api" }, { - "id": 121, + "id": 131, "name": "ganbutexun/Challenge", "type": "api" }, { - "id": 122, + "id": 132, "name": "ganbutexun/Open", "type": "api" }, { - "id": 123, + "id": 133, "name": "ganhai/Fast", "type": "api" }, { - "id": 124, + "id": 134, "name": "ganhai/Fight", "type": "api" }, { - "id": 125, + "id": 135, "name": "ganhai/Log", "type": "api" }, { - "id": 126, + "id": 136, "name": "ganhai/Open", "type": "api" }, { - "id": 127, + "id": 137, "name": "ganhai/Refresh", "type": "api" }, { - "id": 128, + "id": 138, "name": "ganhai/RefreshShip", "type": "api" }, { - "id": 129, + "id": 139, "name": "ganhai/Select", "type": "api" }, { - "id": 130, + "id": 140, "name": "gmapi/Gift", "type": "api" }, { - "id": 131, + "id": 141, "name": "gmapi/Post", "type": "api" }, { - "id": 132, + "id": 142, "name": "gonghui/Apply", "type": "api", "conf": { @@ -2406,7 +2501,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 133, + "id": 143, "name": "gonghui/ApplyAll", "type": "api", "conf": { @@ -2416,7 +2511,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 134, + "id": 144, "name": "gonghui/ApplyList", "type": "api", "conf": { @@ -2426,7 +2521,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 135, + "id": 145, "name": "gonghui/Change", "type": "api", "conf": { @@ -2436,12 +2531,12 @@ export const serviceProto: ServiceProto = { } }, { - "id": 136, + "id": 146, "name": "gonghui/Create", "type": "api" }, { - "id": 137, + "id": 147, "name": "gonghui/Dissolve", "type": "api", "conf": { @@ -2451,7 +2546,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 138, + "id": 148, "name": "gonghui/Exit", "type": "api", "conf": { @@ -2461,12 +2556,12 @@ export const serviceProto: ServiceProto = { } }, { - "id": 139, + "id": 149, "name": "gonghui/FbBuyNum", "type": "api" }, { - "id": 140, + "id": 150, "name": "gonghui/FbFight", "type": "api", "conf": { @@ -2476,7 +2571,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 141, + "id": 151, "name": "gonghui/FbOpen", "type": "api", "conf": { @@ -2486,17 +2581,17 @@ export const serviceProto: ServiceProto = { } }, { - "id": 142, + "id": 152, "name": "gonghui/GetList", "type": "api" }, { - "id": 143, + "id": 153, "name": "gonghui/Join", "type": "api" }, { - "id": 144, + "id": 154, "name": "gonghui/Jx", "type": "api", "conf": { @@ -2506,7 +2601,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 145, + "id": 155, "name": "gonghui/JxOpen", "type": "api", "conf": { @@ -2516,7 +2611,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 146, + "id": 156, "name": "gonghui/List", "type": "api", "conf": { @@ -2526,7 +2621,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 147, + "id": 157, "name": "gonghui/Manage", "type": "api", "conf": { @@ -2536,7 +2631,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 148, + "id": 158, "name": "gonghui/Open", "type": "api", "conf": { @@ -2546,7 +2641,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 149, + "id": 159, "name": "gonghui/TanHe", "type": "api", "conf": { @@ -2556,7 +2651,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 150, + "id": 160, "name": "gonghui/TaskOpen", "type": "api", "conf": { @@ -2566,7 +2661,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 151, + "id": 161, "name": "gonghui/TaskReceive", "type": "api", "conf": { @@ -2576,7 +2671,7 @@ export const serviceProto: ServiceProto = { } }, { - "id": 152, + "id": 162, "name": "gonghui/UpWz", "type": "api", "conf": { @@ -2586,137 +2681,137 @@ export const serviceProto: ServiceProto = { } }, { - "id": 153, + "id": 163, "name": "gonghuibaozang/Lottery", "type": "api" }, { - "id": 154, + "id": 164, "name": "gonghuibaozang/Open", "type": "api" }, { - "id": 155, + "id": 165, "name": "gonglukuangbiao/Buy", "type": "api" }, { - "id": 156, + "id": 166, "name": "gonglukuangbiao/Fight", "type": "api" }, { - "id": 157, + "id": 167, "name": "gonglukuangbiao/Open", "type": "api" }, { - "id": 158, + "id": 168, "name": "gonglukuangbiao/Refresh", "type": "api" }, { - "id": 159, + "id": 169, "name": "gongyu/mingdao/Active", "type": "api" }, { - "id": 160, + "id": 170, "name": "gongyu/mingdao/Open", "type": "api" }, { - "id": 161, + "id": 171, "name": "gongyu/mingdao/RecPrize", "type": "api" }, { - "id": 162, + "id": 172, "name": "gongyu/mingdao/Repair", "type": "api" }, { - "id": 163, + "id": 173, "name": "gongyu/xunlianjihua/Reset", "type": "api" }, { - "id": 164, + "id": 174, "name": "gongyu/xunlianjihua/UpSkill", "type": "api" }, { - "id": 165, + "id": 175, "name": "gongyu/zuozhanjihua/SetSkill", "type": "api" }, { - "id": 166, + "id": 176, "name": "hbzb/jfs/BuyNum", "type": "api" }, { - "id": 167, + "id": 177, "name": "hbzb/jfs/Fight", "type": "api" }, { - "id": 168, + "id": 178, "name": "hbzb/jfs/GetLog", "type": "api" }, { - "id": 169, + "id": 179, "name": "hbzb/jfs/Open", "type": "api" }, { - "id": 170, + "id": 180, "name": "hbzb/jfs/Rec", "type": "api" }, { - "id": 171, + "id": 181, "name": "hbzb/jfs/Refresh", "type": "api" }, { - "id": 172, + "id": 182, "name": "hbzb/GetStatus", "type": "api" }, { - "id": 173, + "id": 183, "name": "hbzb/zbs/BuyNum", "type": "api" }, { - "id": 174, + "id": 184, "name": "hbzb/zbs/Fight", "type": "api" }, { - "id": 175, + "id": 185, "name": "hbzb/zbs/GetLog", "type": "api" }, { - "id": 176, + "id": 186, "name": "hbzb/zbs/Open", "type": "api" }, { - "id": 177, + "id": 187, "name": "hbzb/zbs/Refresh", "type": "api" }, { - "id": 178, + "id": 188, "name": "hero/Awake", "type": "api" }, { - "id": 179, + "id": 189, "name": "hero/ChangePos", "type": "api", "conf": { @@ -2724,17 +2819,17 @@ export const serviceProto: ServiceProto = { } }, { - "id": 180, + "id": 190, "name": "hero/GetList", "type": "api" }, { - "id": 181, + "id": 191, "name": "hero/JinJie", "type": "api" }, { - "id": 182, + "id": 192, "name": "hero/LvUp", "type": "api", "conf": { @@ -2742,47 +2837,32 @@ export const serviceProto: ServiceProto = { } }, { - "id": 183, + "id": 193, "name": "hero/Potency", "type": "api" }, { - "id": 184, + "id": 194, "name": "hero/Rec", "type": "api" }, { - "id": 185, + "id": 195, "name": "hero/Reset", "type": "api" }, { - "id": 186, + "id": 196, "name": "hero/Talent", "type": "api" }, { - "id": 187, + "id": 197, "name": "hero/WeaponUp", "type": "api" }, { - "id": 188, - "name": "heroskin/TakeOff", - "type": "api" - }, - { - "id": 189, - "name": "heroskin/Uplv", - "type": "api" - }, - { - "id": 190, - "name": "heroskin/Wear", - "type": "api" - }, - { - "id": 191, + "id": 198, "name": "hongdian/Get", "type": "api", "conf": { @@ -2790,117 +2870,117 @@ export const serviceProto: ServiceProto = { } }, { - "id": 192, + "id": 199, "name": "item/GetList", "type": "api" }, { - "id": 193, + "id": 200, "name": "item/Use", "type": "api" }, { - "id": 194, + "id": 201, "name": "jiaotang/Lottery", "type": "api" }, { - "id": 195, + "id": 202, "name": "jiaotang/Open", "type": "api" }, { - "id": 196, + "id": 203, "name": "jiuba/Lottery", "type": "api" }, { - "id": 197, + "id": 204, "name": "jiuba/Open", "type": "api" }, { - "id": 198, + "id": 205, "name": "jjc/BuyFightNum", "type": "api" }, { - "id": 199, + "id": 206, "name": "jjc/Fight", "type": "api" }, { - "id": 200, + "id": 207, "name": "jjc/FightLog", "type": "api" }, { - "id": 201, + "id": 208, "name": "jjc/Open", "type": "api" }, { - "id": 202, + "id": 209, "name": "jjc/Receive", "type": "api" }, { - "id": 203, + "id": 210, "name": "jjc/Refresh", "type": "api" }, { - "id": 204, + "id": 211, "name": "kaifujingsai/Open", "type": "api" }, { - "id": 205, + "id": 212, "name": "kaifujingsai/Receive", "type": "api" }, { - "id": 206, + "id": 213, "name": "kbzz/Apply", "type": "api" }, { - "id": 207, + "id": 214, "name": "kbzz/AutoApply", "type": "api" }, { - "id": 208, + "id": 215, "name": "kbzz/BuyNum", "type": "api" }, { - "id": 209, + "id": 216, "name": "kbzz/Fight", "type": "api" }, { - "id": 210, + "id": 217, "name": "kbzz/FightLog", "type": "api" }, { - "id": 211, + "id": 218, "name": "kbzz/GroupState", "type": "api" }, { - "id": 212, + "id": 219, "name": "kbzz/Open", "type": "api" }, { - "id": 213, + "id": 220, "name": "kbzz/RecPrize", "type": "api" }, { - "id": 214, + "id": 221, "name": "kbzz/Refresh", "type": "api", "conf": { @@ -2908,287 +2988,287 @@ export const serviceProto: ServiceProto = { } }, { - "id": 215, + "id": 222, "name": "kuangdong/AddPkNum", "type": "api" }, { - "id": 216, + "id": 223, "name": "kuangdong/GetPrize", "type": "api" }, { - "id": 217, + "id": 224, "name": "kuangdong/KdInfo", "type": "api" }, { - "id": 218, + "id": 225, "name": "kuangdong/Log", "type": "api" }, { - "id": 219, + "id": 226, "name": "kuangdong/Open", "type": "api" }, { - "id": 220, + "id": 227, "name": "kuangdong/YanShi", "type": "api" }, { - "id": 221, + "id": 228, "name": "kuangdong/ZhanLing", "type": "api" }, { - "id": 222, + "id": 229, "name": "lingzhulaixi/Open", "type": "api" }, { - "id": 223, + "id": 230, "name": "lingzhulaixi/PkBoss", "type": "api" }, { - "id": 224, + "id": 231, "name": "lingzhulaixi/PkRank", "type": "api" }, { - "id": 225, + "id": 232, "name": "lingzhulaixi/SaoDang", "type": "api" }, { - "id": 226, + "id": 233, "name": "meirishilian/Buy", "type": "api" }, { - "id": 227, + "id": 234, "name": "meirishilian/Fight", "type": "api" }, { - "id": 228, + "id": 235, "name": "meirishilian/Open", "type": "api" }, { - "id": 229, + "id": 236, "name": "msg_c2s/BindUid", "type": "msg" }, { - "id": 230, + "id": 237, "name": "msg_c2s/Pay", "type": "msg" }, { - "id": 231, + "id": 238, "name": "msg_c2s/Sync", "type": "msg" }, { - "id": 232, + "id": 239, "name": "msg_s2c/Chat", "type": "msg" }, { - "id": 233, + "id": 240, "name": "msg_s2c/ChatHelp", "type": "msg" }, { - "id": 234, + "id": 241, "name": "msg_s2c/Collection", "type": "msg" }, { - "id": 235, + "id": 242, "name": "msg_s2c/Email", "type": "msg" }, { - "id": 236, + "id": 243, "name": "msg_s2c/EmailDel", "type": "msg" }, { - "id": 237, + "id": 244, "name": "msg_s2c/EquipChange", "type": "msg" }, { - "id": 238, + "id": 245, "name": "msg_s2c/Friend", "type": "msg" }, { - "id": 239, + "id": 246, "name": "msg_s2c/GhChange", "type": "msg" }, { - "id": 240, + "id": 247, "name": "msg_s2c/GongHuiBaoZang", "type": "msg" }, { - "id": 241, + "id": 248, "name": "msg_s2c/HeroChange", "type": "msg" }, { - "id": 242, + "id": 249, "name": "msg_s2c/HongDianChange", "type": "msg" }, { - "id": 243, + "id": 250, "name": "msg_s2c/ItemChange", "type": "msg" }, { - "id": 244, + "id": 251, "name": "msg_s2c/LoginQueue", "type": "msg" }, { - "id": 245, + "id": 252, "name": "msg_s2c/LshdChange", "type": "msg" }, { - "id": 246, + "id": 253, "name": "msg_s2c/NewDay", "type": "msg" }, { - "id": 247, + "id": 254, "name": "msg_s2c/OtherLogin", "type": "msg" }, { - "id": 248, + "id": 255, "name": "msg_s2c/PayChange", "type": "msg" }, { - "id": 249, + "id": 256, "name": "msg_s2c/PayResult", "type": "msg" }, { - "id": 250, + "id": 257, "name": "msg_s2c/PeijianChange", "type": "msg" }, { - "id": 251, + "id": 258, "name": "msg_s2c/PlayerChange", "type": "msg" }, { - "id": 252, + "id": 259, "name": "msg_s2c/Private", "type": "msg" }, { - "id": 253, + "id": 260, "name": "msg_s2c/PushGiftChange", "type": "msg" }, { - "id": 254, + "id": 261, "name": "msg_s2c/SendGift", "type": "msg" }, { - "id": 255, + "id": 262, "name": "msg_s2c/ShiwuChange", "type": "msg" }, { - "id": 256, + "id": 263, "name": "msg_s2c/TaskChange", "type": "msg" }, { - "id": 257, + "id": 264, "name": "msg_s2c/Xianshilibao", "type": "msg" }, { - "id": 258, + "id": 265, "name": "pata/Fight", "type": "api" }, { - "id": 259, + "id": 266, "name": "pata/GetPrize", "type": "api" }, { - "id": 260, + "id": 267, "name": "pata/Open", "type": "api" }, { - "id": 261, + "id": 268, "name": "pata/SaoDang", "type": "api" }, { - "id": 262, + "id": 269, "name": "pay/GetList", "type": "api" }, { - "id": 263, + "id": 270, "name": "peijian/GetList", "type": "api" }, { - "id": 264, + "id": 271, "name": "peijian/JingLian", "type": "api" }, { - "id": 265, + "id": 272, "name": "peijian/JinJie", "type": "api" }, { - "id": 266, + "id": 273, "name": "peijian/LvUp", "type": "api" }, { - "id": 267, + "id": 274, "name": "peijian/OneKeyLvUp", "type": "api" }, { - "id": 268, + "id": 275, "name": "peijian/OneKeyWear", "type": "api" }, { - "id": 269, + "id": 276, "name": "peijian/Reset", "type": "api" }, { - "id": 270, + "id": 277, "name": "peijian/Rm", "type": "api" }, { - "id": 271, + "id": 278, "name": "peijian/TakeOff", "type": "api", "conf": { @@ -3196,32 +3276,32 @@ export const serviceProto: ServiceProto = { } }, { - "id": 272, + "id": 279, "name": "peijian/UnLock", "type": "api" }, { - "id": 273, + "id": 280, "name": "peijian/Wear", "type": "api" }, { - "id": 274, + "id": 281, "name": "peijiancangku/Deal", "type": "api" }, { - "id": 275, + "id": 282, "name": "peijiancangku/Jump", "type": "api" }, { - "id": 276, + "id": 283, "name": "peijiancangku/Open", "type": "api" }, { - "id": 277, + "id": 284, "name": "Bingo", "type": "api", "conf": { @@ -3229,147 +3309,147 @@ export const serviceProto: ServiceProto = { } }, { - "id": 278, + "id": 285, "name": "FightTest", "type": "api" }, { - "id": 279, + "id": 286, "name": "SyncBtn", "type": "api" }, { - "id": 280, + "id": 287, "name": "Test", "type": "api" }, { - "id": 281, + "id": 288, "name": "pushgift/ItemNoEnough", "type": "api" }, { - "id": 282, + "id": 289, "name": "pushgift/Open", "type": "api" }, { - "id": 283, + "id": 290, "name": "qjzzd/Fight", "type": "api" }, { - "id": 284, + "id": 291, "name": "qjzzd/Open", "type": "api" }, { - "id": 285, + "id": 292, "name": "rank/Open", "type": "api" }, { - "id": 286, + "id": 293, "name": "shiwu/Concise", "type": "api" }, { - "id": 287, + "id": 294, "name": "shiwu/Extract", "type": "api" }, { - "id": 288, + "id": 295, "name": "shiwu/GetList", "type": "api" }, { - "id": 289, + "id": 296, "name": "shiwu/LvUp", "type": "api" }, { - "id": 290, + "id": 297, "name": "shiwu/Recast", "type": "api" }, { - "id": 291, + "id": 298, "name": "shiwu/TakeOff", "type": "api" }, { - "id": 292, + "id": 299, "name": "shiwu/Wear", "type": "api" }, { - "id": 293, + "id": 300, "name": "shootGame/Open", "type": "api" }, { - "id": 294, + "id": 301, "name": "shootGame/Rec", "type": "api" }, { - "id": 295, + "id": 302, "name": "shop/Buy", "type": "api" }, { - "id": 296, + "id": 303, "name": "shop/Open", "type": "api" }, { - "id": 297, + "id": 304, "name": "shop/Refresh", "type": "api" }, { - "id": 298, + "id": 305, "name": "sign/GetBoxPrize", "type": "api" }, { - "id": 299, + "id": 306, "name": "sign/GetPrize", "type": "api" }, { - "id": 300, + "id": 307, "name": "sign/Open", "type": "api" }, { - "id": 301, + "id": 308, "name": "slzd/Aim", "type": "api" }, { - "id": 302, + "id": 309, "name": "slzd/BuyNum", "type": "api" }, { - "id": 303, + "id": 310, "name": "slzd/Fight", "type": "api" }, { - "id": 304, + "id": 311, "name": "slzd/FightLog", "type": "api" }, { - "id": 305, + "id": 312, "name": "slzd/MyRank", "type": "api" }, { - "id": 306, + "id": 313, "name": "slzd/Open", "type": "api", "conf": { @@ -3379,77 +3459,77 @@ export const serviceProto: ServiceProto = { } }, { - "id": 307, + "id": 314, "name": "slzd/OpenFort", "type": "api" }, { - "id": 308, + "id": 315, "name": "slzd/Rec", "type": "api" }, { - "id": 309, + "id": 316, "name": "slzd/Refresh", "type": "api" }, { - "id": 310, + "id": 317, "name": "slzd/Slot", "type": "api" }, { - "id": 311, + "id": 318, "name": "tanxian/Event", "type": "api" }, { - "id": 312, + "id": 319, "name": "tanxian/FastGuaJi", "type": "api" }, { - "id": 313, + "id": 320, "name": "tanxian/Fight", "type": "api" }, { - "id": 314, + "id": 321, "name": "tanxian/GuaJi", "type": "api" }, { - "id": 315, + "id": 322, "name": "tanxian/Open", "type": "api" }, { - "id": 316, + "id": 323, "name": "tanxian/Receive", "type": "api" }, { - "id": 317, + "id": 324, "name": "task/AllFinsh", "type": "api" }, { - "id": 318, + "id": 325, "name": "task/Finsh", "type": "api" }, { - "id": 319, + "id": 326, "name": "task/Open", "type": "api" }, { - "id": 320, + "id": 327, "name": "user/CDKEY", "type": "api" }, { - "id": 321, + "id": 328, "name": "user/ChangeInfo", "type": "api", "conf": { @@ -3457,202 +3537,212 @@ export const serviceProto: ServiceProto = { } }, { - "id": 322, + "id": 329, "name": "user/ChangeName", "type": "api" }, { - "id": 323, + "id": 330, "name": "user/Dot", "type": "api" }, { - "id": 324, + "id": 331, "name": "user/Fight", "type": "api" }, { - "id": 325, + "id": 332, "name": "user/GetInfo", "type": "api" }, { - "id": 326, + "id": 333, "name": "user/InfoOpen", "type": "api" }, { - "id": 327, + "id": 334, "name": "user/Login", "type": "api" }, { - "id": 328, + "id": 335, "name": "user/Ping", "type": "api" }, { - "id": 329, + "id": 336, "name": "user/Renown", "type": "api" }, { - "id": 330, + "id": 337, "name": "user/RenownBuy", "type": "api" }, { - "id": 331, + "id": 338, "name": "user/RenownGetPrize", "type": "api" }, { - "id": 332, + "id": 339, "name": "user/RenownOpen", "type": "api" }, { - "id": 333, + "id": 340, "name": "user/Tujian", "type": "api" }, - { - "id": 334, - "name": "weixiuchang/Decompose", - "type": "api" - }, - { - "id": 335, - "name": "weixiuchang/Exchange", - "type": "api" - }, - { - "id": 336, - "name": "weixiuchang/Open", - "type": "api" - }, - { - "id": 337, - "name": "weixiuchang/UpLv", - "type": "api" - }, - { - "id": 338, - "name": "weixiuchang/UpStar", - "type": "api" - }, - { - "id": 339, - "name": "wzry/AutoBaoMing", - "type": "api" - }, - { - "id": 340, - "name": "wzry/BaoMing", - "type": "api" - }, { "id": 341, - "name": "wzry/catFightLog", + "name": "weiwang/Open", "type": "api" }, { "id": 342, - "name": "wzry/CatGroup", + "name": "weiwang/UpLv", "type": "api" }, { "id": 343, - "name": "wzry/DldFight", + "name": "weixiuchang/Decompose", "type": "api" }, { "id": 344, - "name": "wzry/DldRefre", + "name": "weixiuchang/Exchange", "type": "api" }, { "id": 345, - "name": "wzry/JingCai", + "name": "weixiuchang/Open", "type": "api" }, { "id": 346, - "name": "wzry/JingCaiOpen", + "name": "weixiuchang/UpLv", "type": "api" }, { "id": 347, - "name": "wzry/Open", + "name": "weixiuchang/UpStar", "type": "api" }, { "id": 348, - "name": "wzry/UpdateFight", + "name": "wzry/AutoBaoMing", "type": "api" }, { "id": 349, - "name": "wzry/Wzzd", + "name": "wzry/BaoMing", "type": "api" }, { "id": 350, - "name": "wzry/ZuanShiOpen", + "name": "wzry/catFightLog", "type": "api" }, { "id": 351, - "name": "xstask/AllGet", + "name": "wzry/CatGroup", "type": "api" }, { "id": 352, - "name": "xstask/Get", + "name": "wzry/DldFight", "type": "api" }, { "id": 353, - "name": "xstask/LvUp", + "name": "wzry/DldRefre", "type": "api" }, { "id": 354, - "name": "xstask/OnekeyReceive", + "name": "wzry/JingCai", "type": "api" }, { "id": 355, - "name": "xstask/Open", + "name": "wzry/JingCaiOpen", "type": "api" }, { "id": 356, - "name": "xstask/Receive", + "name": "wzry/Open", "type": "api" }, { "id": 357, - "name": "xstask/Refresh", + "name": "wzry/UpdateFight", "type": "api" }, { "id": 358, - "name": "yongbingzhuzhan/Handle", + "name": "wzry/Wzzd", "type": "api" }, { "id": 359, - "name": "zhanqianbushu/ChangePos", + "name": "wzry/ZuanShiOpen", "type": "api" }, { "id": 360, - "name": "zhanqianbushu/Select", + "name": "xstask/AllGet", "type": "api" }, { "id": 361, + "name": "xstask/Get", + "type": "api" + }, + { + "id": 362, + "name": "xstask/LvUp", + "type": "api" + }, + { + "id": 363, + "name": "xstask/OnekeyReceive", + "type": "api" + }, + { + "id": 364, + "name": "xstask/Open", + "type": "api" + }, + { + "id": 365, + "name": "xstask/Receive", + "type": "api" + }, + { + "id": 366, + "name": "xstask/Refresh", + "type": "api" + }, + { + "id": 367, + "name": "yongbingzhuzhan/Handle", + "type": "api" + }, + { + "id": 368, + "name": "zhanqianbushu/ChangePos", + "type": "api" + }, + { + "id": 369, + "name": "zhanqianbushu/Select", + "type": "api" + }, + { + "id": 370, "name": "zhanqianbushu/Up", "type": "api" } @@ -4598,7 +4688,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "heroskin", + "name": "weiwangbuff", "type": { "type": "Interface", "indexSignature": { @@ -5856,7 +5946,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "heroskin", + "name": "weiwangbuff", "type": { "type": "Interface", "indexSignature": { @@ -6258,13 +6348,6 @@ export const serviceProto: ServiceProto = { } } } - }, - { - "id": 8, - "name": "skin", - "type": { - "type": "String" - } } ] }, @@ -9640,6 +9723,727 @@ export const serviceProto: ServiceProto = { } ] }, + "event/huangqijiuguan/PtlDuiHuan/ReqDuiHuan": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "dh", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "Number", + "type": { + "type": "Number" + } + } + } + } + ] + }, + "event/huangqijiuguan/PtlDuiHuan/ResDuiHuan": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "../../api_s2c/event/huangqijiuguan/fun/PlayerData": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "zhaomu", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + }, + { + "id": 1, + "name": "task", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rec", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + } + }, + { + "id": 1, + "name": "val", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + } + } + } + ] + } + }, + { + "id": 2, + "name": "giftbuy", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "select", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + } + } + }, + { + "id": 3, + "name": "duihuan", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 4, + "name": "bossres", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "maxdps", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "todaydps", + "type": { + "type": "Interface", + "indexSignature": { + "keyType": "String", + "type": { + "type": "Number" + } + } + } + }, + { + "id": 2, + "name": "recdpstask", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + } + }, + { + "id": 5, + "name": "lasttime", + "type": { + "type": "Number" + } + } + ] + }, + "event/huangqijiuguan/PtlFight/ReqFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/huangqijiuguan/PtlFight/ResFight": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + }, + { + "id": 1, + "name": "result", + "type": { + "type": "Reference", + "target": "../fightControl/fightType/fightResult" + } + } + ] + }, + "event/huangqijiuguan/PtlGiftRec/ReqGiftRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "giftid", + "type": { + "type": "Number" + } + } + ] + }, + "event/huangqijiuguan/PtlGiftRec/ResGiftRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "event/huangqijiuguan/PtlGiftSelect/ReqGiftSelect": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "giftid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "seletc", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/huangqijiuguan/PtlGiftSelect/ResGiftSelect": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + } + ] + }, + "event/huangqijiuguan/PtlOpen/ReqOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/huangqijiuguan/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + } + ] + }, + "event/huangqijiuguan/PtlRankList/ReqRankList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/huangqijiuguan/PtlRankList/ResRankList": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "rankList", + "type": { + "type": "Array", + "elementType": { + "type": "Any" + } + } + } + ] + }, + "event/huangqijiuguan/PtlRecDpsPrize/ReqRecDpsPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "recid", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/huangqijiuguan/PtlRecDpsPrize/ResRecDpsPrize": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "event/huangqijiuguan/PtlTaskRec/ReqTaskRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "day", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "taskid", + "type": { + "type": "Array", + "elementType": { + "type": "Number" + } + } + } + ] + }, + "event/huangqijiuguan/PtlTaskRec/ResTaskRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "event/huangqijiuguan/PtlZhaoMu/ReqZhaoMu": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "num", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "hdid", + "type": { + "type": "Number" + } + } + ] + }, + "event/huangqijiuguan/PtlZhaoMu/ResZhaoMu": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, + "event/huangqijiuguan/PtlZhaoMuPrizeRec/ReqZhaoMuPrizeRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hdid", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "recid", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "idx", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "sec", + "type": { + "type": "String" + } + } + ] + } + } + } + ] + }, + "event/huangqijiuguan/PtlZhaoMuPrizeRec/ResZhaoMuPrizeRec": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "data", + "type": { + "type": "Reference", + "target": "../../api_s2c/event/huangqijiuguan/fun/PlayerData" + } + }, + { + "id": 1, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "a", + "type": { + "type": "String" + } + }, + { + "id": 1, + "name": "t", + "type": { + "type": "String" + } + }, + { + "id": 2, + "name": "n", + "type": { + "type": "Number" + } + } + ] + } + } + } + ] + }, "event/huobanzhaomu/PtlOpen/ReqOpen": { "type": "Interface" }, @@ -10619,13 +11423,49 @@ export const serviceProto: ServiceProto = { "id": 1, "name": "recId", "type": { - "type": "String" + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "prize" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "recPrize1" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "recPrize2" + } + } + ] } } ] }, "event/pobinglibao/PtlReceive/ResReceive": { - "type": "Interface" + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "prize", + "type": { + "type": "Array", + "elementType": { + "type": "Reference", + "target": "type/prizeType" + } + } + } + ] }, "event/qirichongzhi/PtlOpen/ReqOpen": { "type": "Interface" @@ -14975,13 +15815,6 @@ export const serviceProto: ServiceProto = { } } } - }, - { - "id": 8, - "name": "skin", - "type": { - "type": "String" - } } ] }, @@ -15423,66 +16256,6 @@ export const serviceProto: ServiceProto = { } ] }, - "heroskin/PtlTakeOff/ReqTakeOff": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "heroOid", - "type": { - "type": "String" - } - } - ] - }, - "heroskin/PtlTakeOff/ResTakeOff": { - "type": "Interface" - }, - "heroskin/PtlUplv/ReqUplv": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "lv", - "type": { - "type": "Literal", - "literal": 1 - } - }, - { - "id": 1, - "name": "skid", - "type": { - "type": "String" - } - } - ] - }, - "heroskin/PtlUplv/ResUplv": { - "type": "Interface" - }, - "heroskin/PtlWear/ReqWear": { - "type": "Interface", - "properties": [ - { - "id": 0, - "name": "skid", - "type": { - "type": "String" - } - }, - { - "id": 1, - "name": "heroOid", - "type": { - "type": "String" - } - } - ] - }, - "heroskin/PtlWear/ResWear": { - "type": "Interface" - }, "hongdian/PtlGet/ReqGet": { "type": "Array", "elementType": { @@ -22184,6 +22957,121 @@ export const serviceProto: ServiceProto = { "user/PtlTujian/ResTujian": { "type": "Interface" }, + "weiwang/PtlOpen/ReqOpen": { + "type": "Interface" + }, + "weiwang/PtlOpen/ResOpen": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "atk", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "def", + "type": { + "type": "Number" + } + } + ] + } + } + ] + }, + "weiwang/PtlUpLv/ReqUpLv": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "type", + "type": { + "type": "Union", + "members": [ + { + "id": 0, + "type": { + "type": "Literal", + "literal": "hp" + } + }, + { + "id": 1, + "type": { + "type": "Literal", + "literal": "atk" + } + }, + { + "id": 2, + "type": { + "type": "Literal", + "literal": "def" + } + } + ] + } + } + ] + }, + "weiwang/PtlUpLv/ResUpLv": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "lv", + "type": { + "type": "Interface", + "properties": [ + { + "id": 0, + "name": "hp", + "type": { + "type": "Number" + } + }, + { + "id": 1, + "name": "atk", + "type": { + "type": "Number" + } + }, + { + "id": 2, + "name": "def", + "type": { + "type": "Number" + } + } + ] + } + } + ] + }, "weixiuchang/PtlDecompose/ReqDecompose": { "type": "Interface", "properties": [ @@ -24380,7 +25268,7 @@ export const serviceProto: ServiceProto = { }, { "id": 38, - "name": "heroskin", + "name": "weiwangbuff", "type": { "type": "Interface", "indexSignature": { @@ -24782,13 +25670,6 @@ export const serviceProto: ServiceProto = { } } } - }, - { - "id": 8, - "name": "skin", - "type": { - "type": "String" - } } ] },