M_ActivityFishingCeleGiftRecharge.ts 927 B

1234567891011121314151617181920212223242526272829303132
  1. // ID:ID, GiftID:对应礼包ID, needItem:需要道具ID, needCount:需要道具数量
  2. export default class M_ActivityFishingCeleGiftRecharge {
  3. private static data =
  4. {"1":{"ID":1,"GiftID":354,"needItem":301,"needCount":0}
  5. ,"2":{"ID":2,"GiftID":355,"needItem":301,"needCount":12}
  6. ,"3":{"ID":3,"GiftID":356,"needItem":301,"needCount":32}
  7. ,"4":{"ID":4,"GiftID":357,"needItem":301,"needCount":74}
  8. ,"5":{"ID":5,"GiftID":358,"needItem":301,"needCount":140}
  9. ,"6":{"ID":6,"GiftID":359,"needItem":301,"needCount":360}
  10. ,"7":{"ID":7,"GiftID":360,"needItem":301,"needCount":699}
  11. }// ID:ID, GiftID:对应礼包ID, needItem:需要道具ID, needCount:需要道具数量
  12. static getData(key: any): any {
  13. if (key == null || key == undefined)
  14. return null;
  15. return this.data[key];
  16. }
  17. static getAllData(): any {
  18. return this.data;
  19. }
  20. }