|
119 | 119 | import static gregtech.api.enums.Mods.Forestry; |
120 | 120 | import static gregtech.api.enums.Mods.GTPlusPlus; |
121 | 121 | import static gregtech.api.enums.Mods.GoodGenerator; |
| 122 | +import static gregtech.api.recipe.RecipeMaps.assemblerRecipes; |
122 | 123 | import static gregtech.api.util.GTModHandler.addCraftingRecipe; |
123 | 124 | import static gregtech.api.util.GTModHandler.getModItem; |
124 | 125 | import static gregtech.api.util.GTRecipeBuilder.HOURS; |
125 | 126 | import static gregtech.api.util.GTRecipeBuilder.MINUTES; |
| 127 | +import static gregtech.api.util.GTRecipeBuilder.SECONDS; |
126 | 128 | import static gregtech.api.util.GTRecipeConstants.AssemblyLine; |
127 | 129 | import static gregtech.api.util.GTRecipeConstants.RESEARCH_ITEM; |
128 | 130 | import static gregtech.api.util.GTRecipeConstants.SCANNING; |
@@ -1757,6 +1759,22 @@ public static void loadRecipes() { |
1757 | 1759 | // endregion |
1758 | 1760 |
|
1759 | 1761 | // region Eye of Wood |
| 1762 | + |
| 1763 | + // Garden of grind recipies for field generator |
| 1764 | + GTValues.RA.stdBuilder() |
| 1765 | + .itemInputs( |
| 1766 | + GTOreDictUnificator.get(OrePrefixes.plate, Materials.EnderPearl, 1), |
| 1767 | + GTOreDictUnificator.get(OrePrefixes.circuit, Materials.HV, 4), |
| 1768 | + GTUtility.getIntegratedCircuit(1)) |
| 1769 | + .itemOutputs(ItemList.Field_Generator_LV.get(1)).fluidInputs(Materials.BlueSteel.getMolten(288)) |
| 1770 | + .duration(30 * SECONDS).eut(TierEU.RECIPE_LV).addTo(assemblerRecipes); |
| 1771 | + |
| 1772 | + GTModHandler.addCraftingRecipe( |
| 1773 | + ItemList.Field_Generator_LV.get(1L), |
| 1774 | + GTModHandler.RecipeBits.NOT_REMOVABLE | GTModHandler.RecipeBits.REVERSIBLE, |
| 1775 | + new Object[] { "WCW", "CGC", "WCW", 'G', OrePrefixes.plate.get(Materials.EnderPearl), 'C', |
| 1776 | + OrePrefixes.circuit.get(Materials.HV), 'W', OrePrefixes.plate.get(Materials.BlueSteel) }); |
| 1777 | + |
1760 | 1778 | GTValues.RA |
1761 | 1779 | .stdBuilder() |
1762 | 1780 | .itemInputs( |
|
0 commit comments