Creeping Chill

Quick rating

Creeping Chill

No reviews yet

The land wants not for ghosts, only for warmth.

Magic
World Gen Improvements
Mod Loaders
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
ISC License
Latest Version
1.0.0
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

This mod converts normal fire light sources to soul fire light sources under three conditions:

  • It is cold enough to snow.
  • It is dark enough to sleep.
  • The light source is exposed to enough sky light.

In practice, this means that in snowy biomes, light sources such as torches and lanterns will be converted to soul torches and soul lanterns when outside at night, or during thunderstorms. Though, the bounds of "outside" remain fuzzy and imperfect. During world generation, light sources in applicable circumstances will be automatically converted, so for instance when you walk into a snowy village, the torches and lanterns that normally generate should already be in their soul forms.

This mod also has built-in support for the excellent Soul Candles mod. Converting Jack o'Lanterns to soul Jack o'Lanterns is however not supported, admittedly due mainly to technical limitations, but feel free to imagine whatever lore to justify it.

Extended Biome Support

By default, counter to what one might expect, Creeping Chill does not convert fire light sources to soul fire light sources in soul sand valleys. This however can be enabled by adding it, or any other biome, to the creeping-chill:is_always_creeping biome tag. Doing so will make it so fire light sources will always convert to soul fire light sources, regardless of biome temperature or sky light level, or any other factors.

For instance, to apply this tag to soul sand valleys, one would create a file in their data pack at my-epic-data-pack/data/creeping-chill/tags/worldgen/biome/is_always_creeping.json with the following contents:

{
    "replace": false,
    "values": [
        "minecraft:soul_sand_valley"
    ]
}

Custom Soul Conversions

Creeping Chill also allows users to provide their own custom soul conversions, that is, a conversion from a fire light source to a soul fire light source. This is handled via the creeping-chill:soul_conversion dynamic registry, and is how the support for the Soul Candles mod is implemented.

To add a custom conversion, for the sake of example let's say from a redstone torch to a soul torch, one would create a file in their data pack at my-epic-data-pack/data/my-epic-namespace/creeping-chill/soul_conversion/redstone_torch.json, with the following contents:

{
    "input": {
        "Name": "minecraft:redstone_torch",
        "Properties": {
            "lit": true
        }
    },

    "output": {
        "Name": "minecraft:soul_torch"
    }
}

Using this as-is will work, but it would error if either minecraft:redstone_torch or minecraft:soul_torch did not exist. That isn't really a consideration for vanilla blocks, but it is for blocks that are added by mods. So for instance if, instead of a redstone torch, you wanted to add a conversion for some mod's own their-epic-mod:their_epic_torch (which let's say can be either lit or unlit), but without requiring that that mod is installed, you could add a required field set to false in the conversion, like so:

{
    "required": false,

    "input": {
        "Name": "their-epic-mod:their_epic_torch",
        "Properties": {
            "lit": true
        }
    },

    "output": {
        "Name": "minecraft:soul_torch"
    }
}

This would then only become active if their-epic-mod:their_epic_torch in fact exists in the game.

Do keep in mind however, that since the sky light test for soul conversions is performed inside the to-be-converted block, blocks which block skylight will not end up being converted, since the sky light level at their positions will always be 0.

Screenshots

Gallery

  • A Snowy Village
    A Snowy Village A snow village that generated with soul lanterns instead of normal lanterns.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
CurseForge
Created
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works