added new recipe to Compressed Plates.
This commit is contained in:
parent
a944901807
commit
ee007402d8
5 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
minecraft.version=1.7.10
|
||||
forge.version=10.13.4.1566-1.7.10
|
||||
|
||||
gt.version=5.09.22.32
|
||||
gt.version=5.09.22.33
|
||||
|
||||
ae2.version=rv2-beta-33
|
||||
applecore.version=1.7.10-1.2.1+107.59407
|
||||
|
|
|
@ -137,7 +137,7 @@ public enum OrePrefixes {
|
|||
compressedDirt("9^X Compressed Dirt", "", "", false, false, false, false, false, false, false, false, false, false, 0, -1, 64, -1),
|
||||
compressedGravel("9^X Compressed Gravel", "", "", false, false, false, false, false, false, false, false, false, false, 0, -1, 64, -1),
|
||||
compressedSand("9^X Compressed Sand", "", "", false, false, false, false, false, false, false, false, false, false, 0, -1, 64, -1),
|
||||
compressed("Compressed Materials", "Compressed ", "", true, true, false, false, false, false, true, false, false, false, 0, M * 2, 64, -1), // Compressed Material, worth 1 Unit. Introduced by Galacticraft
|
||||
compressed("Compressed Materials", "Compressed ", "", true, true, false, false, false, false, true, false, false, false, 0, M * 3, 64, -1), // Compressed Material, worth 1 Unit. Introduced by Galacticraft
|
||||
glass("Glasses", "", "", false, false, true, false, true, false, false, false, false, false, 0, -1, 64, -1),
|
||||
paneGlass("Glass Panes", "", "", false, false, true, false, false, true, false, false, false, false, 0, -1, 64, -1),
|
||||
blockGlass("Glass Blocks", "", "", false, false, true, false, false, true, false, false, false, false, 0, -1, 64, -1),
|
||||
|
|
|
@ -58,7 +58,7 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
|
|||
}
|
||||
switch (aMaterial) {
|
||||
case Mercury:
|
||||
System.err.println("'blockQuickSilver'?, In which Ice Desert can you actually place this as a solid Block?");
|
||||
System.err.println("'blockQuickSilver'?, In which Ice Desert can you actually place this as a solid Block? On Pluto maybe Greg :)");
|
||||
break;
|
||||
case Iron:
|
||||
case WroughtIron:
|
||||
|
|
|
@ -81,8 +81,7 @@ public class ProcessingPlate1 implements gregtech.api.interfaces.IOreRecipeRegis
|
|||
if (aMaterial.mFuelPower > 0)
|
||||
GT_Values.RA.addFuel(GT_Utility.copyAmount(1L, new Object[]{aStack}), null, aMaterial.mFuelPower, aMaterial.mFuelType);
|
||||
GT_Utility.removeSimpleIC2MachineRecipe(GT_Utility.copyAmount(9L, new Object[]{aStack}), GT_ModHandler.getCompressorRecipeList(), GT_OreDictUnificator.get(OrePrefixes.plateDense, aMaterial, 1L));
|
||||
GT_Values.RA.addImplosionRecipe(GT_Utility.copyAmount(2L, new Object[]{aStack}), 2, GT_OreDictUnificator.get(OrePrefixes.compressed, aMaterial, 1L), GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 1L));
|
||||
if (!aMaterial.contains(gregtech.api.enums.SubTag.NO_WORKING)) {
|
||||
if (!aMaterial.contains(gregtech.api.enums.SubTag.NO_WORKING)) {
|
||||
GT_Values.RA.addLatheRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), GT_OreDictUnificator.get(OrePrefixes.lens, aMaterial, 1L), GT_OreDictUnificator.get(OrePrefixes.dustSmall, aMaterial, 1L), (int) Math.max(aMaterial.getMass() / 2L, 1L), 16);
|
||||
}
|
||||
if (aMaterial == Materials.Paper)
|
||||
|
|
|
@ -28,5 +28,6 @@ public class ProcessingPlate3 implements gregtech.api.interfaces.IOreRecipeRegis
|
|||
} else {
|
||||
GT_Values.RA.addAssemblerRecipe(GT_OreDictUnificator.get(OrePrefixes.plate, aMaterial, 3L), gregtech.api.enums.ItemList.Circuit_Integrated.getWithDamage(0L, 3L, new Object[0]), Materials.Glue.getFluid(20L), GT_Utility.copyAmount(1L, new Object[]{aStack}), 96, 8);
|
||||
}
|
||||
GT_Values.RA.addImplosionRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), 1, GT_OreDictUnificator.get(OrePrefixes.compressed, aMaterial, 1L), GT_OreDictUnificator.get(OrePrefixes.dustTiny, Materials.DarkAsh, 1L));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue