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();
이름TypeHas GetterHas SetterDescription
이름
commandString
Type
string
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
name
Type
string
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
requestedItems
Type
Set<ItemDefinition>
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
secondaryPoi
Type
Set<Block>
Has Getter
true
Has Setter
false
Description
No Description Provided
이름
workSound
Type
SoundEvent
Has Getter
true
Has Setter
false
Description
No Description Provided