Scorchful:Temperature Effect Types
Jump to navigation
Jump to search
Scorchful adds a few new temperature effect types. These are further variants of the temperature effect types provided by Thermoo. Consider this page an extension of the Thermoo page for temperature effects, which you can find the full version of here.
Scorchful does not provide the same guarantees for stability of the JSON API that Thermoo does. Formats may change at any time.
Temperature Effect Format
scorchful:sound
Plays a sound event on an interval.
- type:
scorchful:sound
- sound: Resource location of the sound event be played. For example
minecraft:entity.wolf.pant
. - category: Enum. The category to play the sound in. For example:
master
,ambient
, orvoice
. See here for the full list. - volume: Float provider, provides the range of the sound.
- pitch: Float provider, the pitch to play the sound at.
- interval: The length, in ticks, of the interval for how often to play the sound.
- only_play_to_source: Optional. If true, the sound is only played to the player that this effect is active for. Defaults to
false
.
- sound: Resource location of the sound event be played. For example
You can disable the sound effect with the config option
enableSoundTemperatureEffects
in the client config.scorchful:change_temperature
Changes the target's temperature on an interval.
- type:
scorchful:change_temperature
- temperature_change: How much to change the entity's temperature by.
- interval: Positive integer.The length, in ticks, of the interval for how often to apply the temperature change.
- heating_code: Optional. What mode to apply the temperature change in. Must be one of
absolute
,active
, orpassive
. Defaults toabsolute
.