// ID:ID, Weight:权重, ItemID:道具ID, ItemCount:道具数量, Big:大奖标识 export default class M_DragonBallLottery { private static data = {"1":{"ID":1,"Weight":0,"ItemID":338,"ItemCount":1,"Big":1} ,"2":{"ID":2,"Weight":170,"ItemID":1,"ItemCount":1000000,"Big":0} ,"3":{"ID":3,"Weight":60,"ItemID":5,"ItemCount":10,"Big":0} ,"4":{"ID":4,"Weight":230,"ItemID":1,"ItemCount":1500000,"Big":0} ,"5":{"ID":5,"Weight":70,"ItemID":41,"ItemCount":5,"Big":0} ,"6":{"ID":6,"Weight":160,"ItemID":1,"ItemCount":2000000,"Big":0} ,"7":{"ID":7,"Weight":50,"ItemID":2,"ItemCount":500,"Big":0} ,"8":{"ID":8,"Weight":30,"ItemID":1,"ItemCount":500000,"Big":0} ,"9":{"ID":9,"Weight":10,"ItemID":2,"ItemCount":1000,"Big":0} ,"10":{"ID":10,"Weight":55,"ItemID":41,"ItemCount":10,"Big":0} ,"11":{"ID":11,"Weight":40,"ItemID":26,"ItemCount":5,"Big":0} ,"12":{"ID":12,"Weight":50,"ItemID":24,"ItemCount":5,"Big":0} ,"13":{"ID":13,"Weight":25,"ItemID":27,"ItemCount":2,"Big":0} ,"14":{"ID":14,"Weight":50,"ItemID":24,"ItemCount":10,"Big":0} }// ID:ID, Weight:权重, ItemID:道具ID, ItemCount:道具数量, Big:大奖标识 static getData(key: any): any { if (key == null || key == undefined) return null; return this.data[key]; } static getAllData(): any { return this.data; } }