started a tfg space recipes file, moved the air collector ones there
This commit is contained in:
parent
973a8c7e8e
commit
448ea6f60b
3 changed files with 21 additions and 8 deletions
|
|
@ -14,4 +14,5 @@ const registerTFGRecipes = (event) => {
|
|||
registerTFGSupportRecipes(event)
|
||||
registerTFGFishingNetsRecipes(event)
|
||||
registerTFGConvertingRecipes(event)
|
||||
registerTFGSpaceRecipes(event)
|
||||
}
|
||||
|
|
@ -382,14 +382,6 @@ function registerTFGMiscellaneousRecipes(event) {
|
|||
).id(`universal_circuits_${tier}`);
|
||||
});
|
||||
|
||||
// Air collector (move this to space stuff later)
|
||||
event.recipes.gtceu.gas_collector('nether')
|
||||
.circuit(2)
|
||||
.outputFluids(Fluid.of('gtceu:air', 10000))
|
||||
.dimension('minecraft:the_nether')
|
||||
.duration(200)
|
||||
.EUt(16)
|
||||
|
||||
event.shapeless('1x tfg:armor_stand_arms', [
|
||||
'minecraft:armor_stand'
|
||||
]).id(`tfg:shapeless/armor_stand_arms`)
|
||||
|
|
|
|||
20
kubejs/server_scripts/tfg/recipes.space.js
Normal file
20
kubejs/server_scripts/tfg/recipes.space.js
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
// priority: 0
|
||||
|
||||
function registerTFGSpaceRecipes(event) {
|
||||
|
||||
// Air collector
|
||||
|
||||
event.recipes.gtceu.gas_collector('nether')
|
||||
.circuit(2)
|
||||
.outputFluids(Fluid.of('gtceu:air', 10000))
|
||||
.dimension('minecraft:the_nether')
|
||||
.duration(200)
|
||||
.EUt(16)
|
||||
|
||||
event.recipes.gtceu.gas_collector('moon')
|
||||
.circuit(3)
|
||||
.outputFluids(Fluid.of('gtceu:argon', 1))
|
||||
.dimension('ad_astra:moon')
|
||||
.duration(20*60*30)
|
||||
.EUt(16)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue