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 }