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

//Set title String
setTitle("Mine some Iron")

//Set description String
setDescription("Mine some iron ore to start getting iron ingots. Watch out for holes into the void!")

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

//Adds criteria named "hasFlint" with the trigger type "minecraft:inventory_changed". This function returns the criteria as an object
criteria = addCriteria("hasIronOre", "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:iron_ore>)

drawDirectLines(true)

//Set the position
setPos(-145,-28)

//Rewards
setRewardExperience(4)