1234567891011121314151617181920212223242526272829303132333435363738 |
- // ID:ID, Weight:权重, ItemID:道具ID, Icon:ICON, ItemCount:道具数量, PrixWeight:实际大奖权重, PrixIdentification:大奖标识
- export default class M_ActivityDoubleElevenLottery {
- private static data =
- {"1":{"ID":1,"Weight":0,"ItemID":96,"Icon":"","ItemCount":1,"PrixWeight":1,"PrixIdentification":1}
- ,"2":{"ID":2,"Weight":390,"ItemID":1,"Icon":"M_Gold1","ItemCount":15000,"PrixWeight":0,"PrixIdentification":0}
- ,"3":{"ID":3,"Weight":0,"ItemID":290,"Icon":"","ItemCount":5,"PrixWeight":80,"PrixIdentification":1}
- ,"4":{"ID":4,"Weight":60,"ItemID":1,"Icon":"M_Gold4","ItemCount":50000,"PrixWeight":0,"PrixIdentification":0}
- ,"5":{"ID":5,"Weight":50,"ItemID":45,"Icon":"","ItemCount":5,"PrixWeight":0,"PrixIdentification":0}
- ,"6":{"ID":6,"Weight":0,"ItemID":94,"Icon":"","ItemCount":1,"PrixWeight":19,"PrixIdentification":1}
- ,"7":{"ID":7,"Weight":370,"ItemID":1,"Icon":"M_Gold2","ItemCount":20000,"PrixWeight":0,"PrixIdentification":0}
- ,"8":{"ID":8,"Weight":2,"ItemID":27,"Icon":"","ItemCount":1,"PrixWeight":0,"PrixIdentification":4}
- ,"9":{"ID":9,"Weight":18,"ItemID":46,"Icon":"","ItemCount":5,"PrixWeight":0,"PrixIdentification":0}
- ,"10":{"ID":10,"Weight":110,"ItemID":44,"Icon":"","ItemCount":5,"PrixWeight":0,"PrixIdentification":0}
- }// ID:ID, Weight:权重, ItemID:道具ID, Icon:ICON, ItemCount:道具数量, PrixWeight:实际大奖权重, PrixIdentification:大奖标识
- static getData(key: any): any {
- if (key == null || key == undefined)
- return null;
- return this.data[key];
- }
- static getAllData(): any {
- return this.data;
- }
- }
|