Register acacia/pine wood stairs and slabs
This commit is contained in:
parent
fe1e55fb17
commit
0a51271786
4
init.lua
4
init.lua
@ -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
|
-- For latest stable Minetest and back to 0.4.8
|
||||||
-- Depends default bucket
|
-- Depends default bucket
|
||||||
-- License: code WTFPL, textures CC BY-SA
|
-- License: code WTFPL, textures CC BY-SA
|
||||||
-- watershed:redcobble texture CC BY-SA by brunob.santos
|
-- watershed:redcobble texture CC BY-SA by brunob.santos
|
||||||
-- watershed:pineling texture CC BY-SA by Splizard
|
-- watershed:pineling texture CC BY-SA by Splizard
|
||||||
|
|
||||||
|
-- acaciawood, pinewood stairs and slabs
|
||||||
|
|
||||||
-- Parameters
|
-- Parameters
|
||||||
|
|
||||||
local YMIN = -33000 -- Approximate base of realm stone
|
local YMIN = -33000 -- Approximate base of realm stone
|
||||||
|
16
nodes.lua
16
nodes.lua
@ -636,3 +636,19 @@ minetest.register_craft({
|
|||||||
burntime = 60,
|
burntime = 60,
|
||||||
replacements = {{"watershed:bucket_lava", "bucket:bucket_empty"}},
|
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())
|
||||||
|
Loading…
Reference in New Issue
Block a user