12345678910111213141516171819202122232425262728293031 |
- Fish_ShellCFG = {}
- function Fish_ShellCFG:getData(key)
- if self.datas == nil then
- return nil
- end
- return self.datas[key]
- end
- function Fish_ShellCFG:init()
- self.datas = {}
- self.datas[1] = {ID = 1, Shellrate = 200, Weight = 20, ShellItem = {2,2,4,4,2,2,2,2,4,1,2,2,3}}
- 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}}
- 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}}
- 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}}
- 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}}
- 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}}
- 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}}
- 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}}
- self.datas[9] = {ID = 9, Shellrate = 480, Weight = 50, ShellItem = {5,1,3,4,4,3,7,2,2,2,2,2,4,3}}
- self.datas[10] = {ID = 10, Shellrate = 500, Weight = 20, ShellItem = {4,4,4,4,2,7,2,2,3,3,3,3,3}}
- 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}}
- self.datas[12] = {ID = 12, Shellrate = 550, Weight = 15, ShellItem = {9,4,2,1,3,1,3,2,2,2}}
- self.datas[13] = {ID = 13, Shellrate = 600, Weight = 5, ShellItem = {4,4,4,4,4,8,1,2,2,3,1,3,4,4}}
- self.datas[14] = {ID = 14, Shellrate = 650, Weight = 4, ShellItem = {9,2,2,4,4,1,3,1,3,2}}
- 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}}
- self.datas[16] = {ID = 16, Shellrate = 750, Weight = 2, ShellItem = {9,1,3,2,2,4,4,4,1,3}}
- self.datas[17] = {ID = 17, Shellrate = 800, Weight = 1, ShellItem = {12,1,3,1,3,1,3,1,3,1,3,4,4}}
- end
- Fish_ShellCFG:init()
|