
//Set icon item
setIcon(<clickmachine:auto_clicker>)

//Set title String
setTitle("Auto Clicker")

//Set description String
setDescription("This nifty device can hit the walls for you")

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

//Set the position
setPos(-101,-40)

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

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

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