updated crafting and lang files

This commit is contained in:
Mohammad-Ali Minaie
2017-03-25 14:46:44 -04:00
parent 33409d612a
commit aba73035b5
7 changed files with 66 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ public class ModInfo {
public static final String MOD_NAME = "Kitsu's ForgeCraft";
//public static final String MOD_PREFIX = MOD_ID + ":";
public static final String MOD_CHANNEL = MOD_ID;
public static final String MOD_VERSION = "1.2.00";
public static final String MOD_VERSION = "1.2.01";
public static final String MC_VERSIONS = "[1.11.0, 1.12.0)";
public static final String DEPENDENCIES = "required-after:forge@[13.20.0.2226,);"
+ "after:primal;";

View File

@@ -36,6 +36,14 @@ public class ModCrafting {
GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.bloomery),
"X X", "X X", "XXX", 'X', Items.BRICK);
/*** Soft Crucible ***/
GameRegistry.addShapedRecipe(new ItemStack(ModItems.softcrucible),
"X X", "X X", "XXX", 'X', Items.CLAY_BALL);
/*** Soft Crucible ***/
GameRegistry.addShapedRecipe(new ItemStack(ModItems.softcrucible),
"X X", "X X", "XXX", 'X', PrimalItems.MUD_CLUMP);
/***Wooden PistonBellows***/
GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.pistonbellowsoak), "XXX", "X Y", "XXX",
'X', new ItemStack(Blocks.PLANKS, 1, 0), 'Y', ModItems.pistonbellows);
@@ -71,8 +79,6 @@ public class ModCrafting {
GameRegistry.addShapedRecipe(iron0,
" X ", " Y ", 'X', Blocks.IRON_ORE, 'Y', ModBlocks.emptycrucible);
//Iron Ore speed +1
/***Pickaxe Crafting***/
GameRegistry.addShapedRecipe(new ItemStack(ModItems.ironpickaxe, 1),
" X ", " Y ", 'X', ModItems.pickaxehead, 'Y', Items.STICK);
@@ -260,6 +266,30 @@ public class ModCrafting {
"null"
);
/*** Bucket ***/
AnvilCrafting.addRecipe(
new String [] {
empty,empty,empty,empty,empty,
empty,hotChunk,empty,hotChunk,empty,
empty,hotChunk,empty,hotChunk,empty,
empty,empty,hotChunk,empty,empty,
empty,empty,empty,empty,empty },
new ItemStack(Items.BUCKET, 1),
"null"
);
/*** Primal Plate ***/
AnvilCrafting.addRecipe(
new String [] {
empty,empty,empty,empty,empty,
empty,empty,empty,empty,empty,
empty,hotChunk,hotChunk,empty,empty,
empty,hotChunk,hotChunk,empty,empty,
empty,empty,empty,empty,empty },
new ItemStack(PrimalItems.IRON_PLATE, 1),
"null"
);
/*** Flaked diamond ***/
AnvilCrafting.addRecipe(
new String[] {

View File

@@ -1,7 +1,34 @@
itemGroup.forgecraft=ForgeCraft
item.test.name=test
item.pistonbellows=Bellows Handle
tile.firebox.name=Forge
tile.bloomery.name=Bloomery
tile.pistonbellows.name=Wooden Piston Bellows
tile.emptycrucible.name=Empty Crucible
tile.emptycruciblehit.name=Hot Empty Crucible
tile.emptycruciblecracked.name= Cracked Empty Crucible
tile.emptycruciblecrackedhot.name=Cracked Hot Empty Crucible
tile.rawironcrucible.name=Filled Iron Crucible
tile.hotironcrucible.name=Hot Iron Crucible
tile.hotcookedironcrucible.name=Hot Cooked Iron Crucible
tile.coolironcrucible.name=Cool Iron Crucible
tile.failedironcrucible.name=Failed Iron Crucible
tile.failedironcruciblehot.name=Failed Iron Crucible Hot
tile.ironball.name=Raw Iron Ingot
tile.ironchunk.name=Iron Chunk
item.bellowshandle.name=Bellows Handle
item.softcrucible.name=Soft Crucible
item.stonetongs.name=Stone Tongs
item.forgehammer.name=Forge Hammer
item.ironingothot.name=Iron Ingot Hot
item.ironchunkhot.name=Iron Chunk Hot
item.ironpickaxehead.name=Iron Pickaxe Head
item.ironaxehead.name=Iron Axe Head
item.ironshovelhead.name=Iron Shovel Head
item.ironhoehead.name=Iron Hoe Head
item.ironpickaxe.name=Iron Pickaxe
item.ironaxe.name=Iron Axe
item.ironshovel.name=Iron Shovel
item.ironhoe.name=Iron Hoe
item.ironsword.name=Iron Sword

View File

@@ -2,7 +2,7 @@
"modid": "forgecraft",
"name": "Kitsu's Forgecraft",
"description": "Forged with sweat and blood",
"version": "1.2.00",
"version": "1.2.01",
"mcversion": "1.11.2",
"url": "",
"updateUrl": "",