mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Actually made them craftable
This commit is contained in:
parent
9becd9b3e2
commit
a149129deb
1 changed files with 22 additions and 0 deletions
|
@ -82,6 +82,28 @@ public class BlockCrafting{
|
|||
|
||||
public static void init(){
|
||||
|
||||
//White Ethetic Blocks
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteFence, 6),
|
||||
"XXX", "XXX",
|
||||
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall)));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteSlab, 6),
|
||||
"XXX",
|
||||
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall)));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksWhiteStairs, 6),
|
||||
"X ", "XX ", "XXX",
|
||||
'X', new ItemStack(InitBlocks.blockTestifiBucksWhiteWall)));
|
||||
|
||||
//Green Ethetic Blocks
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenFence, 6),
|
||||
"XXX", "XXX",
|
||||
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall)));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenSlab, 6),
|
||||
"XXX",
|
||||
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall)));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockTestifiBucksGreenStairs, 6),
|
||||
"X ", "XX ", "XXX",
|
||||
'X', new ItemStack(InitBlocks.blockTestifiBucksGreenWall)));
|
||||
|
||||
//Atomic Reconstructor
|
||||
if(ConfigCrafting.ATOMIC_RECONSTRUCTOR.isEnabled()){
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockAtomicReconstructor),
|
||||
|
|
Loading…
Reference in a new issue