Skip to content

Mixing Recipes

Mixing recipes are used to mix items in the Cauldron.

Properties


processingTime int

The time required to complete the mixing process.

xp float

The experience points (XP) awarded when this recipe is completed.

results list<Result>

A list of possible results produced by the mixing process.

ingredients list<Ingredient>

A list of ingredients required for the mixing process. See Ingredient settings.

fluidRequirement FluidRequirement optional

Optional fluid requirements for the mixing process.

campfireRequirement CampfireRequirement optional

Optional campfire requirements for the mixing process.

hocon
type = mixing
xp = 2
processingTime = 400

ingredients = [
  {
    // Ingredient settings
  },
  // ... more ingredients ...
]

results = [
  {
    // Result settings
  },
  // ... more results ...
]

fluidRequirement { }

campfireRequirement { }

Fluid Requirement FluidRequirement

Defines the fluid requirements for the mixing process.

Properties


lava boolean optional

Whether lava is required.

water boolean optional

Whether water is required.

level int optional

The required fluid level.

hocon
lava = false
water = true
level = 10

Campfire Requirement CampfireRequirement

Defines the campfire requirements for the mixing process.

Properties


soulCampfire boolean optional

Whether a soul campfire is required.

normalCampfire boolean optional

Whether a normal campfire is required.

signalFire boolean optional

Whether a signal fire is required.

hocon
soulCampfire = false
normalCampfire = false
signalFire = true

Example