Add black fence.

master
Sullome 2014-01-29 12:55:55 +04:00
parent 606a3baa24
commit 5d46c4586f
1 changed files with 16 additions and 0 deletions

View File

@ -6,6 +6,22 @@ minetest.register_node("black_brick:brick",{
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("black_brick:fence", {
description = "Black Fence",
drawtype = "fencelike",
tiles = {"black_brick.png"},
--inventory_image = "default_fence.png",
--wield_image = "default_fence.png",
paramtype = "light",
is_ground_content = false,
selection_box = {
type = "fixed",
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
},
groups = {choppy=2,oddly_breakable_by_hand=2},
sounds = default.node_sound_stone_defaults(),
})
stairs.register_stair_and_slab("black_brick", "black_brick:brick",
{cracky=3},
{"black_brick.png"},