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
20
mods/technic_plus_beta/technic/machines/LV/generator.lua
Normal file
20
mods/technic_plus_beta/technic/machines/LV/generator.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
-- The electric generator.
|
||||
-- A simple device to get started on the electric machines.
|
||||
-- Inefficient and expensive in fuel (200EU per tick)
|
||||
-- Also only allows for LV machinery to run.
|
||||
|
||||
local mat = technic.materials
|
||||
|
||||
minetest.register_alias("lv_generator", "technic:lv_generator")
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:lv_generator',
|
||||
recipe = {
|
||||
{mat.stone, mat.furnace, mat.stone},
|
||||
{mat.stone, 'technic:machine_casing', mat.stone},
|
||||
{mat.stone, 'technic:lv_cable', mat.stone},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_generator({tier="LV", supply=200})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue