M_StarLotteryEventCFG.ts 626 B

1234567891011121314151617181920212223242526
  1. // Type:事件类型, DailyADD:每日增加, TotalADD:累计增加
  2. export default class M_StarLotteryEventCFG {
  3. private static data =
  4. {"1":{"Type":1,"DailyADD":10,"TotalADD":5}
  5. ,"2":{"Type":2,"DailyADD":100,"TotalADD":0}
  6. ,"3":{"Type":3,"DailyADD":20,"TotalADD":0}
  7. ,"4":{"Type":4,"DailyADD":10,"TotalADD":5}
  8. }// Type:事件类型, DailyADD:每日增加, TotalADD:累计增加
  9. static getData(key: any): any {
  10. if (key == null || key == undefined)
  11. return null;
  12. return this.data[key];
  13. }
  14. static getAllData(): any {
  15. return this.data;
  16. }
  17. }