Advanced Rocketry Tweaker (AR Tweaker)
An addon for the Advanced Rocketry mod that provides the ability to customize recipes through CraftTweaker scripts. This tool allows complete customization of crafting processes in various mod machines, modifying existing recipes or adding new ones.
Usage Examples
Chemical Reactor:
// Chemical Reactor
//mods.advancedrocketry.ChemicalReactor.clear();
mods.advancedrocketry.ChemicalReactor.removeRecipe(<liquid:rocketfuel>);
mods.advancedrocketry.ChemicalReactor.addRecipe(<liquid:rocketfuel>1000, 80, 100, <liquid:oxygen>500, <liquid:hydrogen>500);
Precision Assembler:
// Precision Assembler
//mods.advancedrocketry.PrecisionAssembler.clear();
mods.advancedrocketry.PrecisionAssembler.removeRecipe(<advancedrocketry:blocklens>);
Cutting Machine:
// Cutting Machine
//mods.advancedrocketry.CuttingMachine.clear();
val junglePlanks = <minecraft:planks>;
mods.advancedrocketry.CuttingMachine.removeRecipe(junglePlanks.withDamage(3)6);
Lathe:
// Lathe
//mods.advancedrocketry.Lathe.clear();
var titaniumRod = <advancedrocketry:productrod>;
mods.advancedrocketry.Lathe.removeRecipe(titaniumRod.withDamage(1)2);
Rolling Machine:
// Rolling Machine
//mods.advancedrocketry.RollingMachine.clear();
val titaniumPlate = <advancedrocketry:productplate>;
mods.advancedrocketry.RollingMachine.removeRecipe(titaniumPlate.withDamage(1));
Electrolyser:
// Electrolyser
//mods.advancedrocketry.Electrolyser.clear();
//mods.advancedrocketry.Electrolyser.removeRecipe(<liquid:hydrogen>,<liquid:oxygen>);
Arc Furnace:
// Arc Furnace
//mods.advancedrocketry.ArcFurnace.clear();
val titaniumIngot = <libvulpes:productingot>;
mods.advancedrocketry.ArcFurnace.removeRecipe(titaniumIngot.withDamage(7));
Crystallizer:
// Crystallizer
//mods.advancedrocketry.Crystallizer.clear();
mods.advancedrocketry.Crystallizer.removeRecipe(<libvulpes:productcrystal>);
Plate Presser:
// Plate Presser
//mods.advancedrocketry.PlatePresser.clear();
val ironPlate = <libvulpes:productplate>;
mods.advancedrocketry.PlatePresser.removeRecipe(ironPlate.withDamage(1));
mods.advancedrocketry.PlatePresser.removeRecipe(titaniumPlate.withDamage(1));
mods.advancedrocketry.PlatePresser.addRecipe(<minecraft:stone>1,<minecraft:gold_block>*1);
With this addon, you gain complete control over production chains in Advanced Rocketry, allowing you to adapt them to your gameplay needs.