M_ActivityDoubleElevenLottery.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // ID:ID, Weight:权重, ItemID:道具ID, Icon:ICON, ItemCount:道具数量, PrixWeight:实际大奖权重, PrixIdentification:大奖标识
  2. export default class M_ActivityDoubleElevenLottery {
  3. private static data =
  4. {"1":{"ID":1,"Weight":0,"ItemID":96,"Icon":"","ItemCount":1,"PrixWeight":1,"PrixIdentification":1}
  5. ,"2":{"ID":2,"Weight":390,"ItemID":1,"Icon":"M_Gold1","ItemCount":15000,"PrixWeight":0,"PrixIdentification":0}
  6. ,"3":{"ID":3,"Weight":0,"ItemID":290,"Icon":"","ItemCount":5,"PrixWeight":80,"PrixIdentification":1}
  7. ,"4":{"ID":4,"Weight":60,"ItemID":1,"Icon":"M_Gold4","ItemCount":50000,"PrixWeight":0,"PrixIdentification":0}
  8. ,"5":{"ID":5,"Weight":50,"ItemID":45,"Icon":"","ItemCount":5,"PrixWeight":0,"PrixIdentification":0}
  9. ,"6":{"ID":6,"Weight":0,"ItemID":94,"Icon":"","ItemCount":1,"PrixWeight":19,"PrixIdentification":1}
  10. ,"7":{"ID":7,"Weight":370,"ItemID":1,"Icon":"M_Gold2","ItemCount":20000,"PrixWeight":0,"PrixIdentification":0}
  11. ,"8":{"ID":8,"Weight":2,"ItemID":27,"Icon":"","ItemCount":1,"PrixWeight":0,"PrixIdentification":4}
  12. ,"9":{"ID":9,"Weight":18,"ItemID":46,"Icon":"","ItemCount":5,"PrixWeight":0,"PrixIdentification":0}
  13. ,"10":{"ID":10,"Weight":110,"ItemID":44,"Icon":"","ItemCount":5,"PrixWeight":0,"PrixIdentification":0}
  14. }// ID:ID, Weight:权重, ItemID:道具ID, Icon:ICON, ItemCount:道具数量, PrixWeight:实际大奖权重, PrixIdentification:大奖标识
  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. }