M_ActivityMayDaySignCFG.lua 872 B

12345678910111213141516171819
  1. M_ActivityMayDaySignCFG = {}
  2. function M_ActivityMayDaySignCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_ActivityMayDaySignCFG:init()
  9. self.datas = {}
  10. self.datas[1] = {Day = 1, RewardItem = {1,110}, RewardQuantity = {20000,10}, Display = {1,110}, DisplayQuantity = {20000,10}}
  11. self.datas[2] = {Day = 2, RewardItem = {1,110}, RewardQuantity = {20000,30}, Display = {1,110}, DisplayQuantity = {20000,30}}
  12. self.datas[3] = {Day = 3, RewardItem = {1,110}, RewardQuantity = {30000,10}, Display = {2,110}, DisplayQuantity = {30000,10}}
  13. self.datas[4] = {Day = 4, RewardItem = {1,110}, RewardQuantity = {50000,10}, Display = {1,110}, DisplayQuantity = {50000,10}}
  14. self.datas[5] = {Day = 5, RewardItem = {1}, RewardQuantity = {100000}, Display = {1,123}, DisplayQuantity = {100000,1}}
  15. end
  16. M_ActivityMayDaySignCFG:init()