2019-11-26 17:42:50 +00:00
|
|
|
|
|
|
|
minetest.register_node("elepower_wireless:tesseract_frame", {
|
|
|
|
description = "Tesseract Frame",
|
|
|
|
tiles = {
|
|
|
|
"elewireless_tesseract.png",
|
|
|
|
},
|
2021-06-10 10:31:53 +00:00
|
|
|
use_texture_alpha = "clip",
|
2019-11-26 17:42:50 +00:00
|
|
|
groups = {cracky = 3,},
|
|
|
|
drawtype = "nodebox",
|
|
|
|
paramtype = "light",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, -0.3125, -0.3125, 0.5}, -- NodeBox1
|
|
|
|
{0.3125, -0.5, -0.5, 0.5, -0.3125, 0.5}, -- NodeBox2
|
|
|
|
{-0.5, 0.3125, -0.5, -0.3125, 0.5, 0.5}, -- NodeBox3
|
|
|
|
{0.3125, 0.3125, -0.5, 0.5, 0.5, 0.5}, -- NodeBox4
|
|
|
|
{-0.3125, -0.5, -0.5, 0.3125, -0.3125, -0.3125}, -- NodeBox5
|
|
|
|
{-0.3125, -0.5, 0.3125, 0.3125, -0.3125, 0.5}, -- NodeBox6
|
|
|
|
{-0.3125, 0.3125, 0.3125, 0.3125, 0.5, 0.5}, -- NodeBox7
|
|
|
|
{-0.3125, 0.3125, -0.5, 0.3125, 0.5, -0.3125}, -- NodeBox8
|
|
|
|
{-0.5, -0.3125, -0.5, -0.3125, 0.3125, -0.3125}, -- NodeBox9
|
|
|
|
{-0.5, -0.3125, 0.3125, -0.3125, 0.3125, 0.5}, -- NodeBox10
|
|
|
|
{0.3125, -0.5, 0.3125, 0.5, 0.5, 0.5}, -- NodeBox11
|
|
|
|
{0.3125, -0.3125, -0.5, 0.5, 0.3125, -0.3125}, -- NodeBox12
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("elepower_wireless:tesseract", {
|
|
|
|
description = "Tesseract",
|
|
|
|
tiles = {
|
|
|
|
"elewireless_tesseract.png",
|
|
|
|
},
|
|
|
|
groups = {cracky = 3,},
|
|
|
|
drawtype = "nodebox",
|
|
|
|
paramtype = "light",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, -0.3125, -0.3125, 0.5}, -- NodeBox1
|
|
|
|
{0.3125, -0.5, -0.5, 0.5, -0.3125, 0.5}, -- NodeBox2
|
|
|
|
{-0.5, 0.3125, -0.5, -0.3125, 0.5, 0.5}, -- NodeBox3
|
|
|
|
{0.3125, 0.3125, -0.5, 0.5, 0.5, 0.5}, -- NodeBox4
|
|
|
|
{-0.3125, -0.5, -0.5, 0.3125, -0.3125, -0.3125}, -- NodeBox5
|
|
|
|
{-0.3125, -0.5, 0.3125, 0.3125, -0.3125, 0.5}, -- NodeBox6
|
|
|
|
{-0.3125, 0.3125, 0.3125, 0.3125, 0.5, 0.5}, -- NodeBox7
|
|
|
|
{-0.3125, 0.3125, -0.5, 0.3125, 0.5, -0.3125}, -- NodeBox8
|
|
|
|
{-0.5, -0.3125, -0.5, -0.3125, 0.3125, -0.3125}, -- NodeBox9
|
|
|
|
{-0.5, -0.3125, 0.3125, -0.3125, 0.3125, 0.5}, -- NodeBox10
|
|
|
|
{0.3125, -0.5, 0.3125, 0.5, 0.5, 0.5}, -- NodeBox11
|
|
|
|
{0.3125, -0.3125, -0.5, 0.5, 0.3125, -0.3125}, -- NodeBox12
|
|
|
|
{-0.3125, -0.3125, -0.3125, 0.3125, 0.3125, 0.3125}, -- NodeBox13
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|