
//Set icon item
setIcon(<railcraft:boiler_tank_pressure_high>)

//Set title String
setTitle("Boiling More Steam")

//Set description String
setDescription("Steam Boilers are multiblock structures that burn liquid or solid fuels in order to produce steam. They are made of a 3x1x3 of either solid fueled of fluid fueld boiler fireboxes, followed by a 3x3x3 of low or high pressure steam boiler tanks. Will cause weird issues if placed over chunk borders. The steel variants of boilers produce more steam then their iron counterparts.")

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

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

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

drawDirectLines(true)

//Set the position
setPos(-71,134)

//Rewards
setRewardExperience(4)