AbstractVillager
Link to abstractvillager
导入类
Link to 导入类
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;
已实现的接口
Link to 已实现的接口
AbstractVillager implements the following interfaces. That means all methods defined in these interfaces are also available in AbstractVillager
使用方式
Link to 使用方式
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)
参数 | 类型 |
---|---|
参数 unhappyCounter | 类型 int |
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 isTrading | 类型 布尔值 | 可获得 true | 可设置 false |
名称 unhappyCounter | 类型 int | 可获得 true | 可设置 true |