Add mods: technic, moreores, paintings, Nyancat (Pbj_pup). Small fix: sandwiches
This commit is contained in:
parent
15e8e696a2
commit
fb09deddc1
1404 changed files with 156555 additions and 211 deletions
35
mods/technic_plus_beta/technic/machines/LV/extractor.lua
Normal file
35
mods/technic_plus_beta/technic/machines/LV/extractor.lua
Normal file
|
@ -0,0 +1,35 @@
|
|||
local S = technic.getter
|
||||
|
||||
minetest.register_alias("extractor", "technic:lv_extractor")
|
||||
|
||||
if technic.config:get_bool("enable_tree_tap") then
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:lv_extractor',
|
||||
recipe = {
|
||||
{'technic:treetap', 'basic_materials:motor', 'technic:treetap'},
|
||||
{'technic:treetap', 'technic:machine_casing', 'technic:treetap'},
|
||||
{'', 'technic:lv_cable', ''},
|
||||
}
|
||||
})
|
||||
|
||||
else
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:lv_extractor',
|
||||
recipe = {
|
||||
{'basic_materials:motor', 'pipeworks:tube_1', 'basic_materials:motor'},
|
||||
{'technic:carbon_steel_ingot', 'technic:machine_casing', 'technic:carbon_steel_ingot'},
|
||||
{'', 'technic:lv_cable', ''},
|
||||
}
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
technic.register_base_machine("technic:lv_extractor", {
|
||||
typename = "extracting",
|
||||
description = S("@1 Extractor", S("LV")),
|
||||
tier = "LV",
|
||||
demand = {300},
|
||||
speed = 1
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue