AbstractVillager
Link to abstractvillager
Diese Klasse importieren
Link to diese-klasse-importieren
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.entity.type.villager.AbstractVillager;
Implemented Interfaces
Link to implemented-interfaces
AbstractVillager implements the following interfaces. That means all methods defined in these interfaces are also available in AbstractVillager
Methoden
Link to methoden
Name: getUnhappyCounter
Return Type: int
ZenScript Copy// AbstractVillager.getUnhappyCounter() as int
myAbstractVillager.getUnhappyCounter();
Name: isTrading
Return Type: boolean
ZenScript Copy// AbstractVillager.isTrading() as boolean
myAbstractVillager.isTrading();
Name: playCelebrateSound
ZenScript Copy// AbstractVillager.playCelebrateSound()
myAbstractVillager.playCelebrateSound();
Name: setUnhappyCounter
ZenScript CopyAbstractVillager.setUnhappyCounter(unhappyCounter as int)
Parameter | Type |
---|---|
Parameter unhappyCounter | Type int |
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name isTrading | Type boolean | Has Getter true | Has Setter false |
Name unhappyCounter | Type int | Has Getter true | Has Setter true |