quests+kubejs quick commit
quests and kjs arent finished but the pack should be playable lmk if anything is wildly broken
This commit is contained in:
17
kubejs/server_scripts/gregtech/components.js
Normal file
17
kubejs/server_scripts/gregtech/components.js
Normal file
@@ -0,0 +1,17 @@
|
||||
ServerEvents.recipes(event => {
|
||||
const greg = event.recipes.gtceu
|
||||
event.remove({output: "gtceu:fluid_voiding_cover"})
|
||||
event.remove({id: "gtceu:macerator/macerate_fluid_voiding_cover"})
|
||||
greg.assembler("fluid_voiding_cover")
|
||||
.itemInputs("2x #forge:screws/steel", "gtceu:fluid_detector_cover", "gtceu:bronze_normal_fluid_pipe")
|
||||
.itemOutputs("gtceu:fluid_voiding_cover")
|
||||
.duration(100).EUt(30)
|
||||
|
||||
event.remove({output: "gtceu:item_voiding_cover"})
|
||||
event.remove({id: "gtceu:macerator/macerate_item_voiding_cover"})
|
||||
greg.assembler("item_voiding_cover")
|
||||
.itemInputs("2x #forge:screws/steel", "gtceu:item_detector_cover", "hopper")
|
||||
.itemOutputs("gtceu:item_voiding_cover")
|
||||
.duration(100).EUt(30)
|
||||
|
||||
})
|
||||
@@ -65,4 +65,17 @@ ServerEvents.recipes(event => {
|
||||
.duration(900).EUt(60)
|
||||
.circuit(2)
|
||||
})
|
||||
greg.greenhouse("rubber_wood")
|
||||
.notConsumable("gtceu:rubber_sapling")
|
||||
.inputFluids('water 1000')
|
||||
.itemOutputs("16x gtceu:rubber_log", "3x gtceu:rubber_sapling", "4x gtceu:sticky_resin")
|
||||
.duration(1200).EUt(40)
|
||||
.circuit(1)
|
||||
greg.greenhouse("rubber_wood_fertiliser")
|
||||
.notConsumable("gtceu:rubber_sapling")
|
||||
.itemInputs("4x gtceu:fertilizer")
|
||||
.inputFluids('water 1000')
|
||||
.itemOutputs("32x gtceu:rubber_log", "6x gtceu:rubber_sapling", "8x gtceu:sticky_resin")
|
||||
.duration(900).EUt(60)
|
||||
.circuit(2)
|
||||
})
|
||||
29
kubejs/server_scripts/gregtech/inscriber.js
Normal file
29
kubejs/server_scripts/gregtech/inscriber.js
Normal file
@@ -0,0 +1,29 @@
|
||||
ServerEvents.recipes(event => {
|
||||
const greg = event.recipes.gtceu
|
||||
// Printed Silicon
|
||||
greg.inscriber("printed_silicon_circuit")
|
||||
.itemInputs("#forge:plates/silicon")
|
||||
.notConsumable("ae2:silicon_press")
|
||||
.itemOutputs("ae2:printed_silicon")
|
||||
.duration(200).EUt(30)
|
||||
|
||||
// Printed Logic Circuit
|
||||
greg.inscriber("printed_logic_processor")
|
||||
.itemInputs("#forge:plates/gold")
|
||||
.notConsumable("ae2:logic_processor_press")
|
||||
.itemOutputs("ae2:printed_logic_processor")
|
||||
.duration(200).EUt(30)
|
||||
|
||||
// Printed Engineering Circuit
|
||||
greg.inscriber("printed_engineering_processor")
|
||||
.itemInputs("#forge:plates/diamond")
|
||||
.notConsumable("ae2:engineering_processor_press")
|
||||
.itemOutputs("ae2:printed_engineering_processor")
|
||||
.duration(200).EUt(30)
|
||||
|
||||
// Printed Calculation Circuit
|
||||
greg.inscriber("printed_calculation_circuit")
|
||||
.itemInputs("#forge:plates/certus_quartz")
|
||||
.notConsumable("ae2:calculation_processor_press")
|
||||
.itemOutputs("ae2:printed_calculation_processor")
|
||||
})
|
||||
Reference in New Issue
Block a user