Sticks n’ stones [Woodcutter]

![](https://cdn-raw.modrinth.com/data/zH1NTUGD/images/85124eaaba2243907ac8ed9473fb417762e1948e.png)

# Sticks n’ Stones
This datapack is meant to be an extension to [my Woodcutter datapack](https://modrinth.com/datapack/wood_cutter), but you can use this as a standalone pack, if you for some reason want to cut all wooden blocks down to sticks.

## Recipes

| item | crafting cost | output | plank cost per item | stick cost per item (what you get) |
| — | — | — | — | — |
| stairs | 6 | 4 | 1.5 | 3 |
| slab | 3 | 6 | 0.5 | 1 |
| fence | 5 | 3 | 5/3 | 10/3 -> 3 |
| fence_gate | 4 | 1 | 4 | 8 |
| door | 6 | 3 | 2 | 4 |
| trapdoor | 6 | 2 | 3 | 6 |
| pressure_plate | 2 | 1 | 2 | 4 |
| button | 1 | 1 | 1 | 2 |
| sign | 6.5 | 3 | 13/6 | 13/3 -> 4 |
| planks | — | — | 1 | 2 |
| log | — | — | 4 | 8 |
| stripped_log | — | — | 4 | 8 |
| wood | — | — | 4 | 8 |
| stripped_wood | — | — | 4 | 8 |

> The numbers varie a bit with Bamboo Blocks, because you only get 2 Bamboo planks from a Bamboo Block.

Stickless Tools

I got rid of stick on everything with a stick in it. What did you expect?

The Steve Series Pack

**The texture pack has:**
– _6 invisible items (Pottery Sherds)_
– _A Darkness entity (that uses a Piglin as the base)_
– _Darkness Blockset (stairs, slabs, blocks and walls) [granite]_
– _5 colored light blocks (one for each base colored steve)_
– _Rainbow Stone_
– _A custom iron door texture_

**How to make the best Darkness entity:**

summon piglin ~ ~ ~ {IsImmuneToZombification:1,active_effects:[{id:regeneration,duration:200,amplifier:10,show_particles:0b}],HandItems:[{id:angler_pottery_sherd,count:1},{id:angler_pottery_sherd,count:1}],ArmorItems:[{id:angler_pottery_sherd,count:1},{id:angler_pottery_sherd,count:1},{id:angler_pottery_sherd,count:1},{id:angler_pottery_sherd,count:1}],HandDropChances:[0f,0f],ArmorDropChances:[0f,0f,0f,0f]}
**[Must be used inside of a command block.]**

Steak of Undying

Super simple texture pack that changes your Totem of Undying texture to a steak! For the time being, this works in any version of 1.21, and generally, this should work in any version from 1.14 to 1.21 (because in 1.14 they changed the item textures, and I’m not really sure if this the steak texture matches the one before 1.14). This pack is actually heavily inspired by Beppo’s Totem of Undying texture, so I decided to make that into an accessible for everyone pack! The translations for it are currently available in 30 of the most popular/common Minecraft languages.

Steak = Cooked Beef

Makes steak called cooked beef because it makes more sense and it will make a friend of mine happy because he likes beef!

It’s very simple, does nothing else, just this!

(And maybe a little easter egg, try to find it 😀 )

StackDeobfuscator

# Stack Deobfuscator

> **WARNING**
> This mod is obsolete for all Minecraft versions newer than 1.21.11. It will still be maintained for older versions.

Discord: https://discord.gg/XSB7jn9
Web Version: https://stackdeobf.net/

See [wiki](https://github.com/booky10/StackDeobfuscator/wiki/Configuration) for configuration

## What does this mod do?

All errors displayed in the console and all crash reports will be remapped from unreadable production names (e.g.
`net.minecraft.class_310`) to readable mapped names (e.g. `net.minecraft.client.MinecraftClient`).

This allows mod developers to more easily identify issues in a non-development environment, as the errors are instantly
human-readable.

### Comparison

Before

“`
[23:13:08] [Render thread/ERROR]: Reported exception thrown!
net.minecraft.class_148: Manually triggered debug crash
at net.minecraft.class_309.method_1474(class_309.java:509) ~[client-intermediary.jar:?]
at net.minecraft.class_310.method_1574(class_310.java:1955) ~[client-intermediary.jar:?]
at net.minecraft.class_310.method_1523(class_310.java:1180) ~[client-intermediary.jar:?]
at net.minecraft.class_310.method_1514(class_310.java:801) ~[client-intermediary.jar:?]
at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]
Caused by: java.lang.Throwable: Manually triggered debug crash
at net.minecraft.class_309.method_1474(class_309.java:506) ~[client-intermediary.jar:?]
… 10 more
“`

After (yarn/quilt mappings)

“`
[23:11:25] [Render thread/ERROR]: Reported exception thrown!
net.minecraft.util.crash.CrashException: Manually triggered debug crash
at net.minecraft.client.Keyboard.pollDebugCrash(Keyboard.java:509) ~[client-intermediary.jar:?]
at net.minecraft.client.MinecraftClient.tick(MinecraftClient.java:1955) ~[client-intermediary.jar:?]
at net.minecraft.client.MinecraftClient.render(MinecraftClient.java:1180) ~[client-intermediary.jar:?]
at net.minecraft.client.MinecraftClient.run(MinecraftClient.java:801) ~[client-intermediary.jar:?]
at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]
Caused by: java.lang.Throwable: Manually triggered debug crash
at net.minecraft.client.Keyboard.pollDebugCrash(Keyboard.java:506) ~[client-intermediary.jar:?]
… 10 more
“`

After (mojang mappings)

“`
[23:04:12] [Render thread/ERROR]: Reported exception thrown!
net.minecraft.ReportedException: Manually triggered debug crash
at net.minecraft.client.KeyboardHandler.tick(KeyboardHandler.java:509) ~[client-intermediary.jar:?]
at net.minecraft.client.Minecraft.tick(Minecraft.java:1955) ~[client-intermediary.jar:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1180) ~[client-intermediary.jar:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:801) ~[client-intermediary.jar:?]
at net.minecraft.client.main.Main.main(Main.java:237) ~[minecraft-1.19.4-client.jar:?]
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) ~[fabric-loader-0.14.18.jar:?]
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) ~[fabric-loader-0.14.18.jar:?]
at org.prismlauncher.launcher.impl.StandardLauncher.launch(StandardLauncher.java:88) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.listen(EntryPoint.java:126) ~[NewLaunch.jar:?]
at org.prismlauncher.EntryPoint.main(EntryPoint.java:71) ~[NewLaunch.jar:?]
Caused by: java.lang.Throwable: Manually triggered debug crash
at net.minecraft.client.KeyboardHandler.tick(KeyboardHandler.java:506) ~[client-intermediary.jar:?]
… 10 more
“`

## Mappings Overview

Mappings are downloaded and parsed asynchronously. They are downloaded only once per version.
Yarn and Quilt refresh their version every 48 hours to check for updates.

| Mappings | Compatible Minecraft Versions | Download Size (zipped¹)² | Cached Size (gzipped)² |
|———-|———————————————|—————————————-|————————————-|
| Yarn | 18w49a (1.14 snapshot) or higher | `1.4 MiB` | `1.4 MiB` |
| Quilt | 1.18.2 or higher | `1.4 MiB` (+`1.1 MiB` below 1.19.2) | `1.4 MiB` (+`1.1 MiB` below 1.19.2) |
| Mojang | 1.14.4 and 19w36a (1.15 snapshot) or higher | `9.0 MiB` (uncompressed) + `559.1 KiB` | `1.3 MiB` + `558.6 KiB` |

¹: Mojang mappings are not compressed
²: Sizes as of 12th May 2024 (1.20.6 is latest)

Speedometer

### Speedometer

**This datapack displays your current movement speed in bps (blocks per second).**

Depending on your speed, the speedometer changes color; first to white, then to yellow, and finally to red

![hud](https://cdn.modrinth.com/data/cached_images/b057584e999651e4baffba66fcf4f7575cb126f6.gif)

## Command
– **/function speedometer:on**
> To turn on the speedometer
– **/function speedometer:off**
> To turn off the speedometer
– **/function speedometer:toggle**
> Allows you to change the style.

Squared Shadow

This is a Texture Pack, originally designed for “[Better Than Adventure!](https://www.betterthanadventure.net/)”, and consequentially Beta 1.7.3 (although it will work with ANY version of Minecraft that has a Shadow, since the location and filename has never changed, despite the outdated Resource Pack version warning), that gives the Entities a squared Shadow, instead of a circular one. Consistency, my beloved.

![My Character’s Feet, Featuring a Blocky Shadow](https://cdn.modrinth.com/data/cached_images/72dd28be362e85b04d61b69cb37d451b4a65d68a_0.webp)

# CREDITS

– Shadow texture and “pack.png” made by AndreWharn.
– Do not use the assets without permission, please!

# Thanks for using this pack! 😀

Spawn Eggs Backported

# 25w08a Spawn Egg Textures – Backported!

This resource pack brings the **spawn egg textures** introduced in **Minecraft Snapshot 25w08a** to **all versions from Minecraft 1.14 snapshots up to 25w07a**! If you love the new spawn egg textures but prefer playing on older versions, this pack is perfect for you.

### ✨ **Features:**
– Backports **25w08a spawn egg textures** to **all versions from Minecraft 1.14 snapshots up to 25w07a**.
– Faithful to the vanilla aesthetic.
– Perfect for those who want the latest textures on older versions.

Enjoy and let me know if you find any issues! 🥚🎨

Spawn Animations Compats

## This datapack adds [Spawn Animations](https://modrinth.com/datapack/spawn-animations) compatibility to the modded entities.

![Banner](https://cdn.modrinth.com/data/cached_images/c83cdb92dfd28a44a0f1693be7a1006a51d37b2d.png)


As seen in Elysium Days

#

### Compatibility List:



Enderman Overhaul


Creeper Overhaul


Deeper and Darker


The Graveyard


Frostiful


BetterEnd


BetterNether


Bygone Nether


Galosphere


YUNG’s Cave Biomes


Ad Astra


The Bumblezone


Variants & Ventures


Skeletal Remains


Tiny Skeletons


The Aether


The Aether: Redux


Paradise Lost


Dungeon Now Loading


Aquamirae


Biome Makeover


Bewitchment


Born in Chaos


The Undergarden


Caverns & Chasms


Knight Quest


Jaden’s Nether Expansion


Sons of Sins: Wounds of Chaos


Rotten Creatures


Blue Skies


Underground Worlds


Ice and Fire


L_Ender’s Cataclysm


Alex’s Mobs


Alex’s Caves


Marium’s Soulslike Weaponry


Enemy Expansion


Dungeons Mobs


Stalwart Dungeons


Monster Plus


Unusual End


Mob Variants


Spider Caves


Cracker’s Wither Storm Mod


Nemo’s Creatures


Zombies More


Luminous: Overworld


Luminous: Nether


Luminous: Monsters


Luminous: Beasts


End’s Phantasm


Sleepy Hollows


Royal Variations


Species


Opposing Force

#


GitHub

The mod you need compatibility for isn’t there? **Open a suggestion on [GitHub](https://github.com/Fyoncle/spawnanimations-compats/issues/new?template=suggestions.yml)!**