M_test.lua 476 B

1234567891011121314151617
  1. M_test = {}
  2. function M_test:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_test:init()
  9. self.datas = {}
  10. self.datas["10002"] = {ID = "10002", xxx = "今日剩余次数:#&0次", ttt = "Remaining times today: #&0 times"}
  11. self.datas["10003"] = {ID = "10003", xxx = "魔法转盘", ttt = "Magic Carousel"}
  12. self.datas["10004"] = {ID = "10004", xxx = "神秘事务司", ttt = "Division of Mystery Affairs"}
  13. end
  14. M_test:init()