diff --git a/Hyper-Potion-Brewing.sfm b/Hyper-Potion-Brewing.sfm new file mode 100644 index 0000000..4e0ae87 --- /dev/null +++ b/Hyper-Potion-Brewing.sfm @@ -0,0 +1,17 @@ +NAME "Hyper Brewer" + +-- Keeps ingredients in a RFTools Potion Brewer. +-- v1.0 -- +EVERY 20 TICKS DO + -- Grab the items from the interface + INPUT FROM interface + -- Retain the ingredients + OUTPUT RETAIN 1 "cobblemon:medicinal_leek" TO brewer TOP SIDE + OUTPUT RETAIN 1 "cobblemon:sitrus_berry" TO brewer TOP SIDE + OUTPUT RETAIN 3 "minecraft:glass_bottle" TO brewer NORTH SIDE + OUTPUT RETAIN 1 "minecraft:blaze_powder" TO brewer EAST SIDE + FORGET + -- Output the hyper potions + INPUT "cobblemon:hyper_potion" FROM brewer WEST SIDE + OUTPUT "cobblemon:hyper_potion" to interface +END