VillagerProfession
Link to villagerprofession
Importare la Classe
Link to importare-la-classe
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;
Metodi
Link to metodi
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();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome commandString | Tipo string | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome nome | Tipo string | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome requestedItems | Tipo Set<ItemDefinition> | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome secondaryPoi | Tipo Set<Block> | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome workSound | Tipo SoundEvent | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |