M_AbysmFishingKingCFG.ts 452 B

12345678910111213141516171819202122
  1. // Key:Key, Value:数值
  2. export default class M_AbysmFishingKingCFG {
  3. private static data =
  4. {"Recharge":{"Key":"Recharge","Value":68}
  5. ,"RechargeReward":{"Key":"RechargeReward","Value":513}
  6. }// Key:Key, Value:数值
  7. static getData(key: any): any {
  8. if (key == null || key == undefined)
  9. return null;
  10. return this.data[key];
  11. }
  12. static getAllData(): any {
  13. return this.data;
  14. }
  15. }