Package wtf.choco.arrows.arrow
Class AlchemicalArrowChain
java.lang.Object
wtf.choco.arrows.api.AlchemicalArrow
wtf.choco.arrows.arrow.ConfigurableAlchemicalArrow
wtf.choco.arrows.arrow.AlchemicalArrowChain
public class AlchemicalArrowChain extends ConfigurableAlchemicalArrow
-
Constructor Summary
Constructors Constructor Description AlchemicalArrowChain(AlchemicalArrows plugin) -
Method Summary
Modifier and Type Method Description voidonHitEntity(AlchemicalArrowEntity arrow, org.bukkit.entity.Entity entity)Called when the arrow hits an entity (this excludes Players.voidonHitPlayer(AlchemicalArrowEntity arrow, org.bukkit.entity.Player player)Called when the arrow hits a playervoidtick(AlchemicalArrowEntity arrow, org.bukkit.Location location)Called 20 times every second.Methods inherited from class wtf.choco.arrows.arrow.ConfigurableAlchemicalArrow
getDisplayName, getItem, getKey, onShootFromPlayer, reloadMethods inherited from class wtf.choco.arrows.api.AlchemicalArrow
createItemStack, createItemStack, createNewArrow, equals, getProperties, hashCode, hitEntityEventHandler, hitGroundEventHandler, matchesItem, onHitBlock, onShootFromBlockSource, onShootFromSkeleton, shootEventHandler
-
Constructor Details
-
AlchemicalArrowChain
-
-
Method Details
-
tick
Description copied from class:AlchemicalArrowCalled 20 times every second. This method is intended for displaying particles around the arrow, performing tasks whilst the arrow is still in the world, etc.- Overrides:
tickin classAlchemicalArrow- Parameters:
arrow- the alchemical arrow entity instancelocation- the arrow's current location at this tick
-
onHitPlayer
Description copied from class:AlchemicalArrowCalled when the arrow hits a player- Overrides:
onHitPlayerin classAlchemicalArrow- Parameters:
arrow- the alchemical arrow entity instanceplayer- the player damaged by the arrow
-
onHitEntity
Description copied from class:AlchemicalArrowCalled when the arrow hits an entity (this excludes Players. For Players, seeAlchemicalArrow.onHitPlayer(AlchemicalArrowEntity, Player))- Overrides:
onHitEntityin classAlchemicalArrow- Parameters:
arrow- the alchemical arrow entity instanceentity- the entity damaged by the arrow
-