chore: set up constants

This commit is contained in:
Emerson Rosen-Jones 2025-12-19 23:31:02 -05:00
parent 9a8f81e428
commit bf75e00e9d

19
biofuel-manager.lua Normal file
View file

@ -0,0 +1,19 @@
-- program to manage a biofuel factory with create and some addons + tweaks
-- NOTE: this design does not handle stocking cinder flour or sugar
local STORAGE = ""
local OIL_TANK = ""
local FUEL_TANK = ""
local MAIN_SEED_REQUEST = "minecraft:melon_seeds"
local MAIN_PLANT_REQUEST = "minecraft:bamboo"
local SPEEDOMETER = ""
local MAIN_REQUESTER = ""
local SUBNET_TICKER = ""
local SLEEP_T = 10
local OIL_PKG = "Oil"
local BIOMASS_PKG = "Biomass"
local BIOFUEL_PKG = "Biofuel"