M_ActivityFishingCeleLotteryTicketShop.ts 567 B

1234567891011121314151617181920
  1. // ID:ID, LotteryCount:抽奖次数, NeedCount:需要钻石, TicketCount:奖励抽奖券数量
  2. export default class M_ActivityFishingCeleLotteryTicketShop {
  3. private static data =
  4. {"1":{"ID":1,"LotteryCount":1,"NeedCount":20,"TicketCount":1}
  5. }// ID:ID, LotteryCount:抽奖次数, NeedCount:需要钻石, TicketCount:奖励抽奖券数量
  6. static getData(key: any): any {
  7. if (key == null || key == undefined)
  8. return null;
  9. return this.data[key];
  10. }
  11. static getAllData(): any {
  12. return this.data;
  13. }
  14. }