Protected
constructorReadonly
dimensionReturns the dimension that the block is within.
Returns or sets whether this block has a liquid on it.
Readonly
locationCoordinates of the specified block.
Readonly
permutationAdditional block configuration data that describes the block.
This property can throw when used.
Readonly
typeGets the type of block.
This property can throw when used.
Readonly
typeReadonly
xX coordinate of the block.
Readonly
yY coordinate of the block.
Readonly
zZ coordinate of the block.
Identifier of the component. If a namespace is not specified, minecraft: is assumed.
Returns the component object if it is present on the particular block.
Gets additional configuration properties (a component) for specific capabilities of particular blocks - for example, an inventory component of a chest block.
This function can throw errors.
Tag to check for.
Returns true
if the permutation of this block has the tag,
else false
.
Checks to see if the permutation of this block has a specific tag.
This function can throw errors.
check_block_tags.js
import { world, BlockLocation } from "mojang-minecraft";
// Fetch the block
const block = world.getDimension("overworld").getBlock(new BlockLocation(1, 2, 3));
console.log(`Block is dirt: ${block.hasTag("dirt")}`);
console.log(`Block is wood: ${block.hasTag("wood")}`);
console.log(`Block is stone: ${block.hasTag("stone")}`);
Permutation that contains a set of property states for the Block.
Sets the block in the dimension to the state of the permutation.
This function can throw errors.
Identifier of the type of block to apply - for example, minecraft:powered_repeater.
Sets the type of block.
This function can throw errors.
Represents a block in a dimension. A block represents a unique X, Y, and Z within a dimension and get/sets the state of the block at that location. This type was significantly updated in version 1.17.10.21.