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