Examples of ThaumicTinkererCraftingBenchRecipe


Examples of thaumic.tinkerer.common.registry.ThaumicTinkererCraftingBenchRecipe

  }

  @Override
  public ThaumicTinkererRecipe getRecipeItem() {
    return new ThaumicTinkererRecipeMulti(
                new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_DARK_QUARTZ + 0, new ItemStack(this, 4),
                        "Q Q", " C ", "Q Q",
                        'Q', Items.quartz,
            'C', Items.coal),
                new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_DARK_QUARTZ + 0, new ItemStack(this, 4),
                        "Q Q", " C ", "Q Q",
                        'Q', Items.quartz,
            'C', new ItemStack(Items.coal, 1, 1))
    );
  }
View Full Code Here

Examples of thaumic.tinkerer.common.registry.ThaumicTinkererCraftingBenchRecipe

  }

  @Override
  public ThaumicTinkererRecipe getRecipeItem() {
    if (ConfigHandler.enableSurvivalShareTome) {
      return new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_SHARE_TOME, new ItemStack(this),
          " S ", "PTP", " P ",
          'S', new ItemStack(ConfigItems.itemInkwell),
          'T', new ItemStack(ConfigItems.itemThaumonomicon),
          'P', new ItemStack(Items.paper));
    }
View Full Code Here

Examples of thaumic.tinkerer.common.registry.ThaumicTinkererCraftingBenchRecipe

  @Override
  public ThaumicTinkererRecipe getRecipeItem() {
    if (isOpaqueCube()) {
      return null;
    }
    return new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_DARK_QUARTZ + 2, new ItemStack(ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartzSlab.class), 6),
        "QQQ",
        'Q', ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartz.class));
  }
View Full Code Here

Examples of thaumic.tinkerer.common.registry.ThaumicTinkererCraftingBenchRecipe

  @Override
  public ThaumicTinkererRecipe getRecipeItem() {
    return new ThaumicTinkererRecipeMulti(

        new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_DARK_QUARTZ + 1, new ItemStack(ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartz.class)),
            "QQ", "QQ",
            'Q', ThaumicTinkerer.registry.getFirstItemFromClass(ItemDarkQuartz.class)),
        new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_DARK_QUARTZ + 3, new ItemStack(ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartz.class), 2, 2),
            "Q", "Q",
            'Q', ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartz.class)),
        new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_DARK_QUARTZ + 4, new ItemStack(ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartz.class), 1, 1),
            "Q", "Q",
            'Q', ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartzSlab.class))
    );
  }
View Full Code Here

Examples of thaumic.tinkerer.common.registry.ThaumicTinkererCraftingBenchRecipe

  }

  @Override
  public ThaumicTinkererRecipe getRecipeItem() {
    return new ThaumicTinkererRecipeMulti(
        new ThaumicTinkererCraftingBenchRecipe(LibResearch.KEY_DARK_QUARTZ + 5, new ItemStack(this, 4),
            "  Q", " QQ", "QQQ",
            'Q', ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartz.class)),
        new ThaumicTinkererCraftingBenchRecipe("", new ItemStack(this, 4),
            "Q  ", "QQ ", "QQQ",
            'Q', ThaumicTinkerer.registry.getFirstBlockFromClass(BlockDarkQuartz.class))
    );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.