Voline Eat Loot Table Format - infernalstudios/Infernal-Expansion GitHub Wiki
Voline Eat Loot Table Format
Template:
{
"entries": [
{
"accepted_item": "namespace:item",
"returned_items": [
{
"item": "namespace:item",
"amount": 2
}
]
}
]
}
The file must have a root object with the following description:
- Required field
entries
with an array only containing objects of the following description:- Required field
accepted_item
with a string containing an item id. - Required field
returned_items
with an array only containing objects of the following description:- Required field
item
containing an item id. - Required field
amount
containing an integer of the amount of the items dropped.
- Required field
- Required field
All arrays can be empty and can have multiple entries.