Skip to content

Dolium Handling Recipe

khj xiaogu edited this page Mar 30, 2023 · 1 revision

Dolium Handling Recipe represent a type of recipe that need to put fluid inside dolium and wait for a long time to process. Actual recipe time cost depends on caupona-common config file, adjust StillRecipeTick.

{
  "type": "caupona:dolium",
  "amount": 250,
  "base": "caupona:stock",
  "density": 0.25,
  "fluid": "caupona:fish_soup",
  "container": {
    "item": "minecraft:flower_pot"
  },
  "items": [
    {
      "count": 4,
      "item": {
        "tag": "caupona:garum_fish"
      }
    }
  ],
  "keepInfo": false,
  "output": {
    "type": "forge:nbt",
    "count": 1,
    "item": "caupona:garum_spice_jar",
    "nbt": "{Damage:0}"
  }
}
Param Description
type is dolium handling recipe
amount Amount of fluid required per action, set to 0 for no fluid
base Base condition of stew fluid, remove this for non stew fluid
density Minimum density condition of stew fluid, set to 0 or remove for non stew fluid
fluid Fluid type, remove for no fluid required.
container Container required to do this process.
items Items to put inside the dolium, in a ingredient-count pair. Set count to 0 make it a catalyst
keepInfo Should it copy nbt info from fluid into item? Only required for aspic recipe
output Output item describe in ingredient, ingredient with multiple item would only take the first one

Specially, recipe with no item requirement can also take place in stew pots.