Beehive Config
BeeHiveConfig = {}
BeeHiveConfig.HoneyQualityChances = { -- Make sure the sum of the values is 100
["Golden"] = 10,
["Normal"] = 80,
["Rotten"] = 10,
}
BeeHiveConfig.HoneyCombChance = 10 -- Chance to get a honey comb from a beehive when harvesting honey
BeeHiveConfig.DefaultBeehiveSettings = {
bee_hive_mk1 = {
model = "bzzz_props_beehive_box_002",
max_queens = 1,
max_workers = 10,
maxHoneyStorage = 100,
},
bee_hive_mk2 = {
model = "bzzz_props_beehive_box_001",
max_queens = 2,
max_workers = 20,
maxHoneyStorage = 200,
}
}
Last updated