Add crying obsidian

This commit is contained in:
Nils Dagsson Moskopp 2021-12-08 02:30:44 +01:00
parent 7ede0ca79a
commit 25744f3ed4
Signed by untrusted user who does not match committer: erlehmann
GPG Key ID: A3BC671C35191080
2 changed files with 15 additions and 0 deletions

View File

@ -7,6 +7,21 @@ if mod_screwdriver then
on_rotate = screwdriver.rotate_3way
end
minetest.register_node("mcl_nether:crying_obsidian", {
description = S("Crying Obsidian"),
_doc_items_longdesc = S("Crying obsidian is an extremely hard mineral with an enourmous blast-resistance. It can be found in ruined portals."),
tiles = {"mcl_nether_crying_obsidian.png"},
paramtype = "light",
light_source = 10,
is_ground_content = true,
sounds = mcl_sounds.node_sound_stone_defaults(),
stack_max = 64,
groups = {pickaxey=5, building_block=1, material_stone=1},
_mcl_blast_resistance = 1200,
_mcl_hardness = 50,
})
-- TODO: Nether particle effect when crying obsidian is placed.
minetest.register_node("mcl_nether:glowstone", {
description = S("Glowstone"),
_doc_items_longdesc = S("Glowstone is a naturally-glowing block which is home to the Nether."),

Binary file not shown.

After

Width:  |  Height:  |  Size: 381 B