mirror of
https://github.com/minetest-mods/technic.git
synced 2025-04-15 17:00:40 +02:00
15 lines
543 B
Lua
15 lines
543 B
Lua
-- MV extractor
|
|
local S = minetest.get_translator("technic")
|
|
|
|
|
|
minetest.register_craft({
|
|
output = 'technic:mv_extractor',
|
|
recipe = {
|
|
{'technic:stainless_steel_ingot', 'technic:lv_extractor', 'technic:stainless_steel_ingot'},
|
|
{'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'},
|
|
{'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'},
|
|
}
|
|
})
|
|
|
|
technic.register_extractor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1, tier_localized=S("MV")})
|