Language

Snow! Real Magic! ⛄

Snow! Real Magic! ⛄

Modrinth

Not a magic mod. · Snow Gravity & Accumulation · Snow-covered blocks · Tweak snow behaviors

7.1M downloads 1.3k followers updated 1d ago
latest v26.0.3+fabric Modrinth
Fabric Forge Neoforge Quilt 1.19.2 – 26.1.2 DecorationGame-mechanics

Snow! Real Magic! ⛄

A simple tweak mod that enriches the vanilla snow layer's behavior.

Features

With this mod you can:

  • Place snow and a fence/wall/tall grass in the same block!
  • Enjoy snow-covered slabs, stairs, walls, fences and fence gates — they can also generate naturally in the world!
  • Watch snow layers fall like sand. Falling snow that touches a water source turns into ice
  • See snow layers pile up during a snowstorm (thunder) — or during any snowfall
  • Walk on snow layers with a thinner collision box, just like in Bedrock Edition
  • Land softly on snow: the more layers, the less fall damage
  • Place blocks into snow directly — snow is always replaceable as long as it is not a full layer
  • Right-click snow with a shovel, or sneak + right-click with an empty hand, to scrape off a snowball (consumes one layer)
  • Right-click a snow-covered block with both hands empty to toggle its fancy snow overlay
  • Make snow never melt, make it melt in warm biomes, or let it melt away naturally over time
  • And more!

All features can be toggled in the config.

Joke feature

Two game rules, snowrealmagic:blizzardStrength (1–8, max layers) and snowrealmagic:blizzardFrequency (N/10000 per tick per chunk), make snow blocks fall from the sky. Have fun!

Customization

Tweaking behavior with block tags

Datapacks can change which blocks interact with snow by adding to the mod's block tags. To append entries, create the file under the snowrealmagic namespace in your datapack, e.g. data/snowrealmagic/tags/block/containables.json:

(Also see Editing tags using KubeJS)

{
	"values": [
		"mymod:my_flower",
		{
			"id": "#mymod:my_pebbles",
			"required": false
		}
	]
}

