This is a static snapshot of the site saved for posterity. No future updates will be made here and all interactive features (comments, etc.) are disabled.

Apiary Upgrades

 

The Upgrades section is responsible for all apiary upgrades settings. Every sub-section represents an upgrade.

cfg {name} {
    id = {number} // should be unique
    max = {number} // maximum count installed
    {…modifiers…}
}

The name is used for CustomItemStack names, texture names and localization, do not change unless you know what you are doing.

Available modifiers

  • Boolean (True or False):
    • sealed 
    • selfLighted
    • sunlightSimulated
    • automated
    • collectingPollen
  • Numeric (see below)
    • lifespan
    • territory
    • mutation
    • production
    • flowering
    • geneticDecay
    • energy
    • temperature
    • humidity
  • String
    • biomeOverride – Biome name, as used in BiomeGenBase.biomeName

Numeric Modifiers

Numeric modifiers should use one of the forms below

{key} += {modifier} // Will add the modifier to the value
{key} -= {modifier} // Will subtract the modifier to the value
{key} *= {modifier} // Will multiply the value by the modifier
{key} /= {modifier} // Will add the modifier to the value
 Posted by at 1:06 pm