🌡️Temperature System
The Temperature System in AdvancedSeasons is a sophisticated feature that adds a layer of realism and challenge to the Minecraft environment. This system calculates a player's temperature based on several factors, including the base environment temperature, biome-specific temperatures, seasonal variations, light levels at the player's location, and the number of armor items a player is wearing. All these elements are fully configurable, allowing for a tailored gameplay experience.
Configuration
Explanation
Base Temperature Configuration
base: 18
: This setting establishes the baseline temperature in Celsius for the game environment.
Temperature Formula
The formula
temperatureFormula: "%base% + %biome% + %seasonTemp% + (%lightLevel%) + (%armorItemsCount% * 2) + %conditionalTemp%"
is used to calculate the player's current temperature.%base%
represents the base temperature.%biome%
adjusts for the temperature relative to the specific biome.%seasonTemp%
accounts for seasonal temperature changes.%lightLevel%
factors in the light level at the player's location, which can be influenced by sources like torches or lava.%armorItemsCount%
modifies the temperature based on the number of armor pieces worn.%conditionalTemp%
includes adjustments for various conditions like shade, time of day, rain, or being in water.
Seasonal Temperature Variations
The
temperature
section specifies the temperature adjustments for each season relative to the base temperature.SPRING: 2
SUMMER: 7
FALL: -2
WINTER: -25
Biomes Without Winter
noWinterBiomes
: Lists biomes that do not experience winter. In these biomes, winter temperatures are calculated as the average of fall and spring temperatures.
Temperature Events
Temperature event effects use our Abilities Engine to provide unprecedented customisability with over 100+ effects available to create temperature effects beyond dreams or imagination.
You can read more about the Abilities Engine here: https://wiki.advancedplugins.net/abilities/introduction
The
temperatureEvents
section defines specific temperatures at which certain events occur.freeze: -30
triggers freezing effects.ice_forming: -25
begins to show ice formation.shivering: -15
initiates shivering animations.breath_visibility: -4
makes the player's breath visible.warmth: 20
provides benefits like faster health regeneration.sweating: 35
shows visual sweating effects.heatstroke: 45
triggers heatstroke effects.
Event effects are pre-configured to be very straight-forward. To edit them, you can explore our effect list: https://wiki.advancedplugins.net/abilities/effects
This system not only enhances the realism of the game but also introduces strategic elements where players must adapt to survive and thrive in varying temperatures.
Last updated