2013-05-19 18:43:04 +02:00
|
|
|
-- mods/default/nodes.lua
|
2020-05-17 21:50:19 +02:00
|
|
|
|
2019-09-10 19:09:51 +02:00
|
|
|
-- support for MT game translation.
|
|
|
|
local S = default.get_translator
|
2015-08-09 09:50:57 +02:00
|
|
|
|
|
|
|
--[[ Node name convention:
|
|
|
|
|
|
|
|
Although many node names are in combined-word form, the required form for new
|
|
|
|
node names is words separated by underscores. If both forms are used in written
|
|
|
|
language (for example pinewood and pine wood) the underscore form should be used.
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
2019-06-07 21:35:24 +02:00
|
|
|
-- Required wrapper to allow customization of default.after_place_leaves
|
|
|
|
local function after_place_leaves(...)
|
|
|
|
return default.after_place_leaves(...)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Required wrapper to allow customization of default.grow_sapling
|
|
|
|
local function grow_sapling(...)
|
|
|
|
return default.grow_sapling(...)
|
|
|
|
end
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Stone
|
|
|
|
--
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Stone
|
2013-05-19 18:43:04 +02:00
|
|
|
minetest.register_node("default:stone", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Stone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"stone.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3, stone = 1},
|
2019-07-31 01:16:44 +02:00
|
|
|
drop = "default:cobble",
|
2013-05-19 18:43:04 +02:00
|
|
|
legacy_mineral = true,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:cobble", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Cobblestone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"cobble.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3, stone = 2},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:stone_brick", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Stone Brick"),
|
2016-05-29 22:45:18 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"stone_brick.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 2, stone = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2016-06-23 05:37:19 +02:00
|
|
|
minetest.register_node("default:stone_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Stone Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"stone_block.png"},
|
2016-06-23 05:37:19 +02:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2, stone = 1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:mossy_cobble", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Mossy Cobblestone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"mossy_cobble.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3, stone = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Desert Stone
|
2013-05-19 18:43:04 +02:00
|
|
|
minetest.register_node("default:desert_stone", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Stone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_stone.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3, stone = 1},
|
2019-07-31 01:16:44 +02:00
|
|
|
drop = "default:desert_cobble",
|
2013-05-19 18:43:04 +02:00
|
|
|
legacy_mineral = true,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:desert_cobble", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Cobblestone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_cobble.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3, stone = 2},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:desert_stone_brick", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Stone Brick"),
|
2016-05-29 22:45:18 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_stone_brick.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 2, stone = 1},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2016-06-23 05:37:19 +02:00
|
|
|
minetest.register_node("default:desert_stone_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Stone Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_stone_block.png"},
|
2016-06-23 05:37:19 +02:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2, stone = 1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Sandstone
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:sandstone", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Sandstone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"sandstone.png"},
|
2016-05-05 01:22:57 +02:00
|
|
|
groups = {crumbly = 1, cracky = 3},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:sandstone_brick", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Sandstone Brick"),
|
2016-05-29 22:45:18 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"sandstone_brick.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 2},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
2013-06-08 18:08:48 +02:00
|
|
|
|
2016-06-23 05:37:19 +02:00
|
|
|
minetest.register_node("default:sandstone_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Sandstone Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"sandstone_block.png"},
|
2016-06-23 05:37:19 +02:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2017-03-07 04:03:30 +01:00
|
|
|
minetest.register_node("default:desert_sandstone", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Sandstone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_sandstone.png"},
|
2017-03-07 04:03:30 +01:00
|
|
|
groups = {crumbly = 1, cracky = 3},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:desert_sandstone_brick", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Sandstone Brick"),
|
2017-03-07 04:03:30 +01:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_sandstone_brick.png"},
|
2017-03-07 04:03:30 +01:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:desert_sandstone_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Sandstone Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_sandstone_block.png"},
|
2017-03-07 04:03:30 +01:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:silver_sandstone", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Silver Sandstone"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"silver_sandstone.png"},
|
2017-03-07 04:03:30 +01:00
|
|
|
groups = {crumbly = 1, cracky = 3},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:silver_sandstone_brick", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Silver Sandstone Brick"),
|
2017-03-07 04:03:30 +01:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"silver_sandstone_brick.png"},
|
2017-03-07 04:03:30 +01:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:silver_sandstone_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Silver Sandstone Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"silver_sandstone_block.png"},
|
2017-03-07 04:03:30 +01:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 2},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
2014-12-07 16:29:36 +01:00
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Obsidian
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:obsidian", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Obsidian"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"obsidian.png"},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1, level = 2},
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:obsidian_brick", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Obsidian Brick"),
|
2016-05-29 22:45:18 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"obsidian_brick.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1, level = 2},
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2016-06-23 05:37:19 +02:00
|
|
|
minetest.register_node("default:obsidian_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Obsidian Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"obsidian_block.png"},
|
2016-06-23 05:37:19 +02:00
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
groups = {cracky = 1, level = 2},
|
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Soft / Non-Stone
|
|
|
|
--
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Dirt
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:dirt", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Dirt"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"dirt.png"},
|
|
|
|
is_ground_content = true,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {crumbly = 3, soil = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_dirt_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Dry Dirt
|
|
|
|
minetest.register_node("default:dry_dirt", {
|
|
|
|
description = S("Dried Dirt"),
|
|
|
|
tiles = {"dry_dirt.png"},
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {crumbly = 3},
|
|
|
|
sounds = default.node_sound_dirt_defaults()
|
2015-07-01 14:03:14 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Charred Dirt
|
|
|
|
minetest.register_node("default:charred_dirt", {
|
|
|
|
description = S("Charred Dirt"),
|
|
|
|
tiles = {"charred_dirt.png"},
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {crumbly = 3},
|
|
|
|
sounds = default.node_sound_gravel_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Grass Dirts
|
|
|
|
local dirts = {
|
|
|
|
"Bamboo", "Jungle", "Grass", "Prairie", "Cold", "Fungus", "Savanna"
|
|
|
|
}
|
|
|
|
|
|
|
|
for n = 1, #dirts do
|
|
|
|
|
|
|
|
local desc = dirts[n]
|
|
|
|
local name = desc:lower()
|
|
|
|
|
|
|
|
minetest.register_node("default:"..name.."_dirt", {
|
|
|
|
description = S(desc.." Dirt"),
|
|
|
|
tiles = {
|
|
|
|
"grass_"..name.."_top.png",
|
|
|
|
"dirt.png",
|
|
|
|
{
|
|
|
|
name = "dirt.png^".. name .."_dirt_side.png",
|
|
|
|
tileable_vertical = false
|
|
|
|
}
|
|
|
|
},
|
2020-05-17 21:52:19 +02:00
|
|
|
is_ground_content = true,
|
2020-05-17 18:18:09 +02:00
|
|
|
groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1},
|
|
|
|
soil = {
|
|
|
|
base = "dirt:"..name.."_dirt",
|
|
|
|
dry = "farming:soil",
|
|
|
|
wet = "farming:soil_wet"
|
|
|
|
},
|
|
|
|
drop = "default:dirt",
|
|
|
|
sounds = default.node_sound_dirt_defaults({
|
|
|
|
footstep = {name = "default_grass_footstep", gain = 0.25},
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Snow Dirt
|
2013-05-19 18:43:04 +02:00
|
|
|
minetest.register_node("default:dirt_with_snow", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Dirt with Snow"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"snow.png", "dirt.png",
|
|
|
|
{name = "dirt.png^snow_side.png",
|
2015-08-19 00:26:32 +02:00
|
|
|
tileable_vertical = false}},
|
2018-01-13 12:46:35 +01:00
|
|
|
groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1, snowy = 1},
|
2019-07-31 01:16:44 +02:00
|
|
|
drop = "default:dirt",
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_dirt_defaults({
|
2017-10-21 08:01:23 +02:00
|
|
|
footstep = {name = "default_snow_footstep", gain = 0.2},
|
2013-05-19 18:43:04 +02:00
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Permafrost
|
2018-05-05 00:05:47 +02:00
|
|
|
minetest.register_node("default:permafrost", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Permafrost"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"permafrost.png"},
|
2018-05-05 00:05:47 +02:00
|
|
|
groups = {cracky = 3},
|
|
|
|
sounds = default.node_sound_dirt_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:permafrost_with_stones", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Permafrost with Stones"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"permafrost.png^stones.png",
|
|
|
|
"permafrost.png",
|
|
|
|
"permafrost.png^stones_side.png"},
|
2018-05-05 00:05:47 +02:00
|
|
|
groups = {cracky = 3},
|
|
|
|
sounds = default.node_sound_gravel_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:permafrost_with_moss", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Permafrost with Moss"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"moss.png", "permafrost.png",
|
|
|
|
{name = "permafrost.png^moss_side.png",
|
2018-05-05 00:05:47 +02:00
|
|
|
tileable_vertical = false}},
|
|
|
|
groups = {cracky = 3},
|
|
|
|
sounds = default.node_sound_dirt_defaults({
|
|
|
|
footstep = {name = "default_grass_footstep", gain = 0.25},
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Sand
|
2013-05-19 18:43:04 +02:00
|
|
|
minetest.register_node("default:sand", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Sand"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"sand.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {crumbly = 3, falling_node = 1, sand = 1},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_sand_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:desert_sand", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Desert Sand"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"desert_sand.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {crumbly = 3, falling_node = 1, sand = 1},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_sand_defaults(),
|
|
|
|
})
|
|
|
|
|
2016-10-04 04:45:49 +02:00
|
|
|
minetest.register_node("default:silver_sand", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Silver Sand"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"silver_sand.png"},
|
2016-10-04 04:45:49 +02:00
|
|
|
groups = {crumbly = 3, falling_node = 1, sand = 1},
|
|
|
|
sounds = default.node_sound_sand_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Quicksand
|
|
|
|
minetest.register_node("default:quicksand", {
|
|
|
|
description = S("Quicksand"),
|
|
|
|
tiles = {"sand.png"},
|
|
|
|
drawtype = "glasslike",
|
|
|
|
paramtype = "light",
|
|
|
|
drop = "default:sand",
|
|
|
|
liquid_viscosity = 15,
|
|
|
|
liquidtype = "source",
|
|
|
|
liquid_alternative_flowing = "default:quicksand",
|
|
|
|
liquid_alternative_source = "default:quicksand",
|
|
|
|
liquid_renewable = false,
|
|
|
|
liquid_range = 0,
|
|
|
|
drowning = 1,
|
|
|
|
walkable = false,
|
|
|
|
climbable = false,
|
|
|
|
post_effect_color = {r = 230, g = 210, b = 160, a = 245},
|
|
|
|
groups = {crumbly = 3, sand = 1, liquid = 3, disable_jump = 1},
|
|
|
|
sounds = default.node_sound_sand_defaults(),
|
|
|
|
})
|
2014-12-07 16:29:36 +01:00
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Gravel
|
2013-05-19 18:43:04 +02:00
|
|
|
minetest.register_node("default:gravel", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Gravel"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"gravel.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {crumbly = 2, falling_node = 1},
|
2016-04-25 00:10:46 +02:00
|
|
|
sounds = default.node_sound_gravel_defaults(),
|
2016-03-11 18:27:22 +01:00
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
2019-07-31 01:16:44 +02:00
|
|
|
{items = {"default:flint"}, rarity = 16},
|
|
|
|
{items = {"default:gravel"}}
|
2016-03-11 18:27:22 +01:00
|
|
|
}
|
|
|
|
}
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Clay
|
2013-05-19 18:43:04 +02:00
|
|
|
minetest.register_node("default:clay", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Clay"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"clay.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {crumbly = 3},
|
2019-07-31 01:16:44 +02:00
|
|
|
drop = "default:clay_lump 4",
|
2013-06-11 23:23:10 +02:00
|
|
|
sounds = default.node_sound_dirt_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Snow
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:snow", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Snow"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"snow.png"},
|
|
|
|
inventory_image = "snowball.png",
|
|
|
|
wield_image = "snowball.png",
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype = "light",
|
|
|
|
buildable_to = true,
|
2016-04-02 21:14:18 +02:00
|
|
|
floodable = true,
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "nodebox",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
2015-07-24 02:24:13 +02:00
|
|
|
{-0.5, -0.5, -0.5, 0.5, -0.25, 0.5},
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
|
|
|
},
|
2018-05-31 04:14:46 +02:00
|
|
|
collision_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, -7 / 16, 0.5},
|
|
|
|
},
|
|
|
|
},
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {crumbly = 3, falling_node = 1, snowy = 1},
|
2017-10-21 08:01:23 +02:00
|
|
|
sounds = default.node_sound_snow_defaults(),
|
2014-12-07 16:29:36 +01:00
|
|
|
|
|
|
|
on_construct = function(pos)
|
|
|
|
pos.y = pos.y - 1
|
2020-05-17 18:18:09 +02:00
|
|
|
if minetest.get_node(pos).name == "default:grass_dirt" then
|
|
|
|
minetest.set_node(pos, {name = "default:snow_dirt"})
|
2014-12-07 16:29:36 +01:00
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
2015-02-26 09:21:28 +01:00
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:snow_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Snow Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"snow.png"},
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {crumbly = 3, cools_lava = 1, snowy = 1},
|
2017-10-21 08:01:23 +02:00
|
|
|
sounds = default.node_sound_snow_defaults(),
|
2016-11-08 18:30:58 +01:00
|
|
|
|
|
|
|
on_construct = function(pos)
|
|
|
|
pos.y = pos.y - 1
|
2020-05-17 18:18:09 +02:00
|
|
|
if minetest.get_node(pos).name == "default:grass_dirt" then
|
|
|
|
minetest.set_node(pos, {name = "default:snow_dirt"})
|
2016-11-08 18:30:58 +01:00
|
|
|
end
|
|
|
|
end,
|
2014-12-07 16:29:36 +01:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Ice
|
2018-02-26 20:21:24 +01:00
|
|
|
-- 'is ground content = false' to avoid tunnels in sea ice or ice rivers
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:ice", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Ice"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"ice.png"},
|
2015-04-05 01:40:23 +02:00
|
|
|
is_ground_content = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype = "light",
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {cracky = 3, cools_lava = 1, slippery = 3},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2018-02-26 20:21:24 +01:00
|
|
|
-- Mapgen-placed ice with 'is ground content = true' to contain tunnels
|
|
|
|
minetest.register_node("default:cave_ice", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Cave Ice"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"ice.png"},
|
2018-02-26 20:21:24 +01:00
|
|
|
paramtype = "light",
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {cracky = 3, cools_lava = 1, slippery = 3,
|
2018-09-21 19:52:55 +02:00
|
|
|
not_in_creative_inventory = 1},
|
2018-02-26 20:21:24 +01:00
|
|
|
drop = "default:ice",
|
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Trees
|
|
|
|
--
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Saplings
|
|
|
|
local register_sapling = function(name, desc, texture, height)
|
|
|
|
|
|
|
|
minetest.register_node(name .. "_sapling", {
|
|
|
|
description = S(desc .. " Sapling"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {texture .. ".png"},
|
|
|
|
inventory_image = texture .. ".png",
|
|
|
|
wield_image = texture .. ".png",
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 7 / 16, 4 / 16}
|
|
|
|
},
|
|
|
|
groups = {
|
2020-05-17 21:52:19 +02:00
|
|
|
snappy = 2, dig_immediate = 3, flammable = 2, attached_node = 1, sapling = 1
|
2020-05-17 18:18:09 +02:00
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
grown_height = height,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
register_sapling("default:uneti", "Uneti Tree", "uneti_tree_sapling", 7)
|
|
|
|
register_sapling("default:brylark", "Brylark Tree", "brylark_tree_sapling", 19)
|
|
|
|
register_sapling("default:mushroom", "Giant Mushroom", "mushroom_sapling", 11)
|
|
|
|
register_sapling("default:palm", "Palm Tree", "palm_tree_sapling", 9)
|
|
|
|
register_sapling("default:pine", "Pine Tree", "pine_tree_sapling", 14)
|
|
|
|
register_sapling("default:wroshyr", "Wroshyr Tree", "wroshyr_tree_sapling", 31)
|
|
|
|
register_sapling("default:jogan", "Jogan Tree", "jogan_tree_sapling", 6)
|
2020-05-17 19:53:03 +02:00
|
|
|
register_sapling("default:bush", "Bush", "bush_sapling", 2)
|
2020-05-17 18:18:09 +02:00
|
|
|
|
|
|
|
minetest.register_node("default:bamboo_sprout", {
|
|
|
|
description = S("Bamboo Sprout"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"bamboo_sprout.png"},
|
|
|
|
inventory_image = "bamboo_sprout.png",
|
|
|
|
wield_image = "bamboo_sprout.png",
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
groups = {
|
|
|
|
food_bamboo_sprout = 1, snappy = 3, attached_node = 1, flammable = 2,
|
2020-05-17 21:52:19 +02:00
|
|
|
dig_immediate = 3, sapling = 1,
|
2020-05-17 18:18:09 +02:00
|
|
|
},
|
|
|
|
sounds = default.node_sound_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 0, 4 / 16}
|
|
|
|
},
|
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
grown_height = 11,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Trunks
|
|
|
|
minetest.register_node("default:jogan_trunk", {
|
|
|
|
description = S("Jogan Trunk"),
|
|
|
|
tiles = {"jogan_trunk_top.png", "jogan_trunk_top.png", "jogan_trunk.png"},
|
2013-11-07 17:48:00 +01:00
|
|
|
paramtype2 = "facedir",
|
2013-11-30 08:42:57 +01:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
|
2013-11-07 17:48:00 +01:00
|
|
|
on_place = minetest.rotate_node
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:uneti_trunk", {
|
|
|
|
description = S("Uneti Trunk"),
|
|
|
|
tiles = {
|
|
|
|
"uneti_trunk_top.png",
|
|
|
|
"uneti_trunk_top.png",
|
|
|
|
"uneti_trunk.png"
|
|
|
|
},
|
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2020-05-17 18:18:09 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = minetest.rotate_node,
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:brylark_trunk", {
|
|
|
|
description = S("Brylark Trunk"),
|
|
|
|
tiles = {
|
|
|
|
"brylark_trunk_top.png",
|
|
|
|
"brylark_trunk_top.png",
|
|
|
|
"brylark_trunk.png"
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
2020-05-17 18:18:09 +02:00
|
|
|
groups = {tree = 1, cracky = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = minetest.rotate_node,
|
|
|
|
})
|
2016-07-19 02:01:59 +02:00
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:wroshyr_trunk", {
|
|
|
|
description = S("Wroshyr Trunk"),
|
|
|
|
tiles = {
|
|
|
|
"wroshyr_trunk_top.png",
|
|
|
|
"wroshyr_trunk_top.png",
|
|
|
|
"wroshyr_trunk.png"
|
|
|
|
},
|
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = minetest.rotate_node,
|
|
|
|
})
|
2016-07-19 02:01:59 +02:00
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:palm_trunk", {
|
|
|
|
description = S("Palm Trunk"),
|
|
|
|
tiles = {
|
|
|
|
"palm_trunk_top.png",
|
|
|
|
"palm_trunk_top.png",
|
|
|
|
"palm_trunk.png"
|
|
|
|
},
|
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = minetest.rotate_node,
|
2014-12-07 16:29:36 +01:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:pine_trunk", {
|
|
|
|
description = S("Pine Trunk"),
|
|
|
|
tiles = {"pine_trunk_top.png", "pine_trunk_top.png",
|
|
|
|
"pine_trunk.png"},
|
|
|
|
paramtype2 = "facedir",
|
2014-12-07 16:29:36 +01:00
|
|
|
is_ground_content = false,
|
2020-05-17 18:18:09 +02:00
|
|
|
groups = {tree = 1, choppy = 3, oddly_breakable_by_hand = 1, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
|
|
|
|
on_place = minetest.rotate_node
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:scorched_trunk", {
|
|
|
|
description = S("Scorched Trunk"),
|
|
|
|
tiles = {
|
|
|
|
"scorched_trunk_top.png",
|
|
|
|
"scorched_trunk_top.png",
|
|
|
|
"scorched_trunk.png"
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
2020-05-17 18:18:09 +02:00
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 1},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = minetest.rotate_node,
|
|
|
|
})
|
2014-12-07 16:29:36 +01:00
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:mushroom_trunk", {
|
|
|
|
description = S("Giant Mushroom Trunk"),
|
|
|
|
tiles = {
|
|
|
|
"mushroom_trunk_top.png",
|
|
|
|
"mushroom_trunk_top.png",
|
|
|
|
"mushroom_trunk.png"
|
|
|
|
},
|
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
on_place = minetest.rotate_node,
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:bamboo", {
|
|
|
|
description = S("Bamboo"),
|
2013-05-19 18:43:04 +02:00
|
|
|
drawtype = "plantlike",
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"bamboo.png"},
|
|
|
|
inventory_image = "bamboo.png",
|
|
|
|
wield_image = "bamboo.png",
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
2014-12-07 16:29:36 +01:00
|
|
|
sunlight_propagates = true,
|
2020-05-17 18:18:09 +02:00
|
|
|
walkable = true,
|
2013-05-19 18:43:04 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2020-05-17 18:18:09 +02:00
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
2020-05-17 18:18:09 +02:00
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 1, flammable = 2, stick = 1},
|
2013-06-11 23:23:10 +02:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
2020-05-17 18:18:09 +02:00
|
|
|
after_dig_node = function(pos, node, metadata, digger)
|
|
|
|
default.dig_up(pos, node, digger)
|
2018-05-11 17:42:28 +02:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
minetest.register_node("default:bush_stem", {
|
|
|
|
description = S("Bush Stem"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.41,
|
|
|
|
tiles = {"bush_stem.png"},
|
|
|
|
inventory_image = "bush_stem.png",
|
|
|
|
wield_image = "bush_stem.png",
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-7 / 16, -0.5, -7 / 16, 7 / 16, 0.5, 7 / 16},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Wood
|
|
|
|
minetest.register_node("default:jogan_wood", {
|
|
|
|
description = S("Jogan Wood Planks"),
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype2 = "facedir",
|
2020-05-17 18:18:09 +02:00
|
|
|
place_param2 = 0,
|
|
|
|
tiles = {"jogan_wood.png"},
|
2013-11-30 08:42:57 +01:00
|
|
|
is_ground_content = false,
|
2020-05-17 20:22:21 +02:00
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1, soft_wood = 1},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2020-05-17 18:18:09 +02:00
|
|
|
})
|
2013-06-22 11:00:23 +02:00
|
|
|
|
2020-05-17 21:54:49 +02:00
|
|
|
minetest.register_node("default:uneti_wood", {
|
2020-05-17 18:18:09 +02:00
|
|
|
description = S("Uneti Wood Planks"),
|
|
|
|
tiles = {"uneti_wood.png"},
|
|
|
|
is_ground_content = false,
|
2020-05-17 20:22:21 +02:00
|
|
|
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, soft_wood = 1},
|
2020-05-17 18:18:09 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:brylark_wood", {
|
|
|
|
description = S("Brylark Wood Planks"),
|
|
|
|
tiles = {"brylark_wood.png"},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {wood = 1, cracky = 1, level = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:wroshyr_wood", {
|
|
|
|
description = S("Wroshyr Wood Planks"),
|
|
|
|
tiles = {"wroshyr_wood.png"},
|
|
|
|
is_ground_content = false,
|
2020-05-17 20:22:21 +02:00
|
|
|
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, soft_wood = 1},
|
2020-05-17 18:18:09 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:palm_wood", {
|
|
|
|
description = S("Palm Wood Planks"),
|
|
|
|
tiles = {"palm_wood.png"},
|
|
|
|
is_ground_content = false,
|
2020-05-17 20:22:21 +02:00
|
|
|
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, soft_wood = 1},
|
2020-05-17 18:18:09 +02:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2014-12-07 16:29:36 +01:00
|
|
|
})
|
2013-06-22 11:00:23 +02:00
|
|
|
|
2015-08-09 09:50:57 +02:00
|
|
|
minetest.register_node("default:pine_wood", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Pine Wood Planks"),
|
2016-05-29 22:45:18 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"pine_wood.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2020-05-17 20:22:21 +02:00
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3, wood = 1, soft_wood = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Leaves
|
|
|
|
|
|
|
|
minetest.register_node("default:jogan_leaves", {
|
|
|
|
description = S("Jogan Leaves"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"jogan_leaves.png"},
|
|
|
|
inventory_image = "jogan_leaves.png",
|
|
|
|
wield_image = "jogan_leaves.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
visual_scale = 1.4,
|
|
|
|
waving = 1,
|
|
|
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:jogan_sapling"}, rarity = 20},
|
|
|
|
{items = {"default:jogan_leaves"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
after_place_node = default.after_place_leaves,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:uneti_leaves", {
|
|
|
|
description = S("Uneti Leaves"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"uneti_leaves.png"},
|
|
|
|
inventory_image = "uneti_leaves.png",
|
|
|
|
wield_image = "uneti_leaves.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
visual_scale = 1.4,
|
2014-12-07 16:29:36 +01:00
|
|
|
waving = 1,
|
2020-05-17 18:18:09 +02:00
|
|
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:uneti_sapling"}, rarity = 50},
|
|
|
|
{items = {"default:uneti_leaves"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
after_place_node = default.after_place_leaves,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:brylark_leaves", {
|
|
|
|
description = S("Brylark Leaves"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.4,
|
|
|
|
tiles = {"brylark_leaves.png"},
|
|
|
|
inventory_image = "brylark_leaves.png",
|
|
|
|
wield_image = "brylark_leaves.png",
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
2020-05-17 18:18:09 +02:00
|
|
|
walkable = false,
|
|
|
|
waving = 1,
|
|
|
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:brylark_sapling"}, rarity = 50},
|
|
|
|
{items = {"default:brylark_leaves"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
after_place_node = default.after_place_leaves,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:wroshyr_leaves", {
|
|
|
|
description = S("Wroshyr Leaves"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.4,
|
|
|
|
tiles = {"wroshyr_leaves.png"},
|
|
|
|
inventory_image = "wroshyr_leaves.png",
|
|
|
|
wield_image = "wroshyr_leaves.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
waving = 1,
|
|
|
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:wroshyr_sapling"}, rarity = 50},
|
|
|
|
{items = {"default:wroshyr_leaves"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
after_place_node = default.after_place_leaves,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:palm_leaves", {
|
|
|
|
description = S("Palm Leaves"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.4,
|
|
|
|
tiles = {"palm_leaves.png"},
|
|
|
|
inventory_image = "palm_leaves.png",
|
|
|
|
wield_image = "palm_leaves.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
waving = 1,
|
|
|
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:palm_sapling"}, rarity = 10},
|
|
|
|
{items = {"default:palm_leaves"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
after_place_node = default.after_place_leaves,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:pine_needles", {
|
|
|
|
description = S("Pine Needles"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.4,
|
|
|
|
tiles = {"pine_needles.png"},
|
|
|
|
inventory_image = "pine_needles.png",
|
|
|
|
wield_image = "pine_needles.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
waving = 1,
|
|
|
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
2014-12-07 16:29:36 +01:00
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
2015-07-01 14:03:14 +02:00
|
|
|
{items = {"default:pine_sapling"}, rarity = 20},
|
|
|
|
{items = {"default:pine_needles"}}
|
2014-12-07 16:29:36 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
2020-05-17 18:18:09 +02:00
|
|
|
after_place_node = default.after_place_leaves,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:bamboo_leaves", {
|
|
|
|
description = S("Bamboo Leaves"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.4,
|
|
|
|
tiles = {"bamboo_leaves.png"},
|
|
|
|
inventory_image = "bamboo_leaves.png",
|
|
|
|
wield_image = "bamboo_leaves.png",
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
waving = 1,
|
|
|
|
groups = {snappy = 3, leafdecay = 3, leaves = 1, flammable = 2},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:bamboo_sprout"}, rarity = 10},
|
|
|
|
{items = {"default:bamboo_leaves"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
after_place_node = default.after_place_leaves,
|
|
|
|
})
|
2014-12-07 16:29:36 +01:00
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:mushroom_cap", {
|
|
|
|
description = S("Mushroom Cap"),
|
|
|
|
tiles = {"mushroom_cap.png"},
|
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 1, flammable = 2},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:mushroom_sapling"}, rarity = 20},
|
|
|
|
{items = {"default:mushroom_cap"}}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:mushroom_pore", {
|
|
|
|
description = S("Mushroom Pore"),
|
|
|
|
tiles = {"mushroom_pore.png"},
|
|
|
|
groups = {
|
|
|
|
snappy = 3, cracky = 3, choppy = 3, oddly_breakable_by_hand = 3,
|
|
|
|
flammable = 2, disable_jump = 1, fall_damage_add_percent = -100
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_dirt_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:bush_leaves", {
|
|
|
|
description = S("Bush Leaves"),
|
2020-05-17 19:53:03 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"bush_leaves.png"},
|
2020-05-17 19:53:03 +02:00
|
|
|
paramtype = "light",
|
|
|
|
groups = {snappy = 3, flammable = 2, leaves = 1},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:bush_sapling"}, rarity = 5},
|
|
|
|
{items = {"default:bush_leaves"}}
|
|
|
|
}
|
|
|
|
},
|
2020-05-17 18:18:09 +02:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
2020-05-17 19:53:03 +02:00
|
|
|
|
|
|
|
after_place_node = after_place_leaves,
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:bamboo_bush", {
|
|
|
|
description = S("Bamboo Bush"),
|
|
|
|
tiles = {"bamboo_bush.png"},
|
|
|
|
walkable = true,
|
|
|
|
groups = {snappy = 3, flammable = 2},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Ores
|
|
|
|
--
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
-- Coal
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:stone_with_coal", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Coal Ore"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"stone.png^mineral_coal.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3},
|
2019-07-31 01:16:44 +02:00
|
|
|
drop = "default:coal_lump",
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:coal_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Coal Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"coal_block.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
--Zersium/Durasteel
|
|
|
|
minetest.register_node("default:stone_with_zersium", {
|
|
|
|
description = S("Zersium Ore"),
|
|
|
|
tiles = {"stone.png^mineral_zersium.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 2},
|
2020-05-17 18:18:09 +02:00
|
|
|
drop = "default:zersium_lump",
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 18:18:09 +02:00
|
|
|
minetest.register_node("default:durasteel_block", {
|
2019-12-12 22:23:15 +01:00
|
|
|
description = S("Durasteel Block"),
|
2020-05-17 18:18:09 +02:00
|
|
|
tiles = {"durasteel_block.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1, level = 2},
|
2016-10-20 01:34:22 +02:00
|
|
|
sounds = default.node_sound_metal_defaults(),
|
2014-12-07 16:29:36 +01:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Copper
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:stone_with_copper", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Copper Ore"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"stone.png^mineral_copper.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 2},
|
2019-07-31 01:16:44 +02:00
|
|
|
drop = "default:copper_lump",
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
minetest.register_node("default:copper_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Copper Block"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"copper_block.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1, level = 2},
|
2016-10-20 01:34:22 +02:00
|
|
|
sounds = default.node_sound_metal_defaults(),
|
2014-12-07 16:29:36 +01:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Tin
|
2017-04-19 03:48:00 +02:00
|
|
|
minetest.register_node("default:stone_with_tin", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Tin Ore"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"stone.png^mineral_tin.png"},
|
2017-04-19 03:48:00 +02:00
|
|
|
groups = {cracky = 2},
|
|
|
|
drop = "default:tin_lump",
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
minetest.register_node("default:tin_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Tin Block"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"tin_block.png"},
|
2017-04-19 03:48:00 +02:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky = 1, level = 2},
|
|
|
|
sounds = default.node_sound_metal_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Bronze
|
|
|
|
minetest.register_node("default:bronze_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Bronze Block"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"bronze_block.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1, level = 2},
|
2016-10-20 01:34:22 +02:00
|
|
|
sounds = default.node_sound_metal_defaults(),
|
2014-12-07 16:29:36 +01:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Gold
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:stone_with_gold", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Gold Ore"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"stone.png^mineral_gold.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 2},
|
2014-12-07 16:29:36 +01:00
|
|
|
drop = "default:gold_lump",
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
minetest.register_node("default:gold_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Gold Block"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"gold_block.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1},
|
2016-10-20 01:34:22 +02:00
|
|
|
sounds = default.node_sound_metal_defaults(),
|
2014-12-07 16:29:36 +01:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Beskar
|
2019-12-12 22:23:15 +01:00
|
|
|
minetest.register_node("default:stone_with_beskar", {
|
|
|
|
description = S("Beskar Ore"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"stone.png^mineral_beskar.png"},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1},
|
2019-12-12 22:23:15 +01:00
|
|
|
drop = "default:beskar_lump",
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
minetest.register_node("default:beskar_block", {
|
2019-12-12 22:23:15 +01:00
|
|
|
description = S("Beskar Block"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"beskar_block.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 1, level = 3},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Kyber
|
|
|
|
minetest.register_node("default:stone_with_kyber", {
|
|
|
|
description = "Kyber Ore",
|
|
|
|
tiles = {"stone.png^mineral_kyber.png"},
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {cracky=18},
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{items = {"default:kyber_crystal_blue"}},
|
|
|
|
{items = {"default:kyber_crystal_green"}},
|
|
|
|
{items = {"default:kyber_crystal_yellow"}, rarity = 30},
|
|
|
|
{items = {"default:kyber_crystal_purple"}, rarity = 30},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Plantlife (non-cubic)
|
|
|
|
--
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Cactus
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:cactus", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Cactus"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"cactus_top.png", "cactus_top.png",
|
|
|
|
"cactus_side.png"},
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype2 = "facedir",
|
2016-12-04 07:55:32 +01:00
|
|
|
groups = {choppy = 3},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_place = minetest.rotate_node,
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
--Reeds
|
|
|
|
minetest.register_node("default:reeds", {
|
|
|
|
description = S("Reeds"),
|
2019-01-02 03:18:50 +01:00
|
|
|
drawtype = "plantlike",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"reeds.png"},
|
|
|
|
inventory_image = "reeds.png",
|
|
|
|
wield_image = "reeds.png",
|
2019-01-02 03:18:50 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
2020-05-17 19:53:03 +02:00
|
|
|
walkable = true,
|
2013-05-19 18:43:04 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2016-11-05 06:58:12 +01:00
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, 0.5, 6 / 16},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {snappy = 3, flammable = 2},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
|
|
|
|
after_dig_node = function(pos, node, metadata, digger)
|
|
|
|
default.dig_up(pos, node, digger)
|
|
|
|
end,
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Dry Shrub
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:dry_shrub", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Dry Shrub"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"dry_shrub.png"},
|
|
|
|
inventory_image = "dry_shrub.png",
|
|
|
|
wield_image = "dry_shrub.png",
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
2018-01-01 10:24:15 +01:00
|
|
|
paramtype2 = "meshoptions",
|
|
|
|
place_param2 = 4,
|
2014-11-29 11:23:45 +01:00
|
|
|
sunlight_propagates = true,
|
2013-05-19 18:43:04 +02:00
|
|
|
walkable = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
buildable_to = true,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {snappy = 3, flammable = 3, attached_node = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
selection_box = {
|
2014-12-07 16:29:36 +01:00
|
|
|
type = "fixed",
|
2018-01-01 10:24:15 +01:00
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, 4 / 16, 6 / 16},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Jungle Grass
|
|
|
|
minetest.register_node("default:jungle_grass", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Jungle Grass"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2017-02-12 00:06:47 +01:00
|
|
|
visual_scale = 1.69,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"jungle_grass.png"},
|
|
|
|
inventory_image = "jungle_grass.png",
|
|
|
|
wield_image = "jungle_grass.png",
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype = "light",
|
2014-11-29 11:23:45 +01:00
|
|
|
sunlight_propagates = true,
|
2014-12-07 16:29:36 +01:00
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
2017-03-17 06:06:57 +01:00
|
|
|
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2017-12-24 20:24:11 +01:00
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, 0.5, 6 / 16},
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Grass
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:grass_1", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Grass"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"grass_1.png"},
|
2014-12-12 17:47:31 +01:00
|
|
|
-- Use texture of a taller grass stage in inventory
|
2020-05-17 19:53:03 +02:00
|
|
|
inventory_image = "grass_3.png",
|
|
|
|
wield_image = "grass_3.png",
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype = "light",
|
2014-11-29 11:23:45 +01:00
|
|
|
sunlight_propagates = true,
|
2014-12-07 16:29:36 +01:00
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
2016-10-24 20:34:00 +02:00
|
|
|
groups = {snappy = 3, flora = 1, attached_node = 1, grass = 1, flammable = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2016-11-05 06:58:12 +01:00
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -5 / 16, 6 / 16},
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
-- place a random grass node
|
2015-08-25 05:11:46 +02:00
|
|
|
local stack = ItemStack("default:grass_" .. math.random(1,5))
|
2014-12-07 16:29:36 +01:00
|
|
|
local ret = minetest.item_place(stack, placer, pointed_thing)
|
2015-08-25 05:11:46 +02:00
|
|
|
return ItemStack("default:grass_1 " ..
|
|
|
|
itemstack:get_count() - (1 - ret:get_count()))
|
2014-12-07 16:29:36 +01:00
|
|
|
end,
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2015-08-25 05:11:46 +02:00
|
|
|
for i = 2, 5 do
|
|
|
|
minetest.register_node("default:grass_" .. i, {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Grass"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"grass_" .. i .. ".png"},
|
|
|
|
inventory_image = "grass_" .. i .. ".png",
|
|
|
|
wield_image = "grass_" .. i .. ".png",
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype = "light",
|
2014-11-29 11:23:45 +01:00
|
|
|
sunlight_propagates = true,
|
2014-12-07 16:29:36 +01:00
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
drop = "default:grass_1",
|
2016-03-21 10:23:12 +01:00
|
|
|
groups = {snappy = 3, flora = 1, attached_node = 1,
|
2016-10-24 20:34:00 +02:00
|
|
|
not_in_creative_inventory = 1, grass = 1, flammable = 1},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2016-11-05 06:58:12 +01:00
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -3 / 16, 6 / 16},
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Dry Grass
|
2015-07-17 16:53:56 +02:00
|
|
|
minetest.register_node("default:dry_grass_1", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Dry Grass"),
|
2015-07-17 16:53:56 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"dry_grass_1.png"},
|
|
|
|
inventory_image = "dry_grass_3.png",
|
|
|
|
wield_image = "dry_grass_3.png",
|
2015-07-17 16:53:56 +02:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
2016-04-16 22:53:03 +02:00
|
|
|
groups = {snappy = 3, flammable = 3, flora = 1,
|
|
|
|
attached_node = 1, dry_grass = 1},
|
2015-07-17 16:53:56 +02:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2016-11-05 06:58:12 +01:00
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -3 / 16, 6 / 16},
|
2015-07-17 16:53:56 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
-- place a random dry grass node
|
2015-08-25 05:11:46 +02:00
|
|
|
local stack = ItemStack("default:dry_grass_" .. math.random(1, 5))
|
2015-07-17 16:53:56 +02:00
|
|
|
local ret = minetest.item_place(stack, placer, pointed_thing)
|
2015-08-25 05:11:46 +02:00
|
|
|
return ItemStack("default:dry_grass_1 " ..
|
|
|
|
itemstack:get_count() - (1 - ret:get_count()))
|
2015-07-17 16:53:56 +02:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2015-08-25 05:11:46 +02:00
|
|
|
for i = 2, 5 do
|
|
|
|
minetest.register_node("default:dry_grass_" .. i, {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Dry Grass"),
|
2015-07-01 14:03:14 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"dry_grass_" .. i .. ".png"},
|
|
|
|
inventory_image = "dry_grass_" .. i .. ".png",
|
|
|
|
wield_image = "dry_grass_" .. i .. ".png",
|
2015-07-01 14:03:14 +02:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
2016-04-16 22:53:03 +02:00
|
|
|
groups = {snappy = 3, flammable = 3, flora = 1, attached_node = 1,
|
|
|
|
not_in_creative_inventory=1, dry_grass = 1},
|
2015-07-01 14:03:14 +02:00
|
|
|
drop = "default:dry_grass_1",
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
2016-11-05 06:58:12 +01:00
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -1 / 16, 6 / 16},
|
2015-07-01 14:03:14 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Fern
|
2017-12-24 03:23:29 +01:00
|
|
|
minetest.register_node("default:fern_1", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Fern"),
|
2017-12-24 03:23:29 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"fern_1.png"},
|
|
|
|
inventory_image = "fern_1.png",
|
|
|
|
wield_image = "fern_1.png",
|
2017-12-24 03:23:29 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {snappy = 3, flammable = 3, flora = 1, attached_node = 1},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -0.25, 6 / 16},
|
|
|
|
},
|
|
|
|
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
-- place a random fern node
|
|
|
|
local stack = ItemStack("default:fern_" .. math.random(1, 3))
|
|
|
|
local ret = minetest.item_place(stack, placer, pointed_thing)
|
|
|
|
return ItemStack("default:fern_1 " ..
|
|
|
|
itemstack:get_count() - (1 - ret:get_count()))
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
for i = 2, 3 do
|
|
|
|
minetest.register_node("default:fern_" .. i, {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Fern"),
|
2017-12-24 03:23:29 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
|
|
|
visual_scale = 2,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"fern_" .. i .. ".png"},
|
|
|
|
inventory_image = "fern_" .. i .. ".png",
|
|
|
|
wield_image = "fern_" .. i .. ".png",
|
2017-12-24 03:23:29 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {snappy = 3, flammable = 3, flora = 1, attached_node = 1,
|
|
|
|
not_in_creative_inventory=1},
|
|
|
|
drop = "default:fern_1",
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
2018-01-24 12:29:02 +01:00
|
|
|
type = "fixed",
|
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -0.25, 6 / 16},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Saago Grass
|
2020-05-09 23:47:01 +02:00
|
|
|
minetest.register_node("default:saago_grass_1", {
|
|
|
|
description = S("Saago Grass"),
|
2018-01-24 12:29:02 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"saago_grass_1.png"},
|
|
|
|
inventory_image = "saago_grass_1.png",
|
|
|
|
wield_image = "saago_grass_1.png",
|
2018-01-24 12:29:02 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {snappy = 3, flammable = 3, attached_node = 1},
|
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -0.25, 6 / 16},
|
|
|
|
},
|
|
|
|
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
2020-05-09 23:47:01 +02:00
|
|
|
-- place a random saago grass node
|
|
|
|
local stack = ItemStack("default:saago_grass_" .. math.random(1, 3))
|
2018-01-24 12:29:02 +01:00
|
|
|
local ret = minetest.item_place(stack, placer, pointed_thing)
|
2020-05-09 23:47:01 +02:00
|
|
|
return ItemStack("default:saago_grass_1 " ..
|
2018-01-24 12:29:02 +01:00
|
|
|
itemstack:get_count() - (1 - ret:get_count()))
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
for i = 2, 3 do
|
2020-05-09 23:47:01 +02:00
|
|
|
minetest.register_node("default:saago_grass_" .. i, {
|
|
|
|
description = S("Saago Grass"),
|
2018-01-24 12:29:02 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"saago_grass_" .. i .. ".png"},
|
|
|
|
inventory_image = "saago_grass_" .. i .. ".png",
|
|
|
|
wield_image = "saago_grass_" .. i .. ".png",
|
2018-01-24 12:29:02 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
groups = {snappy = 3, flammable = 3, attached_node = 1,
|
|
|
|
not_in_creative_inventory=1},
|
2020-05-09 23:47:01 +02:00
|
|
|
drop = "default:saago_grass_1",
|
2018-01-24 12:29:02 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
selection_box = {
|
2017-12-24 03:23:29 +01:00
|
|
|
type = "fixed",
|
|
|
|
fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, -0.25, 6 / 16},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Kelp
|
2017-10-05 00:46:32 +02:00
|
|
|
minetest.register_node("default:sand_with_kelp", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Kelp"),
|
2017-10-05 00:46:32 +02:00
|
|
|
drawtype = "plantlike_rooted",
|
2018-02-06 01:50:12 +01:00
|
|
|
waving = 1,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"sand.png"},
|
|
|
|
special_tiles = {{name = "kelp.png", tileable_vertical = true}},
|
|
|
|
inventory_image = "kelp.png",
|
2018-05-19 19:57:01 +02:00
|
|
|
paramtype = "light",
|
2017-10-05 00:46:32 +02:00
|
|
|
paramtype2 = "leveled",
|
|
|
|
groups = {snappy = 3},
|
2018-02-06 01:50:12 +01:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
{-2/16, 0.5, -2/16, 2/16, 3.5, 2/16},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
node_dig_prediction = "default:sand",
|
2017-10-05 00:46:32 +02:00
|
|
|
node_placement_prediction = "",
|
2019-02-16 22:18:01 +01:00
|
|
|
sounds = default.node_sound_sand_defaults({
|
|
|
|
dig = {name = "default_dig_snappy", gain = 0.2},
|
|
|
|
dug = {name = "default_grass_footstep", gain = 0.25},
|
|
|
|
}),
|
2017-10-05 00:46:32 +02:00
|
|
|
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
-- Call on_rightclick if the pointed node defines it
|
|
|
|
if pointed_thing.type == "node" and placer and
|
|
|
|
not placer:get_player_control().sneak then
|
|
|
|
local node_ptu = minetest.get_node(pointed_thing.under)
|
|
|
|
local def_ptu = minetest.registered_nodes[node_ptu.name]
|
|
|
|
if def_ptu and def_ptu.on_rightclick then
|
|
|
|
return def_ptu.on_rightclick(pointed_thing.under, node_ptu, placer,
|
|
|
|
itemstack, pointed_thing)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-06 01:50:12 +01:00
|
|
|
local pos = pointed_thing.under
|
|
|
|
if minetest.get_node(pos).name ~= "default:sand" then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2017-10-05 00:46:32 +02:00
|
|
|
local height = math.random(4, 6)
|
|
|
|
local pos_top = {x = pos.x, y = pos.y + height, z = pos.z}
|
|
|
|
local node_top = minetest.get_node(pos_top)
|
|
|
|
local def_top = minetest.registered_nodes[node_top.name]
|
|
|
|
local player_name = placer:get_player_name()
|
|
|
|
|
|
|
|
if def_top and def_top.liquidtype == "source" and
|
|
|
|
minetest.get_item_group(node_top.name, "water") > 0 then
|
|
|
|
if not minetest.is_protected(pos, player_name) and
|
|
|
|
not minetest.is_protected(pos_top, player_name) then
|
|
|
|
minetest.set_node(pos, {name = "default:sand_with_kelp",
|
|
|
|
param2 = height * 16})
|
|
|
|
if not (creative and creative.is_enabled_for
|
|
|
|
and creative.is_enabled_for(player_name)) then
|
|
|
|
itemstack:take_item()
|
|
|
|
end
|
|
|
|
else
|
|
|
|
minetest.chat_send_player(player_name, "Node is protected")
|
|
|
|
minetest.record_protection_violation(pos, player_name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return itemstack
|
2018-02-06 01:50:12 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
after_destruct = function(pos, oldnode)
|
|
|
|
minetest.set_node(pos, {name = "default:sand"})
|
2017-10-05 00:46:32 +02:00
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2016-10-13 01:48:56 +02:00
|
|
|
|
2016-10-12 02:49:31 +02:00
|
|
|
--
|
|
|
|
-- Corals
|
|
|
|
--
|
|
|
|
|
2019-07-12 21:01:27 +02:00
|
|
|
local function coral_on_place(itemstack, placer, pointed_thing)
|
|
|
|
if pointed_thing.type ~= "node" or not placer then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
local player_name = placer:get_player_name()
|
|
|
|
local pos_under = pointed_thing.under
|
|
|
|
local pos_above = pointed_thing.above
|
|
|
|
local node_under = minetest.get_node(pos_under)
|
|
|
|
local def_under = minetest.registered_nodes[node_under.name]
|
|
|
|
|
|
|
|
if def_under and def_under.on_rightclick and not placer:get_player_control().sneak then
|
2019-11-28 03:01:19 +01:00
|
|
|
return def_under.on_rightclick(pos_under, node_under,
|
2019-07-12 21:01:27 +02:00
|
|
|
placer, itemstack, pointed_thing) or itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
if node_under.name ~= "default:coral_skeleton" or
|
|
|
|
minetest.get_node(pos_above).name ~= "default:water_source" then
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.is_protected(pos_under, player_name) or
|
|
|
|
minetest.is_protected(pos_above, player_name) then
|
|
|
|
minetest.log("action", player_name
|
|
|
|
.. " tried to place " .. itemstack:get_name()
|
|
|
|
.. " at protected position "
|
|
|
|
.. minetest.pos_to_string(pos_under))
|
|
|
|
minetest.record_protection_violation(pos_under, player_name)
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
|
|
|
node_under.name = itemstack:get_name()
|
|
|
|
minetest.set_node(pos_under, node_under)
|
|
|
|
if not (creative and creative.is_enabled_for(player_name)) then
|
|
|
|
itemstack:take_item()
|
|
|
|
end
|
|
|
|
|
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2018-11-15 01:49:16 +01:00
|
|
|
minetest.register_node("default:coral_green", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Green Coral"),
|
2018-11-15 01:49:16 +01:00
|
|
|
drawtype = "plantlike_rooted",
|
|
|
|
waving = 1,
|
|
|
|
paramtype = "light",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"coral_skeleton.png"},
|
|
|
|
special_tiles = {{name = "coral_green.png", tileable_vertical = true}},
|
|
|
|
inventory_image = "coral_green.png",
|
2018-11-15 01:49:16 +01:00
|
|
|
groups = {snappy = 3},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
{-4/16, 0.5, -4/16, 4/16, 1.5, 4/16},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
node_dig_prediction = "default:coral_skeleton",
|
|
|
|
node_placement_prediction = "",
|
2019-02-16 22:18:01 +01:00
|
|
|
sounds = default.node_sound_stone_defaults({
|
|
|
|
dig = {name = "default_dig_snappy", gain = 0.2},
|
|
|
|
dug = {name = "default_grass_footstep", gain = 0.25},
|
|
|
|
}),
|
|
|
|
|
2019-07-12 21:01:27 +02:00
|
|
|
on_place = coral_on_place,
|
2019-02-16 22:18:01 +01:00
|
|
|
|
2018-11-15 01:49:16 +01:00
|
|
|
after_destruct = function(pos, oldnode)
|
|
|
|
minetest.set_node(pos, {name = "default:coral_skeleton"})
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:coral_pink", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Pink Coral"),
|
2018-11-15 01:49:16 +01:00
|
|
|
drawtype = "plantlike_rooted",
|
|
|
|
waving = 1,
|
|
|
|
paramtype = "light",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"coral_skeleton.png"},
|
|
|
|
special_tiles = {{name = "coral_pink.png", tileable_vertical = true}},
|
|
|
|
inventory_image = "coral_pink.png",
|
2018-11-15 01:49:16 +01:00
|
|
|
groups = {snappy = 3},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
{-4/16, 0.5, -4/16, 4/16, 1.5, 4/16},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
node_dig_prediction = "default:coral_skeleton",
|
|
|
|
node_placement_prediction = "",
|
2019-02-16 22:18:01 +01:00
|
|
|
sounds = default.node_sound_stone_defaults({
|
|
|
|
dig = {name = "default_dig_snappy", gain = 0.2},
|
|
|
|
dug = {name = "default_grass_footstep", gain = 0.25},
|
|
|
|
}),
|
|
|
|
|
2019-07-12 21:01:27 +02:00
|
|
|
on_place = coral_on_place,
|
2019-02-16 22:18:01 +01:00
|
|
|
|
2018-11-15 01:49:16 +01:00
|
|
|
after_destruct = function(pos, oldnode)
|
|
|
|
minetest.set_node(pos, {name = "default:coral_skeleton"})
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:coral_cyan", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Cyan Coral"),
|
2018-11-15 01:49:16 +01:00
|
|
|
drawtype = "plantlike_rooted",
|
|
|
|
waving = 1,
|
|
|
|
paramtype = "light",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"coral_skeleton.png"},
|
|
|
|
special_tiles = {{name = "coral_cyan.png", tileable_vertical = true}},
|
|
|
|
inventory_image = "coral_cyan.png",
|
2018-11-15 01:49:16 +01:00
|
|
|
groups = {snappy = 3},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
{-4/16, 0.5, -4/16, 4/16, 1.5, 4/16},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
node_dig_prediction = "default:coral_skeleton",
|
|
|
|
node_placement_prediction = "",
|
2019-02-16 22:18:01 +01:00
|
|
|
sounds = default.node_sound_stone_defaults({
|
|
|
|
dig = {name = "default_dig_snappy", gain = 0.2},
|
|
|
|
dug = {name = "default_grass_footstep", gain = 0.25},
|
|
|
|
}),
|
|
|
|
|
2019-07-12 21:01:27 +02:00
|
|
|
on_place = coral_on_place,
|
2019-02-16 22:18:01 +01:00
|
|
|
|
2018-11-15 01:49:16 +01:00
|
|
|
after_destruct = function(pos, oldnode)
|
|
|
|
minetest.set_node(pos, {name = "default:coral_skeleton"})
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2016-10-12 02:49:31 +02:00
|
|
|
minetest.register_node("default:coral_brown", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Brown Coral"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"coral_brown.png"},
|
2016-10-12 02:49:31 +02:00
|
|
|
groups = {cracky = 3},
|
|
|
|
drop = "default:coral_skeleton",
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:coral_orange", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Orange Coral"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"coral_orange.png"},
|
2016-10-12 02:49:31 +02:00
|
|
|
groups = {cracky = 3},
|
|
|
|
drop = "default:coral_skeleton",
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:coral_skeleton", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Coral Skeleton"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"coral_skeleton.png"},
|
2016-10-12 02:49:31 +02:00
|
|
|
groups = {cracky = 3},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Liquids
|
|
|
|
--
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Water
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:water_source", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Water Source"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "liquid",
|
2019-09-14 14:30:44 +02:00
|
|
|
waving = 3,
|
2014-12-07 16:29:36 +01:00
|
|
|
tiles = {
|
2013-05-19 18:43:04 +02:00
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "water_source_animated.png",
|
2018-10-27 14:57:16 +02:00
|
|
|
backface_culling = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 2.0,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "water_source_animated.png",
|
2018-10-27 14:57:16 +02:00
|
|
|
backface_culling = true,
|
2014-12-07 16:29:36 +01:00
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 2.0,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
|
|
|
},
|
2019-10-05 22:25:38 +02:00
|
|
|
alpha = 191,
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
2015-04-05 01:40:23 +02:00
|
|
|
is_ground_content = false,
|
2013-05-19 18:43:04 +02:00
|
|
|
drop = "",
|
2013-08-02 08:12:20 +02:00
|
|
|
drowning = 1,
|
2014-12-07 16:29:36 +01:00
|
|
|
liquidtype = "source",
|
2013-05-19 18:43:04 +02:00
|
|
|
liquid_alternative_flowing = "default:water_flowing",
|
|
|
|
liquid_alternative_source = "default:water_source",
|
2014-12-07 15:17:09 +01:00
|
|
|
liquid_viscosity = 1,
|
2015-12-06 04:09:29 +01:00
|
|
|
post_effect_color = {a = 103, r = 30, g = 60, b = 90},
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {water = 3, liquid = 3, cools_lava = 1},
|
2016-11-17 03:41:38 +01:00
|
|
|
sounds = default.node_sound_water_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:water_flowing", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Flowing Water"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "flowingliquid",
|
2019-09-14 14:30:44 +02:00
|
|
|
waving = 3,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"water.png"},
|
2013-05-19 18:43:04 +02:00
|
|
|
special_tiles = {
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "water_flowing_animated.png",
|
2013-05-19 18:43:04 +02:00
|
|
|
backface_culling = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
animation = {
|
2014-12-15 13:27:20 +01:00
|
|
|
type = "vertical_frames",
|
2014-12-07 16:29:36 +01:00
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 0.8,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "water_flowing_animated.png",
|
2014-12-07 16:29:36 +01:00
|
|
|
backface_culling = true,
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 0.8,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
|
|
|
},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
2019-10-05 22:25:38 +02:00
|
|
|
alpha = 191,
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype2 = "flowingliquid",
|
2013-05-19 18:43:04 +02:00
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
2015-04-05 01:40:23 +02:00
|
|
|
is_ground_content = false,
|
2013-05-19 18:43:04 +02:00
|
|
|
drop = "",
|
2013-08-02 08:12:20 +02:00
|
|
|
drowning = 1,
|
2014-12-07 16:29:36 +01:00
|
|
|
liquidtype = "flowing",
|
2013-05-19 18:43:04 +02:00
|
|
|
liquid_alternative_flowing = "default:water_flowing",
|
|
|
|
liquid_alternative_source = "default:water_source",
|
2014-12-07 15:17:09 +01:00
|
|
|
liquid_viscosity = 1,
|
2015-12-06 04:09:29 +01:00
|
|
|
post_effect_color = {a = 103, r = 30, g = 60, b = 90},
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {water = 3, liquid = 3, not_in_creative_inventory = 1,
|
|
|
|
cools_lava = 1},
|
2016-11-17 03:41:38 +01:00
|
|
|
sounds = default.node_sound_water_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- River Water
|
2015-04-17 07:50:06 +02:00
|
|
|
minetest.register_node("default:river_water_source", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("River Water Source"),
|
2015-04-17 07:50:06 +02:00
|
|
|
drawtype = "liquid",
|
|
|
|
tiles = {
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "river_water_source_animated.png",
|
2018-10-27 14:57:16 +02:00
|
|
|
backface_culling = false,
|
2015-04-17 07:50:06 +02:00
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 2.0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "river_water_source_animated.png",
|
2018-10-27 14:57:16 +02:00
|
|
|
backface_culling = true,
|
2015-04-17 07:50:06 +02:00
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 2.0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
alpha = 160,
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
drop = "",
|
|
|
|
drowning = 1,
|
|
|
|
liquidtype = "source",
|
|
|
|
liquid_alternative_flowing = "default:river_water_flowing",
|
|
|
|
liquid_alternative_source = "default:river_water_source",
|
|
|
|
liquid_viscosity = 1,
|
2017-11-08 13:44:56 +01:00
|
|
|
-- Not renewable to avoid horizontal spread of water sources in sloping
|
|
|
|
-- rivers that can cause water to overflow riverbanks and cause floods.
|
|
|
|
-- River water source is instead made renewable by the 'force renew'
|
|
|
|
-- option used in the 'bucket' mod by the river water bucket.
|
2015-04-17 07:50:06 +02:00
|
|
|
liquid_renewable = false,
|
|
|
|
liquid_range = 2,
|
2015-12-06 04:09:29 +01:00
|
|
|
post_effect_color = {a = 103, r = 30, g = 76, b = 90},
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {water = 3, liquid = 3, cools_lava = 1},
|
2016-11-17 03:41:38 +01:00
|
|
|
sounds = default.node_sound_water_defaults(),
|
2015-04-17 07:50:06 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("default:river_water_flowing", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Flowing River Water"),
|
2015-04-17 07:50:06 +02:00
|
|
|
drawtype = "flowingliquid",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"river_water.png"},
|
2015-04-17 07:50:06 +02:00
|
|
|
special_tiles = {
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "river_water_flowing_animated.png",
|
2015-04-17 07:50:06 +02:00
|
|
|
backface_culling = false,
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 0.8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "river_water_flowing_animated.png",
|
2015-04-17 07:50:06 +02:00
|
|
|
backface_culling = true,
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
|
|
|
length = 0.8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
alpha = 160,
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "flowingliquid",
|
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
drop = "",
|
|
|
|
drowning = 1,
|
|
|
|
liquidtype = "flowing",
|
|
|
|
liquid_alternative_flowing = "default:river_water_flowing",
|
|
|
|
liquid_alternative_source = "default:river_water_source",
|
|
|
|
liquid_viscosity = 1,
|
|
|
|
liquid_renewable = false,
|
|
|
|
liquid_range = 2,
|
2015-12-06 04:09:29 +01:00
|
|
|
post_effect_color = {a = 103, r = 30, g = 76, b = 90},
|
2018-12-08 05:00:38 +01:00
|
|
|
groups = {water = 3, liquid = 3, not_in_creative_inventory = 1,
|
|
|
|
cools_lava = 1},
|
2016-11-17 03:41:38 +01:00
|
|
|
sounds = default.node_sound_water_defaults(),
|
2015-04-17 07:50:06 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Lava
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:lava_source", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Lava Source"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "liquid",
|
|
|
|
tiles = {
|
2013-05-19 18:43:04 +02:00
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "lava_source_animated.png",
|
2018-10-27 14:57:16 +02:00
|
|
|
backface_culling = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 3.0,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "lava_source_animated.png",
|
2018-10-27 14:57:16 +02:00
|
|
|
backface_culling = true,
|
2014-12-07 16:29:36 +01:00
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 3.0,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
2014-12-07 15:17:09 +01:00
|
|
|
light_source = default.LIGHT_MAX - 1,
|
2013-05-19 18:43:04 +02:00
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
2015-04-05 01:40:23 +02:00
|
|
|
is_ground_content = false,
|
2013-05-19 18:43:04 +02:00
|
|
|
drop = "",
|
2013-08-02 08:12:20 +02:00
|
|
|
drowning = 1,
|
2014-12-07 16:29:36 +01:00
|
|
|
liquidtype = "source",
|
2013-05-19 18:43:04 +02:00
|
|
|
liquid_alternative_flowing = "default:lava_flowing",
|
|
|
|
liquid_alternative_source = "default:lava_source",
|
2014-12-07 15:17:09 +01:00
|
|
|
liquid_viscosity = 7,
|
2013-05-19 18:43:04 +02:00
|
|
|
liquid_renewable = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
damage_per_second = 4 * 2,
|
2015-12-06 04:09:29 +01:00
|
|
|
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
2016-07-07 18:25:42 +02:00
|
|
|
groups = {lava = 3, liquid = 2, igniter = 1},
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:lava_flowing", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Flowing Lava"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "flowingliquid",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"lava.png"},
|
2013-05-19 18:43:04 +02:00
|
|
|
special_tiles = {
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "lava_flowing_animated.png",
|
2013-05-19 18:43:04 +02:00
|
|
|
backface_culling = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 3.3,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-05-17 19:53:03 +02:00
|
|
|
name = "lava_flowing_animated.png",
|
2014-12-07 16:29:36 +01:00
|
|
|
backface_culling = true,
|
|
|
|
animation = {
|
|
|
|
type = "vertical_frames",
|
|
|
|
aspect_w = 16,
|
|
|
|
aspect_h = 16,
|
2014-12-15 13:27:20 +01:00
|
|
|
length = 3.3,
|
2014-12-07 16:29:36 +01:00
|
|
|
},
|
|
|
|
},
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
|
|
|
paramtype = "light",
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype2 = "flowingliquid",
|
2014-12-07 15:17:09 +01:00
|
|
|
light_source = default.LIGHT_MAX - 1,
|
2013-05-19 18:43:04 +02:00
|
|
|
walkable = false,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = true,
|
2015-04-05 01:40:23 +02:00
|
|
|
is_ground_content = false,
|
2013-05-19 18:43:04 +02:00
|
|
|
drop = "",
|
2013-08-02 08:12:20 +02:00
|
|
|
drowning = 1,
|
2014-12-07 16:29:36 +01:00
|
|
|
liquidtype = "flowing",
|
2013-05-19 18:43:04 +02:00
|
|
|
liquid_alternative_flowing = "default:lava_flowing",
|
|
|
|
liquid_alternative_source = "default:lava_source",
|
2014-12-07 15:17:09 +01:00
|
|
|
liquid_viscosity = 7,
|
2013-05-19 18:43:04 +02:00
|
|
|
liquid_renewable = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
damage_per_second = 4 * 2,
|
2015-12-06 04:09:29 +01:00
|
|
|
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
2016-07-07 18:25:42 +02:00
|
|
|
groups = {lava = 3, liquid = 2, igniter = 1,
|
2015-08-25 05:11:46 +02:00
|
|
|
not_in_creative_inventory = 1},
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Tools / "Advanced" crafting / Non-"natural"
|
|
|
|
--
|
|
|
|
|
|
|
|
local bookshelf_formspec =
|
2015-08-25 05:11:46 +02:00
|
|
|
"size[8,7;]" ..
|
|
|
|
"list[context;books;0,0.3;8,2;]" ..
|
|
|
|
"list[current_player;main;0,2.85;8,1;]" ..
|
|
|
|
"list[current_player;main;0,4.08;8,3;8]" ..
|
|
|
|
"listring[context;books]" ..
|
|
|
|
"listring[current_player;main]" ..
|
2014-12-07 16:29:36 +01:00
|
|
|
default.get_hotbar_bg(0,2.85)
|
2013-05-19 18:43:04 +02:00
|
|
|
|
2017-10-23 20:25:46 +02:00
|
|
|
local function update_bookshelf(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
|
|
|
local invlist = inv:get_list("books")
|
|
|
|
|
2016-11-06 21:36:36 +01:00
|
|
|
local formspec = bookshelf_formspec
|
|
|
|
-- Inventory slots overlay
|
|
|
|
local bx, by = 0, 0.3
|
2017-10-23 20:25:46 +02:00
|
|
|
local n_written, n_empty = 0, 0
|
2016-11-06 21:36:36 +01:00
|
|
|
for i = 1, 16 do
|
|
|
|
if i == 9 then
|
|
|
|
bx = 0
|
|
|
|
by = by + 1
|
|
|
|
end
|
2017-10-23 20:25:46 +02:00
|
|
|
local stack = invlist[i]
|
|
|
|
if stack:is_empty() then
|
2016-11-06 21:36:36 +01:00
|
|
|
formspec = formspec ..
|
2020-05-17 19:53:03 +02:00
|
|
|
"image[" .. bx .. "," .. by .. ";1,1;bookshelf_slot.png]"
|
2017-10-23 20:25:46 +02:00
|
|
|
else
|
|
|
|
local metatable = stack:get_meta():to_table() or {}
|
|
|
|
if metatable.fields and metatable.fields.text then
|
|
|
|
n_written = n_written + stack:get_count()
|
|
|
|
else
|
|
|
|
n_empty = n_empty + stack:get_count()
|
|
|
|
end
|
2016-11-06 21:36:36 +01:00
|
|
|
end
|
|
|
|
bx = bx + 1
|
2016-10-27 19:42:47 +02:00
|
|
|
end
|
2017-10-23 20:25:46 +02:00
|
|
|
meta:set_string("formspec", formspec)
|
|
|
|
if n_written + n_empty == 0 then
|
2019-09-10 19:09:51 +02:00
|
|
|
meta:set_string("infotext", S("Empty Bookshelf"))
|
2017-10-23 20:25:46 +02:00
|
|
|
else
|
2019-09-10 19:09:51 +02:00
|
|
|
meta:set_string("infotext", S("Bookshelf (@1 written, @2 empty books)", n_written, n_empty))
|
2017-10-23 20:25:46 +02:00
|
|
|
end
|
2016-10-27 19:42:47 +02:00
|
|
|
end
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Bookshelf
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:bookshelf", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Bookshelf"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"wood.png", "wood.png", "wood.png",
|
|
|
|
"wood.png", "bookshelf.png", "bookshelf.png"},
|
2016-05-24 06:29:30 +02:00
|
|
|
paramtype2 = "facedir",
|
2014-12-07 16:29:36 +01:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
on_construct = function(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
local inv = meta:get_inventory()
|
2015-08-25 05:11:46 +02:00
|
|
|
inv:set_size("books", 8 * 2)
|
2017-10-23 20:25:46 +02:00
|
|
|
update_bookshelf(pos)
|
2014-12-07 16:29:36 +01:00
|
|
|
end,
|
|
|
|
can_dig = function(pos,player)
|
2016-03-23 19:48:22 +01:00
|
|
|
local inv = minetest.get_meta(pos):get_inventory()
|
2014-12-07 16:29:36 +01:00
|
|
|
return inv:is_empty("books")
|
|
|
|
end,
|
2016-03-23 19:48:22 +01:00
|
|
|
allow_metadata_inventory_put = function(pos, listname, index, stack)
|
|
|
|
if minetest.get_item_group(stack:get_name(), "book") ~= 0 then
|
|
|
|
return stack:get_count()
|
2014-12-07 16:29:36 +01:00
|
|
|
end
|
2016-03-23 19:48:22 +01:00
|
|
|
return 0
|
2014-12-07 16:29:36 +01:00
|
|
|
end,
|
2016-03-23 19:48:22 +01:00
|
|
|
on_metadata_inventory_move = function(pos, from_list, from_index, to_list, to_index, count, player)
|
2015-08-25 05:11:46 +02:00
|
|
|
minetest.log("action", player:get_player_name() ..
|
|
|
|
" moves stuff in bookshelf at " .. minetest.pos_to_string(pos))
|
2017-10-23 20:25:46 +02:00
|
|
|
update_bookshelf(pos)
|
2014-12-07 16:29:36 +01:00
|
|
|
end,
|
|
|
|
on_metadata_inventory_put = function(pos, listname, index, stack, player)
|
2015-08-25 05:11:46 +02:00
|
|
|
minetest.log("action", player:get_player_name() ..
|
2017-10-23 20:25:46 +02:00
|
|
|
" puts stuff to bookshelf at " .. minetest.pos_to_string(pos))
|
|
|
|
update_bookshelf(pos)
|
2014-12-07 16:29:36 +01:00
|
|
|
end,
|
|
|
|
on_metadata_inventory_take = function(pos, listname, index, stack, player)
|
2015-08-25 05:11:46 +02:00
|
|
|
minetest.log("action", player:get_player_name() ..
|
|
|
|
" takes stuff from bookshelf at " .. minetest.pos_to_string(pos))
|
2017-10-23 20:25:46 +02:00
|
|
|
update_bookshelf(pos)
|
2014-12-07 16:29:36 +01:00
|
|
|
end,
|
2016-04-16 04:21:45 +02:00
|
|
|
on_blast = function(pos)
|
|
|
|
local drops = {}
|
|
|
|
default.get_inventory_drops(pos, "books", drops)
|
|
|
|
drops[#drops+1] = "default:bookshelf"
|
|
|
|
minetest.remove_node(pos)
|
|
|
|
return drops
|
|
|
|
end,
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Signs
|
2016-03-06 12:16:33 +01:00
|
|
|
local function register_sign(material, desc, def)
|
|
|
|
minetest.register_node("default:sign_wall_" .. material, {
|
2019-09-12 19:03:10 +02:00
|
|
|
description = desc,
|
2016-03-06 12:16:33 +01:00
|
|
|
drawtype = "nodebox",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"sign_wall_" .. material .. ".png"},
|
|
|
|
inventory_image = "sign_" .. material .. ".png",
|
|
|
|
wield_image = "sign_" .. material .. ".png",
|
2016-03-06 12:16:33 +01:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
|
|
|
node_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
wall_top = {-0.4375, 0.4375, -0.3125, 0.4375, 0.5, 0.3125},
|
|
|
|
wall_bottom = {-0.4375, -0.5, -0.3125, 0.4375, -0.4375, 0.3125},
|
|
|
|
wall_side = {-0.5, -0.3125, -0.4375, -0.4375, 0.3125, 0.4375},
|
|
|
|
},
|
|
|
|
groups = def.groups,
|
|
|
|
legacy_wallmounted = true,
|
|
|
|
sounds = def.sounds,
|
|
|
|
|
|
|
|
on_construct = function(pos)
|
|
|
|
--local n = minetest.get_node(pos)
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("formspec", "field[text;;${text}]")
|
|
|
|
end,
|
|
|
|
on_receive_fields = function(pos, formname, fields, sender)
|
|
|
|
--print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields))
|
|
|
|
local player_name = sender:get_player_name()
|
|
|
|
if minetest.is_protected(pos, player_name) then
|
|
|
|
minetest.record_protection_violation(pos, player_name)
|
|
|
|
return
|
|
|
|
end
|
2019-02-05 06:28:00 +01:00
|
|
|
local text = fields.text
|
|
|
|
if not text then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if string.len(text) > 512 then
|
2019-09-10 19:09:51 +02:00
|
|
|
minetest.chat_send_player(player_name, S("Text too long"))
|
2019-02-05 06:28:00 +01:00
|
|
|
return
|
|
|
|
end
|
2016-03-06 12:16:33 +01:00
|
|
|
minetest.log("action", (player_name or "") .. " wrote \"" ..
|
2019-02-05 06:28:00 +01:00
|
|
|
text .. "\" to sign at " .. minetest.pos_to_string(pos))
|
|
|
|
local meta = minetest.get_meta(pos)
|
|
|
|
meta:set_string("text", text)
|
2019-09-14 20:30:26 +02:00
|
|
|
|
|
|
|
if #text > 0 then
|
2019-09-18 20:38:27 +02:00
|
|
|
meta:set_string("infotext", S('"@1"', text))
|
2019-09-14 20:30:26 +02:00
|
|
|
else
|
|
|
|
meta:set_string("infotext", '')
|
|
|
|
end
|
2016-03-06 12:16:33 +01:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
2013-05-19 18:43:04 +02:00
|
|
|
|
2019-09-12 19:03:10 +02:00
|
|
|
register_sign("wood", S("Wooden Sign"), {
|
2016-03-06 12:16:33 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2016-03-21 11:25:25 +01:00
|
|
|
groups = {choppy = 2, attached_node = 1, flammable = 2, oddly_breakable_by_hand = 3}
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2019-12-12 22:23:15 +01:00
|
|
|
register_sign("durasteel", S("Durasteel Sign"), {
|
2016-10-20 01:34:22 +02:00
|
|
|
sounds = default.node_sound_metal_defaults(),
|
2016-03-06 12:16:33 +01:00
|
|
|
groups = {cracky = 2, attached_node = 1}
|
|
|
|
})
|
2015-08-25 05:11:46 +02:00
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Ladders
|
2016-03-03 10:52:45 +01:00
|
|
|
minetest.register_node("default:ladder_wood", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Wooden Ladder"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "signlike",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"ladder_wood.png"},
|
|
|
|
inventory_image = "ladder_wood.png",
|
|
|
|
wield_image = "ladder_wood.png",
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
2014-12-07 16:29:36 +01:00
|
|
|
paramtype2 = "wallmounted",
|
2014-11-29 11:23:45 +01:00
|
|
|
sunlight_propagates = true,
|
2013-05-19 18:43:04 +02:00
|
|
|
walkable = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
climbable = true,
|
|
|
|
is_ground_content = false,
|
2013-05-19 18:43:04 +02:00
|
|
|
selection_box = {
|
2014-12-07 16:29:36 +01:00
|
|
|
type = "wallmounted",
|
|
|
|
--wall_top = = <default>
|
|
|
|
--wall_bottom = = <default>
|
|
|
|
--wall_side = = <default>
|
2013-05-19 18:43:04 +02:00
|
|
|
},
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 3, flammable = 2},
|
2014-12-07 16:29:36 +01:00
|
|
|
legacy_wallmounted = true,
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2019-12-12 22:23:15 +01:00
|
|
|
minetest.register_node("default:ladder_durasteel", {
|
|
|
|
description = S("Durateel Ladder"),
|
2016-03-03 10:52:45 +01:00
|
|
|
drawtype = "signlike",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"ladder_durasteel.png"},
|
|
|
|
inventory_image = "ladder_durasteel.png",
|
|
|
|
wield_image = "ladder_durasteel.png",
|
2016-03-03 10:52:45 +01:00
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
climbable = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
--wall_top = = <default>
|
|
|
|
--wall_bottom = = <default>
|
|
|
|
--wall_side = = <default>
|
|
|
|
},
|
|
|
|
groups = {cracky = 2},
|
2016-10-20 01:34:22 +02:00
|
|
|
sounds = default.node_sound_metal_defaults(),
|
2016-03-03 10:52:45 +01:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Fences
|
|
|
|
default.register_fence("default:fence_jogan_wood", {
|
2019-12-12 22:23:15 +01:00
|
|
|
description = S("Jogan Wood Fence"),
|
2020-05-17 19:53:03 +02:00
|
|
|
texture = "fence_jogan_wood.png",
|
|
|
|
inventory_image = "fence_overlay.png^jogan_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_overlay.png^jogan_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:jogan_wood",
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
|
Create API for fence.register, and use it.
This converts the call to minetest.register() for the default
fence node, so it can be called by other mods to quickly
setup other fences.
Since this creates an API, insert it into the game_api.txt.
The api looks like minetest.register(name, {def}), and has two
uncommon fields: "texture" and "material". Any normal nodedef
property can be passed through, except "drawtype". The "fence"
group will always be added.
The default fence recipe is modified to be as follows:
wood, stick, wood
wood, stick, wood
This recipe yields 4 fence nodes.
This allows us to create according recipes for acacia, pine,
aspen, and junglewood fences without adding new stick types:
pine wood, stick, pine wood
pine wood, stick, pine wood
This is a from-scratch implementation, written by heart but inspired
by (#665 - Add many wooden fences).
Stick and fences nodes are named in a consistent way.
2015-12-15 06:49:20 +01:00
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence("default:fence_pine_wood", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Pine Wood Fence"),
|
2020-05-17 19:53:03 +02:00
|
|
|
texture = "fence_pine_wood.png",
|
|
|
|
inventory_image = "fence_overlay.png^pine_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_overlay.png^pine_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
Create API for fence.register, and use it.
This converts the call to minetest.register() for the default
fence node, so it can be called by other mods to quickly
setup other fences.
Since this creates an API, insert it into the game_api.txt.
The api looks like minetest.register(name, {def}), and has two
uncommon fields: "texture" and "material". Any normal nodedef
property can be passed through, except "drawtype". The "fence"
group will always be added.
The default fence recipe is modified to be as follows:
wood, stick, wood
wood, stick, wood
This recipe yields 4 fence nodes.
This allows us to create according recipes for acacia, pine,
aspen, and junglewood fences without adding new stick types:
pine wood, stick, pine wood
pine wood, stick, pine wood
This is a from-scratch implementation, written by heart but inspired
by (#665 - Add many wooden fences).
Stick and fences nodes are named in a consistent way.
2015-12-15 06:49:20 +01:00
|
|
|
material = "default:pine_wood",
|
2016-08-27 03:41:31 +02:00
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
Create API for fence.register, and use it.
This converts the call to minetest.register() for the default
fence node, so it can be called by other mods to quickly
setup other fences.
Since this creates an API, insert it into the game_api.txt.
The api looks like minetest.register(name, {def}), and has two
uncommon fields: "texture" and "material". Any normal nodedef
property can be passed through, except "drawtype". The "fence"
group will always be added.
The default fence recipe is modified to be as follows:
wood, stick, wood
wood, stick, wood
This recipe yields 4 fence nodes.
This allows us to create according recipes for acacia, pine,
aspen, and junglewood fences without adding new stick types:
pine wood, stick, pine wood
pine wood, stick, pine wood
This is a from-scratch implementation, written by heart but inspired
by (#665 - Add many wooden fences).
Stick and fences nodes are named in a consistent way.
2015-12-15 06:49:20 +01:00
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
default.register_fence("default:fence_uneti_wood", {
|
|
|
|
description = S("Uneti Wood Fence"),
|
|
|
|
texture = "fence_uneti_wood.png",
|
|
|
|
inventory_image = "fence_overlay.png^uneti_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_overlay.png^uneti_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:uneti_wood",
|
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence("default:fence_brylark_wood", {
|
|
|
|
description = S("Brylark Wood Fence"),
|
|
|
|
texture = "fence_brylark_wood.png",
|
|
|
|
inventory_image = "fence_overlay.png^brylark_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_overlay.png^brylark_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:brylark_wood",
|
|
|
|
groups = {cracky = 1, level = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence("default:fence_palm_wood", {
|
|
|
|
description = S("Palm Wood Fence"),
|
|
|
|
texture = "fence_palm_wood.png",
|
|
|
|
inventory_image = "fence_overlay.png^palm_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_overlay.png^palm_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:palm_wood",
|
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence("default:fence_wroshyr_wood", {
|
|
|
|
description = S("Wroshyr Wood Fence"),
|
|
|
|
texture = "fence_wroshyr_wood.png",
|
|
|
|
inventory_image = "fence_overlay.png^wroshyr_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_overlay.png^wroshyr_wood.png^" ..
|
|
|
|
"fence_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:wroshyr_wood",
|
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Fence Rail
|
|
|
|
default.register_fence_rail("default:fence_rail_jogan_wood", {
|
2019-12-12 22:23:15 +01:00
|
|
|
description = S("Jogan Wood Fence Rail"),
|
2020-05-17 19:53:03 +02:00
|
|
|
texture = "fence_rail_jogan_wood.png",
|
|
|
|
inventory_image = "fence_rail_overlay.png^jogan_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_rail_overlay.png^jogan_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:jogan_wood",
|
2018-07-07 20:03:33 +02:00
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence_rail("default:fence_rail_pine_wood", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Pine Wood Fence Rail"),
|
2020-05-17 19:53:03 +02:00
|
|
|
texture = "fence_rail_pine_wood.png",
|
|
|
|
inventory_image = "fence_rail_overlay.png^pine_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_rail_overlay.png^pine_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
2018-07-07 20:03:33 +02:00
|
|
|
material = "default:pine_wood",
|
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
default.register_fence_rail("default:fence_rail_uneti_wood", {
|
|
|
|
description = S("Uneti Wood Fence Rail"),
|
|
|
|
texture = "fence_rail_uneti_wood.png",
|
|
|
|
inventory_image = "fence_rail_overlay.png^uneti_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_rail_overlay.png^uneti_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:uneti_wood",
|
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence_rail("default:fence_rail_brylark_wood", {
|
|
|
|
description = S("Brylark Wood Fence Rail"),
|
|
|
|
texture = "fence_rail_brylark_wood.png",
|
|
|
|
inventory_image = "fence_rail_overlay.png^brylark_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_rail_overlay.png^brylark_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:brylark_wood",
|
|
|
|
groups = {cracky = 1, level = 2},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence_rail("default:fence_rail_palm_wood", {
|
|
|
|
description = S("Palm Wood Fence Rail"),
|
|
|
|
texture = "fence_rail_palm_wood.png",
|
|
|
|
inventory_image = "fence_rail_overlay.png^palm_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_rail_overlay.png^palm_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:palm_wood",
|
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
default.register_fence_rail("default:fence_rail_wroshyr_wood", {
|
|
|
|
description = S("Wroshyr Wood Fence Rail"),
|
|
|
|
texture = "fence_rail_wroshyr_wood.png",
|
|
|
|
inventory_image = "fence_rail_overlay.png^wroshyr_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
wield_image = "fence_rail_overlay.png^wroshyr_wood.png^" ..
|
|
|
|
"fence_rail_overlay.png^[makealpha:255,126,126",
|
|
|
|
material = "default:wroshyr_wood",
|
|
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3},
|
|
|
|
sounds = default.node_sound_wood_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Glass
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:glass", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Glass"),
|
2014-12-07 16:29:36 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"glass.png", "glass_detail.png"},
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
2017-03-29 05:59:19 +02:00
|
|
|
paramtype2 = "glasslikeliquidlevel",
|
2014-12-07 16:29:36 +01:00
|
|
|
sunlight_propagates = true,
|
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3, oddly_breakable_by_hand = 3},
|
2013-05-19 18:43:04 +02:00
|
|
|
sounds = default.node_sound_glass_defaults(),
|
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:obsidian_glass", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Obsidian Glass"),
|
2015-03-01 04:15:16 +01:00
|
|
|
drawtype = "glasslike_framed_optional",
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"obsidian_glass.png", "obsidian_glass_detail.png"},
|
2013-05-19 18:43:04 +02:00
|
|
|
paramtype = "light",
|
2017-03-29 05:59:19 +02:00
|
|
|
paramtype2 = "glasslikeliquidlevel",
|
2014-12-07 16:29:36 +01:00
|
|
|
is_ground_content = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
sounds = default.node_sound_glass_defaults(),
|
2015-06-17 19:07:55 +02:00
|
|
|
groups = {cracky = 3},
|
2013-05-19 18:43:04 +02:00
|
|
|
})
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Brick Block
|
|
|
|
minetest.register_node("default:brick_block", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Brick Block"),
|
2016-05-29 22:45:18 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"brick_block.png"},
|
2014-10-21 19:53:04 +02:00
|
|
|
is_ground_content = false,
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {cracky = 3},
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_stone_defaults(),
|
2014-10-21 19:53:04 +02:00
|
|
|
})
|
|
|
|
|
2014-12-07 16:29:36 +01:00
|
|
|
--
|
|
|
|
-- Misc
|
|
|
|
--
|
|
|
|
|
2020-05-17 19:53:03 +02:00
|
|
|
-- Cloud
|
2014-12-07 16:29:36 +01:00
|
|
|
minetest.register_node("default:cloud", {
|
2019-09-10 19:09:51 +02:00
|
|
|
description = S("Cloud"),
|
2020-05-17 19:53:03 +02:00
|
|
|
tiles = {"cloud.png"},
|
2015-06-14 05:58:54 +02:00
|
|
|
is_ground_content = false,
|
2014-12-07 16:29:36 +01:00
|
|
|
sounds = default.node_sound_defaults(),
|
2015-08-25 05:11:46 +02:00
|
|
|
groups = {not_in_creative_inventory = 1},
|
2020-05-17 19:53:03 +02:00
|
|
|
})
|