forked from Mirrorlandia_minetest/mesecons
new nodeboxes+textures for isolated mesecons
This commit is contained in:
parent
78fdedc880
commit
11f91bfdd6
@ -1,13 +1,52 @@
|
|||||||
minetest.register_node("mesecons_isolated:isolated_on", {
|
minetest.register_node("mesecons_isolated:isolated_on", {
|
||||||
|
drawtype = "nodebox",
|
||||||
description = "isolated mesecons",
|
description = "isolated mesecons",
|
||||||
tiles = {"default_stone.png"},
|
tiles = {
|
||||||
|
"jeija_isolated_wire_sides.png",
|
||||||
|
"jeija_isolated_wire_sides.png",
|
||||||
|
"jeija_isolated_wire_ends_on.png",
|
||||||
|
"jeija_isolated_wire_ends_on.png",
|
||||||
|
"jeija_isolated_wire_sides.png",
|
||||||
|
"jeija_isolated_wire_sides.png"
|
||||||
|
},
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
stack_max = 99,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -16/32-0.001, -19/32, -5/32, 16/32+0.001, -11/32, 5/32 }
|
||||||
|
},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
|
||||||
|
},
|
||||||
groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1},
|
groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1},
|
||||||
drop = "mesecons_isolated:isolated_off",
|
drop = "mesecons_isolated:isolated_off",
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("mesecons_isolated:isolated_off", {
|
minetest.register_node("mesecons_isolated:isolated_off", {
|
||||||
|
drawtype = "nodebox",
|
||||||
description = "isolated mesecons",
|
description = "isolated mesecons",
|
||||||
tiles = {"default_wood.png"},
|
tiles = {
|
||||||
|
"jeija_isolated_wire_sides.png",
|
||||||
|
"jeija_isolated_wire_sides.png",
|
||||||
|
"jeija_isolated_wire_ends_off.png",
|
||||||
|
"jeija_isolated_wire_ends_off.png",
|
||||||
|
"jeija_isolated_wire_sides.png",
|
||||||
|
"jeija_isolated_wire_sides.png"
|
||||||
|
},
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
stack_max = 99,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -16/32-0.001, -19/32, -5/32, 16/32+0.001, -11/32, 5/32 }
|
||||||
|
},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = { -16/32-0.001, -17/32, -3/32, 16/32+0.001, -13/32, 3/32 }
|
||||||
|
},
|
||||||
groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1, not_in_creative_inventory = 1},
|
groups = {dig_immediate = 3, mesecon = 3, mesecon_conductor_craftable=1, not_in_creative_inventory = 1},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
BIN
mesecons_textures/textures/jeija_isolated_wire_ends_off.png
Normal file
BIN
mesecons_textures/textures/jeija_isolated_wire_ends_off.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 213 B |
BIN
mesecons_textures/textures/jeija_isolated_wire_ends_on.png
Normal file
BIN
mesecons_textures/textures/jeija_isolated_wire_ends_on.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 211 B |
BIN
mesecons_textures/textures/jeija_isolated_wire_sides.png
Normal file
BIN
mesecons_textures/textures/jeija_isolated_wire_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 200 B |
Loading…
Reference in New Issue
Block a user