EnderPearlTeleportEvent
Link to enderpearlteleportevent
The event is not cancelable.
The event does not have a result.
Importing the class
Link to importing-the-class
Importing the class is recommended for events, simply add this line to the top of your script file.
ZenScript Copyimport crafttweaker.neoforge.api.event.entity.teleport.EnderPearlTeleportEvent;
Listening to the event
Link to listening-to-the-event
ZenScript Copyevents.register<crafttweaker.neoforge.api.event.entity.teleport.EnderPearlTeleportEvent>(event => {
println("EnderPearlTeleportEvent ran!");
});
Supertype
Link to supertype
EnderPearlTeleportEvent extends EntityTeleportEvent. That means all methods available in EntityTeleportEvent are also available in EnderPearlTeleportEvent
Implemented Interfaces
Link to implemented-interfaces
EnderPearlTeleportEvent implements the following interfaces. That means all methods defined in these interfaces are also available in EnderPearlTeleportEvent
Properties
Link to properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name attackDamage | Type float | Has Getter true | Has Setter true |
Name hitResult | Type HitResult? | Has Getter true | Has Setter false |
Name pearlEntity | Type ThrownEnderpearl | Has Getter true | Has Setter false |
Name player | Type ServerPlayer | Has Getter true | Has Setter false |