Improve how the fluix material is handled
This commit is contained in:
@@ -375,14 +375,6 @@ ServerEvents.recipes((event) => {
|
|||||||
.duration(100)
|
.duration(100)
|
||||||
.EUt(24);
|
.EUt(24);
|
||||||
|
|
||||||
|
|
||||||
greg
|
|
||||||
.lathe("fluix_lathing")
|
|
||||||
.itemInputs("ae2:fluix_crystal")
|
|
||||||
.itemOutputs("gtceu:fluix_rod")
|
|
||||||
.duration(200)
|
|
||||||
.EUt(8);
|
|
||||||
|
|
||||||
// Logic Processor
|
// Logic Processor
|
||||||
event.remove({ id: "ae2:inscriber/logic_processor" });
|
event.remove({ id: "ae2:inscriber/logic_processor" });
|
||||||
greg
|
greg
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
GTCEuStartupEvents.registry("gtceu:material", (event) => {
|
GTCEuStartupEvents.registry("gtceu:material", (event) => {
|
||||||
event
|
event
|
||||||
.create("fluix")
|
.create("fluix")
|
||||||
.dust()
|
.gem()
|
||||||
.components("1x nether_quartz", "1x certus_quartz", "1x redstone")
|
.components("1x nether_quartz", "1x certus_quartz", "1x redstone")
|
||||||
.color(0x8f5ccb)
|
.color(0x8f5ccb)
|
||||||
.iconSet(GTMaterialIconSet.DULL)
|
.iconSet(GTMaterialIconSet.DULL)
|
||||||
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_GEAR);
|
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.FLAMMABLE);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
event
|
event
|
||||||
|
|||||||
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