Fish_ChatCFG.lua 1.4 KB

12345678910111213141516171819202122232425
  1. Fish_ChatCFG = {}
  2. function Fish_ChatCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function Fish_ChatCFG:init()
  9. self.datas = {}
  10. self.datas[1] = {ID = 1, ChatInfo = "使用锁定更容<br/>易抓到我哦!", Duration = 7, SoundID = 34}
  11. self.datas[2] = {ID = 2, ChatInfo = "手累了,买张<br/>月卡最划算!", Duration = 7, SoundID = 35}
  12. self.datas[3] = {ID = 3, ChatInfo = "话费券可兑换金<br/>币鱼雷和话费!", Duration = 7, SoundID = 35}
  13. self.datas[4] = {ID = 4, ChatInfo = "炮倍越高,收<br/>益与风险越大!", Duration = 7, SoundID = 35}
  14. self.datas[5] = {ID = 5, ChatInfo = "打大BOSS很难<br/>但是奖励丰富!", Duration = 7, SoundID = 35}
  15. self.datas[6] = {ID = 6, ChatInfo = "幸运抽奖可以<br/>抽到话费!", Duration = 7, SoundID = 36}
  16. self.datas[7] = {ID = 7, ChatInfo = "vip可在vip专属<br/>中获得奖励!", Duration = 7, SoundID = 4}
  17. self.datas[8] = {ID = 8, ChatInfo = "提升vip等级可获<br/>得丰富奖励!", Duration = 7, SoundID = 4}
  18. self.datas[9] = {ID = 9, ChatInfo = "每个场次都有<br/>自己专属的玩法!", Duration = 7, SoundID = 4}
  19. self.datas[10] = {ID = 10, ChatInfo = "我有个梦想能<br/>兑换出话费。。", Duration = 7, SoundID = 4}
  20. self.datas[11] = {ID = 11, ChatInfo = "充值可以提升<br/>捕鱼的乐趣哦!", Duration = 7, SoundID = 4}
  21. end
  22. Fish_ChatCFG:init()