Shapes

Shapes define a list of positions in the formation of a cube, line, sphere, or triangle.

"shape": {
  "type": "lucky:cube",
  "size": [3, 3, 3]
}

This shape defines a 3x3x3 cube.

"shape": {
  "type": "lucky:cube",
  "size": [3, 3, 3],
  "hollow": true
}

This shape defines a hollow 3x3x3 cube.

"shape": {
    "type": "lucky:sphere",
    "size": [3, 3, 3],
    "hollow": true
}

This shape defines a 3x3x3 hollow sphere.

"shape": {
  "type": "lucky:triangle",
  "triangle_type": "side",
  "size": [5, 5, 5],
  "base": 5
}

This shape defines a triangle with a base of 5 blocks,

Last updated