M_ActivitySummerPlanSendGoldPriceCFG.ts 762 B

1234567891011121314151617181920212223242526
  1. // ID:ID, PriceCount:中奖人数, ItemID:奖励道具ID, ItemCount:奖励道具数量
  2. export default class M_ActivitySummerPlanSendGoldPriceCFG {
  3. private static data =
  4. {"1":{"ID":1,"PriceCount":8,"ItemID":[1],"ItemCount":[37500]}
  5. ,"2":{"ID":2,"PriceCount":6,"ItemID":[1],"ItemCount":[300000]}
  6. ,"3":{"ID":3,"PriceCount":4,"ItemID":[1],"ItemCount":[2250000]}
  7. ,"4":{"ID":4,"PriceCount":2,"ItemID":[1],"ItemCount":[14700000]}
  8. }// ID:ID, PriceCount:中奖人数, ItemID:奖励道具ID, ItemCount:奖励道具数量
  9. static getData(key: any): any {
  10. if (key == null || key == undefined)
  11. return null;
  12. return this.data[key];
  13. }
  14. static getAllData(): any {
  15. return this.data;
  16. }
  17. }