Chainsaw recipes
This commit is contained in:
parent
d740f167b6
commit
1136574bc2
2 changed files with 11 additions and 3 deletions
|
@ -345,9 +345,18 @@ public class ModRecipes {
|
|||
CraftingHelper.addShapedOreRecipe(BlockStorage.getStorageBlockByName(name), "AAA", "AAA", "AAA", 'A',
|
||||
"ingot" + name.substring(0, 1).toUpperCase() + name.substring(1));
|
||||
}
|
||||
|
||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.ironChainsaw), " SS", "SCS", "BS ",
|
||||
'S', "ingotSteel", 'B', TechRebornAPI.recipeCompact.getItem("reBattery"), 'C',
|
||||
TechRebornAPI.recipeCompact.getItem("electronicCircuit"));
|
||||
|
||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.diamondChainsaw), " SS", "SBS", "CS ",
|
||||
'S', "ingotSteel", 'B', ModItems.ironChainsaw, 'C',
|
||||
TechRebornAPI.recipeCompact.getItem("electronicCircuit"));
|
||||
|
||||
CraftingHelper.addShapelessOreRecipe(ItemParts.getPartByName("carbonmesh"), ItemDusts.getDustByName("coal"),
|
||||
ItemDusts.getDustByName("coal"), ItemDusts.getDustByName("coal"), ItemDusts.getDustByName("coal"));
|
||||
|
||||
CraftingHelper.addShapelessOreRecipe(ItemParts.getPartByName("carbonfiber"),
|
||||
ItemParts.getPartByName("carbonmesh"), ItemParts.getPartByName("carbonmesh"));
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@ import techreborn.init.ModBlocks;
|
|||
*/
|
||||
public class StackWIPHandler
|
||||
{
|
||||
|
||||
ArrayList<Block> wipBlocks = new ArrayList<>();
|
||||
public static ArrayList<ItemStack> devHeads = new ArrayList<>();
|
||||
|
||||
|
@ -54,9 +53,9 @@ public class StackWIPHandler
|
|||
event.getToolTip().add(TextFormatting.RED + "WIP Coming Soon");
|
||||
}
|
||||
|
||||
if(devHeads.contains(event.getItemStack())){
|
||||
if(devHeads.contains(event.getItemStack()))
|
||||
{
|
||||
event.getToolTip().add(TextFormatting.GOLD + "TechReborn Developer");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue