M_ActivitySummerPlanCFG.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // Key:Key, Value:数值
  2. export default class M_ActivitySummerPlanCFG {
  3. private static data =
  4. {"GoldenTouchEnergy1":{"Key":"GoldenTouchEnergy1","Value":5000}
  5. ,"GoldenTouchEnergy2":{"Key":"GoldenTouchEnergy2","Value":50000}
  6. ,"GoldenTouchLimit1":{"Key":"GoldenTouchLimit1","Value":10}
  7. ,"GoldenTouchLimit2":{"Key":"GoldenTouchLimit2","Value":10}
  8. ,"BaseJackPot1":{"Key":"BaseJackPot1","Value":90000}
  9. ,"BaseJackPot2":{"Key":"BaseJackPot2","Value":600000}
  10. ,"BaseJackPot3":{"Key":"BaseJackPot3","Value":3000000}
  11. ,"BaseJackPot4":{"Key":"BaseJackPot4","Value":9900000}
  12. ,"AddBaseJackPot1":{"Key":"AddBaseJackPot1","Value":7000}
  13. ,"AddBaseJackPot2":{"Key":"AddBaseJackPot2","Value":40000}
  14. ,"AddBaseJackPot3":{"Key":"AddBaseJackPot3","Value":200000}
  15. ,"AddBaseJackPot4":{"Key":"AddBaseJackPot4","Value":650000}
  16. ,"FirstFreeRocket":{"Key":"FirstFreeRocket","Value":9}
  17. ,"FreeRocket":{"Key":"FreeRocket","Value":9}
  18. ,"FreeRocketTime":{"Key":"FreeRocketTime","Value":1800}
  19. ,"UnlockNeeds":{"Key":"UnlockNeeds","Value":68}
  20. ,"SendGoodsRoundBuyLimit":{"Key":"SendGoodsRoundBuyLimit","Value":6}
  21. ,"SendGoodsAwardCount":{"Key":"SendGoodsAwardCount","Value":30}
  22. ,"SendGoodsBalanceCount":{"Key":"SendGoodsBalanceCount","Value":6}
  23. ,"ColdValue1":{"Key":"ColdValue1","Value":5000}
  24. ,"ColdValue2":{"Key":"ColdValue2","Value":50000}
  25. ,"MaxCount":{"Key":"MaxCount","Value":10}
  26. }// Key:Key, Value:数值
  27. static getData(key: any): any {
  28. if (key == null || key == undefined)
  29. return null;
  30. return this.data[key];
  31. }
  32. static getAllData(): any {
  33. return this.data;
  34. }
  35. }