2021-05-29 14:12:33 +00:00
local S = minetest.get_translator ( minetest.get_current_modname ( ) )
2019-03-07 23:22:28 +00:00
2021-05-29 14:12:33 +00:00
local mod_screwdriver = minetest.get_modpath ( " screwdriver " )
2019-12-14 22:42:17 +00:00
local on_rotate
if mod_screwdriver then
on_rotate = screwdriver.rotate_3way
end
2019-03-08 19:22:01 +00:00
2017-02-08 17:54:56 +00:00
minetest.register_node ( " mcl_nether:glowstone " , {
2019-03-07 23:22:28 +00:00
description = S ( " Glowstone " ) ,
_doc_items_longdesc = S ( " Glowstone is a naturally-glowing block which is home to the Nether. " ) ,
2017-02-08 17:54:56 +00:00
tiles = { " mcl_nether_glowstone.png " } ,
is_ground_content = true ,
stack_max = 64 ,
2017-03-11 04:34:58 +00:00
groups = { handy = 1 , building_block = 1 , material_glass = 1 } ,
2017-02-08 17:54:56 +00:00
drop = {
max_items = 1 ,
items = {
2021-05-29 14:12:33 +00:00
{ items = { " mcl_nether:glowstone_dust 4 " } , rarity = 3 } ,
{ items = { " mcl_nether:glowstone_dust 3 " } , rarity = 3 } ,
{ items = { " mcl_nether:glowstone_dust 2 " } } ,
2017-02-08 17:54:56 +00:00
}
} ,
2017-06-13 12:46:21 +00:00
paramtype = " light " ,
2019-12-14 17:57:17 +00:00
light_source = minetest.LIGHT_MAX ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_glass_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.3 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 0.3 ,
2020-11-02 18:09:23 +00:00
_mcl_silk_touch_drop = true ,
2020-11-06 12:46:52 +00:00
_mcl_fortune_drop = {
discrete_uniform_distribution = true ,
items = { " mcl_nether:glowstone_dust " } ,
min_count = 2 ,
max_count = 4 ,
cap = 4 ,
}
2017-02-08 17:54:56 +00:00
} )
minetest.register_node ( " mcl_nether:quartz_ore " , {
2019-03-07 23:22:28 +00:00
description = S ( " Nether Quartz Ore " ) ,
_doc_items_longdesc = S ( " Nether quartz ore is an ore containing nether quartz. It is commonly found around netherrack in the Nether. " ) ,
2017-02-08 17:54:56 +00:00
stack_max = 64 ,
2017-02-08 18:52:04 +00:00
tiles = { " mcl_nether_quartz_ore.png " } ,
2017-02-08 18:00:41 +00:00
is_ground_content = true ,
2020-10-23 22:46:45 +00:00
groups = { pickaxey = 1 , building_block = 1 , material_stone = 1 , xp = 3 } ,
2021-05-29 14:12:33 +00:00
drop = " mcl_nether:quartz " ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 3 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 3 ,
2020-11-02 18:09:23 +00:00
_mcl_silk_touch_drop = true ,
2020-11-06 12:46:52 +00:00
_mcl_fortune_drop = mcl_core.fortune_drop_ore
2017-02-08 17:54:56 +00:00
} )
2017-02-08 18:52:04 +00:00
2021-04-14 12:20:53 +00:00
minetest.register_node ( " mcl_nether:ancient_debris " , {
description = S ( " Ancient Debris " ) ,
_doc_items_longdesc = S ( " Ancient debris can be found in the nether and is very very rare. " ) ,
stack_max = 64 ,
tiles = { " mcl_nether_ancient_debris_top.png " , " mcl_nether_ancient_debris_side.png " } ,
is_ground_content = true ,
2023-01-30 05:03:50 +00:00
groups = { pickaxey = 4 , building_block = 1 , material_stone = 1 , xp = 0 , blast_furnace_smeltable = 1 } ,
2022-06-28 15:47:55 +00:00
drop = " mcl_nether:ancient_debris " ,
2021-04-14 12:20:53 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
_mcl_blast_resistance = 1200 ,
_mcl_hardness = 30 ,
2021-05-07 22:50:35 +00:00
_mcl_silk_touch_drop = true
2021-04-14 12:20:53 +00:00
} )
2021-04-15 15:45:48 +00:00
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 ,
2022-07-22 13:06:35 +00:00
groups = { pickaxey = 4 , building_block = 1 , material_stone = 1 , xp = 0 , fire_immune = 1 } ,
2022-06-28 15:47:55 +00:00
drop = " mcl_nether:netheriteblock " ,
2021-04-15 15:45:48 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
_mcl_blast_resistance = 1200 ,
_mcl_hardness = 50 ,
_mcl_silk_touch_drop = true ,
} )
2017-11-11 18:52:11 +00:00
-- For eternal fire on top of netherrack and magma blocks
-- (this code does not require a dependency on mcl_fire)
2021-05-29 14:12:33 +00:00
local function eternal_after_destruct ( pos , oldnode )
2017-11-11 18:52:11 +00:00
pos.y = pos.y + 1
if minetest.get_node ( pos ) . name == " mcl_fire:eternal_fire " then
minetest.remove_node ( pos )
end
end
2021-05-29 14:12:33 +00:00
local function eternal_on_ignite ( player , pointed_thing )
2017-11-11 18:52:11 +00:00
local pos = pointed_thing.under
local flame_pos = { x = pos.x , y = pos.y + 1 , z = pos.z }
local fn = minetest.get_node ( flame_pos )
2019-02-11 20:27:17 +00:00
local pname = player : get_player_name ( )
if minetest.is_protected ( flame_pos , pname ) then
minetest.record_protection_violation ( flame_pos , pname )
return
end
if fn.name == " air " and pointed_thing.under . y < pointed_thing.above . y then
2017-11-11 18:52:11 +00:00
minetest.set_node ( flame_pos , { name = " mcl_fire:eternal_fire " } )
return true
else
return false
end
end
2017-02-08 18:52:04 +00:00
minetest.register_node ( " mcl_nether:netherrack " , {
2019-03-07 23:22:28 +00:00
description = S ( " Netherrack " ) ,
_doc_items_longdesc = S ( " Netherrack is a stone-like block home to the Nether. Starting a fire on this block will create an eternal fire. " ) ,
2017-02-08 18:52:04 +00:00
stack_max = 64 ,
tiles = { " mcl_nether_netherrack.png " } ,
is_ground_content = true ,
2017-07-05 18:14:37 +00:00
groups = { pickaxey = 1 , building_block = 1 , material_stone = 1 , enderman_takable = 1 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.4 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 0.4 ,
2017-11-11 18:52:11 +00:00
-- Eternal fire on top
after_destruct = eternal_after_destruct ,
_on_ignite = eternal_on_ignite ,
2017-02-08 18:52:04 +00:00
} )
2017-02-08 23:51:43 +00:00
minetest.register_node ( " mcl_nether:magma " , {
2019-03-07 23:22:28 +00:00
description = S ( " Magma Block " ) ,
2021-03-29 22:01:29 +00:00
_tt_help = minetest.colorize ( mcl_colors.YELLOW , S ( " Burns your feet " ) ) ,
2019-03-07 23:22:28 +00:00
_doc_items_longdesc = S ( " Magma blocks are hot solid blocks which hurt anyone standing on it, unless they have fire resistance. Starting a fire on this block will create an eternal fire. " ) ,
2017-02-08 23:51:43 +00:00
stack_max = 64 ,
tiles = { { name = " mcl_nether_magma.png " , animation = { type = " vertical_frames " , aspect_w = 32 , aspect_h = 32 , length = 1.5 } } } ,
is_ground_content = true ,
light_source = 3 ,
2017-02-10 03:31:02 +00:00
sunlight_propagates = false ,
2017-03-11 04:34:58 +00:00
groups = { pickaxey = 1 , building_block = 1 , material_stone = 1 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2017-02-08 23:51:43 +00:00
-- From walkover mod
on_walk_over = function ( loc , nodeiamon , player )
2022-03-13 18:11:28 +00:00
local armor_feet = player : get_inventory ( ) : get_stack ( " armor " , 5 )
if player and player : get_player_control ( ) . sneak or ( minetest.global_exists ( " mcl_enchanting " ) and mcl_enchanting.has_enchantment ( armor_feet , " frost_walker " ) ) or ( minetest.global_exists ( " mcl_potions " ) and mcl_potions.player_has_effect ( player , " fire_proof " ) ) then
2020-11-12 15:43:12 +00:00
return
end
2017-02-08 23:51:43 +00:00
-- Hurt players standing on top of this block
2017-07-24 17:20:06 +00:00
if player : get_hp ( ) > 0 then
2021-04-14 15:20:51 +00:00
mcl_util.deal_damage ( player , 1 , { type = " hot_floor " } )
2017-07-24 17:20:06 +00:00
end
2017-02-08 23:51:43 +00:00
end ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.5 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 0.5 ,
2017-11-11 18:52:11 +00:00
-- Eternal fire on top
after_destruct = eternal_after_destruct ,
_on_ignite = eternal_on_ignite ,
2017-02-08 23:51:43 +00:00
} )
2017-02-09 00:56:55 +00:00
minetest.register_node ( " mcl_nether:soul_sand " , {
2019-03-07 23:22:28 +00:00
description = S ( " Soul Sand " ) ,
2020-02-19 03:54:17 +00:00
_tt_help = S ( " Reduces walking speed " ) ,
2019-03-07 23:22:28 +00:00
_doc_items_longdesc = S ( " Soul sand is a block from the Nether. One can only slowly walk on soul sand. The slowing effect is amplified when the soul sand is on top of ice, packed ice or a slime block. " ) ,
2017-02-09 00:56:55 +00:00
stack_max = 64 ,
tiles = { " mcl_nether_soul_sand.png " } ,
is_ground_content = true ,
2022-05-24 11:24:22 +00:00
groups = { handy = 1 , shovely = 1 , building_block = 1 , soil_nether_wart = 1 , material_sand = 1 , soul_block = 1 } ,
2017-02-09 00:56:55 +00:00
collision_box = {
type = " fixed " ,
fixed = { - 0.5 , - 0.5 , - 0.5 , 0.5 , 0.5 - 2 / 16 , 0.5 } ,
} ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_sand_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.5 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 0.5 ,
2017-05-22 22:52:31 +00:00
-- Movement handling is done in mcl_playerplus mod
2017-02-09 00:56:55 +00:00
} )
2017-02-08 18:52:04 +00:00
minetest.register_node ( " mcl_nether:nether_brick " , {
-- Original name: Nether Brick
2019-03-07 23:22:28 +00:00
description = S ( " Nether Brick Block " ) ,
2017-03-18 17:01:28 +00:00
_doc_items_longdesc = doc.sub . items.temp . build ,
2017-02-08 18:52:04 +00:00
stack_max = 64 ,
tiles = { " mcl_nether_nether_brick.png " } ,
is_ground_content = false ,
2017-03-11 04:34:58 +00:00
groups = { pickaxey = 1 , building_block = 1 , material_stone = 1 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 6 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 2 ,
2017-02-08 18:52:04 +00:00
} )
minetest.register_node ( " mcl_nether:red_nether_brick " , {
-- Original name: Red Nether Brick
2019-03-07 23:22:28 +00:00
description = S ( " Red Nether Brick Block " ) ,
2017-03-18 17:01:28 +00:00
_doc_items_longdesc = doc.sub . items.temp . build ,
2017-02-08 18:52:04 +00:00
stack_max = 64 ,
tiles = { " mcl_nether_red_nether_brick.png " } ,
is_ground_content = false ,
2017-03-11 04:34:58 +00:00
groups = { pickaxey = 1 , building_block = 1 , material_stone = 1 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 6 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 2 ,
2017-02-08 18:52:04 +00:00
} )
2017-02-08 19:07:54 +00:00
minetest.register_node ( " mcl_nether:nether_wart_block " , {
2019-03-07 23:22:28 +00:00
description = S ( " Nether Wart Block " ) ,
2019-03-09 16:01:36 +00:00
_doc_items_longdesc = S ( " A nether wart block is a purely decorative block made from nether wart. " ) ,
2017-02-08 19:07:54 +00:00
stack_max = 64 ,
tiles = { " mcl_nether_nether_wart_block.png " } ,
is_ground_content = false ,
2023-01-23 00:11:56 +00:00
groups = { handy = 1 , hoey = 7 , swordy = 1 , building_block = 1 , compostability = 85 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_leaves_defaults (
2017-02-08 19:07:54 +00:00
{
footstep = { name = " default_dirt_footstep " , gain = 0.7 } ,
dug = { name = " default_dirt_footstep " , gain = 1.5 } ,
}
) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 1 ,
2017-03-20 19:33:20 +00:00
_mcl_hardness = 1 ,
2017-02-08 19:07:54 +00:00
} )
2017-02-08 17:54:56 +00:00
minetest.register_node ( " mcl_nether:quartz_block " , {
2019-03-07 23:22:28 +00:00
description = S ( " Block of Quartz " ) ,
2017-03-18 17:01:28 +00:00
_doc_items_longdesc = doc.sub . items.temp . build ,
2017-02-08 17:54:56 +00:00
stack_max = 64 ,
2017-02-08 18:00:41 +00:00
is_ground_content = false ,
2017-02-08 17:54:56 +00:00
tiles = { " mcl_nether_quartz_block_top.png " , " mcl_nether_quartz_block_bottom.png " , " mcl_nether_quartz_block_side.png " } ,
2017-03-11 04:34:58 +00:00
groups = { pickaxey = 1 , quartz_block = 1 , building_block = 1 , material_stone = 1 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.8 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 0.8 ,
2017-02-08 17:54:56 +00:00
} )
minetest.register_node ( " mcl_nether:quartz_chiseled " , {
2019-03-07 23:22:28 +00:00
description = S ( " Chiseled Quartz Block " ) ,
2017-03-18 17:01:28 +00:00
_doc_items_longdesc = doc.sub . items.temp . build ,
2017-02-08 17:54:56 +00:00
stack_max = 64 ,
is_ground_content = false ,
tiles = { " mcl_nether_quartz_chiseled_top.png " , " mcl_nether_quartz_chiseled_top.png " , " mcl_nether_quartz_chiseled_side.png " } ,
2017-03-11 04:34:58 +00:00
groups = { pickaxey = 1 , quartz_block = 1 , building_block = 1 , material_stone = 1 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.8 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 0.8 ,
2017-02-08 17:54:56 +00:00
} )
minetest.register_node ( " mcl_nether:quartz_pillar " , {
2019-03-07 23:22:28 +00:00
description = S ( " Pillar Quartz Block " ) ,
2017-03-18 17:01:28 +00:00
_doc_items_longdesc = doc.sub . items.temp . build ,
2017-02-08 17:54:56 +00:00
stack_max = 64 ,
paramtype2 = " facedir " ,
2017-02-08 18:00:41 +00:00
is_ground_content = false ,
2017-02-11 03:37:14 +00:00
on_place = mcl_util.rotate_axis ,
2017-02-08 17:54:56 +00:00
tiles = { " mcl_nether_quartz_pillar_top.png " , " mcl_nether_quartz_pillar_top.png " , " mcl_nether_quartz_pillar_side.png " } ,
2017-03-11 04:34:58 +00:00
groups = { pickaxey = 1 , quartz_block = 1 , building_block = 1 , material_stone = 1 } ,
2017-02-11 17:46:23 +00:00
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2019-12-14 22:42:17 +00:00
on_rotate = on_rotate ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.8 ,
2017-02-27 00:40:30 +00:00
_mcl_hardness = 0.8 ,
2017-02-08 17:54:56 +00:00
} )
2017-11-23 02:24:39 +00:00
minetest.register_node ( " mcl_nether:quartz_smooth " , {
2019-03-07 23:22:28 +00:00
description = S ( " Smooth Quartz " ) ,
2017-11-23 02:24:39 +00:00
_doc_items_longdesc = doc.sub . items.temp . build ,
stack_max = 64 ,
is_ground_content = false ,
tiles = { " mcl_nether_quartz_block_bottom.png " } ,
groups = { pickaxey = 1 , quartz_block = 1 , building_block = 1 , material_stone = 1 } ,
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
2020-04-17 19:40:13 +00:00
_mcl_blast_resistance = 0.8 ,
2017-11-23 02:24:39 +00:00
_mcl_hardness = 0.8 ,
} )
2017-02-08 17:54:56 +00:00
minetest.register_craftitem ( " mcl_nether:glowstone_dust " , {
2019-03-07 23:22:28 +00:00
description = S ( " Glowstone Dust " ) ,
_doc_items_longdesc = S ( " Glowstone dust is the dust which comes out of broken glowstones. It is mainly used in crafting. " ) ,
2017-02-08 17:54:56 +00:00
inventory_image = " mcl_nether_glowstone_dust.png " ,
stack_max = 64 ,
2020-07-05 01:28:02 +00:00
groups = { craftitem = 1 , brewitem = 1 } ,
2017-02-08 17:54:56 +00:00
} )
minetest.register_craftitem ( " mcl_nether:quartz " , {
2019-03-07 23:22:28 +00:00
description = S ( " Nether Quartz " ) ,
_doc_items_longdesc = S ( " Nether quartz is a versatile crafting ingredient. " ) ,
2017-02-08 17:54:56 +00:00
inventory_image = " mcl_nether_quartz.png " ,
stack_max = 64 ,
groups = { craftitem = 1 } ,
} )
2021-04-14 12:35:15 +00:00
minetest.register_craftitem ( " mcl_nether:netherite_scrap " , {
description = S ( " Netherite Scrap " ) ,
_doc_items_longdesc = S ( " Netherite scrap is a crafting ingredient for netherite ingots. " ) ,
inventory_image = " mcl_nether_netherite_scrap.png " ,
stack_max = 64 ,
2022-07-22 13:06:35 +00:00
groups = { craftitem = 1 , fire_immune = 1 } ,
2021-04-14 12:35:15 +00:00
} )
minetest.register_craftitem ( " mcl_nether:netherite_ingot " , {
description = S ( " Netherite Ingot " ) ,
_doc_items_longdesc = S ( " Netherite ingots can be used with a smithing table to upgrade items to netherite. " ) ,
inventory_image = " mcl_nether_netherite_ingot.png " ,
stack_max = 64 ,
2022-07-22 13:06:35 +00:00
groups = { craftitem = 1 , fire_immune = 1 } ,
2021-04-14 12:35:15 +00:00
} )
2017-02-08 18:52:04 +00:00
minetest.register_craftitem ( " mcl_nether:netherbrick " , {
2019-03-07 23:22:28 +00:00
description = S ( " Nether Brick " ) ,
_doc_items_longdesc = S ( " Nether bricks are the main crafting ingredient for crafting nether brick blocks and nether fences. " ) ,
2017-02-08 18:52:04 +00:00
inventory_image = " mcl_nether_netherbrick.png " ,
stack_max = 64 ,
groups = { craftitem = 1 } ,
} )
2017-02-08 17:54:56 +00:00
minetest.register_craft ( {
type = " cooking " ,
output = " mcl_nether:quartz " ,
recipe = " mcl_nether:quartz_ore " ,
cooktime = 10 ,
} )
minetest.register_craft ( {
2021-04-14 12:35:15 +00:00
type = " cooking " ,
output = " mcl_nether:netherite_scrap " ,
recipe = " mcl_nether:ancient_debris " ,
cooktime = 10 ,
} )
minetest.register_craft ( {
2022-06-28 15:47:55 +00:00
output = " mcl_nether:quartz_block " ,
2017-02-08 17:54:56 +00:00
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_nether:quartz " , " mcl_nether:quartz " } ,
{ " mcl_nether:quartz " , " mcl_nether:quartz " } ,
2017-02-08 17:54:56 +00:00
}
} )
2017-02-08 18:52:04 +00:00
2017-02-08 17:54:56 +00:00
minetest.register_craft ( {
2021-05-29 14:12:33 +00:00
output = " mcl_nether:quartz_pillar 2 " ,
2017-02-08 17:54:56 +00:00
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_nether:quartz_block " } ,
{ " mcl_nether:quartz_block " } ,
2017-02-08 17:54:56 +00:00
}
} )
minetest.register_craft ( {
output = " mcl_nether:glowstone " ,
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_nether:glowstone_dust " , " mcl_nether:glowstone_dust " } ,
{ " mcl_nether:glowstone_dust " , " mcl_nether:glowstone_dust " } ,
2017-02-08 17:54:56 +00:00
}
} )
2017-02-08 23:51:43 +00:00
minetest.register_craft ( {
output = " mcl_nether:magma " ,
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_mobitems:magma_cream " , " mcl_mobitems:magma_cream " } ,
{ " mcl_mobitems:magma_cream " , " mcl_mobitems:magma_cream " } ,
2017-02-08 23:51:43 +00:00
}
} )
2017-02-08 18:52:04 +00:00
minetest.register_craft ( {
type = " cooking " ,
output = " mcl_nether:netherbrick " ,
recipe = " mcl_nether:netherrack " ,
cooktime = 10 ,
} )
minetest.register_craft ( {
output = " mcl_nether:nether_brick " ,
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_nether:netherbrick " , " mcl_nether:netherbrick " } ,
{ " mcl_nether:netherbrick " , " mcl_nether:netherbrick " } ,
2017-02-08 18:52:04 +00:00
}
} )
minetest.register_craft ( {
output = " mcl_nether:red_nether_brick " ,
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_nether:nether_wart_item " , " mcl_nether:netherbrick " } ,
{ " mcl_nether:netherbrick " , " mcl_nether:nether_wart_item " } ,
2017-02-08 18:52:04 +00:00
}
} )
minetest.register_craft ( {
output = " mcl_nether:red_nether_brick " ,
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_nether:netherbrick " , " mcl_nether:nether_wart_item " } ,
{ " mcl_nether:nether_wart_item " , " mcl_nether:netherbrick " } ,
2017-02-08 18:52:04 +00:00
}
} )
2017-02-08 19:07:54 +00:00
minetest.register_craft ( {
output = " mcl_nether:nether_wart_block " ,
recipe = {
2021-05-29 14:12:33 +00:00
{ " mcl_nether:nether_wart_item " , " mcl_nether:nether_wart_item " , " mcl_nether:nether_wart_item " } ,
{ " mcl_nether:nether_wart_item " , " mcl_nether:nether_wart_item " , " mcl_nether:nether_wart_item " } ,
{ " mcl_nether:nether_wart_item " , " mcl_nether:nether_wart_item " , " mcl_nether:nether_wart_item " } ,
2017-02-08 19:07:54 +00:00
}
} )
2017-02-08 18:52:04 +00:00
2021-04-14 12:35:15 +00:00
minetest.register_craft ( {
2023-01-30 05:38:33 +00:00
type = " shapeless " ,
2021-04-14 12:35:15 +00:00
output = " mcl_nether:netherite_ingot " ,
recipe = {
2023-01-30 05:38:33 +00:00
" mcl_nether:netherite_scrap " , " mcl_nether:netherite_scrap " , " mcl_nether:netherite_scrap " ,
" mcl_nether:netherite_scrap " , " mcl_core:gold_ingot " , " mcl_core:gold_ingot " ,
" mcl_core:gold_ingot " , " mcl_core:gold_ingot " , } ,
2021-04-14 12:35:15 +00:00
} )
2021-04-16 06:19:14 +00:00
minetest.register_craft ( {
output = " mcl_nether:netheriteblock " ,
recipe = {
2022-06-28 15:47:55 +00:00
{ " mcl_nether:netherite_ingot " , " mcl_nether:netherite_ingot " , " mcl_nether:netherite_ingot " } ,
{ " mcl_nether:netherite_ingot " , " mcl_nether:netherite_ingot " , " mcl_nether:netherite_ingot " } ,
{ " mcl_nether:netherite_ingot " , " mcl_nether:netherite_ingot " , " mcl_nether:netherite_ingot " }
2021-04-16 06:19:14 +00:00
}
} )
minetest.register_craft ( {
output = " mcl_nether:netherite_ingot 9 " ,
recipe = {
2022-06-28 15:47:55 +00:00
{ " mcl_nether:netheriteblock " , " " , " " } ,
{ " " , " " , " " } ,
{ " " , " " , " " }
2021-04-16 06:19:14 +00:00
}
} )
2017-02-10 03:15:14 +00:00
dofile ( minetest.get_modpath ( minetest.get_current_modname ( ) ) .. " /nether_wart.lua " )
2017-08-01 23:17:29 +00:00
dofile ( minetest.get_modpath ( minetest.get_current_modname ( ) ) .. " /lava.lua " )