M_ActivitySummerPlanRoketCFG.ts 1.0 KB

12345678910111213141516171819202122232425262728
  1. // ID:ID, Height:高度, GiftID:对应礼包ID, Weight:权重, ShowItem:展示道具
  2. export default class M_ActivitySummerPlanRoketCFG {
  3. private static data =
  4. {"1":{"ID":1,"Height":25,"GiftID":392,"Weight":450,"ShowItem":[1,700000,45,10]}
  5. ,"2":{"ID":2,"Height":50,"GiftID":393,"Weight":280,"ShowItem":[1,700000,45,10,1,500000,45,5]}
  6. ,"3":{"ID":3,"Height":70,"GiftID":394,"Weight":150,"ShowItem":[1,700000,45,10,1,500000,45,5,1,350000,45,5]}
  7. ,"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]}
  8. ,"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]}
  9. }// ID:ID, Height:高度, GiftID:对应礼包ID, Weight:权重, ShowItem:展示道具
  10. static getData(key: any): any {
  11. if (key == null || key == undefined)
  12. return null;
  13. return this.data[key];
  14. }
  15. static getAllData(): any {
  16. return this.data;
  17. }
  18. }