
//Set icon item
setIcon(<extrautils2:quarryproxy>)

//Set title String
setTitle("Theoretical Mining Assistants")

//Set description String
setDescription("The Quantum Quarry is the highest tier of mining equipment. In order for it to properly function, it must be surrounded by 6 Quantum Quarry Acutors (One on each block face).")

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

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

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

drawDirectLines(true)

//Set the position
setPos(-129,148)

//Rewards
setRewardExperience(4)