485b578e33
This machine is designed to extract Biogas from highly compressed dry organic matter, such as fossil fuels (coal block) and straw. It requires no fuel to avoid complex processing loops. Its recipe base is expandable via API function. All functionality and Tubelib integration is in place. Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
25 lines
671 B
Lua
25 lines
671 B
Lua
--[[
|
|
|
|
=======================================================================
|
|
Tubelib Biogas Machines Mod
|
|
by Micu (c) 2018
|
|
|
|
Copyright (C) 2018 Michal Cieslakiewicz
|
|
|
|
License: LGPLv2.1+
|
|
Media: CC BY-SA
|
|
=======================================================================
|
|
|
|
]]--
|
|
|
|
biogasmachines = {}
|
|
|
|
-- helper functions
|
|
dofile(minetest.get_modpath("biogasmachines").."/functions.lua")
|
|
|
|
-- machines
|
|
dofile(minetest.get_modpath("biogasmachines").."/freezer.lua")
|
|
dofile(minetest.get_modpath("biogasmachines").."/gasifier.lua")
|
|
--dofile(minetest.get_modpath("biogasmachines").."/gasfurnace.lua")
|
|
--dofile(minetest.get_modpath("biogasmachines").."/htcompressor.lua")
|