M_ActiveTurntable.ts 780 B

123456789101112131415161718192021222324
  1. // ID:ID, ShowAwardItemIDs:转盘中用于客户端显示奖励道具, GiftPackageID:礼包ID
  2. export default class M_ActiveTurntable {
  3. private static data =
  4. {"1":{"ID":1,"ShowAwardItemIDs":"M_Gold1,M_Gold1,M_Gold1,M_Gold2,M_Gold3","GiftPackageID":99}
  5. ,"2":{"ID":2,"ShowAwardItemIDs":"M_Gold2,M_Gold2,M_Gold3,M_Gold4,M_Gold5","GiftPackageID":100}
  6. ,"3":{"ID":3,"ShowAwardItemIDs":"M_Gold3,M_Gold4,M_Gold4,M_Gold5,M_Gold6","GiftPackageID":101}
  7. }// ID:ID, ShowAwardItemIDs:转盘中用于客户端显示奖励道具, GiftPackageID:礼包ID
  8. static getData(key: any): any {
  9. if (key == null || key == undefined)
  10. return null;
  11. return this.data[key];
  12. }
  13. static getAllData(): any {
  14. return this.data;
  15. }
  16. }