Modpack-1.12.2/scripts/Forestry.zs

28 lines
1.2 KiB
Text
Raw Permalink Normal View History

#Sturdy Casing
recipes.remove(<forestry:sturdy_machine>);
recipes.addShaped("Sturdy_Casing", <forestry:sturdy_machine>, [
[<ore:gearCopper>,<ore:ingotBronze>, <ore:gearBronze>],
[<ore:ingotBronze>, null, <ore:ingotBronze>],
[<ore:gearBronze>, <ore:ingotBronze>, <ore:gearCopper>]
]);
#Thermionic Fabricator
recipes.remove(<forestry:fabricator>);
recipes.addShaped("Thermionic_Fabricator", <forestry:fabricator>, [
[<ore:gearCopper>,<ore:gearAluminum>, <ore:gearBronze>],
[<ore:ingotTin>, <forestry:hardened_machine>, <ore:ingotTin>],
[<ore:gearGold>, <exnihilocreatio:block_barrel1>, <ore:gearGold>]
]);
#Squeezer
recipes.remove(<forestry:squeezer>);
recipes.addShaped("Squeezerse", <forestry:squeezer>, [
[<ore:plankTreatedWood>,<ore:gearCopper>, <ore:plankTreatedWood>],
[<ore:piston>, null, <ore:piston>],
[<ore:plankTreatedWood>, <exnihilocreatio:block_barrel1>, <ore:plankTreatedWood>]
]);
#Carpenter
recipes.remove(<forestry:carpenter>);
recipes.addShaped("Carpenter", <forestry:carpenter>, [
[<ore:plankTreatedWood>,<ore:gearCopper>, <ore:plankTreatedWood>],
[<ore:gearWood>, null, <ore:gearWood>],
[<ore:plankTreatedWood>, <immersiveengineering:tool>, <ore:plankTreatedWood>]
]);