// Id:任务ID, ParticipationTime:参与次数, Desc:任务描述, CompleteType:完成条件类型, CompleteParam:特殊参数,填0不生效。对任务捕获指定鱼需要填写, CompleteCount:完成计数, AwardItemIDs:奖励物品ID, AwardItemCounts:奖励物品数量, Rebate:额外最高返利, GoType:前往类型, Index:索引 export default class M_NoviceRebateCFG { private static data = {"1":{"Id":1,"ParticipationTime":2,"Desc":"购买8元巨鳄礼包","CompleteType":63,"CompleteParam":[33],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[120000],"Rebate":200,"GoType":21,"Index":0} ,"2":{"Id":2,"ParticipationTime":2,"Desc":"购买68元龙宫礼包","CompleteType":63,"CompleteParam":[37],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[1000000],"Rebate":200,"GoType":26,"Index":0} ,"3":{"Id":3,"ParticipationTime":2,"Desc":"购买25元青铜鱼雷礼包","CompleteType":63,"CompleteParam":[69],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[400000],"Rebate":200,"GoType":22,"Index":0} ,"4":{"Id":4,"ParticipationTime":2,"Desc":"购买30元朱雀礼包","CompleteType":63,"CompleteParam":[119],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[450000],"Rebate":200,"GoType":23,"Index":0} ,"5":{"Id":5,"ParticipationTime":2,"Desc":"购买68元巨鲨礼包","CompleteType":63,"CompleteParam":[98],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[1000000],"Rebate":300,"GoType":24,"Index":0} ,"6":{"Id":6,"ParticipationTime":2,"Desc":"购买198元龙宫礼包","CompleteType":63,"CompleteParam":[293],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[3000000],"Rebate":300,"GoType":26,"Index":0} ,"7":{"Id":7,"ParticipationTime":2,"Desc":"购买98元白银鱼雷礼包","CompleteType":63,"CompleteParam":[70],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[1500000],"Rebate":300,"GoType":22,"Index":1} ,"8":{"Id":8,"ParticipationTime":2,"Desc":"购买98元魔鲲礼包","CompleteType":63,"CompleteParam":[39],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[1500000],"Rebate":300,"GoType":25,"Index":0} ,"9":{"Id":9,"ParticipationTime":2,"Desc":"购买198元黄金鱼雷礼包","CompleteType":63,"CompleteParam":[71],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[3000000],"Rebate":500,"GoType":22,"Index":2} ,"10":{"Id":10,"ParticipationTime":2,"Desc":"购买648元钻石鱼雷礼包","CompleteType":63,"CompleteParam":[72],"CompleteCount":2,"AwardItemIDs":[1],"AwardItemCounts":[10000000],"Rebate":1000,"GoType":22,"Index":3} }// Id:任务ID, ParticipationTime:参与次数, Desc:任务描述, CompleteType:完成条件类型, CompleteParam:特殊参数,填0不生效。对任务捕获指定鱼需要填写, CompleteCount:完成计数, AwardItemIDs:奖励物品ID, AwardItemCounts:奖励物品数量, Rebate:额外最高返利, GoType:前往类型, Index:索引 static getData(key: any): any { if (key == null || key == undefined) return null; return this.data[key]; } static getAllData(): any { return this.data; } }