Mineclonia/mods/ITEMS/mcl_core/nodes.lua

1880 lines
62 KiB
Lua
Raw Normal View History

2015-06-29 17:55:56 +00:00
-- mods/default/nodes.lua
local WATER_ALPHA = 160
local WATER_VISC = 1
local LAVA_VISC = 7
2015-06-29 17:55:56 +00:00
--
-- Node definitions
--
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:barrier", {
2017-01-04 08:57:20 +00:00
description = "Barrier",
_doc_items_longdesc = "Barriers are invisble walkable blocks. They are used to create boundaries of adventure maps and the like. Monsters and animals won't appear on barriers, and fences do not connect to barriers. Other blocks can be built on barriers like on any other block.",
_doc_items_usagehelp = "When you hold a barrier in hand, you reveal all placed barriers in a short distance around you.",
2017-01-04 08:57:20 +00:00
drawtype = "airlike",
paramtype = "light",
inventory_image = "default_barrier.png",
wield_image = "default_barrier.png",
tiles = { "blank.png" },
2017-01-04 08:57:20 +00:00
stack_max = 64,
sunlight_propagates = true,
is_ground_content = false,
groups = {creative_breakable=1, not_in_creative_inventory = 1, not_solid = 1 },
2017-01-04 08:57:20 +00:00
on_blast = function() end,
2017-02-21 15:25:41 +00:00
drop = "",
_mcl_blast_resistance = 18000003,
_mcl_hardness = -1,
after_place_node = function (pos, placer, itemstack, pointed_thing)
if placer == nil then
return
end
minetest.add_particle({
pos = pos,
expirationtime = 1,
size = 8,
texture = "default_barrier.png",
playername = placer:get_player_name()
})
end,
2017-01-04 08:57:20 +00:00
})
-- The void below the bedrock. Void damage is handled in playerplus.
-- The void does not exist as a block in Minecraft but we register it as a
-- block here to make things easier for us.
minetest.register_node("mcl_core:void", {
description = "Void",
_doc_items_create_entry = false,
drawtype = "airlike",
paramtype = "light",
pointable = false,
walkable = false,
floodable = false,
buildable_to = false,
inventory_image = "unknown_node.png",
wield_image = "unknown_node.png",
stack_max = 64,
sunlight_propagates = true,
is_ground_content = false,
groups = { not_in_creative_inventory = 1 },
on_blast = function() end,
2017-02-21 15:25:41 +00:00
drop = "",
-- Infinite blast resistance; it should never be destroyed by explosions
_mcl_blast_resistance = -1,
_mcl_hardness = -1,
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone", {
2015-06-29 17:55:56 +00:00
description = "Stone",
2017-03-14 04:59:58 +00:00
_doc_items_longdesc = "One of the most common blocks in the world, almost the entire underground consists of stone. It sometimes contains ores. Stone may be created when water meets lava.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, deco_block=1, material_stone=1},
2017-01-31 22:32:56 +00:00
drop = 'mcl_core:cobble',
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_coal", {
2015-06-29 17:55:56 +00:00
description = "Coal Ore",
_doc_items_longdesc = "Some coal contained in stone, it is very common and can be found inside stone in medium to large clusters at nearly every height.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png^default_mineral_coal.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, building_block=1, material_stone=1},
2017-01-31 22:32:56 +00:00
drop = 'mcl_core:coal_lump',
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_iron", {
2015-06-29 17:55:56 +00:00
description = "Iron Ore",
_doc_items_longdesc = "Some iron contained in stone, it is prety common and can be found below sea level.",
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png^default_mineral_iron.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=3, building_block=1, material_stone=1},
2017-01-31 22:32:56 +00:00
drop = 'mcl_core:stone_with_iron',
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_gold", {
2015-06-29 17:55:56 +00:00
description = "Gold Ore",
_doc_items_longdesc = "This stone contains pure gold, a rare metal.",
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png^default_mineral_gold.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
2017-01-31 22:32:56 +00:00
drop = "mcl_core:stone_with_gold",
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-04 09:27:12 +00:00
local redstone_timer = 68.28
local redstone_ore_activate = function(pos)
2017-01-31 22:32:56 +00:00
minetest.swap_node(pos, {name="mcl_core:stone_with_redstone_lit"})
local t = minetest.get_node_timer(pos)
t:start(redstone_timer)
end
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_redstone", {
2015-06-29 17:55:56 +00:00
description = "Redstone Ore",
_doc_items_longdesc = "Redstone ore is commonly found near the bottom of the world. It glows when it is punched or walked upon.",
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png^default_mineral_redstone.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
2017-01-04 07:01:40 +00:00
drop = {
items = {
max_items = 1,
{
2017-01-09 17:45:34 +00:00
items = {"mesecons:redstone 4"},
2017-01-04 07:01:40 +00:00
rarity = 2,
},
{
2017-01-09 17:45:34 +00:00
items = {"mesecons:redstone 5"},
2017-01-04 07:01:40 +00:00
},
}
},
sounds = mcl_sounds.node_sound_stone_defaults(),
on_punch = redstone_ore_activate,
on_walk_over = redstone_ore_activate, -- Uses walkover mod
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2017-01-04 09:27:12 +00:00
})
local redstone_ore_reactivate = function(pos)
local t = minetest.get_node_timer(pos)
t:start(redstone_timer)
end
2017-01-04 09:27:12 +00:00
-- Light the redstone ore up when it has been touched
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_redstone_lit", {
2017-01-04 09:27:12 +00:00
description = "Lit Redstone Ore",
_doc_items_create_entry = false,
2017-01-04 09:27:12 +00:00
tiles = {"default_stone.png^default_mineral_redstone.png"},
paramtype = "light",
2017-02-01 21:12:08 +00:00
light_source = 9,
2017-01-04 09:27:12 +00:00
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, not_in_creative_inventory=1, material_stone=1},
2017-01-04 09:27:12 +00:00
drop = {
items = {
max_items = 1,
{
2017-01-09 17:45:34 +00:00
items = {"mesecons:redstone 4"},
2017-01-04 09:27:12 +00:00
rarity = 2,
},
{
2017-01-09 17:45:34 +00:00
items = {"mesecons:redstone 5"},
2017-01-04 09:27:12 +00:00
},
}
},
sounds = mcl_sounds.node_sound_stone_defaults(),
-- Reset timer after re-punching or stepping on
on_punch = redstone_ore_reactivate,
on_walk_over = redstone_ore_reactivate, -- Uses walkover mod
2017-01-04 09:27:12 +00:00
-- Turn back to normal node after some time has passed
on_timer = function(pos, elapsed)
2017-01-31 22:32:56 +00:00
minetest.swap_node(pos, {name="mcl_core:stone_with_redstone"})
2017-01-04 09:27:12 +00:00
end,
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_lapis", {
2015-06-29 17:55:56 +00:00
description = "Lapis Lazuli Ore",
_doc_items_longdesc = "Lapis lazuli ore is the ore of lapis lazuli. It can be rarely found in clusters near the bottom of the world.",
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png^default_mineral_lapis.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=3, building_block=1, material_stone=1},
2015-06-29 17:55:56 +00:00
drop = {
2017-01-04 07:01:40 +00:00
max_items = 1,
2015-06-29 17:55:56 +00:00
items = {
2017-01-30 14:33:04 +00:00
{items = {'mcl_dye:blue 8'},rarity = 5},
{items = {'mcl_dye:blue 7'},rarity = 5},
{items = {'mcl_dye:blue 6'},rarity = 5},
{items = {'mcl_dye:blue 5'},rarity = 5},
{items = {'mcl_dye:blue 4'}},
2015-06-29 17:55:56 +00:00
}
},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_emerald", {
2015-06-29 17:55:56 +00:00
description = "Emerald Ore",
_doc_items_longdesc = "Emerald ore is the ore of emeralds. It is very rare and can be found alone, not in clusters.",
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png^default_mineral_emerald.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
2017-01-31 22:32:56 +00:00
drop = "mcl_core:emerald",
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stone_with_diamond", {
description = "Diamond Ore",
_doc_items_longdesc = "Diamond ore is rare and can be found in clusters near the bottom of the world.",
2015-06-29 17:55:56 +00:00
tiles = {"default_stone.png^default_mineral_diamond.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=4, building_block=1, material_stone=1},
2017-01-31 22:32:56 +00:00
drop = "mcl_core:diamond",
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stonebrick", {
description = "Stone Bricks",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_stone_brick.png"},
stack_max = 64,
groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
is_ground_content = false,
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stonebrickcarved", {
description = "Chiseled Stone Bricks",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_stonebrick_carved.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
is_ground_content = false,
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stonebrickcracked", {
description = "Cracked Stone Bricks",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_stonebrick_cracked.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
is_ground_content = false,
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:stonebrickmossy", {
description = "Mossy Stone Bricks",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_stonebrick_mossy.png"},
stack_max = 64,
groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
is_ground_content = false,
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:granite", {
description = "Granite",
_doc_items_longdesc = "Granite is an igneous rock.",
tiles = {"default_granite.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:granite_smooth", {
description = "Polished Granite",
_doc_items_longdesc = "Polished granite is a decorational building block made from granite.",
tiles = {"default_granite_smooth.png"},
stack_max = 64,
is_ground_content = false,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:andesite", {
description = "Andesite",
_doc_items_longdesc = "Andesite is an igneous rock.",
tiles = {"default_andesite.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:andesite_smooth", {
description = "Polished Andesite",
_doc_items_longdesc = "Polished andesite is a decorational building block made from andesite.",
tiles = {"default_andesite_smooth.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:diorite", {
description = "Diorite",
_doc_items_longdesc = "Diorite is an igneous rock.",
tiles = {"default_diorite.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:diorite_smooth", {
description = "Polished Diorite",
_doc_items_longdesc = "Polished diorite is a decorational building block made from diorite.",
tiles = {"default_diorite_smooth.png"},
is_ground_content = false,
stack_max = 64,
groups = {pickaxey=1, stone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 1.5,
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:dirt_with_grass", {
description = "Grass Block",
_doc_items_longdesc = "A grass block is dirt with a grass cover. Grass blocks are resourceful blocks which allow the growth of all sorts of plants. They can be turned into farmland with a hoe and turned into grass paths with a shovel.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, building_block=1},
2017-01-31 22:32:56 +00:00
drop = 'mcl_core:dirt',
sounds = mcl_sounds.node_sound_dirt_defaults({
2015-06-29 17:55:56 +00:00
footstep = {name="default_grass_footstep", gain=0.4},
}),
_mcl_blast_resistance = 3,
_mcl_hardness = 0.6,
2015-06-29 17:55:56 +00:00
})
2017-02-06 18:25:15 +00:00
minetest.register_node("mcl_core:grass_path", {
tiles = {"mcl_core_grass_path_top.png", "mcl_core_grass_path_side.png"},
description = "Grass Path",
_doc_items_longdesc = "Grass paths are a decorational variant of grass blocks. Their top has a different color and they are a bit lower than grass blocks, making them useful to build footpaths. Grass paths can be created with a shovel.",
2017-02-06 18:25:15 +00:00
drop = "mcl_core:dirt",
is_ground_content = true,
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
-- 15/16 of the normal height
{-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
}
},
groups = {handy=1,shovely=1, cultivatable=2, not_in_creative_inventory=1, },
sounds = mcl_sounds.node_sound_dirt_defaults({
2017-02-06 18:29:11 +00:00
footstep = {name="default_grass_footstep", gain=0.4},
}),
_mcl_blast_resistance = 3.25,
_mcl_hardness = 0.6,
2017-02-06 18:25:15 +00:00
})
2017-01-10 03:24:42 +00:00
-- TODO: Add particles
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:mycelium", {
2017-01-10 02:54:15 +00:00
description = "Mycelium",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Mycelium is a type of dirt and the ideal soil for mushrooms. Unlike other dirt-type blocks, it can not be turned into farmland with a hoe.",
2017-01-10 02:54:15 +00:00
tiles = {"default_mycelium_top.png", "default_dirt.png", "default_mycelium_side.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, building_block=1},
2017-01-31 22:32:56 +00:00
drop = 'mcl_core:dirt',
sounds = mcl_sounds.node_sound_dirt_defaults({
2017-01-10 02:54:15 +00:00
footstep = {name="default_grass_footstep", gain=0.4},
}),
_mcl_blast_resistance = 2.5,
_mcl_hardness = 0.6,
2017-01-10 02:54:15 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:podzol", {
2017-01-10 03:24:42 +00:00
description = "Podzol",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Podzol is a type of dirt found in taiga forests. Only a few plants are able to survive on it.",
2017-01-10 03:24:42 +00:00
tiles = {"default_dirt_podzol_top.png", "default_dirt.png", "default_dirt_podzol_side.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=3, soil=1, soil_sapling=2, soil_sugarcane=1, building_block=1},
2017-01-31 22:32:56 +00:00
drop = 'mcl_core:dirt',
sounds = mcl_sounds.node_sound_dirt_defaults(),
_mcl_blast_resistance = 2.5,
_mcl_hardness = 0.6,
2017-01-10 03:24:42 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:dirt", {
2015-06-29 17:55:56 +00:00
description = "Dirt",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Dirt acts as a soil for a few plants. When in light, it will turn into a grass block eventually.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_dirt.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, building_block=1},
sounds = mcl_sounds.node_sound_dirt_defaults(),
_mcl_blast_resistance = 3,
_mcl_hardness = 0.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:coarse_dirt", {
2017-01-05 00:28:43 +00:00
description = "Coarse Dirt",
_doc_items_longdesc = "Coarse dirt acts as a soil for some plants and is similar to dirt, but it will never turn into a grass block.",
2017-01-05 00:28:43 +00:00
tiles = {"default_coarse_dirt.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, soil=1, soil_sugarcane=1, cultivatable=1, building_block=1},
sounds = mcl_sounds.node_sound_dirt_defaults(),
_mcl_blast_resistance = 3,
_mcl_hardness = 0.5,
2017-01-05 00:28:43 +00:00
})
2015-06-29 17:55:56 +00:00
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:gravel", {
2015-06-29 17:55:56 +00:00
description = "Gravel",
_doc_items_longdesc = "This block consists of a couple of loose stones and can't support itself.",
2015-06-29 17:55:56 +00:00
tiles = {"default_gravel.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, falling_node=1, building_block=1, material_sand=1},
2015-06-29 17:55:56 +00:00
drop = {
max_items = 1,
items = {
2017-01-31 22:32:56 +00:00
{items = {'mcl_core:flint'},rarity = 10},
{items = {'mcl_core:gravel'}}
2015-06-29 17:55:56 +00:00
}
},
sounds = mcl_sounds.node_sound_dirt_defaults({
2015-06-29 17:55:56 +00:00
footstep = {name="default_gravel_footstep", gain=0.45},
}),
_mcl_blast_resistance = 3,
_mcl_hardness = 0.6,
2015-06-29 17:55:56 +00:00
})
-- sandstone --
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sand", {
2015-06-29 17:55:56 +00:00
description = "Sand",
_doc_items_longdesc = "Sand is found in large quantities at beaches and deserts.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_sand.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, falling_node=1, sand=1, soil_sugarcane=1, building_block=1, material_sand=1},
sounds = mcl_sounds.node_sound_sand_defaults(),
_mcl_blast_resistance = 2.5,
_mcl_hardness = 0.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sandstone", {
2015-06-29 17:55:56 +00:00
description = "Sandstone",
_doc_items_hidden = false,
_doc_items_longdesc = "Sandstone is compressed sand and is a rather soft kind of stone.",
2015-06-29 17:55:56 +00:00
tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_normal.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=2, sandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 4,
_mcl_hardness = 0.8,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sandstonesmooth", {
description = "Smooth Sandstone",
_doc_items_longdesc = "Smooth sandstone is a decorational building block.",
2015-06-29 17:55:56 +00:00
tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_smooth.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, sandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 4,
_mcl_hardness = 0.8,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sandstonecarved", {
description = "Chiseled Sandstone",
_doc_items_longdesc = "Chiseled sandstone is a decorational building block.",
2015-06-29 17:55:56 +00:00
tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_carved.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, sandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 4,
_mcl_hardness = 0.8,
2015-06-29 17:55:56 +00:00
})
-- red sandstone --
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:redsand", {
2015-06-29 17:55:56 +00:00
description = "Red Sand",
2017-03-14 04:58:10 +00:00
_doc_items_longdesc = "Red sand is found in large quantities in mesa biomes.",
2015-06-29 17:55:56 +00:00
tiles = {"default_red_sand.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, falling_node=1, sand=1, soil_sugarcane=1, building_block=1, material_sand=1},
sounds = mcl_sounds.node_sound_sand_defaults(),
_mcl_blast_resistance = 2.5,
_mcl_hardness = 0.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:redsandstone", {
description = "Red Sandstone",
_doc_items_longdesc = "Red sandstone is compressed red sand and is a rather soft kind of stone.",
2015-06-29 17:55:56 +00:00
tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_normal.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 4,
_mcl_hardness = 0.8,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:redsandstonesmooth", {
description = "Smooth Red Sandstone",
_doc_items_longdesc = "Smooth red sandstone is a decorational building block.",
2015-06-29 17:55:56 +00:00
tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_smooth.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 4,
_mcl_hardness = 0.8,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:redsandstonecarved", {
description = "Chiseled Red Sandstone",
_doc_items_longdesc = "Chiseled red sandstone is a decorational building block.",
2015-06-29 17:55:56 +00:00
tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_carved.png"},
is_ground_content = true,
stack_max = 64,
groups = {pickaxey=1, redsandstone=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 4,
_mcl_hardness = 0.8,
2015-06-29 17:55:56 +00:00
})
---
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:clay", {
2017-01-10 02:29:34 +00:00
-- Original name: Clay
description = "Block of Clay",
_doc_items_longdesc = "A block of clay is a versatile kind of earth commonly found at beaches underwater.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_clay.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1,shovely=1, building_block=1},
2017-01-31 22:32:56 +00:00
drop = 'mcl_core:clay_lump 4',
sounds = mcl_sounds.node_sound_dirt_defaults({
2015-06-29 17:55:56 +00:00
footstep = "",
}),
_mcl_blast_resistance = 3,
_mcl_hardness = 0.6,
2015-06-29 17:55:56 +00:00
})
minetest.register_node("mcl_core:brick_block", {
-- Original name: “Bricks”
description = "Brick Block",
_doc_items_longdesc = "Brick blocks are a good building material for building solid houses and can take quite a punch.",
2015-06-29 17:55:56 +00:00
tiles = {"default_brick.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:bone_block", {
2017-01-10 03:49:18 +00:00
description = "Bone Block",
_doc_items_longdesc = "Bone blocks are decorational blocks and a compact storage of bone meal.",
tiles = {"mcl_core_bone_block_top.png", "mcl_core_bone_block_top.png", "mcl_core_bone_block_side.png"},
2017-01-10 03:49:18 +00:00
is_ground_content = false,
paramtype2 = "facedir",
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis,
groups = {pickaxey=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 10,
_mcl_hardness = 2,
2017-01-10 03:49:18 +00:00
})
2015-06-29 17:55:56 +00:00
2017-02-16 19:22:20 +00:00
-- Oak --
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:tree", {
2017-01-07 03:17:08 +00:00
description = "Oak Wood",
_doc_items_longdesc = "The trunk of an oak tree.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_tree_top.png", "default_tree_top.png", "default_tree.png"},
paramtype2 = "facedir",
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {handy=1,axey=1, tree=1, flammable=2, building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 10,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sapling", {
description = "Oak Sapling",
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, an oak sapling will grow into an oak tree after some time. If the tree can't grow it it is too dark, the sapling will uproot.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sapling.png"},
inventory_image = "default_sapling.png",
wield_image = "default_sapling.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
stack_max = 64,
groups = {dig_immediate=3, sapling=1,attached_node=1,dig_by_water=1,deco_block=1},
2017-02-19 22:31:06 +00:00
sounds = mcl_sounds.node_sound_leaves_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_int("stage", 0)
end,
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:leaves", {
description = "Oak Leaves",
_doc_items_longdesc = "Oak leaves are grown from oak trees.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
2015-06-29 17:55:56 +00:00
visual_scale = 1.3,
tiles = {"default_leaves.png"},
paramtype = "light",
stack_max = 64,
2017-03-07 23:10:22 +00:00
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1},
2015-06-29 17:55:56 +00:00
drop = {
max_items = 1,
items = {
{
-- player will get sapling with 1/20 chance
2017-01-31 22:32:56 +00:00
items = {'mcl_core:sapling'},
2015-06-29 17:55:56 +00:00
rarity = 20,
},
2017-01-09 03:54:46 +00:00
{
2017-01-04 07:01:40 +00:00
-- player will get apple with 1/200 chance
2017-01-31 22:32:56 +00:00
items = {'mcl_core:apple'},
2015-06-29 17:55:56 +00:00
rarity = 200,
},
}
},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2015-06-29 17:55:56 +00:00
})
minetest.register_node("mcl_core:wood", {
description = "Oak Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
_doc_items_hidden = false,
tiles = {"default_wood.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 2,
})
2017-02-16 19:22:20 +00:00
-- Dark oak --
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:darktree", {
2017-01-09 03:44:07 +00:00
description = "Dark Oak Wood",
_doc_items_longdesc = "The trunk of a dark oak tree.",
2017-01-09 03:44:07 +00:00
tiles = {"default_log_big_oak_top.png", "default_log_big_oak_top.png", "default_log_big_oak.png"},
paramtype2 = "facedir",
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis,
2017-01-09 03:44:07 +00:00
stack_max = 64,
groups = {handy=1,axey=1, tree=1,flammable=2,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 10,
_mcl_hardness = 2,
2017-01-09 03:44:07 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:darksapling", {
2017-01-09 03:44:07 +00:00
description = "Dark Oak Sapling",
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, a dark oak sapling will grow into a dark oak tree after some time. If the tree can't grow it it is too dark, the sapling will uproot.",
2017-01-09 03:44:07 +00:00
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sapling_big_oak.png"},
inventory_image = "default_sapling_big_oak.png",
wield_image = "default_sapling_big_oak.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
stack_max = 64,
groups = {dig_immediate=3, sapling=1,attached_node=1,dig_by_water=1,deco_block=1},
2017-02-19 22:31:06 +00:00
sounds = mcl_sounds.node_sound_leaves_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_int("stage", 0)
end,
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2017-01-09 03:44:07 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:darkleaves", {
2017-01-09 03:44:07 +00:00
description = "Dark Oak Leaves",
_doc_items_longdesc = "Dark oak leaves are grown from dark oak trees.",
2017-01-09 03:44:07 +00:00
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
2017-01-09 03:44:07 +00:00
visual_scale = 1.3,
tiles = {"default_leaves_big_oak.png"},
paramtype = "light",
stack_max = 64,
2017-03-07 23:10:22 +00:00
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1},
2017-01-09 03:44:07 +00:00
drop = {
max_items = 1,
items = {
{
-- player will get sapling with 1/20 chance
2017-01-31 22:32:56 +00:00
items = {'mcl_core:darksapling'},
2017-01-09 03:44:07 +00:00
rarity = 20,
},
2017-01-09 03:54:46 +00:00
{
-- player will get apple with 1/200 chance
2017-01-31 22:32:56 +00:00
items = {'mcl_core:apple'},
2017-01-09 03:54:46 +00:00
rarity = 200,
},
2017-01-09 03:44:07 +00:00
}
},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2017-01-09 03:44:07 +00:00
})
minetest.register_node("mcl_core:darkwood", {
description = "Dark Oak Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
tiles = {"default_planks_big_oak.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 2,
})
2017-02-16 19:22:20 +00:00
-- Jungle tree --
2015-06-29 17:55:56 +00:00
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:jungletree", {
description = "Jungle Wood",
2017-03-11 15:56:37 +00:00
_doc_items_longdesc = "The trunk of a jungle tree. Cocoa beans can be placed on the side of it to plant a cocoa.",
2015-06-29 17:55:56 +00:00
tiles = {"default_jungletree_top.png", "default_jungletree_top.png", "default_jungletree.png"},
stack_max = 64,
paramtype2 = "facedir",
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis,
-- This is a bad bad workaround which is only done because cocoas are not wallmounted (but should)
-- As long cocoas only EVER stick to jungle trees, and nothing else, this is probably a lesser sin.
after_dig_node = function(pos, oldnode, oldmetadata, digger)
-- Drop attached cocoas
local posses = {
{ x = pos.x + 1, y = pos.y, z = pos.z },
{ x = pos.x - 1, y = pos.y, z = pos.z },
{ x = pos.x, y = pos.y, z = pos.z + 1 },
{ x = pos.x, y = pos.y, z = pos.z - 1 },
}
for p=1, #posses do
local node = minetest.get_node(posses[p])
local g = minetest.get_item_group(node.name, "cocoa")
if g and g >= 1 then
minetest.remove_node(posses[p])
local drops = minetest.get_node_drops(node.name, "")
for d=1, #drops do
minetest.add_item(posses[p], drops[d])
end
end
end
end,
groups = {handy=1,axey=1, tree=1,flammable=2,building_block=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 10,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:junglewood", {
description = "Jungle Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_junglewood.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:jungleleaves", {
2015-06-29 17:55:56 +00:00
description = "Jungle Leaves",
_doc_items_longdesc = "Jungle leaves are grown from jungle trees.",
2015-06-29 17:55:56 +00:00
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
2015-06-29 17:55:56 +00:00
visual_scale = 1.3,
tiles = {"default_jungleleaves.png"},
paramtype = "light",
stack_max = 64,
2017-03-07 23:10:22 +00:00
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1},
2015-06-29 17:55:56 +00:00
drop = {
max_items = 1,
items = {
{
2017-01-31 22:32:56 +00:00
items = {'mcl_core:junglesapling'},
2017-01-04 07:01:40 +00:00
rarity = 40,
2015-06-29 17:55:56 +00:00
},
}
},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:junglesapling", {
2015-06-29 17:55:56 +00:00
description = "Jungle Sapling",
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, a jungle sapling will grow into a jungle tree after some time. If the tree can't grow it it is too dark, the sapling will uproot.",
2015-06-29 17:55:56 +00:00
drawtype = "plantlike",
place_param2 = 1, -- Prevent leafdecay for placed nodes
2015-06-29 17:55:56 +00:00
visual_scale = 1.0,
tiles = {"default_junglesapling.png"},
inventory_image = "default_junglesapling.png",
wield_image = "default_junglesapling.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
stack_max = 64,
groups = {dig_immediate=3, sapling=1,attached_node=1,dig_by_water=1,deco_block=1},
2017-02-19 22:31:06 +00:00
sounds = mcl_sounds.node_sound_leaves_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_int("stage", 0)
end,
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2015-06-29 17:55:56 +00:00
})
2017-02-16 19:22:20 +00:00
-- Acacia --
2015-06-29 17:55:56 +00:00
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:acaciatree", {
description = "Acacia Wood",
_doc_items_longdesc = "The trunk of an acacia.",
2015-06-29 17:55:56 +00:00
tiles = {"default_acaciatree_top.png", "default_acaciatree_top.png", "default_acaciatree.png"},
stack_max = 64,
paramtype2 = "facedir",
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis,
groups = {handy=1,axey=1, tree=1,flammable=2,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 10,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:acaciawood", {
description = "Acacia Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_acaciawood.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:acacialeaves", {
2015-06-29 17:55:56 +00:00
description = "Acacia Leaves",
_doc_items_longdesc = "Acacia leaves are grown from acacia trees.",
2015-06-29 17:55:56 +00:00
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
2015-06-29 17:55:56 +00:00
visual_scale = 1.3,
tiles = {"default_acacialeaves.png"},
paramtype = "light",
stack_max = 64,
2017-03-07 23:10:22 +00:00
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1},
2015-06-29 17:55:56 +00:00
drop = {
max_items = 1,
items = {
{
2017-01-31 22:32:56 +00:00
items = {'mcl_core:acaciasapling'},
2015-06-29 17:55:56 +00:00
rarity = 20,
},
}
},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:acaciasapling", {
2015-06-29 17:55:56 +00:00
description = "Acacia Sapling",
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, an acacia sapling will grow into an acacia tree after some time. If the tree can't grow it it is too dark, the sapling will uproot.",
2015-06-29 17:55:56 +00:00
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_acaciasapling.png"},
inventory_image = "default_acaciasapling.png",
wield_image = "default_acaciasapling.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_int("stage", 0)
end,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {dig_immediate=3, sapling=1,attached_node=1,dig_by_water=1,deco_block=1},
2017-02-19 22:31:06 +00:00
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2015-06-29 17:55:56 +00:00
})
2017-02-16 19:22:20 +00:00
-- Spruce --
2015-06-29 17:55:56 +00:00
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sprucetree", {
description = "Spruce Wood",
_doc_items_longdesc = "The trunk of a spruce tree.",
2015-06-29 17:55:56 +00:00
tiles = {"default_sprucetree_top.png", "default_sprucetree_top.png", "default_sprucetree.png"},
stack_max = 64,
paramtype2 = "facedir",
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis,
groups = {handy=1,axey=1, tree=1,flammable=2,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 10,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sprucewood", {
description = "Spruce Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_sprucewood.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:spruceleaves", {
2015-06-29 17:55:56 +00:00
description = "Spruce Leaves",
_doc_items_longdesc = "Spruce leaves are grown from spruce trees.",
2015-06-29 17:55:56 +00:00
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
2015-06-29 17:55:56 +00:00
visual_scale = 1.3,
tiles = {"default_spruceleaves.png"},
paramtype = "light",
stack_max = 64,
2017-03-07 23:10:22 +00:00
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1},
2015-06-29 17:55:56 +00:00
drop = {
max_items = 1,
items = {
{
-- player will get sapling with 1/20 chance
2017-01-31 22:32:56 +00:00
items = {'mcl_core:sprucesapling'},
2015-06-29 17:55:56 +00:00
rarity = 20,
},
{
-- player will get leaves only if he get no saplings,
-- this is because max_items is 1
items = {''},
}
}
},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:sprucesapling", {
2015-06-29 17:55:56 +00:00
description = "Spruce Sapling",
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, a spruce sapling will grow into a spruce tree after some time. If the tree can't grow it it is too dark, the sapling will uproot.",
2015-06-29 17:55:56 +00:00
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sprucesapling.png"},
inventory_image = "default_sprucesapling.png",
wield_image = "default_sprucesapling.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
stack_max = 64,
groups = {dig_immediate=3, sapling=1,attached_node=1,dig_by_water=1,deco_block=1},
2017-02-19 22:31:06 +00:00
sounds = mcl_sounds.node_sound_leaves_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_int("stage", 0)
end,
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2015-06-29 17:55:56 +00:00
})
2017-02-16 19:22:20 +00:00
-- Birch
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:birchtree", {
2017-01-10 01:38:08 +00:00
description = "Birch Wood",
_doc_items_longdesc = "The trunk of a birch tree.",
2017-01-10 01:38:08 +00:00
tiles = {"default_log_birch_top.png", "default_log_birch_top.png", "default_log_birch.png"},
stack_max = 64,
paramtype2 = "facedir",
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis,
groups = {handy=1,axey=1, tree=1,flammable=2,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 10,
_mcl_hardness = 2,
2017-01-10 01:38:08 +00:00
})
2015-06-29 17:55:56 +00:00
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:birchwood", {
2017-01-10 01:38:08 +00:00
description = "Birch Wood Planks",
_doc_items_longdesc = doc.sub.items.temp.build,
2017-01-10 01:38:08 +00:00
tiles = {"default_planks_birch.png"},
stack_max = 64,
is_ground_content = false,
groups = {handy=1,axey=1, flammable=3,wood=1,building_block=1, material_wood=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 2,
2017-01-10 01:38:08 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:birchleaves", {
2017-01-10 01:38:08 +00:00
description = "Birch Leaves",
_doc_items_longdesc = "Birch leaves are grown from birch trees.",
2017-01-10 01:38:08 +00:00
drawtype = "allfaces_optional",
place_param2 = 1, -- Prevent leafdecay for placed nodes
2017-01-10 01:38:08 +00:00
visual_scale = 1.3,
tiles = {"default_leaves_birch.png"},
paramtype = "light",
stack_max = 64,
2017-03-07 23:10:22 +00:00
groups = {handy=1,shearsy=1,swordy=1, leafdecay=4, flammable=2, leaves=1, deco_block=1},
2017-01-10 01:38:08 +00:00
drop = {
max_items = 1,
items = {
{
-- player will get sapling with 1/20 chance
2017-01-31 22:32:56 +00:00
items = {'mcl_core:birchsapling'},
2017-01-10 01:38:08 +00:00
rarity = 20,
},
}
},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2017-01-10 01:38:08 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:birchsapling", {
2017-01-10 01:38:08 +00:00
description = "Birch Sapling",
_doc_items_longdesc = "When placed on soil (such as dirt) and exposed to light, a birch sapling will grow into a birch tree after some time. If the tree can't grow it it is too dark, the sapling will uproot.",
2017-01-10 01:38:08 +00:00
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_sapling_birch.png"},
inventory_image = "default_sapling_birch.png",
wield_image = "default_sapling_birch.png",
paramtype = "light",
walkable = false,
selection_box = {
type = "fixed",
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
},
stack_max = 64,
groups = {dig_immediate=3, sapling=1,attached_node=1,dig_by_water=1,deco_block=1},
2017-02-19 22:31:06 +00:00
sounds = mcl_sounds.node_sound_leaves_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_int("stage", 0)
end,
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2017-01-10 01:38:08 +00:00
})
2015-06-29 17:55:56 +00:00
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:cactus", {
2015-06-29 17:55:56 +00:00
description = "Cactus",
_doc_items_longdesc = "This is a piece of cactus commonly found in dry areas, especially deserts. Over time, cacti will grow up to 3 blocks high on sand or red sand. A cactus hurts living beings touching it with a damage of 1 HP every half second. When a cactus block is broken, all cactus blocks connected above it will break as well.",
2015-06-29 17:55:56 +00:00
drawtype = "nodebox",
tiles = {"default_cactus_top.png", "default_cactus_bottom.png", "default_cactus_side.png","default_cactus_side.png","default_cactus_side.png","default_cactus_side.png"},
is_ground_content = true,
stack_max = 64,
groups = {handy=1, deco_block=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
2015-06-29 17:55:56 +00:00
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-7/16, -8/16, -7/16, 7/16, 8/16, 7/16}, -- Main Body
{-8/16, -8/16, -7/16, 8/16, 8/16, -7/16}, -- Spikes
{-8/16, -8/16, 7/16, 8/16, 8/16, 7/16}, -- Spikes
{-7/16, -8/16, -8/16, -7/16, 8/16, 8/16}, -- Spikes
{7/16, -8/16, 8/16, 7/16, 8/16, -8/16}, -- Spikes
},
},
selection_box = {
type = "fixed",
fixed = {
{-7/16, -8/16, -7/16, 7/16, 8/16, 7/16},
},
},
_mcl_blast_resistance = 2,
_mcl_hardness = 0.4,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:reeds", {
description = "Sugar Canes",
_doc_items_longdesc = "Sugar canes are a plant which has some uses in crafting. Sugar canes will slowly grow up to 3 blocks when they are next to water and are placed on a grass block, dirt, sand, red sand, podzol or coarse dirt. When a sugar cane is broken, all sugar canes connected above will break as well.",
2015-06-29 17:55:56 +00:00
drawtype = "plantlike",
tiles = {"default_papyrus.png"},
inventory_image = "default_sugar_cane.png",
wield_image = "default_sugar_cane.png",
paramtype = "light",
walkable = false,
is_ground_content = true,
node_box = {
type = "fixed",
fixed = {
{-7/16, -8/16, -7/16, 7/16, 8/16, 7/16}, -- Main Body
{-8/16, -8/16, -7/16, 8/16, 8/16, -7/16}, -- Spikes
{-8/16, -8/16, 7/16, 8/16, 8/16, 7/16}, -- Spikes
{-7/16, -8/16, -8/16, -7/16, 8/16, 8/16}, -- Spikes
{7/16, -8/16, 8/16, 7/16, 8/16, -8/16}, -- Spikes
},
},
selection_box = {
type = "fixed",
fixed = {
{-7/16, -8/16, -7/16, 7/16, 8/16, 7/16},
},
},
stack_max = 64,
groups = {dig_immediate=3, craftitem=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:bedrock", {
2015-06-29 17:55:56 +00:00
description = "Bedrock",
_doc_items_longdesc = "Bedrock is a very hard type of rock. It can not be broken, destroyed, collected or moved by normal means, unless in Creative Mode.",
2015-06-29 17:55:56 +00:00
tiles = {"default_bedrock.png"},
stack_max = 64,
groups = {creative_breakable=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
2017-01-04 08:42:25 +00:00
is_ground_content = false,
on_blast = function() end,
2017-01-05 00:00:43 +00:00
drop = '',
_mcl_blast_resistance = 18000000,
_mcl_hardness = -1,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:slimeblock", {
2015-06-29 17:55:56 +00:00
description = "Slime Block",
_doc_items_longdesc = "Slime blocks are very bouncy and prevent fall damage.",
2015-06-29 17:55:56 +00:00
drawtype = "nodebox",
paramtype = "light",
is_ground_content = false,
2015-06-29 17:55:56 +00:00
node_box = {
type = "fixed",
fixed = {
{-0.25, -0.25, -0.25, 0.25, 0.25, 0.25},
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
}
},
tiles = {"default_slimeblock.png"},
paramtype = "light",
use_texture_alpha = true,
sunlight_propagates = true,
stack_max = 64,
2017-01-04 06:19:15 +00:00
-- According to Minecraft Wiki, bouncing off a slime block from a height off 255 blocks should result in a bounce height of 50 blocks
-- bouncy=44 makes the player bounce up to 49.6. This value was chosen by experiment.
groups = {dig_immediate=3, bouncy=44,fall_damage_add_percent=-100,deco_block=1},
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:glass", {
2015-06-29 17:55:56 +00:00
description = "Glass",
_doc_items_longdesc = "A decorational and mostly transparent block.",
2015-06-29 17:55:56 +00:00
drawtype = "glasslike",
is_ground_content = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_glass.png"},
paramtype = "light",
sunlight_propagates = true,
stack_max = 64,
groups = {handy=1, glass=1, building_block=1, material_glass=1},
sounds = mcl_sounds.node_sound_glass_defaults(),
2015-06-29 17:55:56 +00:00
drop = "",
_mcl_blast_resistance = 1.5,
_mcl_hardness = 0.3,
2015-06-29 17:55:56 +00:00
})
---- colored glass
2017-01-31 22:32:56 +00:00
mcl_core.add_glass( "Red Stained Glass", "basecolor_red", "red")
mcl_core.add_glass( "Green Stained Glass", "unicolor_dark_green", "green")
mcl_core.add_glass( "Blue Stained Glass", "basecolor_blue", "blue")
mcl_core.add_glass( "Light Blue Stained Glass", "unicolor_light_blue", "light_blue")
mcl_core.add_glass( "Black Stained Glass", "basecolor_black", "black")
mcl_core.add_glass( "White Stained Glass", "basecolor_white", "white")
mcl_core.add_glass( "Yellow Stained Glass", "basecolor_yellow", "yellow")
mcl_core.add_glass( "Brown Stained Glass", "unicolor_dark_orange", "brown")
mcl_core.add_glass( "Orange Stained Glass", "excolor_orange", "orange")
mcl_core.add_glass( "Pink Stained Glass", "unicolor_light_red", "pink")
mcl_core.add_glass( "Grey Stained Glass", "unicolor_darkgrey", "gray")
2017-01-31 22:32:56 +00:00
mcl_core.add_glass( "Lime Stained Glass", "basecolor_green", "lime")
mcl_core.add_glass( "Light Grey Stained Glass", "basecolor_grey", "silver")
2017-01-31 22:32:56 +00:00
mcl_core.add_glass( "Magenta Stained Glass", "basecolor_magenta", "magenta")
mcl_core.add_glass( "Purple Stained Glass", "excolor_violet", "purple")
mcl_core.add_glass( "Cyan Stained Glass", "basecolor_cyan", "cyan")
minetest.register_node("mcl_core:ladder", {
2015-06-29 17:55:56 +00:00
description = "Ladder",
_doc_items_longdesc = "A piece of ladder which allows you to climb vertically. Ladders can only be placed on the side of solid blocks and not on glass, leaves, ice, slabs, glowstone, nor sea lanterns.",
2015-06-29 17:55:56 +00:00
drawtype = "signlike",
is_ground_content = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_ladder.png"},
inventory_image = "default_ladder.png",
wield_image = "default_ladder.png",
paramtype = "light",
2017-03-01 14:41:06 +00:00
sunlight_propagates = true,
2015-06-29 17:55:56 +00:00
paramtype2 = "wallmounted",
2017-03-01 14:40:30 +00:00
walkable = true,
2015-06-29 17:55:56 +00:00
climbable = true,
2017-03-01 14:40:30 +00:00
node_box = {
type = "wallmounted",
wall_side = { -0.5, -0.5, -0.5, -7/16, 0.5, 0.5 },
},
2015-06-29 17:55:56 +00:00
selection_box = {
type = "wallmounted",
2017-03-01 14:40:30 +00:00
wall_side = { -0.5, -0.5, -0.5, -7/16, 0.5, 0.5 },
2015-06-29 17:55:56 +00:00
},
stack_max = 64,
groups = {handy=1,axey=1, attached_node=1, deco_block=1},
sounds = mcl_sounds.node_sound_wood_defaults(),
node_placement_prediction = "",
-- Restrict placement of ladders
on_place = function(itemstack, placer, pointed_thing)
if pointed_thing.type ~= "node" then
-- no interaction possible with entities
return itemstack
end
local under = pointed_thing.under
local node = minetest.get_node(under)
local def = minetest.registered_nodes[node.name]
local groups = def.groups
-- Don't allow to place the ladder at particular nodes
if (groups and (groups.glass or groups.leaves or groups.slab)) or
node.name == "mcl_core:ladder" or node.name == "mcl_core:ice" or node.name == "mcl_nether:glowstone" or node.name == "mcl_ocean:sea_lantern" then
return itemstack
end
-- Check special rightclick action of pointed node
if def and def.on_rightclick then
if not placer:get_player_control().sneak then
return def.on_rightclick(under, node, placer, itemstack,
pointed_thing) or itemstack, false
end
end
local above = pointed_thing.above
-- Ladders may not be placed on ceiling or floor
if under.y ~= above.y then
return itemstack
end
local idef = itemstack:get_definition()
local success = minetest.item_place_node(itemstack, placer, pointed_thing)
2017-03-04 15:55:57 +00:00
if success then
if idef.sounds and idef.sounds.place then
minetest.sound_play(idef.sounds.place, {pos=above, gain=1})
end
end
return itemstack
end,
_mcl_blast_resistance = 2,
_mcl_hardness = 0.4,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:vine", {
description = "Vines",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Vines are climbable blocks which can be placed on the sides and the top of solid blocks.",
2015-06-29 17:55:56 +00:00
drawtype = "signlike",
tiles = {"default_vine.png"},
inventory_image = "default_vine.png",
wield_image = "default_vine.png",
paramtype = "light",
2017-02-10 05:02:09 +00:00
sunlight_propagates = true,
2015-06-29 17:55:56 +00:00
paramtype2 = "wallmounted",
walkable = false,
climbable = true,
2017-02-10 04:34:42 +00:00
buildable_to = true,
2015-06-29 17:55:56 +00:00
selection_box = {
type = "wallmounted",
},
stack_max = 64,
groups = {handy=1,axey=1,shearsy=1,swordy=1, flammable=2,deco_block=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 17:55:56 +00:00
drop = "",
after_dig_node = function(pos, oldnode, oldmetadata, user)
local item = user:get_wielded_item()
if item:get_name() == "mcl_tools:shears" then
2017-03-07 23:37:07 +00:00
minetest.add_item(pos, oldnode.name)
2015-06-29 17:55:56 +00:00
end
end,
node_placement_prediction = "",
-- Restrict placement of vines
on_place = function(itemstack, placer, pointed_thing)
if pointed_thing.type ~= "node" then
-- no interaction possible with entities
return itemstack
end
local under = pointed_thing.under
local node = minetest.get_node(under)
local def = minetest.registered_nodes[node.name]
local groups = def.groups
-- Check special rightclick action of pointed node
if def and def.on_rightclick then
if not placer:get_player_control().sneak then
return def.on_rightclick(under, node, placer, itemstack,
pointed_thing) or itemstack, false
end
end
-- Only allow placement on solid nodes
if (not groups) or (not groups.solid) then
return itemstack
end
local above = pointed_thing.above
-- Vines may not be placed on the ceiling
if under.y > above.y then
return itemstack
end
local idef = itemstack:get_definition()
local success = minetest.item_place_node(itemstack, placer, pointed_thing)
if success then
if idef.sounds and idef.sounds.place then
minetest.sound_play(idef.sounds.place, {pos=above, gain=1})
end
end
return itemstack
end,
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:water_flowing", {
2015-06-29 17:55:56 +00:00
description = "Flowing Water",
_doc_items_create_entry = false,
2015-06-29 17:55:56 +00:00
inventory_image = minetest.inventorycube("default_water.png"),
drawtype = "flowingliquid",
2017-01-05 03:53:52 +00:00
tiles = {name="default_water_flowing_animated.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=2.0}},
2015-06-29 17:55:56 +00:00
special_tiles = {
{
image="default_water_flowing_animated.png",
backface_culling=false,
2017-01-05 03:53:52 +00:00
animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=2.0}
2015-06-29 17:55:56 +00:00
},
{
image="default_water_flowing_animated.png",
backface_culling=true,
2017-01-05 03:53:52 +00:00
animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=2.0}
2015-06-29 17:55:56 +00:00
},
},
alpha = WATER_ALPHA,
paramtype = "light",
paramtype2 = "flowingliquid",
walkable = false,
pointable = false,
diggable = false,
buildable_to = true,
drop = "",
2017-01-11 23:59:56 +00:00
drowning = 4,
2015-06-29 17:55:56 +00:00
liquidtype = "flowing",
2017-01-31 22:32:56 +00:00
liquid_alternative_flowing = "mcl_core:water_flowing",
liquid_alternative_source = "mcl_core:water_source",
2015-06-29 17:55:56 +00:00
liquid_viscosity = WATER_VISC,
liquid_range = 7,
2017-01-31 22:32:56 +00:00
freezemelt = "mcl_core:snow",
2015-06-29 17:55:56 +00:00
post_effect_color = {a=64, r=100, g=100, b=200},
groups = { water=3, liquid=3, puts_out_fire=1, not_in_creative_inventory=1, freezes=1, melt_around=1},
_mcl_blast_resistance = 500,
2017-03-01 17:49:47 +00:00
-- Hardness intentionally set to infinite instead of 100 (Minecraft value) to avoid problems in creative mode
_mcl_hardness = -1,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:water_source", {
2017-01-12 00:41:40 +00:00
description = "Still Water",
_doc_items_entry_name = "Water",
_doc_items_longdesc = "Water is abundant in oceans and may also appear in small quantities in underground water pockets. You can swim easily in water, but you need to catch your breath from time to time. Water will turn nearby lava into obsidian or stone.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
inventory_image = minetest.inventorycube("default_water.png"),
drawtype = "liquid",
tiles = {
{name="default_water_source_animated.png", animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=5.0}}
},
special_tiles = {
-- New-style water source material (mostly unused)
{
name="default_water_source_animated.png",
animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=5.0},
backface_culling = false,
}
},
alpha = WATER_ALPHA,
paramtype = "light",
walkable = false,
pointable = false,
diggable = false,
buildable_to = true,
drop = "",
2017-01-11 23:59:56 +00:00
drowning = 4,
2015-06-29 17:55:56 +00:00
liquidtype = "source",
2017-01-31 22:32:56 +00:00
liquid_alternative_flowing = "mcl_core:water_flowing",
liquid_alternative_source = "mcl_core:water_source",
2015-06-29 17:55:56 +00:00
liquid_viscosity = WATER_VISC,
liquid_range = 7,
2017-01-31 22:32:56 +00:00
freezemelt = "mcl_core:ice",
2015-06-29 17:55:56 +00:00
post_effect_color = {a=64, r=100, g=100, b=200},
stack_max = 64,
groups = { water=3, liquid=3, puts_out_fire=1, freezes=1, not_in_creative_inventory=1},
_mcl_blast_resistance = 500,
2017-03-01 17:49:47 +00:00
-- Hardness intentionally set to infinite instead of 100 (Minecraft value) to avoid problems in creative mode
_mcl_hardness = -1,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:lava_flowing", {
2015-06-29 17:55:56 +00:00
description = "Flowing Lava",
_doc_items_create_entry = false,
2015-06-29 17:55:56 +00:00
inventory_image = minetest.inventorycube("default_lava.png"),
drawtype = "flowingliquid",
tiles = {"default_lava.png"},
special_tiles = {
{
image="default_lava_flowing_animated.png",
backface_culling=false,
animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=3.3}
},
{
image="default_lava_flowing_animated.png",
backface_culling=true,
animation={type="vertical_frames", aspect_w=64, aspect_h=64, length=3.3}
},
},
paramtype = "light",
paramtype2 = "flowingliquid",
2017-02-01 21:12:08 +00:00
-- Real light level: 15 (but Minetest caps at 14)
2017-01-04 09:11:35 +00:00
light_source = 14,
2015-06-29 17:55:56 +00:00
walkable = false,
pointable = false,
diggable = false,
buildable_to = true,
drop = "",
2017-01-11 23:59:56 +00:00
--[[ Drowning in Minecraft deals 2 damage per second.
In Minetest, drowning damage is dealt every 2 seconds so this
translates to 4 drowning damage ]]
drowning = 4,
2015-06-29 17:55:56 +00:00
liquidtype = "flowing",
2017-01-31 22:32:56 +00:00
liquid_alternative_flowing = "mcl_core:lava_flowing",
liquid_alternative_source = "mcl_core:lava_source",
2015-06-29 17:55:56 +00:00
liquid_viscosity = LAVA_VISC,
liquid_renewable = false,
2017-01-04 06:02:51 +00:00
liquid_range = 4,
2015-06-29 17:55:56 +00:00
damage_per_second = 4*2,
post_effect_color = {a=192, r=255, g=64, b=0},
groups = { lava=3, liquid=2, igniter=3, destroys_items=1, not_in_creative_inventory=1},
_mcl_blast_resistance = 500,
2017-03-01 17:49:47 +00:00
-- Hardness intentionally set to infinite instead of 100 (Minecraft value) to avoid problems in creative mode
_mcl_hardness = -1,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:lava_source", {
2017-01-12 00:41:40 +00:00
description = "Still Lava",
_doc_items_entry_name = "Lava",
_doc_items_longdesc = "Lava is found deep underground and rather dangerous. Don't touch it, it will hurt you a lot and once you're in, it is hard to get out. When a lava source meets water, it turns into obsidian. Flowing lava turns into stone instead.",
2015-06-29 17:55:56 +00:00
inventory_image = minetest.inventorycube("default_lava.png"),
drawtype = "liquid",
tiles = {
{name="default_lava_source_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}}
},
special_tiles = {
-- New-style lava source material (mostly unused)
{
name="default_lava_source_animated.png",
animation={type="vertical_frames", aspect_w=32, aspect_h=32, length=3.0},
backface_culling = false,
}
},
paramtype = "light",
2017-02-01 21:12:08 +00:00
-- Real light level: 15 (but Minetest caps at 14)
2017-01-04 09:11:35 +00:00
light_source = 14,
2015-06-29 17:55:56 +00:00
walkable = false,
pointable = false,
diggable = false,
buildable_to = true,
drop = "",
2017-01-11 23:59:56 +00:00
drowning = 4,
2015-06-29 17:55:56 +00:00
liquidtype = "source",
2017-01-31 22:32:56 +00:00
liquid_alternative_flowing = "mcl_core:lava_flowing",
liquid_alternative_source = "mcl_core:lava_source",
2015-06-29 17:55:56 +00:00
liquid_viscosity = LAVA_VISC,
liquid_renewable = false,
2017-01-04 06:02:51 +00:00
liquid_range = 4,
2015-06-29 17:55:56 +00:00
damage_per_second = 4*2,
post_effect_color = {a=192, r=255, g=64, b=0},
stack_max = 64,
groups = { lava=3, liquid=2, igniter=3, destroys_items=1, not_in_creative_inventory=1},
_mcl_blast_resistance = 500,
2017-03-01 17:49:47 +00:00
-- Hardness intentionally set to infinite instead of 100 (Minecraft value) to avoid problems in creative mode
_mcl_hardness = -1,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:cobble", {
2015-06-29 17:55:56 +00:00
description = "Cobblestone",
_doc_items_longdesc = doc.sub.items.temp.build,
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_cobble.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=1, building_block=1, deco_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:mossycobble", {
description = "Moss Stone",
_doc_items_longdesc = doc.sub.items.temp.build,
2015-06-29 17:55:56 +00:00
tiles = {"default_mossycobble.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:coalblock", {
2017-01-04 10:44:55 +00:00
description = "Block of Coal",
_doc_items_longdesc = "Blocks of coal are useful as a compact storage of coal and very useful as a furnace fuel. A block of coal is as efficient as 10 coal.",
2017-01-04 10:44:55 +00:00
tiles = {"default_coal_block.png"},
is_ground_content = false,
2017-01-04 10:44:55 +00:00
stack_max = 64,
groups = {pickaxey=1, flammable=1, building_block=1, material_stone=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 5,
2017-01-04 10:44:55 +00:00
})
2017-02-11 20:14:40 +00:00
minetest.register_node("mcl_core:ironblock", {
2017-01-04 04:29:55 +00:00
description = "Block of Iron",
_doc_items_longdesc = "A block of iron is mostly a decorational block but also useful as a compact storage of iron ingots.",
2015-06-29 17:55:56 +00:00
tiles = {"default_steel_block.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=2, building_block=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:goldblock", {
description = "Block of Gold",
_doc_items_longdesc = "A block of gold is mostly a shiny decorational block but also useful as a compact storage of gold ingots.",
2015-06-29 17:55:56 +00:00
tiles = {"default_gold_block.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=4, building_block=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:diamondblock", {
description = "Block of Diamond",
_doc_items_longdesc = "A block of diamond mostly a shiny decorational block but also useful as a compact storage of diamonds.",
2015-06-29 17:55:56 +00:00
tiles = {"default_diamond_block.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=4, building_block=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:lapisblock", {
2017-02-08 23:10:37 +00:00
description = "Lapis Lazuli Block",
_doc_items_longdesc = "A lapis lazuli block is mostly a decorational block but also useful as a compact storage of lapis lazuli.",
2015-06-29 17:55:56 +00:00
tiles = {"default_lapis_block.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=3, building_block=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 15,
_mcl_hardness = 3,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:emeraldblock", {
description = "Block of Emerald",
_doc_items_longdesc = "A block of emerald is mostly a shiny decorational block but also useful as a compact storage of emeralds.",
2015-06-29 17:55:56 +00:00
tiles = {"default_emerald_block.png"},
is_ground_content = false,
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=4, building_block=1},
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 30,
_mcl_hardness = 5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:obsidian", {
2015-06-29 17:55:56 +00:00
description = "Obsidian",
_doc_items_longdesc = "Obsidian is an extremely hard mineral with an enourmous blast-resistance. Obsidian is formed when water meets lava.",
2015-06-29 17:55:56 +00:00
tiles = {"default_obsidian.png"},
is_ground_content = true,
sounds = mcl_sounds.node_sound_stone_defaults(),
2015-06-29 17:55:56 +00:00
stack_max = 64,
groups = {pickaxey=5, building_block=1, material_stone=1},
_mcl_blast_resistance = 6000,
_mcl_hardness = 50,
2015-06-29 17:55:56 +00:00
})
minetest.register_node("mcl_core:deadbush", {
2017-01-04 07:01:40 +00:00
description = "Dead Bush",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Dead bushes are unremarkable plants often found in dry areas. They can be harvested for sticks.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
drawtype = "plantlike",
visual_scale = 1.0,
tiles = {"default_dry_shrub.png"},
inventory_image = "default_dry_shrub.png",
wield_image = "default_dry_shrub.png",
paramtype = "light",
walkable = false,
stack_max = 64,
buildable_to = true,
groups = {dig_immediate=3, flammable=3,attached_node=1,dig_by_water=1,deco_block=1},
2017-01-04 07:01:40 +00:00
drop = {
max_items = 1,
items = {
{
2017-01-31 22:32:56 +00:00
items = {"mcl_core:stick 2"},
2017-01-04 07:01:40 +00:00
rarity = 2,
},
{
2017-01-31 22:32:56 +00:00
items = {"mcl_core:stick 1"},
2017-01-04 07:01:40 +00:00
rarity = 2,
},
}
},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 17:55:56 +00:00
selection_box = {
type = "fixed",
fixed = {-6/16, -8/16, -6/16, 6/16, 8/16, 6/16},
2015-06-29 17:55:56 +00:00
},
_mcl_blast_resistance = 0,
_mcl_hardness = 0,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:ice", {
2015-06-29 17:55:56 +00:00
description = "Ice",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Ice is a translucent solid block usually found in cold areas.",
2015-06-29 17:55:56 +00:00
drawtype = "glasslike",
tiles = {"default_ice.png"},
is_ground_content = true,
paramtype = "light",
use_texture_alpha = true,
stack_max = 64,
groups = {handy=1,pickaxey=1, building_block=1},
2017-01-04 07:01:40 +00:00
drop = "",
sounds = mcl_sounds.node_sound_glass_defaults(),
_mcl_blast_resistance = 2.5,
_mcl_hardness = 0.5,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:packed_ice", {
2015-06-29 17:55:56 +00:00
description = "Packed Ice",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Packed ice is a compressed form of ice. It is opaque and solid.",
2015-06-29 17:55:56 +00:00
drawtype = "glasslike",
tiles = {"default_ice_packed.png"},
is_ground_content = true,
paramtype = "light",
use_texture_alpha = true,
stack_max = 64,
groups = {handy=1,pickaxey=1, building_block=1},
2017-01-04 07:01:40 +00:00
drop = "",
sounds = mcl_sounds.node_sound_glass_defaults(),
_mcl_blast_resistance = 2.5,
_mcl_hardness = 0.5,
2015-06-29 17:55:56 +00:00
})
2017-01-08 01:49:07 +00:00
-- Frosted Ice (4 nodes)
for i=0,3 do
local ice = {}
ice.increase_age = function(pos, ice_near, first_melt)
-- Increase age of frosted age or turn to water source if too old
local nn = minetest.get_node(pos).name
local age = tonumber(string.sub(nn, -1))
if age == nil then return end
local nextnode
if age < 3 then
2017-01-31 22:32:56 +00:00
nextnode = "mcl_core:frosted_ice_"..(age+1)
2017-01-08 01:49:07 +00:00
else
2017-01-31 22:32:56 +00:00
nextnode = "mcl_core:water_source"
2017-01-08 01:49:07 +00:00
end
minetest.swap_node(pos, { name = nextnode })
-- Spread aging to neighbor blocks, but not recursively
if first_melt and i == 3 then
for j=1, #ice_near do
ice.increase_age(ice_near[j], false)
end
end
end
2017-03-11 16:32:39 +00:00
local doc = i == 0
local longdesc
if doc then
longdesc = "Frosted ice is a short-lived solid translucent block. It melts into a water source within a few seconds."
end
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:frosted_ice_"..i, {
2017-01-08 01:49:07 +00:00
description = "Frosted Ice",
2017-03-11 16:32:39 +00:00
_doc_items_create_entry = doc,
_doc_items_longdesc = longdesc,
2017-01-08 01:49:07 +00:00
drawtype = "glasslike",
tiles = {"default_frosted_ice_"..i..".png"},
is_ground_content = false,
paramtype = "light",
use_texture_alpha = true,
stack_max = 64,
groups = {handy=1, frosted_ice=1, not_in_creative_inventory=1},
2017-01-08 01:49:07 +00:00
drop = "",
sounds = mcl_sounds.node_sound_glass_defaults(),
2017-01-08 01:49:07 +00:00
on_construct = function(pos)
local timer = minetest.get_node_timer(pos)
timer:start(1.5)
end,
on_timer = function(pos, elapsed)
local ice_near = minetest.find_nodes_in_area(
{ x = pos.x - 1, y = pos.y - 1, z = pos.z - 1 },
{ x = pos.x + 1, y = pos.y + 1, z = pos.z + 1 },
{ "group:frosted_ice" }
)
-- Check condition to increase age
if (#ice_near < 4 and minetest.get_node_light(pos) > (11 - i)) or math.random(1, 3) == 1 then
ice.increase_age(pos, ice_near, true)
end
local timer = minetest.get_node_timer(pos)
timer:start(1.5)
end,
_mcl_blast_resistance = 2.5,
_mcl_hardness = 0.5,
2017-01-08 01:49:07 +00:00
})
end
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:snow", {
2017-01-04 10:26:35 +00:00
description = "Top Snow",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "Top snow is a thin layer of snow.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_snow.png"},
2017-03-02 15:38:56 +00:00
wield_image = "default_snow.png",
2017-03-02 16:03:14 +00:00
wield_scale = { x=1, y=1, z=1 },
2015-06-29 17:55:56 +00:00
is_ground_content = true,
paramtype = "light",
2017-03-02 16:31:21 +00:00
sunlight_propagates = true,
2015-06-29 17:55:56 +00:00
buildable_to = true,
drawtype = "nodebox",
2017-03-02 15:39:58 +00:00
stack_max = 64,
2017-03-02 16:33:50 +00:00
floodable = true,
2015-06-29 17:55:56 +00:00
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.5+2/16, 0.5},
},
},
2017-03-02 15:39:58 +00:00
groups = {shovely=1, attached_node=1,deco_block=1},
2017-02-19 18:48:16 +00:00
sounds = mcl_sounds.node_sound_snow_defaults(),
2017-01-16 22:11:04 +00:00
drop = "mcl_throwing:snowball 2",
_mcl_blast_resistance = 0.5,
_mcl_hardness = 0.1,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:snowblock", {
description = "Snow",
2017-03-11 16:32:39 +00:00
_doc_items_longdesc = "This is a full block of snow. Snow of this thickness is usually found in areas of extreme cold.",
_doc_items_hidden = false,
2015-06-29 17:55:56 +00:00
tiles = {"default_snow.png"},
is_ground_content = true,
stack_max = 64,
groups = {shovely=1, building_block=1},
2017-02-19 18:48:16 +00:00
sounds = mcl_sounds.node_sound_snow_defaults(),
2017-01-16 22:11:04 +00:00
drop = "mcl_throwing:snowball 4",
_mcl_blast_resistance = 1,
_mcl_hardness = 0.2,
2015-06-29 17:55:56 +00:00
})
2017-01-31 22:32:56 +00:00
minetest.register_node("mcl_core:cobweb", {
2015-06-29 17:55:56 +00:00
description = "Cobweb",
_doc_items_longdesc = "Cobwebs can be walked through, but significantly slow you down.",
2015-06-29 17:55:56 +00:00
drawtype = "plantlike",
2017-01-20 17:56:38 +00:00
paramtype2 = "degrotate",
2015-06-29 17:55:56 +00:00
visual_scale = 1.1,
stack_max = 64,
2017-02-13 13:37:36 +00:00
tiles = {"mcl_core_web.png"},
inventory_image = "mcl_core_web.png",
2015-06-29 17:55:56 +00:00
paramtype = "light",
sunlight_propagates = true,
liquid_viscosity = 14,
liquidtype = "source",
2017-01-31 22:32:56 +00:00
liquid_alternative_flowing = "mcl_core:cobweb",
liquid_alternative_source = "mcl_core:cobweb",
2015-06-29 17:55:56 +00:00
liquid_renewable = false,
liquid_range = 0,
walkable = false,
2017-02-27 18:38:48 +00:00
groups = {swordy_cobweb=1,shearsy=1, deco_block=1},
2017-02-01 16:59:15 +00:00
drop = "mcl_mobitems:string",
_mcl_blast_resistance = 20,
_mcl_hardness = 4,
2015-06-29 17:55:56 +00:00
})