Skip to content

Commit

Permalink
made electric tools able to be crafted with re batteries
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Jan 19, 2025
1 parent 2aa8524 commit e9e2792
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@ public static void loadRecipes(Consumer<FinishedRecipe> output, AntimatterRecipe

private static void loadPoweredRecipes(Consumer<FinishedRecipe> output, AntimatterRecipeProvider provider){
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get(GTCoreTools.DRILL.getId()),output, GT4RRef.ID, GTCoreTools.DRILL.getId() + "_" + "recipe", "antimatter_drills",
GT4RItems.Drill.getDefaultInstance(), of('S', PLATES_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), " S ", "SCS", "SBS");
GT4RItems.Drill.getDefaultInstance(), of('S', PLATES_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL, BATTERIES_RE).build()), " S ", "SCS", "SBS");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get("diamond_drill"),output, GT4RRef.ID, "diamond_drill_" + "recipe", "antimatter_drills",
GT4RItems.DiamondDrill.getDefaultInstance(), of('T', PLATE.getMaterialTag(Titanium), 'C', CIRCUITS_ADVANCED, 'D', GEM.getMaterialTag(Diamond), 'B', PropertyIngredient.builder("battery").itemTags(DRILL).build()), " D ", "DBD", "TCT");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get("advanced_drill"),output, GT4RRef.ID, "advanced_drill_" + "recipe", "antimatter_drills",
GT4RItems.AdvancedDrill.getDefaultInstance(), of('T', PLATE.getMaterialTag(TungstenSteel), 'C', CIRCUITS_ELITE, 'D', GEM.getMaterialTag(Diamond), 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_MEDIUM).build()), "DDD", "TCT", "TBT");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get(GTCoreTools.CHAINSAW.getId()),output, GT4RRef.ID, GTCoreTools.CHAINSAW.getId() + "_" + "recipe", "antimatter_drills",
GT4RItems.Chainsaw.getDefaultInstance(), of('S', PLATES_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), " SS", "SCS", "BS ");
GT4RItems.Chainsaw.getDefaultInstance(), of('S', PLATES_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL, BATTERIES_RE).build()), " SS", "SCS", "BS ");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get("advanced_chainsaw"),output, GT4RRef.ID, "advanced_chainsaw_" + "recipe", "antimatter_drills",
GT4RItems.AdvancedChainsaw.getDefaultInstance(), of('T', PLATE.getMaterialTag(TungstenSteel), 'C', CIRCUITS_ELITE, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_MEDIUM).build()), " TT", "TCT", "BT ");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get(GTCoreTools.ELECTRIC_WRENCH.getId()),output, GT4RRef.ID, GTCoreTools.ELECTRIC_WRENCH.getId() + "_" + "recipe", "antimatter_drills",
GT4RItems.ElectricWrench.getDefaultInstance(), of('S', PLATES_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), "S S", "SCS", " B ");
GT4RItems.ElectricWrench.getDefaultInstance(), of('S', PLATES_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL, BATTERIES_RE).build()), "S S", "SCS", " B ");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get("advanced_wrench"),output, GT4RRef.ID, "advanced_wrench_" + "recipe", "antimatter_drills",
GT4RItems.AdvancedWrench.getDefaultInstance(), of('T', PLATE.getMaterialTag(TungstenSteel), 'C', CIRCUITS_ELITE, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_MEDIUM).build()), "T T", "TCT", " B ");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get(GTCoreTools.ELECTRIC_SCREWDRIVER.getId()),output, GT4RRef.ID, GTCoreTools.ELECTRIC_SCREWDRIVER.getId() + "_" + "recipe", "antimatter_drills",
GT4RItems.ElectricScrewdriver.getDefaultInstance(), of('S', RODS_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), "S ", " SC", " B");
GT4RItems.ElectricScrewdriver.getDefaultInstance(), of('S', RODS_STEELS, 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL, BATTERIES_RE).build()), "S ", " SC", " B");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get(ROCK_CUTTER.getId()),output, GT4RRef.ID, "rock_cutter_titanium", "antimatter_drills",
GT4RItems.RockCutter.getDefaultInstance(), of('R', ROD.getMaterialTag(Titanium), 'P', PLATE.getMaterialTag(Titanium), 'C', CIRCUITS_BASIC, 'D', DUST.getMaterialTag(Diamond), 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), "DR ", "DP ", "DCB");
GT4RItems.RockCutter.getDefaultInstance(), of('R', ROD.getMaterialTag(Titanium), 'P', PLATE.getMaterialTag(Titanium), 'C', CIRCUITS_BASIC, 'D', DUST.getMaterialTag(Diamond), 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL, BATTERIES_RE).build()), "DR ", "DP ", "DCB");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get(ROCK_CUTTER.getId()),output, GT4RRef.ID, "rock_cutter_tungstensteel", "antimatter_drills",
GT4RItems.RockCutter.getDefaultInstance(), of('R', ROD.getMaterialTag(TungstenSteel), 'P', PLATE.getMaterialTag(TungstenSteel), 'C', CIRCUITS_BASIC, 'D', DUST.getMaterialTag(Diamond), 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), "DR ", "DP ", "DCB");
GT4RItems.RockCutter.getDefaultInstance(), of('R', ROD.getMaterialTag(TungstenSteel), 'P', PLATE.getMaterialTag(TungstenSteel), 'C', CIRCUITS_BASIC, 'D', DUST.getMaterialTag(Diamond), 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL, BATTERIES_RE).build()), "DR ", "DP ", "DCB");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get("bronze_jackhammer"), output, GT4RRef.ID, "jackhammer_bronze", "drills",
GT4RItems.BronzeJackHammer.getDefaultInstance(), of('R', ROD.getMaterialTag(Bronze), 'I', INGOT.getMaterialTag(Bronze), 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), "RBR", " C ", " I ");
GT4RItems.BronzeJackHammer.getDefaultInstance(), of('R', ROD.getMaterialTag(Bronze), 'I', INGOT.getMaterialTag(Bronze), 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL, BATTERIES_RE).build()), "RBR", " C ", " I ");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get("steel_jackhammer"), output, GT4RRef.ID, "jackhammer_steel", "drills",
GT4RItems.SteelJackHammer.getDefaultInstance(), of('R', ROD.getMaterialTag(StainlessSteel), 'I', INGOT.getMaterialTag(StainlessSteel), 'C', CIRCUITS_BASIC, 'B', PropertyIngredient.builder("battery").itemTags(BATTERIES_SMALL).build()), "RBR", " C ", " I ");
provider.addToolRecipe(ToolTypes.POWERED_TOOL_BUILDER_BASIC.get("diamond_jackhammer"), output, GT4RRef.ID, "jackhammer_diamond", "drills",
Expand Down

0 comments on commit e9e2792

Please sign in to comment.