VillagerProfession
Link to villagerprofession
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.villager.VillagerProfession;
Methods
Link to methods
Name: getName
Return Type: string
ZenScript Copy// VillagerProfession.getName() as string
myVillagerProfession.getName();
Name: getRequestedItems
Return Type: Set<ItemDefinition>
ZenScript Copy// VillagerProfession.getRequestedItems() as Set<ItemDefinition>
myVillagerProfession.getRequestedItems();
Name: getSecondaryPoi
Return Type: Set<Block>
ZenScript Copy// VillagerProfession.getSecondaryPoi() as Set<Block>
myVillagerProfession.getSecondaryPoi();
Name: getWorkSound
Return Type: SoundEvent?
ZenScript Copy// VillagerProfession.getWorkSound() as SoundEvent?
myVillagerProfession.getWorkSound();
Properties
Link to properties
이름 | Type | Has Getter | Has Setter |
---|---|---|---|
이름 commandString | Type string | Has Getter true | Has Setter false |
이름 name | Type string | Has Getter true | Has Setter false |
이름 requestedItems | Type Set<ItemDefinition> | Has Getter true | Has Setter false |
이름 secondaryPoi | Type Set<Block> | Has Getter true | Has Setter false |
이름 workSound | Type SoundEvent? | Has Getter true | Has Setter false |