Module:LootChest/chests/doc

From TibiaCraft
Revision as of 21:19, 4 October 2025 by Root (talk | contribs) (Created page with "{{documentation header}} <!-- Documentation here --> This module is a sub-module of Module:LootChest. It's sole purpose is to output loot table data from across the game. == Usage == Generally, it should only be edited if a new loot table is added, in which case, the raw <code>json</code> data should be copied over directly as follows: Original module: <pre> poolsBedrockUpcoming = {} } } -- end of file </pre> Module after adding new loot table: <pre>...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This is the documentation page for Module:LootChest/chests

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

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