minimal_hydroponics_setup: modularize the recipe a little better

This commit is contained in:
Sebastian Kuzminsky 2025-03-13 10:12:31 -06:00
parent a9575b04b6
commit c15f988ebe
2 changed files with 14 additions and 8 deletions

View file

@ -1,5 +1,5 @@
[inputs] [inputs]
food_safe_5_gallon_bucket = {} plant_tray_basin = {}
clay_pebble_grow_medium = { quantity = { amount=5, unit="Liter" } } clay_pebble_grow_medium = { quantity = { amount=5, unit="Liter" } }
barb_fitting_1_inch = {} barb_fitting_1_inch = {}
barb_fitting_1_2_inch = {} barb_fitting_1_2_inch = {}
@ -8,11 +8,6 @@ barb_fitting_1_2_inch = {}
tools = [ "hack saw" ] tools = [ "hack saw" ]
[action] [action]
process = """Cut the top of the bucket off, leaving a kind of deep dish process = """Attach the two fittings.
or bowl that will holds the plant growth medium and the plants.
Drill holes for the two fittings. Add the grow medium."""
Attach the two fittings.
Add the grow medium """

View file

@ -0,0 +1,11 @@
[inputs]
food_safe_5_gallon_bucket = {}
[dependencies]
tools = [ "hack saw", "step drill" ]
[action]
process = """* Cut the top of the bucket off, leaving a kind of deep dish
or bowl that will holds the plant growth medium and the plants.
* Drill holes for the two fittings."""