
//Set icon item
setIcon(<botania:travelbelt>)

//Set title String
setTitle("Making Traveling take Less Time")

//Set description String
setDescription("The Soujourners Sash is a bauble that gives the player faster movement.")

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

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

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

drawDirectLines(true)

//Set the position
setPos(-433,163)

//Rewards
setRewardExperience(4)