EnderPearlTeleportEvent
Link to enderpearlteleportevent
EnderPearlTeleportEvent is fired before an Entity is teleported from a ThrownEnderpearl.
The event is cancelable.
If the event is canceled, the teleport won't happen.
The event does not have a result.
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.event.living.teleport.EnderPearlTeleportEvent;
Extending EntityTeleportEvent
Link to extending-entityteleportevent
EnderPearlTeleportEvent extends EntityTeleportEvent. That means all methods available in EntityTeleportEvent are also available in EnderPearlTeleportEvent
Methods
Link to methods
Name: getAttackDamage
Return Type: float
ZenScript Copy// EnderPearlTeleportEvent.getAttackDamage() as float
myEnderPearlTeleportEvent.getAttackDamage();
Name: getPearlEntity
Return Type: ThrownEnderpearl
ZenScript Copy// EnderPearlTeleportEvent.getPearlEntity() as ThrownEnderpearl
myEnderPearlTeleportEvent.getPearlEntity();
Name: getPlayer
Return Type: invalid
ZenScript Copy// EnderPearlTeleportEvent.getPlayer() as invalid
myEnderPearlTeleportEvent.getPlayer();
Name: setAttackDamage
Return Type: void
ZenScript CopyEnderPearlTeleportEvent.setAttackDamage(attackDamage as float) as void
Parameter | Type | Description |
---|---|---|
Parameter attackDamage | Type float | Description No Description Provided |
Properties
Link to properties
이름 | Type | Has Getter | Has Setter | Description |
---|---|---|---|---|
이름 attackDamage | Type float | Has Getter true | Has Setter true | Description No Description Provided |
이름 pearlEntity | Type ThrownEnderpearl | Has Getter true | Has Setter false | Description No Description Provided |
이름 player | Type invalid | Has Getter true | Has Setter false | Description No Description Provided |