Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers

IEntityAnimal

An Animal.

Importing the package

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.
import crafttweaker.entity.IEntityAnimal;

Extending IEntityAgeable

IEntityAnimal extends IEntityAgeable. That means all functions available to IEntities also are available to IEntityAnimal.

Methods

ZenGetters/Setters

ZenGetterType
ZenGetter
loveCause
Type
IPlayer (Can be null!)
ZenGetter
isInLove
Type
bool

ZenMethods

check if an item can be used to breed the animal

Method expects an IItemStack.
Returns a bool.

script.zs
entAnObj.isBreedingItem(IItemStack itemStack);

Set or Reset in love

First method expects an optional IPlayer object, second nothing.
Returns nothing.

script.zs
entAnObj.setInLove(@Optional IPlayer player);
entAnObj.resetInLove();

Check if another animal can mate with this one.

Method expects an IEntityAnimal object.
Returns a bool.

script.zs
entAnObj.canMateWith(IEntityAnimal other);