
//Set the icon item
setIcon(<pyrotech:brick_kiln>)

//Set the title String
setTitle("Industrial Assembly")

//Set the description String
setDescription("Craft each brick combustion machine")

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

//Set the position
setPos(206,47)

//Hide the connection lines, so I can have a pretty shape
hideLines(false)

//Adds criteria named "crafted" with the trigger type "triumph:player_crafted_item". This function returns the criteria as an object
criteria = addCriteria("crafted", "triumph:player_crafted_item")

//Sets the item for the criteria. This is the item that needs to be crafted.
criteria.setItem(<pyrotech:brick_kiln>)
criteria.setItem(<pyrotech:brick_oven>)
criteria.setItem(<pyrotech:brick_sawmill>)
criteria.setItem(<pyrotech:brick_crucible>)

//By not setting anything about requirements here, all criteria are automatically required