mirror of
https://github.com/minetest-mods/technic.git
synced 2025-06-30 23:30:38 +02:00
Rework some recipes to use more varied ingredients
This commit is contained in:
@ -307,9 +307,9 @@ minetest.register_tool("technic:chainsaw", {
|
||||
minetest.register_craft({
|
||||
output = "technic:chainsaw",
|
||||
recipe = {
|
||||
{"technic:stainless_steel_ingot", "technic:stainless_steel_ingot", "technic:battery"},
|
||||
{"technic:stainless_steel_ingot", "technic:motor", "technic:battery"},
|
||||
{"", "", "default:copper_ingot"},
|
||||
{"technic:stainless_steel_ingot", "mesecons_button:button_off", "technic:battery"},
|
||||
{"technic:fine_copper_wire", "technic:motor", "technic:battery"},
|
||||
{"", "", "technic:stainless_steel_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -6,7 +6,7 @@ local S = technic.getter
|
||||
minetest.register_craft({
|
||||
output = 'technic:mining_drill',
|
||||
recipe = {
|
||||
{'technic:stainless_steel_ingot', 'technic:diamond_drill_head', 'technic:stainless_steel_ingot'},
|
||||
{'moreores:tin_ingot', 'technic:diamond_drill_head', 'moreores:tin_ingot'},
|
||||
{'technic:stainless_steel_ingot', 'technic:motor', 'technic:stainless_steel_ingot'},
|
||||
{'', 'technic:red_energy_crystal', 'moreores:copper_ingot'},
|
||||
}
|
||||
|
@ -16,8 +16,8 @@ local S = technic.getter
|
||||
minetest.register_craft({
|
||||
output = 'technic:laser_mk1',
|
||||
recipe = {
|
||||
{'default:diamond', 'technic:carbon_steel_ingot', 'technic:red_energy_crystal'},
|
||||
{'', 'technic:carbon_steel_ingot', 'technic:carbon_steel_ingot'},
|
||||
{'default:diamond', 'technic:brass_ingot', 'default:obsidian_glass'},
|
||||
{'', 'technic:brass_ingot', 'technic:red_energy_crystal'},
|
||||
{'', '', 'default:copper_ingot'},
|
||||
}
|
||||
})
|
||||
|
@ -65,9 +65,9 @@ minetest.register_tool("technic:sonic_screwdriver", {
|
||||
minetest.register_craft({
|
||||
output = "technic:sonic_screwdriver",
|
||||
recipe = {
|
||||
{"default:diamond"},
|
||||
{"technic:battery"},
|
||||
{"technic:stainless_steel_ingot"}
|
||||
{"", "default:diamond", ""},
|
||||
{"mesecons_materials:fiber", "technic:battery", "mesecons_materials:fiber"},
|
||||
{"mesecons_materials:fiber", "moreores:mithril_ingot", "mesecons_materials:fiber"}
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user