Module:LootChest/chests/doc

Jump to navigation Jump to search
This is the documentation page. It is transcluded into Module:LootChest/chests. See Template:Documentation for more information.

This module is a sub-module of Module:LootChest. It's sole purpose is to output loot table data from across the game.

Usage[edit source]

Generally, it should only be edited if a new loot table is added, in which case, the raw json data should be copied over directly as follows:

Original module:

        poolsBedrockUpcoming = {}
    }
} -- end of file

Module after adding new loot table:

        poolsBedrockUpcoming = {}
    },
    ["example-loot-table"] = LOOTTABLEDATA -- path/to/loot_table.json
} -- end of file