Wiki

Clone wiki

Loot Overhaul / Loot Conditions - Biome Height

Loot Conditions - Biome Height

Structure:

Property Type Description
base Float or Float Range The base height of the biome.
variation Float or Float Range How much the height varies.

Description:

Will pass if the biome base height or variation are within this range. You can use both min and max for the base and variaion, or leave one out.

Some base vanilla biome heights, for reference: * Deep Ocean: Base: -1.8, Variation: 0.1 * Ocean: Base: -1.0, Variation: 0.1 * Jungle: Base: 0.1, Variation: 0.2 * Plains: Base: 0.125, Variation: 0.05 * Extreme Hills: Base: 1.0, Variation: 0.5 * Savanna Plateau: Base: 1.5, Variation: 0.025

Example Usage:

"conditions": [
    {
        "condition": "lootoverhaul:biome_height",
        "base": {
            "min": 0.4,
            "max": 1.5
        },
        "variation": {
            "max": 0.1
        }
    }
 ]

Previous - Biome Back Next - Biome Humidity

Updated