Loot Table Manager

Quick rating

Loot Table Manager

No reviews yet

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.).

No Theme
No Genre
Social & Roleplay
Storage & Organization
Modpack Customization Tool
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Where It Runs
Client and Server

Must be installed on both the client and the server.

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
loottablemanager-1.1.jar

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

📦 LootTable Manager

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.


✨ Features

  • ✔ Add or override loot tables for any inventory-based block
  • ✔ Works with vanilla and modded blocks
  • ✔ Fully configurable loot (items, weights, rolls, counts)
  • ✔ Per-block loot respawn cooldown system
  • ✔ Simple JSON-based configuration
  • ✔ Ideal for RPG, survival, apocalypse, and roleplay servers

⚙️ How It Works

📁 Loot Tables

Each loot table is defined in a JSON file named exactly after the block ID.

Example file name:

 
mcwfurnitures_acacia_bookshelf.json

This file controls the loot generated inside:

 
mcwfurnitures:acacia_bookshelf

🧪 Example Loot Table

 
{
  "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 Cooldown

Loot respawn is controlled by a dedicated JSON file.

Each block can have its own cooldown time (in seconds) before the loot can regenerate.

🧾 Example Cooldown File

 
{
  "mcwfurnitures:acacia_bookshelf": 180,
  "mcwfurnitures:acacia_drawer": 120,
  "minecraft:barrel": 90
}
  • 180 = loot respawns after 3 minutes
  • 120 = loot respawns after 2 minutes
  • 90 = loot respawns after 1.5 minutes

This system prevents infinite farming and allows balanced, immersive gameplay.


🎯 Use Cases

  • 🧟 Apocalypse / zombie survival servers
  • 🏹 RPG and adventure maps
  • 🏠 Furniture mods with functional storage loot
  • 🌍 Custom survival experiences
  • 🛠 Modpacks with controlled loot economy

🧠 Design Philosophy

Powerful customization with zero coding.

LootTable Manager focuses on flexibility, simplicity, and compatibility, making it easy to integrate into any modded Minecraft environment.

📦 LootTable Manager

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.


✨ Features

  • ✔ Add or override loot tables for any inventory-based block
  • ✔ Works with vanilla and modded blocks
  • ✔ Fully configurable loot (items, weights, rolls, counts)
  • ✔ Per-block loot respawn cooldown system
  • ✔ Simple JSON-based configuration
  • ✔ Ideal for RPG, survival, apocalypse, and roleplay servers

⚙️ How It Works

📁 Loot Tables

Each loot table is defined in a JSON file named exactly after the block ID.

Example file name:

 
mcwfurnitures_acacia_bookshelf.json

This file controls the loot generated inside:

 
mcwfurnitures:acacia_bookshelf

🧪 Example Loot Table

 
{
  "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 Cooldown

Loot respawn is controlled by a dedicated JSON file.

Each block can have its own cooldown time (in seconds) before the loot can regenerate.

🧾 Example Cooldown File

 
{
  "mcwfurnitures:acacia_bookshelf": 180,
  "mcwfurnitures:acacia_drawer": 120,
  "minecraft:barrel": 90
}

(cooldown.json)

  • 180 = loot respawns after 3 minutes
  • 120 = loot respawns after 2 minutes
  • 90 = loot respawns after 1.5 minutes

This system prevents infinite farming and allows balanced, immersive gameplay.


🎯 Use Cases

  • 🧟 Apocalypse / zombie survival servers
  • 🏹 RPG and adventure maps
  • 🏠 Furniture mods with functional storage loot
  • 🌍 Custom survival experiences
  • 🛠 Modpacks with controlled loot economy

🧠 Design Philosophy

Powerful customization with zero coding.

LootTable Manager focuses on flexibility, simplicity, and compatibility, making it easy to integrate into any modded Minecraft environment.

Screenshots

Gallery

  • loot table manager
    loot table manager loot table manager
  • image.png
    image.png mcwfurnitures block with custom loot table
  • image.png
    image.png another mcwfurnitures block with custom loot table

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works