Available tags:

  • containables: Blocks that snow can be placed into, turning them snow-covered. (Default: plants, offset_y, expand_model and #c:chains)
  • not_containables: Blacklist. Blocks here can never contain snow, even if they are in containables. (Default: #minecraft:leaves)
  • plants: Plants that become snowy plants when snow covers them. Compared to #containables, it will be able to be detected by shaderpacks to make them swing, but as far as I know, no shaderpacks support this yet. (Default: dead bush, flowers, saplings, mushrooms, etc.)
  • entity_inside: Snow-covered blocks that keep their touch effects, e.g. wither rose damage. (Default: wither rose, sweet berry bush)
  • animate_tick: Snow-covered blocks that keep their ambient particles, e.g. firefly bush. (Default: wither rose, open eyeblossom, dry grass, firefly bush)
  • offset_y: Flat blocks that are rendered slightly raised when snow-covered, to avoid z-fighting with the snow layer. (Default: pebbles, twigs and similar decorations from supported mods)
  • expand_model: Blocks whose model should be treated as a full cube when snow-covered. Used for compat with mods like vertical slabs.
  • cannot_accumulate_on: Snow will not naturally accumulate on top of these blocks. (Default: hay block, slabs)
Custom snowy models with .mcmeta

Resource packs can change how a block looks when it is snow-covered. Add a .json.mcmeta file next to the block's model file with an srm section pointing to the model to use instead. For example, assets/minecraft/models/block/dandelion.json.mcmeta:

{
	"srm": {
		"model": "mypack:block/snowy_dandelion"
	}
}

The snowy model is a regular block model. For cross-shaped foliage you can parent the built-in template, which renders the plant together with a snow overlay:

{
	"parent": "snowrealmagic:block/snowy_cross",
	"textures": {
		"cross": "block/dandelion",
		"snow": "mypack:block/snowy_dandelion"
	}
}

For double-height plants such as tall grass, put the mcmeta on the top-half model and add an overrideBlocks list with the block ID, so the upper half also renders snowy:

{
	"srm": {
		"model": "mypack:block/snowy_tall_grass_top",
		"overrideBlocks": ["minecraft:tall_grass"]
	}
}

This feature requires the client config snowVariants to be enabled (it is by default).

Uninstalling

Before removing the mod, you may want to enable snow-cover.restoreOriginalBlocks in the config. Snow-covered blocks will then be restored to their original blocks as chunks load, leaving no modded blocks behind.

Configuration

Common
  • snowGravity (default: true): Snow layer falls like sand. [Performance impact: low]
  • snowMakingIce (default: true): Falling snow becomes ice when it touches water. [Performance impact: none]
  • snowAlwaysReplaceable (default: true): Snow layer can always be replaced by other blocks, as long as it is not full. [Performance impact: none]
  • thinnerBoundingBox (default: true): Shrink the collision box of the snow layer. [Performance impact: none]
  • snowNeverMelt (default: false): Snow layer never melts. [Performance impact: none]
  • snowSpawnMaxLightLevel (default: 9): Maximum light level for snow to spawn. [Performance impact: none]
  • snowPersistMaxLightLevel (default: 11): Maximum light level for snow to not melt. [Performance impact: none]
  • snowReduceFallDamage (default: true): Reduce fall damage when landing on snow, depending on the snow layers. [Performance impact: none]
  • sustainGrassIfLayerMoreThanOne (default: true): Prevents grass block from turning into dirt when snow layer is more than 1. [Performance impact: none]
  • sneakSnowball (default: true): Sneak+use on snow layer to obtain snowball, consuming one layer of snow. [Performance impact: none]
  • fancySnowOnUpperSlab (default: true): Snow layer on upper slab will render snow overlay on the side of the slab. [Performance impact: low]
  • rightClickToggleFancySnow (default: true): Right click with empty hands to toggle the fancy snow overlay on any snow layer. [Performance impact: none]
  • mobSpawningMaxLayers (default: 8, range: 1–8): Maximum layers of snow for mobs to spawn. [Performance impact: none]
  • snow-cover.placeSnowOnBlock (default: true): Snow can be placed on some blocks to make them snow-covered. [Performance impact: low]
  • snow-cover.placeNaturally (default: true): Snow can be placed on some blocks not only by player, but also from snowfall or world generation. [Performance impact: low]
  • snow-cover.replaceWorldgenFeature (default: true): Replace the vanilla world generation feature to also generate snow-covered blocks. [Performance impact: low]
  • snow-cover.restoreOriginalBlocks (default: false): If you want to uninstall this mod, you can restore snow-covered blocks to their original blocks on chunk loaded. [Performance impact: low]
  • accumulation.accumulatesDuringSnowfall (default: false): Snow layer accumulates during snowfall. [Performance impact: medium]
  • accumulation.accumulatesDuringSnowstorm (default: true): Snow layer accumulates during thundering. [Performance impact: medium]
  • accumulation.maxLayers (default: 6, range: 0–9): Maximum layers of snow that can accumulate. 9 is unlimited. [Performance impact: low]
  • accumulation.snowAndIceMeltInWarmBiomes (default: false): Snow and ice will melt in warm biomes. [Performance impact: low]
  • accumulation.naturalMelting (default: true): Snow melts with time if its layer is more than 1. [Performance impact: medium]
  • accumulation.smoothAccumulation (default: true): Snow layer will accumulate and melt more smoothly. [Performance impact: low]
  • integration.accumulationWinterOnly (default: false): If you have a mod that adds seasons, snow accumulation only happens in winter. [Performance impact: none]
Client
  • particleThroughLeaves (default: true): Generates snowflake particles under snow that is above leaves. [Performance impact: low]
  • snowVariants (default: true): Some snow-covered foliage will be rendered differently. [Performance impact: low]

Interested in supporting me and the development of mods? BisectHosting is the perfect solution. New customers can use the promotion code "snownee" to get a 25% discount on their first month of a gaming server. With 24/7 support and fast response times, you can expect top-notch service for all your gaming needs.

Versions

Release
26.0.3+fabric
fabric, quilt · 26.1, 26.1.1, 26.1.2 · 1d ago
## 26.0.3 - fix: 8-layer snow block shade brightness - Update build.gradle for 26.1-fabric - chore: update dependencies ## 26.0.2 - fix: snowy…
195
Release
12.2.2+fabric
fabric, quilt · 1.21, 1.21.1 · 1mo ago
## 12.2.2 - fix: unlimited max snow layers is not working properly - fix: snowy fence/wall connection - fix: some plants are converted to the wrong snow…
7.7k
Release
12.2.2+neoforge
neoforge · 1.21.1 · 1mo ago
## 12.2.2 - fix: unlimited max snow layers is not working properly - fix: snowy fence/wall connection ## 12.2.1 - fix: some plants are converted to the…
24.7k
Release
26.0.2+fabric
fabric, quilt · 26.1, 26.1.1, 26.1.2 · 2mo ago
## 26.0.2 - fix: snowy fence/wall connection - fix: unlimited max snow layers is not working properly ## 26.0.1 - feat: re-add SereneSeasons…
9.2k
Release
26.0.1+fabric
fabric, quilt · 26.1, 26.1.1, 26.1.2 · 3mo ago
## 26.0.1 - feat: re-add SereneSeasons integration - feat: re-add diagonal blocks integration ## 26.0.0 - port part 4 - Revert "port part 3" - port…
4.7k
Release
26.0.0+fabric
fabric, quilt · 26.1, 26.1.1 · 4mo ago
## 26.0.0 - port part 4 - Revert "port part 3" - port part 3 - port part 2 - port part 1 - fix: incorrect fence face culling - chore: delete…
2.5k
Beta
12.2.1+neoforge
neoforge · 1.21.1 · 6mo ago
## 12.2.1 - fix: some plants are converted to the wrong snow variant block - fix: random ticking creating grass blocks without snow overlay - fix:…
67.9k
Release
10.7.0
forge, neoforge · 1.20, 1.20.1 · 7mo ago
## 10.7.0 - Merge pull request [#468](https://github.com/Snownee/SnowRealMagic/issues/468) from Snownee/fix/issues-1.20-forge - fix: gigantic water by falling…
421.5k
Release
10.7.0
fabric, quilt · 1.20, 1.20.1 · 7mo ago
## 10.7.0 - Merge pull request [#469](https://github.com/Snownee/SnowRealMagic/issues/469) from Snownee/fix/issues-1.20-fabric - fix: snow area is not…
246.2k
Release
12.2.0+neoforge
neoforge · 1.21.1 · 7mo ago
## 12.2.0 - Merge pull request [#470](https://github.com/Snownee/SnowRealMagic/issues/470) from Snownee/fix/issues-neoforge - fix: gigantic water by falling…
18.3k
Release
12.2.0+fabric
fabric, quilt · 1.21, 1.21.1 · 7mo ago
## 12.2.0 - Merge pull request [#467](https://github.com/Snownee/SnowRealMagic/issues/467) from SettingDust/fix/issues - fix: gigantic water by falling snow -…
42.3k
Release
10.6.5
forge, neoforge · 1.20, 1.20.1 · 12mo ago
## 10.6.5 - chore: update dependencies (close [#452](https://github.com/Snownee/SnowRealMagic/issues/452)) ## 10.6.4 - fix: Snow is Invisible When Using…
153.8k

Comments 0

No comments yet. Be the first to share your thoughts.

FAQ

How do I install Snow! Real Magic! ⛄?

Download the file for your Minecraft version and loader from this page, then drop the .jar into your mods (or plugins) folder and launch the game.

Is Snow! Real Magic! ⛄ free?

Snow! Real Magic! ⛄ is free to download on Modgrid — we link straight to the official source, no paywall or bundled installer.

Which Minecraft versions does Snow! Real Magic! ⛄ support?

Works with Fabric, Forge, Neoforge, Quilt. Supports versions 1.19.2–26.1.2. See the download section on this page for the full list of supported versions and loaders.

Download Snow! Real Magic! ⛄

R 26.0.3+fabric 26.1, 26.1.1, 26.1.2 fabric, quilt 237 KB R 12.2.2+fabric 1.21, 1.21.1 fabric, quilt 222 KB R 12.2.2+neoforge 1.21.1 neoforge 3.7 MB R 26.0.2+fabric 26.1, 26.1.1, 26.1.2 fabric, quilt 237 KB R 26.0.1+fabric 26.1, 26.1.1, 26.1.2 fabric, quilt 237 KB R 26.0.0+fabric 26.1, 26.1.1 fabric, quilt 219 KB B 12.2.1+neoforge 1.21.1 neoforge 3.7 MB R 10.7.0 1.20, 1.20.1 forge, neoforge 338 KB R 10.7.0 1.20, 1.20.1 fabric, quilt 192 KB R 12.2.0+neoforge 1.21.1 neoforge 3.7 MB R 12.2.0+fabric 1.21, 1.21.1 fabric, quilt 221 KB R 10.6.5 1.20, 1.20.1 forge, neoforge 338 KB R 12.1.2+fabric 1.21, 1.21.1 fabric, quilt 219 KB R 12.1.2+neoforge 1.21.1 neoforge 3.7 MB R 12.1.1+neoforge 1.21.1 neoforge 3.7 MB R 10.6.4 1.20, 1.20.1 fabric, quilt 191 KB R 10.6.4 1.20, 1.20.1 forge, neoforge 381 KB R 10.6.3 1.20, 1.20.1 fabric, quilt 190 KB R 10.6.2 1.20, 1.20.1 fabric, quilt 190 KB R 12.0.8+fabric 1.21, 1.21.1 fabric, quilt 218 KB R 12.0.7+fabric 1.21, 1.21.1 fabric, quilt 218 KB R 10.6.2 1.20, 1.20.1 forge, neoforge 380 KB B 12.1.0+neoforge 1.21.1 neoforge 3.7 MB R 12.0.6+fabric 1.21, 1.21.1 fabric, quilt 218 KB B 12.0.5+fabric 1.21, 1.21.1 fabric, quilt 218 KB B 12.0.4+neoforge 1.21.1 neoforge 3.7 MB A 12.0.2+neoforge 1.21.1 neoforge 3.7 MB A 12.0.1+neoforge 1.21.1 neoforge 3.7 MB A 12.0.0+neoforge 1.21.1 neoforge 3.7 MB B 11.1.1+neoforge 1.21.1 neoforge 3.7 MB B 10.6.1 1.20, 1.20.1 forge, neoforge 336 KB B 10.6.1 1.20, 1.20.1 fabric, quilt 189 KB B 11.1.0+neoforge 1.21.1 neoforge 3.7 MB B 11.1.0+fabric 1.21, 1.21.1 fabric, quilt 186 KB B 10.6.0 1.20, 1.20.1 forge, neoforge 336 KB B 10.5.4 1.20, 1.20.1 forge, neoforge 336 KB B 10.5.3 1.20, 1.20.1 forge, neoforge 336 KB B 11.0.13+neoforge 1.21.1 neoforge 3.7 MB B 11.0.13+fabric 1.21, 1.21.1 fabric, quilt 185 KB B 10.5.4 1.20, 1.20.1 fabric, quilt 189 KB B 11.0.12+neoforge 1.21.1 neoforge 3.7 MB B 11.0.12+fabric 1.21, 1.21.1 fabric, quilt 186 KB B 11.0.11+fabric 1.21, 1.21.1 fabric, quilt 185 KB B 11.0.10+neoforge 1.21.1 neoforge 3.7 MB B 11.0.9+neoforge 1.21.1 neoforge 3.7 MB R 10.5.2 1.20, 1.20.1 forge, neoforge 336 KB R 11.0.7+fabric 1.21, 1.21.1 fabric, quilt 184 KB R 10.5.2 1.20, 1.20.1 fabric, quilt 184 KB R 11.0.6+fabric 1.21, 1.21.1 fabric, quilt 184 KB B 10.5.1 1.20, 1.20.1 forge, neoforge 337 KB

Files are served directly from the original source. Modgrid does not host or modify them.