Add netheriteblock

This commit is contained in:
Code-Sploit 2021-04-15 15:45:48 +00:00 committed by cora
parent 688d1e3f7e
commit bbf63cf66b
2 changed files with 15 additions and 0 deletions

View File

@ -66,6 +66,21 @@ minetest.register_node("mcl_nether:ancient_debris", {
_mcl_fortune_drop = mcl_core.fortune_drop_ore
})
minetest.register_node("mcl_nether:netheriteblock", {
description = S("Netherite Block"),
_doc_items_longdesc = S("Netherite block is very hard and can be made of 9 netherite ingots."),
stack_max = 64,
tiles = {"mcl_nether_netheriteblock.png"},
is_ground_content = true,
groups = {pickaxey=4, building_block=1, material_stone=1, xp = 0},
drop = 'mcl_nether:netheriteblock',
sounds = mcl_sounds.node_sound_stone_defaults(),
_mcl_blast_resistance = 1200,
_mcl_hardness = 50,
_mcl_silk_touch_drop = true,
_mcl_fortune_drop = mcl_core.fortune_drop_ore
})
-- For eternal fire on top of netherrack and magma blocks
-- (this code does not require a dependency on mcl_fire)
local function eternal_after_destruct(pos, oldnode)

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 B