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
Nombre | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
Nombre commandString | Type string | Has Getter true | Has Setter false | Description No Description Provided |
Nombre name | Type string | Has Getter true | Has Setter false | Description No Description Provided |
Nombre requestedItems | Type Set<ItemDefinition> | Has Getter true | Has Setter false | Description No Description Provided |
Nombre secondaryPoi | Type Set<Block> | Has Getter true | Has Setter false | Description No Description Provided |
Nombre workSound | Type SoundEvent | Has Getter true | Has Setter false | Description No Description Provided |