mirror of
https://github.com/minetest-mods/technic.git
synced 2025-03-21 03:40:31 +01:00
19 lines
688 B
Lua
19 lines
688 B
Lua
-- 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.
|
|
|
|
minetest.register_alias("lv_generator", "technic:lv_generator")
|
|
|
|
minetest.register_craft({
|
|
output = 'technic:lv_generator',
|
|
recipe = {
|
|
{technic_compat.stone_ingredient, technic_compat.furnace_ingredient, technic_compat.stone_ingredient},
|
|
{technic_compat.stone_ingredient, 'technic:machine_casing', technic_compat.stone_ingredient},
|
|
{technic_compat.stone_ingredient, 'technic:lv_cable', technic_compat.stone_ingredient},
|
|
}
|
|
})
|
|
|
|
technic.register_generator({tier="LV", supply=200})
|
|
|