ReadonlydimensionReadonlyisReadonlyisReadonly BetaisReadonlyisReadonlyisReadonlylocalizationReadonlylocationReadonlypermutationReadonlytypeReadonlytypeReadonlyxReadonlyyReadonlyzThe type of liquid this function should be called for.
Whether this block is removed when touched by liquid.
The type of liquid this function should be called for.
Whether this block can have a liquid placed over it.
BetaBlock type or block permutation to check placement for.
OptionalfaceToPlaceOn: DirectionOptional specific face of this block to check placement against.
Returns true if the block type or permutation can be
placed on this block, else false.
The identifier of the component (e.g., 'minecraft:inventory'). If no namespace prefix is specified, 'minecraft:' is assumed. Available component IDs are those in the BlockComponentTypes enum and custom component IDs registered with the BlockComponentRegistry.
Returns the component if it exists on the block, otherwise undefined.
Optionalamount: numberNumber of instances of this block to place in the item stack. Defaults to: 1
OptionalwithData: booleanWhether additional data facets of the item stack are included. Defaults to: false
An itemStack with the specified amount of items and data. Returns undefined if block type is incompatible.
World mutationThe brightness level on the block.
World mutationThe brightness level on the block.
Tag to check for.
Returns true if the permutation of this block has the tag,
else false.
import { DimensionLocation } from "@minecraft/server";
function checkBlockTags(log: (message: string, status?: number) => void, targetLocation: DimensionLocation) {
// Fetch the block
const block = targetLocation.dimension.getBlock(targetLocation);
// check that the block is loaded
if (block) {
log(`Block is dirt: ${block.hasTag("dirt")}`);
log(`Block is wood: ${block.hasTag("wood")}`);
log(`Block is stone: ${block.hasTag("stone")}`);
}
}
The type of liquid this function should be called for.
Whether this block stops liquid from flowing.
Whether liquid can flow into the block from the provided direction, or flow out from the provided direction when liquid is placed into it with a bucket
The type of liquid this function should be called for.
Whether this block is removed and spawns its item when touched by liquid.
Block type identifier to match this API against.
Optionalstates: Record<string, boolean | number | string>Optional set of block states to test this block against.
Returns true if the block matches the specified criteria.
World mutationPermutation that contains a set of property states for the Block.
World mutationIdentifier of the type of block to apply - for example, minecraft:powered_repeater.
Beta World mutationPermutation that contains a set of property states for the Block.
Returns true if the block permutation data was
successfully set, else false.
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.