mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Preparing for the Update: Added Crafting Recipes and Textures for the new Items
This commit is contained in:
parent
18a04b23f7
commit
6e30c8bf85
9 changed files with 56 additions and 1 deletions
|
@ -5,6 +5,7 @@ import ellpeck.actuallyadditions.config.ConfigCategories;
|
|||
public enum ConfigCrafting{
|
||||
|
||||
COMPOST("Compost", ConfigCategories.BLOCKS_CRAFTING),
|
||||
XP_SOLIDIFIER("Experience Solidifier", ConfigCategories.BLOCKS_CRAFTING),
|
||||
WOOD_CASING("Wood Casing", ConfigCategories.BLOCKS_CRAFTING),
|
||||
STONE_CASING("Stone Casing", ConfigCategories.BLOCKS_CRAFTING),
|
||||
FISHING_NET("Fishing Net", ConfigCategories.BLOCKS_CRAFTING),
|
||||
|
@ -103,6 +104,11 @@ public enum ConfigCrafting{
|
|||
DRILL_PLACING("Drill Placing Upgrade", ConfigCategories.ITEMS_CRAFTING),
|
||||
DRILL_SILK_TOUCH("Drill Silk Touch Upgrade", ConfigCategories.ITEMS_CRAFTING),
|
||||
BATTERY("Battery", ConfigCategories.ITEMS_CRAFTING),
|
||||
DOUBLE_BATTERY("Double Battery", ConfigCategories.ITEMS_CRAFTING),
|
||||
TRIPLE_BATTERY("Triple Battery", ConfigCategories.ITEMS_CRAFTING),
|
||||
QUADRUPLE_BATTERY("Quadruple Battery", ConfigCategories.ITEMS_CRAFTING),
|
||||
QUINTUPLE_BATTERY("Quintuple Battery", ConfigCategories.ITEMS_CRAFTING),
|
||||
BAT_WINGS("Wings Of The Bats", ConfigCategories.ITEMS_CRAFTING),
|
||||
|
||||
ENERGIZER("Energizer", ConfigCategories.BLOCKS_CRAFTING),
|
||||
ENERVATOR("Enervator", ConfigCategories.BLOCKS_CRAFTING),
|
||||
|
|
|
@ -7,6 +7,7 @@ import ellpeck.actuallyadditions.blocks.metalists.TheMiscBlocks;
|
|||
import ellpeck.actuallyadditions.config.values.ConfigCrafting;
|
||||
import ellpeck.actuallyadditions.items.InitItems;
|
||||
import ellpeck.actuallyadditions.items.metalists.TheMiscItems;
|
||||
import ellpeck.actuallyadditions.items.metalists.TheSpecialDrops;
|
||||
import ellpeck.actuallyadditions.util.Util;
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.init.Items;
|
||||
|
@ -25,6 +26,14 @@ public class BlockCrafting{
|
|||
'W', "plankWood",
|
||||
'C', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal())));
|
||||
|
||||
//XP Solidifier
|
||||
if(ConfigCrafting.XP_SOLIDIFIER.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockXPSolidifier),
|
||||
"XXX", "DCD", "XXX",
|
||||
'X', new ItemStack(InitItems.itemSpecialDrop, 1, TheSpecialDrops.SOLIDIFIED_EXPERIENCE.ordinal()),
|
||||
'D', "blockDiamond",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
||||
|
||||
//Charcoal Block
|
||||
GameRegistry.addRecipe(new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.CHARCOAL_BLOCK.ordinal()),
|
||||
"CCC", "CCC", "CCC",
|
||||
|
@ -309,7 +318,7 @@ public class BlockCrafting{
|
|||
|
||||
//Greenhouse Glass
|
||||
if(ConfigCrafting.GREENHOUSE_GLASS.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGreenhouseGlass),
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGreenhouseGlass, 3),
|
||||
"GSG", "SDS", "GSG",
|
||||
'G', "blockGlass",
|
||||
'D', Blocks.obsidian,
|
||||
|
|
|
@ -140,6 +140,46 @@ public class ItemCrafting{
|
|||
'I', "ingotIron",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
||||
|
||||
//Double Battery
|
||||
if(ConfigCrafting.DOUBLE_BATTERY.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemBatteryDouble),
|
||||
" R ", "ICI", "III",
|
||||
'R', new ItemStack(InitItems.itemBattery),
|
||||
'I', "ingotIron",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
||||
|
||||
//Triple Battery
|
||||
if(ConfigCrafting.TRIPLE_BATTERY.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemBatteryTriple),
|
||||
" R ", "ICI", "III",
|
||||
'R', new ItemStack(InitItems.itemBatteryDouble),
|
||||
'I', "ingotIron",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
||||
|
||||
//Quadruple Battery
|
||||
if(ConfigCrafting.QUADRUPLE_BATTERY.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemBatteryQuadruple),
|
||||
" R ", "ICI", "III",
|
||||
'R', new ItemStack(InitItems.itemBatteryTriple),
|
||||
'I', "ingotIron",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
||||
|
||||
//Quintuple Battery
|
||||
if(ConfigCrafting.QUINTUPLE_BATTERY.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemBatteryQuintuple),
|
||||
" R ", "ICI", "III",
|
||||
'R', new ItemStack(InitItems.itemBatteryQuadruple),
|
||||
'I', "ingotIron",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal())));
|
||||
|
||||
//Bat Wings
|
||||
if(ConfigCrafting.BAT_WINGS.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemWingsOfTheBats),
|
||||
"WNW", "WDW", "WNW",
|
||||
'W', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.BAT_WING.ordinal()),
|
||||
'D', "blockDiamond",
|
||||
'N', new ItemStack(Items.nether_star)));
|
||||
|
||||
//Quartz
|
||||
if(ConfigCrafting.QUARTZ.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitItems.itemMisc, 1, TheMiscItems.QUARTZ.ordinal()),
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 560 B |
Binary file not shown.
After Width: | Height: | Size: 597 B |
Binary file not shown.
After Width: | Height: | Size: 590 B |
Binary file not shown.
After Width: | Height: | Size: 579 B |
Binary file not shown.
After Width: | Height: | Size: 389 B |
Binary file not shown.
After Width: | Height: | Size: 485 B |
Loading…
Reference in a new issue