1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 06:11:47 +02:00

Added new default:ladder_obsidian and changed lavatemple:ladder

Added new default:ladder_obsidian
Changed lavatemple:ladder  walkable=true, drawtype=nodebox, added new texture inv and changed texture
This commit is contained in:
2015-04-07 00:40:35 +02:00
parent 79ed0ecebe
commit 55d75b175b
9 changed files with 44 additions and 7 deletions

View File

@ -633,6 +633,15 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "default:ladder_obsidian 4",
recipe = {
{"default:obsidianbrick", "", "default:obsidianbrick"},
{"default:obsidianbrick", "default:obsidianbrick", "default:obsidianbrick"},
{"default:obsidianbrick", "", "default:obsidianbrick"}
}
})
minetest.register_craft({
output = "maptools:superapple",
type = "shapeless",

View File

@ -742,6 +742,27 @@ minetest.register_node("default:ladder", {
sounds = default.node_sound_wood_defaults(),
})
minetest.register_node("default:ladder_obsidian", {
description = "Ladder Obsidian",
drawtype = "nodebox",
tiles = {"default_ladder_obsidian.png"},
inventory_image = "default_ladder_obsidian_inv.png",
wield_image = "default_ladder_obsidian_inv.png",
paramtype = "light",
sunlight_propagates = true,
paramtype2 = "wallmounted",
climbable = true,
node_box = {
type = "wallmounted",
wall_top = {-0.375, 0.4375, -0.5, 0.375, 0.5, 0.5},
wall_bottom = {-0.375, -0.5, -0.5, 0.375, -0.4375, 0.5},
wall_side = {-0.5, -0.5, -0.375, -0.4375, 0.5, 0.375},
},
selection_box = {type = "wallmounted"},
groups = {cracky = 1},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("default:wood", {
description = "Wooden Planks",
tiles = {"default_wood.png"},

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B