123456789101112131415161718192021222324252627282930313233 |
- Fish_TherionTreasureCFG = {}
- function Fish_TherionTreasureCFG:getData(key)
- if self.datas == nil then
- return nil
- end
- return self.datas[key]
- end
- function Fish_TherionTreasureCFG:init()
- self.datas = {}
- self.datas[1] = {ID = 1, DrawType = 1, RosefinchRate = {350,450}, RosefinchWeight = 240}
- self.datas[2] = {ID = 2, DrawType = 1, RosefinchRate = {450,550}, RosefinchWeight = 280}
- self.datas[3] = {ID = 3, DrawType = 1, RosefinchRate = {550,650}, RosefinchWeight = 300}
- self.datas[4] = {ID = 4, DrawType = 1, RosefinchRate = {650,750}, RosefinchWeight = 60}
- self.datas[5] = {ID = 5, DrawType = 1, RosefinchRate = {750,850}, RosefinchWeight = 10}
- self.datas[6] = {ID = 6, DrawType = 1, RosefinchRate = {850,950}, RosefinchWeight = 5}
- self.datas[7] = {ID = 7, DrawType = 1, RosefinchRate = {950,1100}, RosefinchWeight = 100}
- self.datas[8] = {ID = 8, DrawType = 1, RosefinchRate = {1100,1200}, RosefinchWeight = 5}
- self.datas[9] = {ID = 9, DrawType = 2, RosefinchRate = {400,450}, RosefinchWeight = 100}
- self.datas[10] = {ID = 10, DrawType = 2, RosefinchRate = {450,550}, RosefinchWeight = 200}
- self.datas[11] = {ID = 11, DrawType = 2, RosefinchRate = {550,650}, RosefinchWeight = 250}
- self.datas[12] = {ID = 12, DrawType = 2, RosefinchRate = {650,750}, RosefinchWeight = 165}
- self.datas[13] = {ID = 13, DrawType = 2, RosefinchRate = {750,850}, RosefinchWeight = 130}
- self.datas[14] = {ID = 14, DrawType = 2, RosefinchRate = {950,1100}, RosefinchWeight = 100}
- self.datas[15] = {ID = 15, DrawType = 2, RosefinchRate = {1100,1200}, RosefinchWeight = 50}
- self.datas[16] = {ID = 16, DrawType = 2, RosefinchRate = {1200,1300}, RosefinchWeight = 2}
- self.datas[17] = {ID = 17, DrawType = 2, RosefinchRate = {1300,1500}, RosefinchWeight = 1}
- self.datas[18] = {ID = 18, DrawType = 2, RosefinchRate = {1500,2000}, RosefinchWeight = 1}
- self.datas[19] = {ID = 19, DrawType = 2, RosefinchRate = {2000,3000}, RosefinchWeight = 1}
- end
- Fish_TherionTreasureCFG:init()
|