Register acacia/pine wood stairs and slabs

This commit is contained in:
Mat 2014-06-16 02:59:02 +01:00
parent fe1e55fb17
commit 0a51271786
2 changed files with 19 additions and 1 deletions

View File

@ -1,10 +1,12 @@
-- watershed 0.4.1 by paramat
-- watershed 0.4.2 by paramat
-- For latest stable Minetest and back to 0.4.8
-- Depends default bucket
-- License: code WTFPL, textures CC BY-SA
-- watershed:redcobble texture CC BY-SA by brunob.santos
-- watershed:pineling texture CC BY-SA by Splizard
-- acaciawood, pinewood stairs and slabs
-- Parameters
local YMIN = -33000 -- Approximate base of realm stone

View File

@ -636,3 +636,19 @@ minetest.register_craft({
burntime = 60,
replacements = {{"watershed:bucket_lava", "bucket:bucket_empty"}},
})
-- Register stairs and slabs
stairs.register_stair_and_slab("acaciawood", "watershed:acaciawood",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
{"watershed_acaciawood.png"},
"Acaciawood stair",
"Acaciawood slab",
default.node_sound_wood_defaults())
stairs.register_stair_and_slab("pinewood", "watershed:pinewood",
{snappy=2,choppy=2,oddly_breakable_by_hand=2,flammable=3},
{"watershed_pinewood.png"},
"Pinewood stair",
"Pinewood slab",
default.node_sound_wood_defaults())