M_ActivityHappySummerLuckyTurnCFG.ts 963 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // ID:编号, Item:道具, Count:数量, Weight:权重
  2. export default class M_ActivityHappySummerLuckyTurnCFG {
  3. private static data =
  4. {"1":{"ID":1,"Item":336,"Count":10,"Weight":20}
  5. ,"2":{"ID":2,"Item":1,"Count":80000,"Weight":255}
  6. ,"3":{"ID":3,"Item":336,"Count":1,"Weight":50}
  7. ,"4":{"ID":4,"Item":27,"Count":1,"Weight":25}
  8. ,"5":{"ID":5,"Item":26,"Count":1,"Weight":50}
  9. ,"6":{"ID":6,"Item":336,"Count":100,"Weight":0}
  10. ,"7":{"ID":7,"Item":94,"Count":1,"Weight":40}
  11. ,"8":{"ID":8,"Item":1,"Count":100000,"Weight":255}
  12. ,"9":{"ID":9,"Item":96,"Count":1,"Weight":0}
  13. ,"10":{"ID":10,"Item":1,"Count":200000,"Weight":305}
  14. }// ID:编号, Item:道具, Count:数量, Weight:权重
  15. static getData(key: any): any {
  16. if (key == null || key == undefined)
  17. return null;
  18. return this.data[key];
  19. }
  20. static getAllData(): any {
  21. return this.data;
  22. }
  23. }