12345678910111213141516171819202122232425262728 |
- // ID:ID, Height:高度, GiftID:对应礼包ID, Weight:权重, ShowItem:展示道具
- export default class M_ActivitySummerPlanRoketCFG {
- private static data =
- {"1":{"ID":1,"Height":25,"GiftID":392,"Weight":450,"ShowItem":[1,700000,45,10]}
- ,"2":{"ID":2,"Height":50,"GiftID":393,"Weight":280,"ShowItem":[1,700000,45,10,1,500000,45,5]}
- ,"3":{"ID":3,"Height":70,"GiftID":394,"Weight":150,"ShowItem":[1,700000,45,10,1,500000,45,5,1,350000,45,5]}
- ,"4":{"ID":4,"Height":80,"GiftID":395,"Weight":100,"ShowItem":[1,700000,45,10,1,500000,45,5,1,350000,45,5,1,350000,45,5]}
- ,"5":{"ID":5,"Height":100,"GiftID":396,"Weight":20,"ShowItem":[1,700000,45,10,1,500000,45,5,1,350000,45,5,1,350000,45,5,1,800000,45,5]}
- }// ID:ID, Height:高度, GiftID:对应礼包ID, Weight:权重, ShowItem:展示道具
- static getData(key: any): any {
- if (key == null || key == undefined)
- return null;
- return this.data[key];
- }
- static getAllData(): any {
- return this.data;
- }
- }
|