Skip to content

Voline Eat Loot Table Format

SwanX1 edited this page Mar 20, 2021 · 1 revision

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.

All arrays can be empty and can have multiple entries.