From bf75e00e9d6aa2a8eb8e3626e76a61b6643001b6 Mon Sep 17 00:00:00 2001 From: Emerson Rosen-Jones Date: Fri, 19 Dec 2025 23:31:02 -0500 Subject: [PATCH] chore: set up constants --- biofuel-manager.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 biofuel-manager.lua diff --git a/biofuel-manager.lua b/biofuel-manager.lua new file mode 100644 index 0000000..1f0a936 --- /dev/null +++ b/biofuel-manager.lua @@ -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"