-- Maximum workers a hive can hold. Server rejects additions over this limit.
Config.MaxBeesPerHive = 100
-- Maximum HP caps (logical upper bounds). Server degrades by -1 per degrade tick.
Config.MaxHiveHP = 100
Config.MaxBeeHP = 100
-- “Happy” thresholds. Production happens ONLY if all three are met
-- (food >= Food, water >= Water, clean >= Clean) AND a queen is present.
Config.HappyAt = {
Food = 40,
Water = 40,
Clean = 40,
}
-- Product produced per cycle per worker when the hive is “happy”.
-- Formula: product += HoneyPerCycle * bees
Config.HoneyPerCycle = 1
-- Product required to fill one jar for a normal bee hive (honey).
-- Bumble hives use Config.PropolisPerJar instead.
Config.HoneyPerJar = 20
Config.UpdateTimer = 1 -- minutes
Config.DegradeTimer = 15 -- minutes
Config.BeeGoldenChance = 20 -- % chance per cycle for +1 golden_honey
Config.BeeDarkChance = 10 -- % chance per cycle for +1 dark_honey
Config.BumbarVenomChance = 20 -- % chance per cycle for +1 bee_venom
Config.BumbarRoyalJellyChance = 10 -- % chance per cycle for +1 royal_jelly