updated to-do and added blooomery crafting

This commit is contained in:
Mohammad-Ali Minaie
2017-03-25 13:00:21 -04:00
parent 1f77efdbf2
commit 33409d612a
7 changed files with 13 additions and 11 deletions

View File

@@ -1,11 +1,9 @@
To-Dos To-Dos
*** Priority *** *** Priority ***
- [ ] Sound Handler
- [ ] OreDict Stuff - [ ] OreDict Stuff
- [ ] Create the Sword Model - [ ] Use Primal Brick instead of clay brick
- [ ] Sword Item
- [ ] Sword Json
*** Backlog *** *** Backlog ***
- [ ] Create a method which adds the types of NBT upgrades and creates a unique float instead of using magic numbers - [ ] Create a method which adds the types of NBT upgrades and creates a unique float instead of using magic numbers

View File

@@ -1,3 +1,3 @@
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula). #By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula).
#Fri Mar 24 20:16:33 EDT 2017 #Sat Mar 25 12:50:55 EDT 2017
eula=false eula=false

View File

@@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx3G
mod_group=nmd.primal.forgecraft mod_group=nmd.primal.forgecraft
mod_name=ForgeCraft mod_name=ForgeCraft
mod_version=1.1.9 mod_version=1.2.00
forge_version=13.20.0.2226 forge_version=13.20.0.2226
mcp_mappings=snapshot_20161220 mcp_mappings=snapshot_20161220
mc_version=1.11.2 mc_version=1.11.2

View File

@@ -13,12 +13,11 @@ import nmd.primal.forgecraft.init.ModItems;
*/ */
public class ModInfo { public class ModInfo {
/** Mod Details**/ /** Mod Details**/
//public static final String DEPENDENCIES = "after:primal;";
public static final String MOD_ID = "forgecraft"; public static final String MOD_ID = "forgecraft";
public static final String MOD_NAME = "Kitsu's ForgeCraft"; public static final String MOD_NAME = "Kitsu's ForgeCraft";
//public static final String MOD_PREFIX = MOD_ID + ":"; //public static final String MOD_PREFIX = MOD_ID + ":";
public static final String MOD_CHANNEL = MOD_ID; public static final String MOD_CHANNEL = MOD_ID;
public static final String MOD_VERSION = "1.1.9"; public static final String MOD_VERSION = "1.2.00";
public static final String MC_VERSIONS = "[1.11.0, 1.12.0)"; public static final String MC_VERSIONS = "[1.11.0, 1.12.0)";
public static final String DEPENDENCIES = "required-after:forge@[13.20.0.2226,);" public static final String DEPENDENCIES = "required-after:forge@[13.20.0.2226,);"
+ "after:primal;"; + "after:primal;";

View File

@@ -32,6 +32,9 @@ public class ModCrafting {
/***Forge***/ /***Forge***/
GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.firebox), GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.firebox),
"X X", "XYX", "X X", 'X', Items.BRICK, 'Y', Blocks.FURNACE); "X X", "XYX", "X X", 'X', Items.BRICK, 'Y', Blocks.FURNACE);
/***Bloomery***/
GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.bloomery),
"X X", "X X", "XXX", 'X', Items.BRICK);
/***Wooden PistonBellows***/ /***Wooden PistonBellows***/
GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.pistonbellowsoak), "XXX", "X Y", "XXX", GameRegistry.addShapedRecipe(new ItemStack(ModBlocks.pistonbellowsoak), "XXX", "X Y", "XXX",

View File

@@ -1,5 +1,7 @@
itemGroup.forgecraft=ForgeCraft
item.test.name=test item.test.name=test
item.pistonbellows=Bellows Handle item.pistonbellows=Bellows Handle
tile.firebox.name=Firebox
tile.firebox.name=Forge
tile.pistonbellows.name=Wooden Piston Bellows tile.pistonbellows.name=Wooden Piston Bellows
itemGroup.forgecraft=ForgeCraft

View File

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