This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
I have made a mod that adds metals, and molten forms of those metals and the ones already in the game that works with Chisels & Bits:
https://www.curseforge.com/minecraft/mc-mods/aku/files
The src can be found by scrolling down on that page.
What I'm trying to accomplish is making a .json for a loot table adding aluminum_ore as a chest loot for dungeons.
This is the .json I have tried or what I have made, but I cannot spawn a chest with the ore inside of it:
{ "pools": [ { "rolls": { "min": 3, "max": 3 }, "bonus_rolls": { "min": 8, "max": 10 }, "entries": [ { "type": "loot_table", "weight": 3, "name": "minecraft:chest" }, { "type": "item", "weight": 1, "name": "aku:aluminum_ore", "quality": 2, "functions": [ { "function": "set_count", "count": { "min": 1, "max": 3 } } ] } ] } ] }
I have made a mod that adds metals, and molten forms of those metals and the ones already in the game that works with Chisels & Bits:
https://www.curseforge.com/minecraft/mc-mods/aku/files
The src can be found by scrolling down on that page.
What I'm trying to accomplish is making a .json for a loot table adding aluminum_ore as a chest loot for dungeons.
This is the .json I have tried or what I have made, but I cannot spawn a chest with the ore inside of it: