Home Commands Examples Getting Started With Scripts Global Keywords
BracketDumpers BracketHandlers BracketValidators ResourceLocationBracketHandler

VillagerProfession

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.

script.zs
import crafttweaker.api.villager.VillagerProfession;

Methods

Return Type: string

script.zs
// VillagerProfession.getName() as string
myVillagerProfession.getName();

Return Type: Set<ItemDefinition>

script.zs
// VillagerProfession.getRequestedItems() as Set<ItemDefinition>
myVillagerProfession.getRequestedItems();

Return Type: Set<Block>

script.zs
// VillagerProfession.getSecondaryPoi() as Set<Block>
myVillagerProfession.getSecondaryPoi();

Return Type: SoundEvent?

script.zs
// VillagerProfession.getWorkSound() as SoundEvent?
myVillagerProfession.getWorkSound();

Properties

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