Better recipe

This commit is contained in:
Raoul Van den Berge
2016-05-31 21:42:21 +02:00
parent 6ed2b7e1f3
commit ae86cb55c0
2 changed files with 13 additions and 8 deletions

View File

@@ -326,12 +326,12 @@ public class CommonProxy {
// Storage Parts // Storage Parts
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RefinedStorageItems.STORAGE_PART, 1, ItemStoragePart.TYPE_1K), GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(RefinedStorageItems.STORAGE_PART, 1, ItemStoragePart.TYPE_1K),
"EPE", "EPE",
"SRS", "GSG",
"ESE", "EGE",
'R', new ItemStack(Items.REDSTONE), 'R', new ItemStack(Items.REDSTONE),
'E', new ItemStack(RefinedStorageItems.QUARTZ_ENRICHED_IRON), 'E', new ItemStack(RefinedStorageItems.QUARTZ_ENRICHED_IRON),
'P', "itemSilicon", 'S', "itemSilicon",
'S', new ItemStack(Blocks.GLASS) 'G', new ItemStack(Blocks.GLASS)
)); ));
GameRegistry.addRecipe(new ItemStack(RefinedStorageItems.STORAGE_PART, 1, ItemStoragePart.TYPE_4K), GameRegistry.addRecipe(new ItemStack(RefinedStorageItems.STORAGE_PART, 1, ItemStoragePart.TYPE_4K),
@@ -417,7 +417,14 @@ public class CommonProxy {
SoldererRegistry.addRecipe(new SoldererRecipeUpgrade(ItemUpgrade.TYPE_RANGE)); SoldererRegistry.addRecipe(new SoldererRecipeUpgrade(ItemUpgrade.TYPE_RANGE));
SoldererRegistry.addRecipe(new SoldererRecipeUpgrade(ItemUpgrade.TYPE_SPEED)); SoldererRegistry.addRecipe(new SoldererRecipeUpgrade(ItemUpgrade.TYPE_SPEED));
SoldererRegistry.addRecipe(new SoldererRecipeUpgrade(ItemUpgrade.TYPE_CRAFTING)); SoldererRegistry.addRecipe(new SoldererRecipeUpgrade(ItemUpgrade.TYPE_CRAFTING));
SoldererRegistry.addRecipe(new SoldererRecipeUpgrade(ItemUpgrade.TYPE_STACK));
GameRegistry.addShapedRecipe(new ItemStack(RefinedStorageItems.UPGRADE, 1, ItemUpgrade.TYPE_STACK),
"USU",
"SUS",
"USU",
'U', new ItemStack(Items.SUGAR),
'S', new ItemStack(RefinedStorageItems.UPGRADE, 1, ItemUpgrade.TYPE_SPEED)
);
// Storage Blocks // Storage Blocks
SoldererRegistry.addRecipe(new SoldererRecipeStorage(EnumStorageType.TYPE_1K, ItemStoragePart.TYPE_1K)); SoldererRegistry.addRecipe(new SoldererRecipeStorage(EnumStorageType.TYPE_1K, ItemStoragePart.TYPE_1K));

View File

@@ -31,11 +31,9 @@ public class SoldererRecipeUpgrade implements ISoldererRecipe {
case ItemUpgrade.TYPE_RANGE: case ItemUpgrade.TYPE_RANGE:
return new ItemStack(Items.ENDER_PEARL); return new ItemStack(Items.ENDER_PEARL);
case ItemUpgrade.TYPE_SPEED: case ItemUpgrade.TYPE_SPEED:
return new ItemStack(Blocks.REDSTONE_BLOCK); return new ItemStack(Items.SUGAR);
case ItemUpgrade.TYPE_CRAFTING: case ItemUpgrade.TYPE_CRAFTING:
return new ItemStack(Blocks.CRAFTING_TABLE); return new ItemStack(Blocks.CRAFTING_TABLE);
case ItemUpgrade.TYPE_STACK:
return new ItemStack(RefinedStorageItems.UPGRADE, 1, ItemUpgrade.TYPE_SPEED);
} }
return null; return null;