/* SevTech: Ages Blood Magic Tartaric Forge Script This script handles custom integration control to a mod. Note: These scripts are created and for the usage in SevTech: Ages and other modpacks curated by DarkPacks. You can use these scripts for reference and for learning but not for copying and pasting and claiming as your own. */ import mods.bloodmagic.TartaricForge; function init() { TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , , ], 0, 0 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , , ], 200, 10 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , , ], 80, 10 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, metals.platinum.ingot, , ], 1500, 200 ); TartaricForge.removeRecipe([, , ]); TartaricForge.addRecipe( , [metals.iron.block, metals.platinum.ingot, ], 400, 200 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , metals.iron.block, ], 240, 150 ); TartaricForge.removeRecipe([, , ]); TartaricForge.addRecipe( , [, , , ], 128, 20 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , metals.manyullyn.ingot, ], 500, 100 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , metals.bronze.ingot, ], 60, 20 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , metals.gold.block, ], 240, 50 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , , ], 400, 5 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, , , metals.platinum.ingot], 400, 5 ); TartaricForge.removeRecipe([, , ]); TartaricForge.addRecipe( , [, , , metals.silver.ingot], 400, 10 ); TartaricForge.removeRecipe([, , , ]); TartaricForge.addRecipe( , [, metals.bronze.ingot, , ], 1, 1 ); TartaricForge.addRecipe( , [, , , ], 100, 20 ); TartaricForge.addRecipe( , [, ], 0, 0 ); }