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
Copy
import crafttweaker.api.villager.VillagerProfession;

Name: getName

Return Type: string

ZenScript
Copy
// VillagerProfession.getName() as string

myVillagerProfession.getName();

Link to getRequestedItems

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();
NameTypeHas GetterHas Setter
Name
commandString
Type
string
Has Getter
true
Has Setter
false
Name
name
Type
string
Has Getter
true
Has Setter
false
Name
requestedItems
Type
Set<ItemDefinition>
Has Getter
true
Has Setter
false
Name
secondaryPoi
Type
Set<Block>
Has Getter
true
Has Setter
false
Name
workSound
Type
SoundEvent?
Has Getter
true
Has Setter
false