LootTable Manager is a Minecraft mod that allows you to add, replace, or customize loot tables for any block that contains an inventory, including vanilla blocks and blocks added by other mods (furniture, cupboards, drawers, shelves, etc.).
The mod is designed to give server owners and modpack creators full control over loot generation using simple and clean JSON configuration files, without needing datapacks or code changes.
Each loot table is defined in a JSON file named exactly after the block ID.
mcwfurnitures_acacia_bookshelf.json
This file controls the loot generated inside:
mcwfurnitures:acacia_bookshelf
{
"pools": [
{
"rolls": {
"min": 1,
"max": 2
},
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:book",
"weight": 20,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 2
}
}
]
},
{
"type": "minecraft:item",
"name": "minecraft:writable_book",
"weight": 10,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 1
}
}
]
},
{
"type": "minecraft:item",
"name": "minecraft:paper",
"weight": 15,
"functions": [
{
"function": "set_count",
"count": {
"min": 2,
"max": 5
}
}
]
},
{
"type": "minecraft:item",
"name": "minecraft:ink_sac",
"weight": 8,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 2
}
}
]
},
{
"type": "minecraft:item",
"name": "minecraft:name_tag",
"weight": 3,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 1
}
}
]
}
]
}
]
}
🔹 This loot table randomly generates books, paper, and rare items inside the block.
🔹 weight controls item probability.
🔹 rolls defines how many items are selected per interaction.
Loot respawn is controlled by a dedicated JSON file.
Each block can have its own cooldown time (in seconds) before the loot can regenerate.
{
"mcwfurnitures:acacia_bookshelf": 180,
"mcwfurnitures:acacia_drawer": 120,
"minecraft:barrel": 90
}
180 = loot respawns after 3 minutes120 = loot respawns after 2 minutes90 = loot respawns after 1.5 minutesThis system prevents infinite farming and allows balanced, immersive gameplay.
Powerful customization with zero coding.
LootTable Manager focuses on flexibility, simplicity, and compatibility, making it easy to integrate into any modded Minecraft environment.