Package net.glowstone.block.blocktype
Class BlockStem
java.lang.Object
net.glowstone.block.itemtype.ItemType
net.glowstone.block.blocktype.BlockType
net.glowstone.block.blocktype.BlockNeedsAttached
net.glowstone.block.blocktype.BlockCrops
net.glowstone.block.blocktype.BlockStem
- All Implemented Interfaces:
IBlockGrowable
-
Nested Class Summary
Nested classes/interfaces inherited from class net.glowstone.block.itemtype.ItemType
ItemType.Context -
Field Summary
Fields inherited from class net.glowstone.block.blocktype.BlockType
ADJACENT, drops, placeSound, SIDES, soundGroup -
Constructor Summary
ConstructorsConstructorDescriptionBlockStem(org.bukkit.Material plantType) Creates a block type for a stem whose fruit is horizontally adjacent (pumpkin or melon). -
Method Summary
Modifier and TypeMethodDescriptionbooleancanGrowWithChance(GlowBlock block) Called to check if the block will effectively grow.booleancanPlaceAt(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace against) Check whether the block can be placed at the given location.booleanCalled to check if this block can perform random tick updates.@NotNull Collection<org.bukkit.inventory.ItemStack>Get the items that will be dropped by digging the block.voidgrow(GlowPlayer player, GlowBlock block) Called to grow a growable block.booleanisFertilizable(GlowBlock block) Called to check if a block can be fertilized.voidupdateBlock(GlowBlock block) Called when this block needs to be updated.Methods inherited from class net.glowstone.block.blocktype.BlockCrops
getGrowthRateModifierMethods inherited from class net.glowstone.block.blocktype.BlockNeedsAttached
canAttachTo, dropMe, getAttachedFace, onNearBlockChanged, updatePhysicsAfterEventMethods inherited from class net.glowstone.block.blocktype.BlockType
afterDestroy, afterPlace, blockDestroy, blockInteract, canAbsorb, canOverride, createBlockEntity, getCastedBlockData, getMinedDrops, getOppositeBlockFace, getPlaceAs, getPlaceSound, getPulseTickSpeed, getSoundGroup, isPulseOnce, leftClickBlock, onBlockChanged, onEntityStep, onRedstoneUpdate, placeBlock, receivePulse, requestPulse, rightClickBlock, setDrops, setPlaceSound, updatePhysics, warnMaterialDataMethods inherited from class net.glowstone.block.itemtype.ItemType
getContext, getMaterial, getMaterials, getMaxStackSize, rightClickAir, setMaterial, setMaxStackSize, setPlaceAs, setPlaceAs, toString
-
Constructor Details
-
BlockStem
public BlockStem(org.bukkit.Material plantType) Creates a block type for a stem whose fruit is horizontally adjacent (pumpkin or melon).- Parameters:
plantType- the plant type.
-
-
Method Details
-
canPlaceAt
Description copied from class:BlockTypeCheck whether the block can be placed at the given location.- Overrides:
canPlaceAtin classBlockCrops- Parameters:
player- The player who placed the block.block- The location the block is being placed at.against- The face the block is being placed against.- Returns:
- Whether the placement is valid.
-
getDrops
@NotNull public @NotNull Collection<org.bukkit.inventory.ItemStack> getDrops(GlowBlock block, org.bukkit.inventory.ItemStack tool) Description copied from class:BlockTypeGet the items that will be dropped by digging the block.- Overrides:
getDropsin classBlockCrops- Parameters:
block- The block being dug.tool- The tool used ornullif fists or no tool was used.- Returns:
- The drops that should be returned.
-
isFertilizable
Description copied from interface:IBlockGrowableCalled to check if a block can be fertilized.- Specified by:
isFertilizablein interfaceIBlockGrowable- Overrides:
isFertilizablein classBlockCrops- Parameters:
block- the targeted block to fertilize- Returns:
- True if the block can be fertilized.
-
canGrowWithChance
Description copied from interface:IBlockGrowableCalled to check if the block will effectively grow.- Specified by:
canGrowWithChancein interfaceIBlockGrowable- Overrides:
canGrowWithChancein classBlockCrops- Parameters:
block- the targeted block to grow- Returns:
- True if the block will grow.
-
canTickRandomly
public boolean canTickRandomly()Description copied from class:BlockTypeCalled to check if this block can perform random tick updates.- Overrides:
canTickRandomlyin classBlockCrops- Returns:
- Whether this block updates on tick.
-
grow
Description copied from interface:IBlockGrowableCalled to grow a growable block.- Specified by:
growin interfaceIBlockGrowable- Overrides:
growin classBlockCrops- Parameters:
player- the player who triggered the growth, this can be null if the growth is natural or by plugin sourceblock- the targeted block to grow
-
updateBlock
Description copied from class:BlockTypeCalled when this block needs to be updated.- Overrides:
updateBlockin classBlockCrops- Parameters:
block- The block that needs an update
-