
//Set icon item
setIcon(<minecraft:cauldron>)

//Set title String
setTitle("Better Cauldrons")

//Set description String
setDescription("Inspirations adds many improvements to the cauldron as part of this module like an additional recipe system. If an item is dropped into the cauldron, it will try and perform a recipe with the current fluid. This allows automation using a dropper to add items and a hopper or collector to remove the result.")

//Add a parent advancement. The syntax is "modid:folder/path/to/the/advancement/then/filename"
addParent("triumph:inspirations/recipe_module")

//Adds criteria named "hasFlint" with the trigger type "minecraft:inventory_changed". This function returns the criteria as an object
criteria = addCriteria("hasFlint", "minecraft:inventory_changed")

//Adds the required item for the criteria. This is the item that needs to be in the player inventory.
criteria.addItem(<minecraft:cauldron>)

setRequirements("any")
setPos(-126,76)