Added recipes and block textures to the path blocks.

This commit is contained in:
WayofTime 2016-01-30 07:58:08 -05:00
parent 8d854a5b69
commit 690cf6c4f3
11 changed files with 21 additions and 8 deletions

View file

@ -1,3 +1,8 @@
------------------------------------------------------
Version 2.0.0-12
------------------------------------------------------
- Added recipes and temp textures for path blocks. More path blocks to come.
------------------------------------------------------
Version 2.0.0-11
------------------------------------------------------

View file

@ -11,7 +11,7 @@ import WayofTime.bloodmagic.block.base.BlockString;
public class BlockPath extends BlockString implements IIncensePath
{
public static final String[] names = { "wood", "stone", "wornStone" };
public static final String[] names = { "wood", "stone", "wornstone" };
public BlockPath()
{

View file

@ -76,6 +76,10 @@ public class ModRecipes
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(ModItems.baseItemFilter, 1, 2), "sgs", "gfg", "sgs", 'f', ItemComponent.getStack(ItemComponent.COMPONENT_FRAME_PART), 'g', "dyeGreen", 's', Items.stick));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(ModItems.baseItemFilter, 1, 3), "sgs", "gfg", "sgs", 'f', ItemComponent.getStack(ItemComponent.COMPONENT_FRAME_PART), 'g', "dyePurple", 's', Items.stick));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(ModBlocks.incenseAltar), "s s", "shs", "coc", 'o', OrbRegistry.getOrbStack(ModItems.orbWeak), 's', "stone", 'c', "cobblestone", 'h', new ItemStack(Items.coal, 1, 1)));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(ModBlocks.pathBlock, 4, 0), "plankWood", "plankWood", "plankWood", "plankWood", OrbRegistry.getOrbStack(ModItems.orbApprentice)));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(ModBlocks.pathBlock, 4, 1), "stone", "stone", "stone", "stone", OrbRegistry.getOrbStack(ModItems.orbMagician)));
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(ModBlocks.pathBlock, 4, 2), new ItemStack(ModBlocks.pathBlock, 4, 1), new ItemStack(ModBlocks.pathBlock, 4, 1), new ItemStack(ModBlocks.pathBlock, 4, 1), new ItemStack(ModBlocks.pathBlock, 4, 1), OrbRegistry.getOrbStack(ModItems.orbMaster)));
}
public static void addAltarRecipes()

View file

@ -9,17 +9,17 @@
"type": {
"wood": {
"textures": {
"all": "bloodmagic:blocks/LargeBloodStoneBrick"
"all": "bloodmagic:blocks/WoodPath"
}
},
"stone": {
"textures": {
"all": "bloodmagic:blocks/BloodStoneBrick"
"all": "bloodmagic:blocks/StoneTilePath"
}
},
"wornStone": {
"wornstone": {
"textures": {
"all": "bloodmagic:blocks/BloodStoneBrick"
"all": "bloodmagic:blocks/StoneBrickPath"
}
}
}

View file

@ -177,6 +177,10 @@ tile.BloodMagic.outputRouting.name=Output Routing Node
tile.BloodMagic.inputRouting.name=Input Routing Node
tile.BloodMagic.itemRouting.name=Routing Node
tile.BloodMagic.path.wood.name=Wooden Path
tile.BloodMagic.path.stone.name=Stone Tile Path
tile.BloodMagic.path.wornstone.name=Stone Brick Path
# Tooltips
tooltip.BloodMagic.orb.desc=Stores raw Life Essence
tooltip.BloodMagic.orb.owner=Added by: %s

View file

@ -1,7 +1,7 @@
{
"parent": "block/cube_all",
"textures": {
"all": "bloodmagic:blocks/LargeBloodStoneBrick"
"all": "bloodmagic:blocks/WoodPath"
}
}

View file

@ -1,7 +1,7 @@
{
"parent": "block/cube_all",
"textures": {
"all": "bloodmagic:blocks/BloodStoneBrick"
"all": "bloodmagic:blocks/StoneTilePath"
}
}

View file

@ -1,7 +1,7 @@
{
"parent": "block/cube_all",
"textures": {
"all": "bloodmagic:blocks/BloodStoneBrick"
"all": "bloodmagic:blocks/StoneBrickPath"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 669 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 741 B