Fish_LargeFishCFG.lua 445 B

123456789101112131415
  1. Fish_LargeFishCFG = {}
  2. function Fish_LargeFishCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function Fish_LargeFishCFG:init()
  9. self.datas = {}
  10. self.datas[2] = {ID = 2, Name = "4号鱼阵", GeneratorID = 300, FishID = -1, ImageInfo = "UI/Image/FishLargeInfo2.png", IsBoss = false, BackSound = "Sound/BG05.mp3", Duration = -1, WarnTime = 3, FlashTime = 3, DieTime = -1}
  11. end
  12. Fish_LargeFishCFG:init()