Fish_ShellCFG.lua 2.0 KB

12345678910111213141516171819202122232425262728293031
  1. Fish_ShellCFG = {}
  2. function Fish_ShellCFG:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function Fish_ShellCFG:init()
  9. self.datas = {}
  10. self.datas[1] = {ID = 1, Shellrate = 200, Weight = 20, ShellItem = {2,2,4,4,2,2,2,2,4,1,2,2,3}}
  11. self.datas[2] = {ID = 2, Shellrate = 250, Weight = 70, ShellItem = {3,1,3,4,3,2,2,4,5,1,1,2,3,3,8,1,1,1,1,1,2,2,2}}
  12. self.datas[3] = {ID = 3, Shellrate = 300, Weight = 120, ShellItem = {2,4,4,4,1,2,3,4,6,1,1,2,2,3,3,7,1,1,1,1,1,2,4}}
  13. self.datas[4] = {ID = 4, Shellrate = 350, Weight = 150, ShellItem = {3,2,4,4,5,1,2,2,3,4,5,2,2,2,2,4,7,1,1,2,2,2,3,3,10,1,1,1,1,1,2,2,2,2,2}}
  14. self.datas[5] = {ID = 5, Shellrate = 380, Weight = 190, ShellItem = {3,3,4,4,5,2,2,2,3,4,5,1,2,3,3,4,10,1,1,1,1,1,2,2,2,2,3}}
  15. self.datas[6] = {ID = 6, Shellrate = 400, Weight = 140, ShellItem = {4,2,2,4,4,6,1,3,1,3,2,4,6,2,2,2,2,2,4,11,1,1,1,1,1,1,2,2,2,2,3}}
  16. self.datas[7] = {ID = 7, Shellrate = 420, Weight = 100, ShellItem = {5,4,4,1,3,1,5,1,2,2,4,4,6,2,2,3,3,3,3,12,1,1,1,1,1,1,2,2,1,3,2,2}}
  17. self.datas[8] = {ID = 8, Shellrate = 450, Weight = 95, ShellItem = {3,4,4,4,5,1,2,3,4,4,10,1,1,1,1,1,1,2,2,3,4}}
  18. self.datas[9] = {ID = 9, Shellrate = 480, Weight = 50, ShellItem = {5,1,3,4,4,3,7,2,2,2,2,2,4,3}}
  19. self.datas[10] = {ID = 10, Shellrate = 500, Weight = 20, ShellItem = {4,4,4,4,2,7,2,2,3,3,3,3,3}}
  20. self.datas[11] = {ID = 11, Shellrate = 520, Weight = 15, ShellItem = {7,4,4,2,2,1,3,1,9,1,3,1,3,2,2,4,2,1}}
  21. self.datas[12] = {ID = 12, Shellrate = 550, Weight = 15, ShellItem = {9,4,2,1,3,1,3,2,2,2}}
  22. self.datas[13] = {ID = 13, Shellrate = 600, Weight = 5, ShellItem = {4,4,4,4,4,8,1,2,2,3,1,3,4,4}}
  23. self.datas[14] = {ID = 14, Shellrate = 650, Weight = 4, ShellItem = {9,2,2,4,4,1,3,1,3,2}}
  24. self.datas[15] = {ID = 15, Shellrate = 700, Weight = 3, ShellItem = {6,4,4,4,4,1,3,7,3,3,3,3,3,4,4}}
  25. self.datas[16] = {ID = 16, Shellrate = 750, Weight = 2, ShellItem = {9,1,3,2,2,4,4,4,1,3}}
  26. self.datas[17] = {ID = 17, Shellrate = 800, Weight = 1, ShellItem = {12,1,3,1,3,1,3,1,3,1,3,4,4}}
  27. end
  28. Fish_ShellCFG:init()