* convert to `minetest.get_translator` * fix material translation * fix material translation * Revert "fix material translation" This reverts commit 35d0979d5828f481b6e53c04f20739983ba35087. * update */locale/* * `S("Chernobylite Block")` * restore non-breaking spaces * fix technic_chests/spec/api_spec.lua * fix S(...) * update technic/locale/ * update german translations * fix placeholder `%s` in *.zh_CN.tr translations
22 lines
601 B
Lua
22 lines
601 B
Lua
-- MV extractor
|
|
local S = technic.getter
|
|
|
|
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_base_machine("technic:mv_extractor", {
|
|
typename = "extracting",
|
|
description = S("@1 Extractor", S("MV")),
|
|
tier = "MV",
|
|
demand = {800, 600, 400},
|
|
speed = 2,
|
|
upgrade = 1,
|
|
tube = 1
|
|
})
|