Crafting and localisation tweaks

- Made the crafting recipes of a few doors that virtually only create 1 of themselves in the world a bit cheaper.
- Changed "grey" to the 'Murican "gray" in the lang files.
This commit is contained in:
Robijnvogel 2018-02-28 11:11:17 +01:00
parent 41a126e7c0
commit 9b98941ca0
2 changed files with 5 additions and 5 deletions

View file

@ -51,13 +51,13 @@ public final class CraftingManager {
"yxy", 'x', ModItems.STABLE_FABRIC, 'y', Items.IRON_DOOR));
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.CHAOS_DOOR, 1),
"yxy", 'x', Items.ENDER_EYE, 'y', Items.IRON_DOOR));
"xyx", 'x', Items.ENDER_EYE, 'y', Items.IRON_DOOR));
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.WARP_DIMENSIONAL_DOOR, 1),
"yxy", 'x', Items.ENDER_PEARL, 'y', Items.OAK_DOOR));
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModBlocks.WOOD_DIMENSIONAL_TRAPDOOR, 1),
"y", "x", "y", 'x', Items.ENDER_PEARL, 'y', Blocks.TRAPDOOR));
"yx", Items.ENDER_PEARL, 'y', Blocks.TRAPDOOR));
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.GOLD_DIMENSIONAL_DOOR, 1),
"yxy", 'x', ModItems.STABLE_FABRIC, 'y', ModItems.GOLD_DOOR));
@ -66,7 +66,7 @@ public final class CraftingManager {
"yy", "yy", "yy", 'y', Items.GOLD_INGOT));
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.PERSONAL_DIMENSIONAL_DOOR, 1),
"yxy", 'x', ModItems.STABLE_FABRIC, 'y', ModItems.QUARTZ_DOOR));
"yx", 'x', ModItems.STABLE_FABRIC, 'y', ModItems.QUARTZ_DOOR));
event.getRegistry().register(makeShapedRecipe(new ItemStack(ModItems.QUARTZ_DOOR, 1),
"yy", "yy", "yy", 'y', Items.QUARTZ));

View file

@ -19,7 +19,7 @@ tile.fabric.yellow.name=Yellow Altered Fabric
tile.fabric.lime.name=Lime Altered Fabric
tile.fabric.pink.name=Pink Altered Fabric
tile.fabric.gray.name=Gray Altered Fabric
tile.fabric.silver.name=Light Grey Altered Fabric
tile.fabric.silver.name=Light Gray Altered Fabric
tile.fabric.cyan.name=Cyan Altered Fabric
tile.fabric.purple.name=Purple Altered Fabric
tile.fabric.blue.name=Blue Altered Fabric
@ -36,7 +36,7 @@ tile.ancient_fabric.yellow.name=Yellow Altered Ancient Fabric
tile.ancient_fabric.lime.name=Lime Altered Ancient Fabric
tile.ancient_fabric.pink.name=Pink Altered Ancient Fabric
tile.ancient_fabric.gray.name=Gray Altered Ancient Fabric
tile.ancient_fabric.silver.name=Light Grey Altered Ancient Fabric
tile.ancient_fabric.silver.name=Light Gray Altered Ancient Fabric
tile.ancient_fabric.cyan.name=Cyan Altered Ancient Fabric
tile.ancient_fabric.purple.name=Purple Altered Ancient Fabric
tile.ancient_fabric.blue.name=Blue Altered Ancient Fabric