Project home for New Alterlite - A new locaria community pack focused on a different approach of minecrafting.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
NewAlterlite/config/triumph/_example_script_/totemic/example_ceremony_performed.txt

27 lines
859 B

//This tells the script parser that the script requires Totemic. If the mod is not loaded, the script will be canceled.
Parser.addRequiredMod("totemic")
//Set the icon item
setIcon(<totemic:buffalo_items>)
//Set the title String
setTitle("Ceremony")
//Set the description String
setDescription("Perform the buffalo dance ceremony")
//Add a parent advancement. The syntax is "modid:folder/path/to/the/advancement/then/filename"
addParent("triumph:example/root")
//Set the position
setPos(172,17)
//Hide the connection lines, so I can have a pretty shape
hideLines()
//Adds criteria named "performed" with the trigger type "totemic:perform_ceremony". This function returns the criteria as an object
criteria = addCriteria("performed", "totemic:perform_ceremony")
//Sets the ceremony that must be performed.
criteria.setCeremony("totemic:buffalo_dance")