From 973a8c7e8ea2061247b03295277d1fbe7cceadbd Mon Sep 17 00:00:00 2001 From: Pyritie Date: Thu, 15 May 2025 01:19:17 +0100 Subject: [PATCH] added recipes for the oxygen loader --- kubejs/server_scripts/ad_astra/recipes.js | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/kubejs/server_scripts/ad_astra/recipes.js b/kubejs/server_scripts/ad_astra/recipes.js index eb1ec98ee..5a93963d7 100644 --- a/kubejs/server_scripts/ad_astra/recipes.js +++ b/kubejs/server_scripts/ad_astra/recipes.js @@ -458,4 +458,39 @@ const registerAdAstraRecipes = (event) => { //#endregion + //#region Convert whatever fluids we want into the breathable gas needed for the Oxygen Distributor + + event.custom({ + type: 'ad_astra:oxygen_loading', + cookingtime: 1, + energy: 30, + input: { + ingredient: { + fluid: 'gtceu:air' + }, + millibuckets: 2 + }, + result: { + fluid: 'ad_astra:oxygen', + millibuckets: 100 + } + }).id('ad_astra:oxygen_loading/air_from_air') + + event.custom({ + type: 'ad_astra:oxygen_loading', + cookingtime: 1, + energy: 30, + input: { + ingredient: { + fluid: 'gtceu:oxygen' + }, + millibuckets: 1 + }, + result: { + fluid: 'ad_astra:oxygen', + millibuckets: 100 + } + }).id('ad_astra:oxygen_loading/air_from_oxygen_gas') + + //#endregion }