mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Added Armor Localization and Recipes
This commit is contained in:
parent
ae66d4bfc3
commit
b3330a48ab
2 changed files with 58 additions and 0 deletions
|
@ -43,6 +43,26 @@ public class ToolCrafting{
|
|||
"EE", " S", " S",
|
||||
'E', "gemEmerald",
|
||||
'S', new ItemStack(Items.stick)));
|
||||
|
||||
//Helm
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemHelmEmerald),
|
||||
"OOO", "O O",
|
||||
'O', new ItemStack(Items.emerald));
|
||||
|
||||
//Chest
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemChestEmerald),
|
||||
"O O", "OOO", "OOO",
|
||||
'O', new ItemStack(Items.emerald));
|
||||
|
||||
//Legs
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemPantsEmerald),
|
||||
"OOO", "O O", "O O",
|
||||
'O', new ItemStack(Items.emerald));
|
||||
|
||||
//Boots
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemBootsEmerald),
|
||||
"O O", "O O",
|
||||
'O', new ItemStack(Items.emerald));
|
||||
}
|
||||
|
||||
if(ConfigCrafting.TOOL_OBSIDIAN.isEnabled()){
|
||||
|
@ -75,6 +95,26 @@ public class ToolCrafting{
|
|||
"EE", " S", " S",
|
||||
'E', new ItemStack(Blocks.obsidian),
|
||||
'S', new ItemStack(Items.stick));
|
||||
|
||||
//Helm
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemHelmObsidian),
|
||||
"OOO", "O O",
|
||||
'O', new ItemStack(Blocks.obsidian));
|
||||
|
||||
//Chest
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemChestObsidian),
|
||||
"O O", "OOO", "OOO",
|
||||
'O', new ItemStack(Blocks.obsidian));
|
||||
|
||||
//Legs
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemPantsObsidian),
|
||||
"OOO", "O O", "O O",
|
||||
'O', new ItemStack(Blocks.obsidian));
|
||||
|
||||
//Boots
|
||||
GameRegistry.addRecipe(new ItemStack(InitItems.itemBootsObsidian),
|
||||
"O O", "O O",
|
||||
'O', new ItemStack(Blocks.obsidian));
|
||||
}
|
||||
|
||||
//Paxels
|
||||
|
|
|
@ -495,6 +495,24 @@ tooltip.actuallyadditions.itemDustQuartz.desc=Quartz! Crushed in the Crusher!
|
|||
tooltip.actuallyadditions.itemDustCoal.desc=Coal! Crushed in the Crusher!
|
||||
tooltip.actuallyadditions.itemDustQuartzBlack.desc=Black Quartz! Crushed in the Crusher!
|
||||
|
||||
item.actuallyadditions.itemHelmObsidian.name=Obsidian Helm
|
||||
tooltip.actuallyadditions.itemHelmObsidian.desc=It feels a bit heavy..
|
||||
item.actuallyadditions.itemChestObsidian.name=Obsidian Chestplate
|
||||
tooltip.actuallyadditions.itemChestObsidian.desc=It seems to be pretty hard.
|
||||
item.actuallyadditions.itemPantsObsidian.name=Obsidian Pants
|
||||
tooltip.actuallyadditions.itemPantsObsidian.desc="Pants" is "Hose" in German!
|
||||
item.actuallyadditions.itemBootsObsidian.name=Obsidian Boots
|
||||
tooltip.actuallyadditions.itemBootsObsidian.desc=I hope they fit good.. I hate it when boots don't fit..
|
||||
|
||||
item.actuallyadditions.itemHelmEmerald.name=Emerald Helm
|
||||
tooltip.actuallyadditions.itemHelmEmerald.desc=I like the color.. it's so SHINY!
|
||||
item.actuallyadditions.itemChestEmerald.name=Emerald Chestplate
|
||||
tooltip.actuallyadditions.itemChestEmerald.desc=That color.. it's... soooo... awesoooome °___°
|
||||
item.actuallyadditions.itemPantsEmerald.name=Emerald Pants
|
||||
tooltip.actuallyadditions.itemPantsEmerald.desc="Pants" is "Hose" in German!
|
||||
item.actuallyadditions.itemBootsEmerald.name=Emerald Boots
|
||||
tooltip.actuallyadditions.itemBootsEmerald.desc=I hope they fit good.. I hate it when boots don't fit..
|
||||
|
||||
info.actuallyadditions.gui.animals=Animals
|
||||
info.actuallyadditions.gui.enoughToBreed=Enough to breed!
|
||||
info.actuallyadditions.gui.tooMany=Too many to breed!
|
||||
|
|
Loading…
Reference in a new issue