This commit is contained in:
Thomas Rudin 2018-08-13 16:06:49 +02:00
parent 7a7af7b9d9
commit 0cc27fe2a9
2 changed files with 20 additions and 1 deletions

View File

@ -6,7 +6,26 @@ local has_elevator_mod = minetest.get_modpath("elevator")
minetest.register_node("jumpdrive:engine", {
description = "Jumpdrive",
tiles = {"jumpdrive.png"},
tiles = {
"jumpdrive.png",
"jumpdrive.png",
"jumpdrive.png",
"jumpdrive.png",
"jumpdrive.png",
"jumpdrive.png"
},
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, -- NodeBox1
{-0.5, 0.25, -0.5, 0.5, 0.5, 0.5}, -- NodeBox2
{-0.1875, -0.1875, -0.1875, 0.1875, 0.1875, 0.1875}, -- NodeBox3
}
},
light_source = 13,
groups = {cracky=3,oddly_breakable_by_hand=3,technic_machine = 1, technic_hv = 1},
drop = "jumpdrive:engine",

BIN
jumpdrive.nbe Normal file

Binary file not shown.