forked from minetest-mods/mesecons
Implement the other suggestions.
This commit is contained in:
parent
cbe6b4f7be
commit
cf37e5e439
|
@ -4,7 +4,8 @@ minetest.register_node("jeija:wall_button_off", {
|
||||||
tile_images = {"jeija_wall_button_off.png"},
|
tile_images = {"jeija_wall_button_off.png"},
|
||||||
inventory_image = "jeija_wall_button_off.png",
|
inventory_image = "jeija_wall_button_off.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
wall_mounted = true,
|
paramtype2 = "wallmounted",
|
||||||
|
legacy_wallmounted = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "wallmounted",
|
type = "wallmounted",
|
||||||
|
@ -16,7 +17,8 @@ minetest.register_node("jeija:wall_button_on", {
|
||||||
tile_images = {"jeija_wall_button_on.png"},
|
tile_images = {"jeija_wall_button_on.png"},
|
||||||
inventory_image = "jeija_wall_button_on.png",
|
inventory_image = "jeija_wall_button_on.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
wall_mounted = true,
|
paramtype2 = "wallmounted",
|
||||||
|
legacy_wallmounted = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "wallmounted",
|
type = "wallmounted",
|
||||||
|
|
|
@ -60,7 +60,8 @@ end
|
||||||
|
|
||||||
minetest.register_node("jeija:movestone", {
|
minetest.register_node("jeija:movestone", {
|
||||||
tile_images = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"},
|
tile_images = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"},
|
||||||
paramtype = "facedir_simple",
|
paramtype2 = "facedir",
|
||||||
|
legacy_facedir = true,
|
||||||
material = minetest.digprop_stonelike(0.8),
|
material = minetest.digprop_stonelike(0.8),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -167,7 +168,8 @@ end)
|
||||||
minetest.register_node("jeija:sticky_movestone", {
|
minetest.register_node("jeija:sticky_movestone", {
|
||||||
tile_images = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"},
|
tile_images = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"},
|
||||||
inventory_image = minetest.inventorycube("jeija_sticky_movestone.png", "jeija_movestone_side.png", "jeija_movestone_side.png"),
|
inventory_image = minetest.inventorycube("jeija_sticky_movestone.png", "jeija_movestone_side.png", "jeija_movestone_side.png"),
|
||||||
paramtype = "facedir_simple",
|
paramtype2 = "facedir",
|
||||||
|
legacy_facedir = true,
|
||||||
material = minetest.digprop_stonelike(0.8),
|
material = minetest.digprop_stonelike(0.8),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,8 @@ minetest.register_node("jeija:mesecon_torch_off", {
|
||||||
inventory_image = "jeija_torches_off.png",
|
inventory_image = "jeija_torches_off.png",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
wall_mounted = true,
|
paramtype2 = "wallmounted",
|
||||||
|
legacy_wallmounted = true,
|
||||||
material = minetest.digprop_constanttime(0.5),
|
material = minetest.digprop_constanttime(0.5),
|
||||||
drop = '"jeija:mesecon_torch_on" 1',
|
drop = '"jeija:mesecon_torch_on" 1',
|
||||||
})
|
})
|
||||||
|
@ -26,7 +27,8 @@ minetest.register_node("jeija:mesecon_torch_on", {
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
wall_mounted = true,
|
paramtype2 = "wallmounted",
|
||||||
|
legacy_wallmounted = true,
|
||||||
material = minetest.digprop_constanttime(0.5),
|
material = minetest.digprop_constanttime(0.5),
|
||||||
light_source = LIGHT_MAX-5,
|
light_source = LIGHT_MAX-5,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user