Compare commits
4 Commits
main
...
ht/ae2-bal
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b4767e316 | ||
|
|
950b04a56f | ||
|
|
c770a68d34 | ||
|
|
1391457203 |
@@ -121,6 +121,15 @@ ServerEvents.recipes((event) => {
|
||||
H: "#gtceu:circuits/hv",
|
||||
});
|
||||
|
||||
// Controller
|
||||
event.remove({ id: "ae2:network/blocks/controller"});
|
||||
event.shaped("ae2:controller", ["PFP", "CMC", "PFP"], {
|
||||
P: "#forge:plates/aluminium",
|
||||
F: "#forge:plates/fluix",
|
||||
M: "#gtceu:circuits/mv",
|
||||
C: "#ae2:glass_cable",
|
||||
});
|
||||
|
||||
// Energy Acceptor
|
||||
event.remove({ id: "ae2:network/blocks/energy_energy_acceptor" });
|
||||
event.shaped("ae2:energy_acceptor", ["PFP", "FVF", "PFP"], {
|
||||
@@ -366,13 +375,19 @@ ServerEvents.recipes((event) => {
|
||||
.duration(100)
|
||||
.EUt(24);
|
||||
|
||||
|
||||
// Fluix Plate
|
||||
greg
|
||||
.lathe("fluix_lathing")
|
||||
.itemInputs("ae2:fluix_crystal")
|
||||
.itemOutputs("gtceu:fluix_rod")
|
||||
.duration(200)
|
||||
.EUt(8);
|
||||
.compressor("gtceu:fluix_plate_to_dust")
|
||||
.itemInputs("#forge:dusts/fluix")
|
||||
.itemOutputs(ChemicalHelper.get(TagPrefix.plate, GTMaterialRegistry.getMaterial("fluix"), 1))
|
||||
.duration(400)
|
||||
.EUt(2);
|
||||
greg
|
||||
.cutter("gtceu:fluix_block_to_plate")
|
||||
.itemInputs("ae2:fluix_block")
|
||||
.itemOutputs(ChemicalHelper.get(TagPrefix.plate, GTMaterialRegistry.getMaterial("fluix"), 4))
|
||||
.duration(400)
|
||||
.EUt(GTValues.VA[GTValues.LV]);
|
||||
|
||||
// Logic Processor
|
||||
event.remove({ id: "ae2:inscriber/logic_processor" });
|
||||
|
||||
@@ -2,8 +2,8 @@ ServerEvents.recipes((event) => {
|
||||
const patpros = [
|
||||
["lv", "steel", 1],
|
||||
["mv", "aluminium", 2],
|
||||
["hv", "stainless_steel", 3],
|
||||
["ev", "titanium", 4],
|
||||
["hv", "stainless_steel", 4],
|
||||
["ev", "titanium", 8],
|
||||
];
|
||||
patpros.forEach((tier) => {
|
||||
let interProv = (materialType, blockType) => {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
GTCEuStartupEvents.registry("gtceu:material", (event) => {
|
||||
event
|
||||
.create("fluix")
|
||||
.dust()
|
||||
.gem()
|
||||
.components("1x nether_quartz", "1x certus_quartz", "1x redstone")
|
||||
.color(0x8f5ccb)
|
||||
.iconSet(GTMaterialIconSet.DULL)
|
||||
|
||||
10
kubejs/startup_scripts/material_testing/modification.js
Normal file
10
kubejs/startup_scripts/material_testing/modification.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const $AEItems = Java.loadClass("appeng.core.definitions.AEItems");
|
||||
const $AEBlocks = Java.loadClass("appeng.core.definitions.AEBlocks");
|
||||
|
||||
GTCEuStartupEvents.materialModification(event => {
|
||||
TagPrefix.gem.setIgnored(GTMaterialRegistry.getMaterial("fluix"), $AEItems.FLUIX_CRYSTAL);
|
||||
TagPrefix.gemFlawless.setIgnored(GTMaterialRegistry.getMaterial("fluix"));
|
||||
TagPrefix.gemExquisite.setIgnored(GTMaterialRegistry.getMaterial("fluix"));
|
||||
TagPrefix.block.modifyMaterialAmount(GTMaterials.get("fluix"), 4);
|
||||
TagPrefix.block.setIgnored(GTMaterials.get("fluix"), $AEBlocks.FLUIX_BLOCK.asItem());
|
||||
});
|
||||
Reference in New Issue
Block a user