M_ActivityTouchingFishBaseInfo.ts 998 B

123456789101112131415161718192021222324252627282930
  1. // Key:Key, Value:数值, StringValue:字符串
  2. export default class M_ActivityTouchingFishBaseInfo {
  3. private static data =
  4. {"LevelNeedExp":{"Key":"LevelNeedExp","Value":2000,"StringValue":"每级所需经验"}
  5. ,"FlushTaskNeedDiamond":{"Key":"FlushTaskNeedDiamond","Value":20,"StringValue":"刷新周任务所需钻石"}
  6. ,"ActivityKeepDays":{"Key":"ActivityKeepDays","Value":28,"StringValue":"每月活动天数"}
  7. ,"MaxWeekQuestExp":{"Key":"MaxWeekQuestExp","Value":80000,"StringValue":"每周任务经验上限"}
  8. ,"AdvGiftID":{"Key":"AdvGiftID","Value":332,"StringValue":"进阶礼包ID"}
  9. ,"WeekSignReward":{"Key":"WeekSignReward","Value":2500,"StringValue":"周签到奖励经验"}
  10. }// Key:Key, Value:数值, StringValue:字符串
  11. static getData(key: any): any {
  12. if (key == null || key == undefined)
  13. return null;
  14. return this.data[key];
  15. }
  16. static getAllData(): any {
  17. return this.data;
  18. }
  19. }