Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add recipe for Fluid Void Cell "ME Defective Fluid Digital Singularity Storage Cell" #1057

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions src/main/java/com/dreammaster/scripts/ScriptAE2FC.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,12 @@ public void loadRecipes() {
final ItemStack AE2FC_LEVEL_WIRELESS = getModItem(AE2FluidCraft.ID, "wireless_level_terminal", 1, 0);
final ItemStack AE2FC_QUANTUM_CELL = getModItem(AE2FluidCraft.ID, "fluid_storage.quantum", 1, 0);
final ItemStack AE2FC_SINGULARITY_CELL = getModItem(AE2FluidCraft.ID, "fluid_storage.singularity", 1, 0);
final ItemStack AE2FC_DEFECTIVE_SINGULARITY_CELL = getModItem(
AE2FluidCraft.ID,
"fluid_storage.singularity.defective",
1,
0);
final ItemStack AE2_SINGULARITY = getModItem(AppliedEnergistics2.ID, "item.ItemMultiMaterial", 1, 47);
final ItemStack AE2FC_FLUID_STORAGE_HOUSING = getModItem(AE2FluidCraft.ID, "fluid_storage_housing", 1, 0);
final ItemStack AE2_P2P_ME = getModItem(AppliedEnergistics2.ID, "item.ItemMultiPart", 1, 460);
final ItemStack AE2FC_INTERFACE_P2P = getModItem(AE2FluidCraft.ID, "part_fluid_p2p_interface", 1);
Expand Down Expand Up @@ -423,6 +429,26 @@ public void loadRecipes() {
COMPONENT_4096,
'P',
FLUID_CORE_2));
GameRegistry.addRecipe(
new ShapedOreRecipe(
AE2FC_DEFECTIVE_SINGULARITY_CELL,
"dCW",
"SKS",
"WAh",
'C',
"plateCertusQuartz",
'W',
"screwCertusQuartz",
'S',
"plateTungstenSteel",
'A',
"plateStainlessSteel",
'K',
AE2_SINGULARITY,
'd',
"craftingToolHardHammer",
'h',
"craftingToolScrewdriver"));

// Fluid Storage Bus
GTValues.RA.stdBuilder()
Expand Down Expand Up @@ -962,6 +988,18 @@ public void loadRecipes() {
GTValues.RA.stdBuilder().itemInputs(AE2_ITEM_WIRELESS, AE2FC_LEVEL_TERMINAL).itemOutputs(AE2FC_LEVEL_WIRELESS)
.duration(30 * SECONDS).eut(TierEU.RECIPE_MV).addTo(assemblerRecipes);

// DEFECTIVE SINGULARITY CELL
GTValues.RA.stdBuilder()
.itemInputs(
GTOreDictUnificator.get(OrePrefixes.screw, Materials.CertusQuartz, 2L),
GTOreDictUnificator.get(OrePrefixes.plate, Materials.CertusQuartz, 1L),
GTOreDictUnificator.get(OrePrefixes.plate, Materials.TungstenSteel, 2L),
GTOreDictUnificator.get(OrePrefixes.plate, Materials.StainlessSteel, 1L),
AE2_SINGULARITY,
GTUtility.getIntegratedCircuit(2))
.itemOutputs(AE2FC_DEFECTIVE_SINGULARITY_CELL).duration(5 * SECONDS).eut(TierEU.RECIPE_HV)
.addTo(assemblerRecipes);

// Interface from Small to Block and opposite
GameRegistry.addShapelessRecipe(AE2FC_INTERFACE_SMALL, AE2FC_INTERFACE);
GameRegistry.addShapelessRecipe(AE2FC_INTERFACE, AE2FC_INTERFACE_SMALL);
Expand Down