MAKER · JAVA
Make sand drop anything
"Make sand drop diamonds" is a complete instruction here: the engine writes a real block loot-table override and packages it as a normal Java datapack. Every block and item id is validated against the game's registry before a single file is written, so the pack loads first try.
TRY A PROMPT — ONE CLICK TO THE GENERATOR
WHAT YOU ACTUALLY GET — REAL OUTPUT FOR “MAKE SAND DROP DIAMONDS”
Sand Diamonds · Java datapack · 4 files
It does this: breaking sand now drops diamond.
README.txt data/minecraft/loot_table/blocks/sand.json pack.mcmeta … 1 more
Start it: /reload
How it works
- 1Describe it: "make sand drop diamonds" — list several drops if you want.
- 2Drop the downloaded zip into your world's datapacks folder.
- 3Run /reload — breaking sand now uses your loot.
Questions people ask
Does Fortune / Silk Touch still work?
Your override replaces the vanilla table, so enchantment-conditional drops follow what you asked for — the simple phrasing gives unconditional drops, which is what most people want for a fun world.
Can I undo it?
Yes — remove the datapack from the world's datapacks folder and /reload; vanilla loot returns instantly. Nothing outside the datapack is touched.
Which versions?
Pick your version at generation time — the pack_format is set correctly for it, including the newest releases (the version registry updates itself daily).
Why it never breaks
No language model writes these files. Deterministic engines parse your description into validated parameters and emit game files that are correct by construction — then CI boots real Paper and Bedrock servers weekly to prove packs still load on current Minecraft. Read the full story on the comparison page or in the docs.