
//Set icon item
setIcon(<mekanism:machineblock:9>)

//Set title String
setTitle("Beginning Ore Trippling")

//Set description String
setDescription("The Enrichment Chamber is a machine that will help triple rare metals by turning them into clumps.")

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

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

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

drawDirectLines(true)

//Set the position
setPos(-229,-59)

//Rewards
setRewardExperience(4)