build_hyperboloid
Construct hyperboloid structures like cooling towers or hourglasses in Minecraft Bedrock by specifying base and waist radii, height, and center coordinates. Customize material, hollow/solid design, and axis orientation.
Instructions
Build HYPERBOLOID: cooling tower, hourglass, nuclear tower. Requires: centerX,centerY,centerZ,baseRadius,waistRadius,height. Optional: axis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | Build action to perform | build |
axis | No | Hyperboloid axis direction: x (east-west), y (up-down), z (north-south) | y |
baseRadius | Yes | Radius at the base in blocks. Small: 5-8, Medium: 10-15, Large: 20-30 | |
centerX | Yes | Center X coordinate (east-west position of hyperboloid base center) | |
centerY | Yes | Center Y coordinate (height/vertical position of hyperboloid base, typically 64-100) | |
centerZ | Yes | Center Z coordinate (north-south position of hyperboloid base center) | |
height | Yes | Total height of the hyperboloid in blocks. Small: 10-15, Medium: 20-30, Large: 40-60 | |
hollow | No | Make it hollow (true) for tower shell, or solid (false) for full hyperboloid | |
material | No | Block type to build with (e.g. stone, glass, wool, concrete, etc.) | minecraft:stone |
waistRadius | Yes | Radius at the narrowest point (waist) in blocks. Should be smaller than baseRadius |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"default": "build",
"description": "Build action to perform",
"enum": [
"build"
],
"type": "string"
},
"axis": {
"default": "y",
"description": "Hyperboloid axis direction: x (east-west), y (up-down), z (north-south)",
"enum": [
"x",
"y",
"z"
],
"type": "string"
},
"baseRadius": {
"description": "Radius at the base in blocks. Small: 5-8, Medium: 10-15, Large: 20-30",
"maximum": 50,
"minimum": 3,
"type": "number"
},
"centerX": {
"description": "Center X coordinate (east-west position of hyperboloid base center)",
"type": "number"
},
"centerY": {
"description": "Center Y coordinate (height/vertical position of hyperboloid base, typically 64-100)",
"type": "number"
},
"centerZ": {
"description": "Center Z coordinate (north-south position of hyperboloid base center)",
"type": "number"
},
"height": {
"description": "Total height of the hyperboloid in blocks. Small: 10-15, Medium: 20-30, Large: 40-60",
"maximum": 100,
"minimum": 4,
"type": "number"
},
"hollow": {
"default": false,
"description": "Make it hollow (true) for tower shell, or solid (false) for full hyperboloid",
"type": "boolean"
},
"material": {
"default": "minecraft:stone",
"description": "Block type to build with (e.g. stone, glass, wool, concrete, etc.)",
"type": "string"
},
"waistRadius": {
"description": "Radius at the narrowest point (waist) in blocks. Should be smaller than baseRadius",
"maximum": 30,
"minimum": 1,
"type": "number"
}
},
"required": [
"centerX",
"centerY",
"centerZ",
"baseRadius",
"waistRadius",
"height"
],
"type": "object"
}