// ID:ID, Type:宝箱类型, Weight:权重, DropItem:掉落道具, DropCount:掉落数量 export default class M_ActivityChipBoxLottery { private static data = {"1":{"ID":1,"Type":1,"Weight":650,"DropItem":214,"DropCount":1} ,"2":{"ID":2,"Type":1,"Weight":250,"DropItem":214,"DropCount":2} ,"3":{"ID":3,"Type":1,"Weight":76,"DropItem":214,"DropCount":3} ,"4":{"ID":4,"Type":1,"Weight":8,"DropItem":214,"DropCount":4} ,"5":{"ID":5,"Type":1,"Weight":5,"DropItem":214,"DropCount":5} ,"6":{"ID":6,"Type":1,"Weight":4,"DropItem":214,"DropCount":6} ,"7":{"ID":7,"Type":1,"Weight":3,"DropItem":214,"DropCount":8} ,"8":{"ID":8,"Type":1,"Weight":2,"DropItem":214,"DropCount":10} ,"9":{"ID":9,"Type":1,"Weight":1,"DropItem":214,"DropCount":15} ,"10":{"ID":10,"Type":1,"Weight":1,"DropItem":214,"DropCount":100} ,"11":{"ID":11,"Type":2,"Weight":650,"DropItem":295,"DropCount":1} ,"12":{"ID":12,"Type":2,"Weight":250,"DropItem":295,"DropCount":2} ,"13":{"ID":13,"Type":2,"Weight":76,"DropItem":295,"DropCount":3} ,"14":{"ID":14,"Type":2,"Weight":8,"DropItem":295,"DropCount":4} ,"15":{"ID":15,"Type":2,"Weight":5,"DropItem":295,"DropCount":5} ,"16":{"ID":16,"Type":2,"Weight":4,"DropItem":295,"DropCount":6} ,"17":{"ID":17,"Type":2,"Weight":3,"DropItem":295,"DropCount":8} ,"18":{"ID":18,"Type":2,"Weight":2,"DropItem":295,"DropCount":10} ,"19":{"ID":19,"Type":2,"Weight":1,"DropItem":295,"DropCount":15} ,"20":{"ID":20,"Type":2,"Weight":1,"DropItem":295,"DropCount":100} ,"21":{"ID":21,"Type":3,"Weight":650,"DropItem":296,"DropCount":1} ,"22":{"ID":22,"Type":3,"Weight":250,"DropItem":296,"DropCount":2} ,"23":{"ID":23,"Type":3,"Weight":76,"DropItem":296,"DropCount":3} ,"24":{"ID":24,"Type":3,"Weight":8,"DropItem":296,"DropCount":4} ,"25":{"ID":25,"Type":3,"Weight":5,"DropItem":296,"DropCount":5} ,"26":{"ID":26,"Type":3,"Weight":4,"DropItem":296,"DropCount":6} ,"27":{"ID":27,"Type":3,"Weight":3,"DropItem":296,"DropCount":8} ,"28":{"ID":28,"Type":3,"Weight":2,"DropItem":296,"DropCount":10} ,"29":{"ID":29,"Type":3,"Weight":1,"DropItem":296,"DropCount":15} ,"30":{"ID":30,"Type":3,"Weight":1,"DropItem":296,"DropCount":100} }// ID:ID, Type:宝箱类型, Weight:权重, DropItem:掉落道具, DropCount:掉落数量 static getData(key: any): any { if (key == null || key == undefined) return null; return this.data[key]; } static getAllData(): any { return this.data; } }