public class PlantRegrowth extends PlantAbility
| Constructor and Description |
|---|
PlantRegrowth(org.bukkit.entity.Player player,
org.bukkit.block.Block block) |
| Modifier and Type | Method and Description |
|---|---|
org.bukkit.block.Block |
getBlock() |
long |
getCooldown() |
byte |
getData() |
org.bukkit.Location |
getLocation()
Specifies the Location of the ability, which may be slightly inaccurate
depending on the Ability implementation.
|
java.lang.String |
getName()
The name of the ability is used for commands such as /bending
display and /bending help.
|
long |
getRegrowTime() |
long |
getTime() |
org.bukkit.Material |
getType() |
boolean |
isHarmlessAbility()
Determines if this ability is considered harmless against other players.
|
boolean |
isHiddenAbility()
A hidden ability is an ability that should not be shown by commands such
as /bending display and /bending help.
|
boolean |
isSneakAbility()
Determines if this ability uses the
PlayerToggleSneakEvent as a
controlling mechanism. |
void |
progress()
Causes the ability to be updated.
|
void |
remove()
Causes this CoreAbility instance to be removed, and
Ability.progress()
will no longer be called every tick. |
void |
setBlock(org.bukkit.block.Block block) |
void |
setData(byte data) |
void |
setRegrowTime(long regrowTime) |
void |
setTime(long time) |
void |
setType(org.bukkit.Material type) |
getElement, getParentAbilitycanAutoSource, canDynamicSource, getIceSourceBlock, getIceSourceBlock, getNightFactor, getNightFactor, getNightFactor, getNightFactor, getPlantSourceBlock, getPlantSourceBlock, getPlantSourceBlock, getWaterSourceBlock, isAdjacentToFrozenBlock, isExplosiveAbility, isIcebendable, isIcebendable, isIcebendable, isIcebendable, isIgniteAbility, isLeaves, isLeaves, isPlantbendable, isPlantbendable, isPlantbendable, isPlantbendable, isSnow, isSnow, isWaterbendable, isWaterbendable, isWaterbendable, isWaterbendable, playFocusWaterEffect, playIcebendingSound, playPlantbendingSound, playWaterbendingSound, removeWaterSpouts, removeWaterSpouts, stopBendinggetTransparentMaterial, getTransparentMaterialSet, isDay, isEarth, isEarth, isFullMoon, isIce, isIce, isLava, isLava, isLunarEclipse, isMeltable, isMetal, isMetal, isMetalBlock, isNegativeEffect, isNeutralEffect, isNight, isPlant, isPlant, isPositiveEffect, isSand, isSand, isSolarEclipse, isSozinsComet, isTransparent, isTransparent, isTransparent, isUndead, isWater, isWatergetAbilities, getAbilities, getAbilities, getAbilitiesByElement, getAbility, getAbility, getBendingPlayer, getConfig, getDebugString, getDescription, getId, getLanguageConfig, getPlayer, getPlayers, getStartTime, hasAbility, isEnabled, isRemoved, isStarted, progressAll, registerAbilities, registerAddonAbilities, registerPluginAbilities, removeAll, startpublic PlantRegrowth(org.bukkit.entity.Player player,
org.bukkit.block.Block block)
public void remove()
CoreAbilityAbility.progress()
will no longer be called every tick. If this method is overridden then
the new method must call super.remove().
Causes the ability to be removed from existence.remove in interface Abilityremove in class CoreAbilityCoreAbility.isRemoved()public void progress()
Abilitypublic java.lang.String getName()
AbilityBendingPlayer.addCooldown(Ability), therefore if two abilities
have the same name they will also share cooldowns. If two classes share
the same name (SurgeWall/SurgeWave) but need to have independent
cooldowns, then BendingPlayer.addCooldown(String, long) should be
called explicitly.public org.bukkit.Location getLocation()
AbilityTorrentWave could not be fully specified by a single location,
while it is possible for an EarthBlast. The location is useful
for making sure that the player is currently in the same world as the
ability.BendingPlayer.canBend(CoreAbility)public boolean isHiddenAbility()
AbilityisHiddenAbility in interface AbilityisHiddenAbility in class CoreAbilitypublic long getCooldown()
public boolean isSneakAbility()
AbilityPlayerToggleSneakEvent as a
controlling mechanism. Currently WaterPassive will not work while
the player has a sneak ability bound.public boolean isHarmlessAbility()
Abilitypublic byte getData()
public void setData(byte data)
public long getTime()
public void setTime(long time)
public long getRegrowTime()
public void setRegrowTime(long regrowTime)
public org.bukkit.Material getType()
public void setType(org.bukkit.Material type)
public org.bukkit.block.Block getBlock()
public void setBlock(org.bukkit.block.Block block)