-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f491118
commit 54b367b
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/main/java/com/mordenkainen/equivalentenergistics/crafting/CraftingManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.mordenkainen.equivalentenergistics.crafting; | ||
|
||
import com.mordenkainen.equivalentenergistics.EquivalentEnergistics; | ||
|
||
import net.minecraft.item.ItemStack; | ||
import cpw.mods.fml.common.registry.GameRegistry; | ||
|
||
public class CraftingManager { | ||
private CraftingManager() {} | ||
|
||
public static void initRecipes() { | ||
GameRegistry.addShapedRecipe(new ItemStack(EquivalentEnergistics.blockEMCCondenser), new Object[]{ | ||
"AMA", | ||
"MCM", | ||
"AMA", | ||
'A', GameRegistry.findBlock("EE3", "ashInfusedStone"), 'M', | ||
new ItemStack(GameRegistry.findItem("EE3", "alchemicalDust"), 1, 3), 'C', | ||
new ItemStack(GameRegistry.findItem("appliedenergistics2", "item.ItemMultiMaterial"), 1, 44) | ||
}); | ||
|
||
GameRegistry.addShapedRecipe(new ItemStack(EquivalentEnergistics.blockEMCCrafter), new Object[]{ | ||
"AMA", | ||
"MCM", | ||
"AMA", | ||
'A', GameRegistry.findBlock("EE3", "ashInfusedStoneSlab"), 'M', | ||
new ItemStack(GameRegistry.findItem("EE3", "alchemicalDust"), 1, 3), 'C', | ||
new ItemStack(GameRegistry.findItem("appliedenergistics2", "item.ItemMultiMaterial"), 1, 43) | ||
}); | ||
} | ||
} |