Interface ChemistryTableBlockEntity

ChemistryTable (Chemistry Equipment) with ID = 34.

interface ChemistryTableBlockEntity {
    id: "ChemistryTable";
    isMovable: boolean;
    itemAux?: number;
    itemId?: number;
    itemStack?: number;
    x: number;
    y: number;
    z: number;
}

Hierarchy (view full)

Properties

id

Typed identifier, such as "Chest", "Beacon", etc.

isMovable: boolean

Block Entity will be saved without instantiating new one when transporting (via pistons, commands, etc.).

itemAux?: number

Brewing item data, that will be transpiled into materials, such as 17, etc.

itemId?: number

Brewing item numeric ID, that will be transpiled into materials, such as 583, etc.

itemStack?: number

Brewing item count, that will be transpiled into materials, such as 1, etc.

x: number
y: number
z: number

Copyright © 2024 Nernar. Copyright © 2020 #mineprogramming. Built with ❤ and TypeDoc.