2015-06-29 19:55:56 +02:00
|
|
|
-- Minetest 0.4 mod: stairs
|
|
|
|
-- See README.txt for licensing and other information.
|
2017-01-16 12:46:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
-- Global namespace for functions
|
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
stairs = {}
|
|
|
|
|
2017-01-16 12:46:51 +01:00
|
|
|
-- Register stairs.
|
2015-06-29 19:55:56 +02:00
|
|
|
-- Node will be called stairs:stair_<subname>
|
2017-01-16 12:46:51 +01:00
|
|
|
|
2017-02-27 18:17:18 +01:00
|
|
|
function stairs.register_stair(subname, recipeitem, groups, images, description, sounds, hardness)
|
2017-01-16 12:46:51 +01:00
|
|
|
groups.stair = 1
|
2017-01-20 04:54:09 +01:00
|
|
|
groups.building_block = 1
|
2015-06-29 19:55:56 +02:00
|
|
|
minetest.register_node(":stairs:stair_" .. subname, {
|
|
|
|
description = description,
|
2017-01-16 12:46:51 +01:00
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "stairs_stair.obj",
|
2015-06-29 19:55:56 +02:00
|
|
|
tiles = images,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2017-02-10 03:12:48 +01:00
|
|
|
sunlight_propagates = false,
|
2017-01-04 22:36:51 +01:00
|
|
|
is_ground_content = false,
|
2015-06-29 19:55:56 +02:00
|
|
|
groups = groups,
|
|
|
|
sounds = sounds,
|
2017-01-16 12:46:51 +01:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
|
|
|
{-0.5, 0, 0, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
collision_box = {
|
2015-06-29 19:55:56 +02:00
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
|
|
|
{-0.5, 0, 0, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
if pointed_thing.type ~= "node" then
|
|
|
|
return itemstack
|
|
|
|
end
|
2017-01-16 12:46:51 +01:00
|
|
|
|
2015-06-29 19:55:56 +02:00
|
|
|
local p0 = pointed_thing.under
|
|
|
|
local p1 = pointed_thing.above
|
2017-01-16 12:46:51 +01:00
|
|
|
local param2 = 0
|
|
|
|
|
|
|
|
local placer_pos = placer:getpos()
|
|
|
|
if placer_pos then
|
|
|
|
local dir = {
|
|
|
|
x = p1.x - placer_pos.x,
|
|
|
|
y = p1.y - placer_pos.y,
|
|
|
|
z = p1.z - placer_pos.z
|
|
|
|
}
|
|
|
|
param2 = minetest.dir_to_facedir(dir)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
2017-01-16 12:46:51 +01:00
|
|
|
|
|
|
|
if p0.y - 1 == p1.y then
|
|
|
|
param2 = param2 + 20
|
|
|
|
if param2 == 21 then
|
|
|
|
param2 = 23
|
|
|
|
elseif param2 == 23 then
|
|
|
|
param2 = 21
|
2015-07-04 04:56:02 +02:00
|
|
|
end
|
2017-01-16 12:46:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
return minetest.item_place(itemstack, placer, pointed_thing, param2)
|
2015-06-29 19:55:56 +02:00
|
|
|
end,
|
2017-02-27 18:17:18 +01:00
|
|
|
_mcl_hardness = hardness,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-01-16 12:46:51 +01:00
|
|
|
if recipeitem then
|
|
|
|
minetest.register_craft({
|
2017-01-16 15:16:57 +01:00
|
|
|
output = 'stairs:stair_' .. subname .. ' 4',
|
2017-01-16 12:46:51 +01:00
|
|
|
recipe = {
|
|
|
|
{recipeitem, "", ""},
|
|
|
|
{recipeitem, recipeitem, ""},
|
|
|
|
{recipeitem, recipeitem, recipeitem},
|
2015-07-04 04:56:02 +02:00
|
|
|
},
|
2017-01-16 12:46:51 +01:00
|
|
|
})
|
2015-07-04 04:56:02 +02:00
|
|
|
|
2017-01-16 15:16:57 +01:00
|
|
|
-- Flipped recipe
|
2017-01-16 12:46:51 +01:00
|
|
|
minetest.register_craft({
|
2017-01-16 15:16:57 +01:00
|
|
|
output = 'stairs:stair_' .. subname .. ' 4',
|
2017-01-16 12:46:51 +01:00
|
|
|
recipe = {
|
|
|
|
{"", "", recipeitem},
|
|
|
|
{"", recipeitem, recipeitem},
|
|
|
|
{recipeitem, recipeitem, recipeitem},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
2017-01-16 12:46:51 +01:00
|
|
|
|
|
|
|
-- Slab facedir to placement 6d matching table
|
|
|
|
local slab_trans_dir = {[0] = 8, 0, 2, 1, 3, 4}
|
|
|
|
-- Slab facedir when placing initial slab against other surface
|
|
|
|
local slab_trans_dir_place = {[0] = 0, 20, 12, 16, 4, 8}
|
|
|
|
|
|
|
|
-- Register slabs.
|
2015-06-29 19:55:56 +02:00
|
|
|
-- Node will be called stairs:slab_<subname>
|
2017-01-16 12:46:51 +01:00
|
|
|
|
2017-02-08 00:50:33 +01:00
|
|
|
-- double_description, full_node: NEW arguments, not supported in Minetest Game
|
|
|
|
-- double_description: If set, add a separate “double slab” node. The description is the name of this new node
|
|
|
|
-- full_node: If set, this node is used when two nodes are placed on top of each other. Use this if recipeitem is a group
|
2017-02-27 18:17:18 +01:00
|
|
|
function stairs.register_slab(subname, recipeitem, groups, images, description, sounds, hardness, double_description, full_node)
|
2017-01-16 12:46:51 +01:00
|
|
|
groups.slab = 1
|
2017-01-20 04:54:09 +01:00
|
|
|
groups.building_block = 1
|
2015-06-29 19:55:56 +02:00
|
|
|
minetest.register_node(":stairs:slab_" .. subname, {
|
|
|
|
description = description,
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = images,
|
|
|
|
paramtype = "light",
|
2017-01-16 12:46:51 +01:00
|
|
|
paramtype2 = "facedir",
|
2017-02-10 03:12:48 +01:00
|
|
|
sunlight_propagates = false,
|
2017-01-04 22:36:51 +01:00
|
|
|
is_ground_content = false,
|
2015-06-29 19:55:56 +02:00
|
|
|
groups = groups,
|
|
|
|
sounds = sounds,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5},
|
|
|
|
},
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
2017-01-16 12:46:51 +01:00
|
|
|
local under = minetest.get_node(pointed_thing.under)
|
|
|
|
local wield_item = itemstack:get_name()
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-01-16 12:46:51 +01:00
|
|
|
if under and wield_item == under.name then
|
|
|
|
-- place slab using under node orientation
|
|
|
|
local dir = minetest.dir_to_facedir(vector.subtract(
|
|
|
|
pointed_thing.above, pointed_thing.under), true)
|
|
|
|
|
|
|
|
local p2 = under.param2
|
|
|
|
|
|
|
|
-- combine two slabs if possible
|
|
|
|
if slab_trans_dir[math.floor(p2 / 4)] == dir then
|
|
|
|
if not recipeitem then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
local player_name = placer:get_player_name()
|
|
|
|
if minetest.is_protected(pointed_thing.under, player_name) and not
|
|
|
|
minetest.check_player_privs(placer, "protection_bypass") then
|
|
|
|
minetest.record_protection_violation(pointed_thing.under,
|
|
|
|
player_name)
|
|
|
|
return
|
|
|
|
end
|
2017-02-08 00:34:30 +01:00
|
|
|
local newnode
|
2017-02-08 00:50:33 +01:00
|
|
|
if full_node then
|
|
|
|
newnode = full_node
|
|
|
|
elseif double_description then
|
2017-02-08 00:34:30 +01:00
|
|
|
newnode = "stairs:slab_"..subname.."_double"
|
|
|
|
else
|
|
|
|
newnode = recipeitem
|
|
|
|
end
|
|
|
|
minetest.set_node(pointed_thing.under, {name = newnode, param2 = p2})
|
2017-01-16 12:46:51 +01:00
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
|
|
itemstack:take_item()
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
return itemstack
|
|
|
|
end
|
2017-01-16 12:46:51 +01:00
|
|
|
|
|
|
|
-- Placing a slab on an upside down slab should make it right-side up.
|
|
|
|
if p2 >= 20 and dir == 8 then
|
|
|
|
p2 = p2 - 20
|
|
|
|
-- same for the opposite case: slab below normal slab
|
|
|
|
elseif p2 <= 3 and dir == 4 then
|
|
|
|
p2 = p2 + 20
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
2017-01-16 12:46:51 +01:00
|
|
|
|
|
|
|
-- else attempt to place node with proper param2
|
|
|
|
minetest.item_place_node(ItemStack(wield_item), placer, pointed_thing, p2)
|
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
2015-06-29 19:55:56 +02:00
|
|
|
itemstack:take_item()
|
|
|
|
end
|
2017-01-16 12:46:51 +01:00
|
|
|
return itemstack
|
|
|
|
else
|
|
|
|
-- place slab using look direction of player
|
|
|
|
local dir = minetest.dir_to_wallmounted(vector.subtract(
|
|
|
|
pointed_thing.above, pointed_thing.under), true)
|
|
|
|
|
|
|
|
local rot = slab_trans_dir_place[dir]
|
|
|
|
if rot == 0 or rot == 20 then
|
|
|
|
rot = rot + minetest.dir_to_facedir(placer:get_look_dir())
|
|
|
|
end
|
|
|
|
|
|
|
|
return minetest.item_place(itemstack, placer, pointed_thing, rot)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
end,
|
2017-02-27 18:17:18 +01:00
|
|
|
_mcl_hardness = hardness,
|
2015-06-29 19:55:56 +02:00
|
|
|
})
|
|
|
|
|
2017-02-08 00:34:30 +01:00
|
|
|
-- Double slab node
|
|
|
|
local dgroups = table.copy(groups)
|
|
|
|
dgroups.not_in_creative_inventory = 1
|
|
|
|
if double_description then
|
|
|
|
minetest.register_node(":stairs:slab_" .. subname .. "_double", {
|
|
|
|
description = double_description,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
tiles = images,
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = dgroups,
|
|
|
|
sounds = sounds,
|
|
|
|
drop = "stairs:slab_"..subname.." 2",
|
2017-02-27 18:17:18 +01:00
|
|
|
_mcl_hardness = hardness,
|
2017-02-08 00:34:30 +01:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2017-01-16 12:46:51 +01:00
|
|
|
if recipeitem then
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'stairs:slab_' .. subname .. ' 6',
|
|
|
|
recipe = {
|
|
|
|
{recipeitem, recipeitem, recipeitem},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- Stair/slab registration function.
|
2015-06-29 19:55:56 +02:00
|
|
|
-- Nodes will be called stairs:{stair,slab}_<subname>
|
2017-01-16 12:46:51 +01:00
|
|
|
|
|
|
|
function stairs.register_stair_and_slab(subname, recipeitem,
|
2017-02-27 18:17:18 +01:00
|
|
|
groups, images, desc_stair, desc_slab, sounds, hardness,
|
2017-02-08 00:50:33 +01:00
|
|
|
double_description, full_node)
|
2017-02-27 18:17:18 +01:00
|
|
|
stairs.register_stair(subname, recipeitem, groups, images, desc_stair, sounds, hardness)
|
|
|
|
stairs.register_slab(subname, recipeitem, groups, images, desc_slab, sounds, hardness, double_description, full_node)
|
2015-06-29 19:55:56 +02:00
|
|
|
end
|
|
|
|
|
2017-02-27 18:17:18 +01:00
|
|
|
-- Register all Minecraft stairs and slabs
|
|
|
|
-- Note about hardness: For some reason, the hardness of slabs and stairs don't always match nicely, so that some
|
|
|
|
-- slabs actually take slightly longer to be dug than their stair counterparts.
|
|
|
|
-- Note sure if it is a good idea to preserve this oddity.
|
2017-01-16 12:46:51 +01:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_stair("wood", "mcl_core:wood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_stairs=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_wood.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Oak Wood Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_slab("wood", "mcl_core:wood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_slab=1},
|
2017-01-10 02:25:10 +01:00
|
|
|
{"default_wood.png"},
|
2017-01-04 06:56:37 +01:00
|
|
|
"Oak Wood Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-10 02:25:10 +01:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_stair("junglewood", "mcl_core:junglewood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_stairs=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_junglewood.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Jungle Wood Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_slab("junglewood", "mcl_core:junglewood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_slab=1},
|
2017-01-10 02:25:10 +01:00
|
|
|
{"default_junglewood.png"},
|
2017-01-04 06:56:37 +01:00
|
|
|
"Jungle Wood Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_stair("acaciawood", "mcl_core:acaciawood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_stairs=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_acaciawood.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Acacia Wood Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-10 02:25:10 +01:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_slab("acaciawood", "mcl_core:acaciawood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_slab=1},
|
2017-01-10 02:25:10 +01:00
|
|
|
{"default_acaciawood.png"},
|
2017-01-04 06:56:37 +01:00
|
|
|
"Acacia Wood Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-10 02:25:10 +01:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_stair("sprucewood", "mcl_core:sprucewood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_stairs=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_sprucewood.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Spruce Wood Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_slab("sprucewood", "mcl_core:sprucewood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_slab=1},
|
2017-01-10 02:25:10 +01:00
|
|
|
{"default_sprucewood.png"},
|
2017-01-04 06:56:37 +01:00
|
|
|
"Spruce Wood Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_stair("birchwood", "mcl_core:birchwood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_stairs=1},
|
2017-01-10 02:38:08 +01:00
|
|
|
{"default_planks_birch.png"},
|
2017-01-10 02:25:10 +01:00
|
|
|
"Birch Wood Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_slab("birchwood", "mcl_core:birchwood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_slab=1},
|
2017-01-10 02:38:08 +01:00
|
|
|
{"default_planks_birch.png"},
|
2017-01-10 02:25:10 +01:00
|
|
|
"Birch Wood Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-10 02:25:10 +01:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_stair("darkwood", "mcl_core:darkwood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_stairs=1},
|
2017-01-10 02:25:10 +01:00
|
|
|
{"default_planks_big_oak.png"},
|
|
|
|
"Dark Oak Wood Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-02-11 21:19:57 +01:00
|
|
|
stairs.register_slab("darkwood", "mcl_core:darkwood",
|
2017-02-27 18:17:18 +01:00
|
|
|
{handy=1,axey=1, flammable=3,wood_slab=1},
|
2017-01-10 02:25:10 +01:00
|
|
|
{"default_planks_big_oak.png"},
|
|
|
|
"Dark Oak Wood Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2017-01-10 02:25:10 +01:00
|
|
|
|
2017-02-07 19:55:49 +01:00
|
|
|
stairs.register_slab("stone", "mcl_core:stone",
|
2017-02-27 18:17:18 +01:00
|
|
|
{pickaxey=1},
|
2017-02-08 00:34:30 +01:00
|
|
|
{"stairs_stone_slab_top.png", "stairs_stone_slab_top.png", "stairs_stone_slab_side.png"},
|
2015-06-29 19:55:56 +02:00
|
|
|
"Stone Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 2, "Double Stone Slab")
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
stairs.register_stair_and_slab("cobble", "mcl_core:cobble",
|
2017-02-27 18:17:18 +01:00
|
|
|
{pickaxey=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_cobble.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Cobblestone Stairs",
|
2017-01-04 06:56:37 +01:00
|
|
|
"Cobblestone Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 2)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-01 18:51:26 +01:00
|
|
|
stairs.register_stair_and_slab("brick_block", "mcl_core:brick_block",
|
2017-02-27 18:17:18 +01:00
|
|
|
{pickaxey=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_brick.png"},
|
2017-02-10 03:14:11 +01:00
|
|
|
"Brick Stairs",
|
|
|
|
"Brick Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 2)
|
|
|
|
|
|
|
|
|
|
|
|
stairs.register_stair("sprucewood", "mcl_core:sprucewood",
|
|
|
|
{handy=1,axey=1, flammable=3,wood_stairs=1},
|
|
|
|
{"default_sprucewood.png"},
|
|
|
|
"Spruce Wood Stairs",
|
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
|
|
|
stairs.register_slab("sprucewood", "mcl_core:sprucewood",
|
|
|
|
{handy=1,axey=1, flammable=3,wood_slab=1},
|
|
|
|
{"default_sprucewood.png"},
|
|
|
|
"Spruce Wood Slab",
|
|
|
|
mcl_sounds.node_sound_wood_defaults(),
|
|
|
|
2)
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-27 18:17:18 +01:00
|
|
|
|
|
|
|
stairs.register_stair("sandstone", "group:sandstone",
|
|
|
|
{pickaxey=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_normal.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Sandstone Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_core:sandstone")
|
|
|
|
stairs.register_slab("sandstone", "group:sandstone",
|
|
|
|
{pickaxey=1},
|
|
|
|
{"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_normal.png"},
|
2015-06-29 19:55:56 +02:00
|
|
|
"Sandstone Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 2, nil, "mcl_core:sandstone")
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-27 18:17:18 +01:00
|
|
|
stairs.register_stair("redsandstone", "group:redsandstone",
|
|
|
|
{pickaxey=1},
|
2017-01-04 06:56:37 +01:00
|
|
|
{"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_normal.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Red Sandstone Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_core:redsandstone")
|
|
|
|
stairs.register_slab("redsandstone", "group:redsandstone",
|
|
|
|
{pickaxey=1},
|
|
|
|
{"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_normal.png"},
|
2017-01-04 06:56:37 +01:00
|
|
|
"Red Sandstone Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 2, nil, "mcl_core:redsandstone")
|
2017-01-04 06:56:37 +01:00
|
|
|
|
2017-02-27 18:17:18 +01:00
|
|
|
stairs.register_stair("stonebrick", "group:stonebrick",
|
|
|
|
{pickaxey=1},
|
2015-06-29 19:55:56 +02:00
|
|
|
{"default_stone_brick.png"},
|
2017-01-07 04:13:58 +01:00
|
|
|
"Stone Bricks Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 1.5, nil, "mcl_core:stonebrick")
|
|
|
|
stairs.register_slab("stonebrick", "group:stonebrick",
|
|
|
|
{pickaxey=1},
|
|
|
|
{"default_stone_brick.png"},
|
2017-01-04 06:56:37 +01:00
|
|
|
"Stone Bricks Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(), 2, nil, "mcl_core:stonebrick")
|
|
|
|
|
|
|
|
stairs.register_stair("quartzblock", "group:quartz_block",
|
|
|
|
{pickaxey=1},
|
|
|
|
{"mcl_nether_quartz_block_top.png", "mcl_nether_quartz_block_bottom.png", "mcl_nether_quartz_block_side.png"},
|
|
|
|
"Quartz Stairs",
|
|
|
|
mcl_sounds.node_sound_stone_defaults(), 0.8, nil, "mcl_nether:quartz_block")
|
|
|
|
stairs.register_slab("quartzblock", "group:quartz_block",
|
|
|
|
{pickaxey=1},
|
|
|
|
{"mcl_nether_quartz_block_top.png", "mcl_nether_quartz_block_bottom.png", "mcl_nether_quartz_block_side.png"},
|
|
|
|
"Quartz Slab",
|
|
|
|
mcl_sounds.node_sound_stone_defaults(), 2, nil, "mcl_nether:quartz_block")
|
2015-06-29 19:55:56 +02:00
|
|
|
|
2017-02-08 19:52:04 +01:00
|
|
|
stairs.register_stair_and_slab("nether_brick", "mcl_nether:nether_brick",
|
2017-02-27 18:17:18 +01:00
|
|
|
{pickaxey=1},
|
|
|
|
{"mcl_nether_nether_brick.png"},
|
|
|
|
"Nether Brick Stairs",
|
|
|
|
"Nether Brick Slab",
|
|
|
|
mcl_sounds.node_sound_stone_defaults(),
|
|
|
|
2)
|
|
|
|
|
|
|
|
stairs.register_stair("purpur_block", "mcl_end:purpur_block",
|
|
|
|
{pickaxey=1},
|
2017-01-07 04:09:18 +01:00
|
|
|
{"mcl_end_purpur_block.png"},
|
|
|
|
"Purpur Stairs",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(),
|
|
|
|
1.5)
|
|
|
|
stairs.register_slab("purpur_block", "mcl_end:purpur_block",
|
|
|
|
{pickaxey=1},
|
|
|
|
{"mcl_end_purpur_block.png"},
|
2017-01-07 04:09:18 +01:00
|
|
|
"Purpur Slab",
|
2017-02-27 18:17:18 +01:00
|
|
|
mcl_sounds.node_sound_stone_defaults(),
|
|
|
|
2)
|
2017-01-07 04:09:18 +01:00
|
|
|
|
2017-01-05 03:09:19 +01:00
|
|
|
minetest.register_craft({
|
2017-01-31 23:32:56 +01:00
|
|
|
output = 'mcl_core:sandstonecarved',
|
2017-01-05 03:09:19 +01:00
|
|
|
recipe = {
|
|
|
|
{'stairs:slab_sandstone'},
|
|
|
|
{'stairs:slab_sandstone'}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2017-01-31 23:32:56 +01:00
|
|
|
output = 'mcl_core:redsandstonecarved',
|
2017-01-05 03:09:19 +01:00
|
|
|
recipe = {
|
|
|
|
{'stairs:slab_redsandstone'},
|
|
|
|
{'stairs:slab_redsandstone'}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-01-07 03:35:24 +01:00
|
|
|
minetest.register_craft({
|
2017-01-31 23:32:56 +01:00
|
|
|
output = 'mcl_core:stonebrickcarved',
|
2017-01-07 03:35:24 +01:00
|
|
|
recipe = {
|
|
|
|
{'stairs:slab_stonebrick'},
|
|
|
|
{'stairs:slab_stonebrick'}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-01-07 04:09:18 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'mcl_end:purpur_pillar',
|
|
|
|
recipe = {
|
|
|
|
{'stairs:slab_purpur_block'},
|
|
|
|
{'stairs:slab_purpur_block'}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-01-10 06:43:07 +01:00
|
|
|
-- Fuel
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "group:wood_stairs",
|
|
|
|
burntime = 15,
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "group:wood_slab",
|
2017-02-13 14:33:16 +01:00
|
|
|
-- Original burn time: 7.5 (PC edition)
|
|
|
|
burntime = 8,
|
2017-01-10 06:43:07 +01:00
|
|
|
})
|