From 791c44e3b090f41265b8b7baa6f56ae53bb9a729 Mon Sep 17 00:00:00 2001 From: gabriel1379 Date: Sun, 25 Feb 2024 18:21:52 +0100 Subject: Add alternative crafting recipe for technic + basic_materials --- crafts.lua | 27 +++++++++++++++++++++++++++ mod.conf | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/crafts.lua b/crafts.lua index e78bd48..d06512e 100644 --- a/crafts.lua +++ b/crafts.lua @@ -3,6 +3,7 @@ local technic_path = minetest.get_modpath("technic") local chains_path = minetest.get_modpath("chains") local mineclone_path = core.get_modpath("mcl_core") and mcl_core local aurum_path = core.get_modpath("aurum") and aurum +local basic_materials_path = core.get_modpath("basic_materials") if mineclone_path then minetest.register_craft({ @@ -82,6 +83,32 @@ elseif technic_path and chains_path then {"chains:chain", "default:diamond", "chains:chain"} }, }) +elseif technic_path and basic_materials_path then + minetest.register_craft({ + output = "elevator:elevator_off", + recipe = { + {"technic:cast_iron_ingot", "basic_materials:chain_steel", "technic:cast_iron_ingot"}, + {"technic:cast_iron_ingot", "default:mese_crystal", "technic:cast_iron_ingot"}, + {"technic:stainless_steel_ingot", "default:glass", "technic:stainless_steel_ingot"}, + }, + }) + + minetest.register_craft({ + output = "elevator:shaft", + recipe = { + {"technic:cast_iron_ingot", "default:glass"}, + {"default:glass", "basic_materials:chain_steel"}, + }, + }) + + minetest.register_craft({ + output = "elevator:motor", + recipe = { + {"default:diamond", "technic:control_logic_unit", "default:diamond"}, + {"default:steelblock", "technic:motor", "default:steelblock"}, + {"basic_materials:chain_steel", "default:diamond", "basic_materials:chain_steel"} + }, + }) elseif technic_path and farming and farming.mod and ( farming.mod == "redo" or farming.mod == "undo" ) then -- add alternative recipe with hemp rope minetest.register_craft({ diff --git a/mod.conf b/mod.conf index 396e669..553dcc5 100644 --- a/mod.conf +++ b/mod.conf @@ -1,4 +1,4 @@ name = elevator description = An entity-based elevator allowing fast realtime travel in Minetest. Supports Minetest Game, MineClone2, and Aurum -optional_depends = default, technic, homedecor, chains, farming, mcl_core, mcl_sounds, aurum, screwdriver, doc_items +optional_depends = default, technic, homedecor, chains, farming, mcl_core, mcl_sounds, aurum, screwdriver, doc_items, basic_materials min_minetest_version = 5.4 -- cgit v1.2.3 From 466740cc716b36febaa1eae96bd9a8cb0b889d7d Mon Sep 17 00:00:00 2001 From: gabriel1379 Date: Sun, 25 Feb 2024 18:24:35 +0100 Subject: Fix indentation in crafts.lua --- crafts.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crafts.lua b/crafts.lua index d06512e..dcbd062 100644 --- a/crafts.lua +++ b/crafts.lua @@ -110,8 +110,8 @@ elseif technic_path and basic_materials_path then }, }) elseif technic_path and farming and farming.mod and ( farming.mod == "redo" or farming.mod == "undo" ) then - -- add alternative recipe with hemp rope - minetest.register_craft({ + -- add alternative recipe with hemp rope + minetest.register_craft({ output = "elevator:elevator_off", recipe = { {"technic:cast_iron_ingot", "farming:hemp_rope", "technic:cast_iron_ingot"}, -- cgit v1.2.3