Loot Registry

Quick rating

Community listing page, reviews here may not be monitored by the author.

Loot Registry

No reviews yet

Add custom items to EMILoot display

Mod Loaders
Minecraft

About

Description

There are many mods that add loot to loot table by using loot modifiers that EMILoot unable to parse and doesn't show in its UI. To solve that issue this mod allows you to add custom entries to EMILoot display using datapacks. These entries are just visual edits to EMILoot and doesn't affect real loot tables.

Example datapack can be found here - https://github.com/SaloEater/EmiLootRegistry/tree/main/ExampleDataPack

Currently, loot only can be added and the only available condition is random_chance.

Currently supported conditions:
1) Chance

{
  "type": "random_chance",
  "chance": 0.5
}

2) Location

{
  "type": "location",
  "position": {
    "x": 0,
    "y": 0,
    "z": 0,
  },
  "dimension": "minecraft:the_nether",
  "structure": "minecraft:fortress",
  "biome": "minecraft:taiga",
  "smokey": "false",
  "light": {
    "value": 10
  },
  "light": {
    "min": 1,
    "max": 10
  }
}