Loot Conditions Temperature - Tmtravlr/LootOverhaul GitHub Wiki

Loot Conditions - Temperature

Structure:

Property Type Description
temperature Float or Float Range The temperature of the position in the biome.

Description:

Will pass if biome temperature at this location is in this range.

Some base vanilla biome temperatures (they lower as you go higher), for reference:

  • Ocean: 0.5
  • Plains: 0.8
  • Jungle: 0.95
  • Desert: 2.0
  • Extreme Hills: 0.2 (starts snowing at 0.15)
  • Ice Plains: 0.0

Example Usage: (only applies if in an area with moderate temperature)

"conditions": [
 	{
 		"condition": "lootoverhaul:temperature",
 		"temperature": {
 			"min": 0.2,
 			"max": 0.8
 		}
 	}
 ]

Or you can leave out one of the min or max: (Only applies where snow can fall)

 "conditions": [
 	{
 		"condition": "lootoverhaul:temperature",
 		"temperature": {
 			"max": 0.15
 		}
 	}
 ]
Previous - Biome Humidity Back Next - Biome Type
⚠️ **GitHub.com Fallback** ⚠️