Skip to content

Commit

Permalink
ae2 quest cleanup
Browse files Browse the repository at this point in the history
centralise quests, add dense coprocessor quests
  • Loading branch information
ursamina committed Jul 6, 2024
1 parent 0e9f5c9 commit bac2e10
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 45 deletions.
80 changes: 80 additions & 0 deletions kubejs/server_scripts/appliedenergistics2/ae2.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,43 @@ ServerEvents.recipes((event) => {
.duration(100)
.EUt(64);

// 4x Crafting Co-Processing Unit
event.remove({ id: "mae2:network/crafting/4x_crafting_accelerator" });
greg
.assembler("gtceu:4x_crafting_accelerator")
.itemInputs("3x ae2:crafting_accelerator", "ae2:cell_component_4k", "#gtceu:circuits/hv")
.itemOutputs("mae2:4x_crafting_accelerator")
.duration(100)
.EUt(130);

// 16x Crafting Co-Processing Unit
event.remove({ id: "mae2:network/crafting/16x_crafting_accelerator" });
greg
.assembler("gtceu:16x_crafting_accelerator")
.itemInputs("3x mae2:4x_crafting_accelerator", "ae2:cell_component_16k", "#gtceu:circuits/ev")
.itemOutputs("mae2:16x_crafting_accelerator")
.duration(100)
.EUt(520);

// 64x Crafting Co-Processing Unit
event.remove({ id: "mae2:network/crafting/64x_crafting_accelerator" });
greg
.assembler("gtceu:64x_crafting_accelerator")
.itemInputs("3x mae2:16x_crafting_accelerator", "ae2:cell_component_64k", "#gtceu:circuits/iv")
.itemOutputs("mae2:64x_crafting_accelerator")
.duration(100)
.EUt(2080);

// 256x Crafting Co-Processing Unit
event.remove({ id: "mae2:network/crafting/256x_crafting_accelerator" });
greg
.assembler("gtceu:256x_crafting_accelerator")
.itemInputs("3x mae2:64x_crafting_accelerator", "ae2:cell_component_256k", "#gtceu:circuits/luv")
.itemOutputs("mae2:256x_crafting_accelerator")
.duration(100)
.EUt(8320);


// Crafting Monitor
event.remove({ id: "ae2:network/crafting/cpu_crafting_monitor" });
greg
Expand Down Expand Up @@ -328,4 +365,47 @@ ServerEvents.recipes((event) => {
.itemOutputs("gtceu:fluix_rod")
.duration(200)
.EUt(8);

// Logic Processor
event.remove({ id: "ae2:inscriber/logic_processor" });
greg
.circuit_assembler("gtceu:logic_processor")
.itemInputs(
"ae2:printed_logic_processor",
"ae2:printed_silicon",
"#gtceu:circuits/lv",
"#gtceu:resistors",
"2x #forge:fine_wires/tin"
)
.itemOutputs("4x ae2:logic_processor")
.duration(200)
.EUt(30);
// Engineering Processor
event.remove({ id: "ae2:inscriber/engineering_processor" });
greg
.circuit_assembler("gtceu:engineering_processor")
.itemInputs(
"ae2:printed_engineering_processor",
"ae2:printed_silicon",
"#gtceu:circuits/lv",
"#gtceu:resistors",
"2x #forge:fine_wires/tin"
)
.itemOutputs("4x ae2:engineering_processor")
.duration(200)
.EUt(30);
// Calculation Processor
event.remove({ id: "ae2:inscriber/calculation_processor" });
greg
.circuit_assembler("gtceu:calculation_processor")
.itemInputs(
"ae2:printed_calculation_processor",
"ae2:printed_silicon",
"#gtceu:circuits/lv",
"#gtceu:resistors",
"2x #forge:fine_wires/tin"
)
.itemOutputs("4x ae2:calculation_processor")
.duration(200)
.EUt(30);
});
45 changes: 0 additions & 45 deletions kubejs/server_scripts/appliedenergistics2/circuitry.js

This file was deleted.

File renamed without changes.

0 comments on commit bac2e10

Please sign in to comment.