/* SevTech: Ages Actually Additions 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 crafttweaker.item.IItemStack; import mods.actuallyadditions.AtomicReconstructor; import mods.actuallyadditions.BallOfFur; import mods.actuallyadditions.Empowerer; /* Support: Atomic Reconstructor: http://crafttweaker.readthedocs.io/en/latest/#Mods/Modtweaker/ActuallyAdditions/AtomicReconstructor/ Ball of Fur: http://crafttweaker.readthedocs.io/en/latest/#Mods/Modtweaker/ActuallyAdditions/BallOfFur/ Empowerer: http://crafttweaker.readthedocs.io/en/latest/#Mods/Modtweaker/ActuallyAdditions/Empowerer/ */ function init() { // Atomic Reconstructor AtomicReconstructor.addRecipe(, , 500000); AtomicReconstructor.removeRecipe(); // Crusher actuallyAdditions.addCrusher( * 9 , ); // Diamond Block -> Diamonds actuallyAdditions.addCrusher( * 9, ); // Lapis Block -> Lapis actuallyAdditions.addCrusher( * 9, ); // Redstone Block -> Redstone actuallyAdditions.addCrusher( * 9, ); // Emerald Block -> Emerald actuallyAdditions.addCrusher( * 4, ); // Prismarine -> Prismarine Shard actuallyAdditions.removeCrusher(); // Remove the bad Rice Recipe actuallyAdditions.addCrusher(, ); // Rice -> Rice Flower actuallyAdditions.removeCrusher(); // Remove Crushed Lapis actuallyAdditions.addCrusher( * 3, .withTag({})); // Death Compass -> Bone Meal // Ball of Fur // Removing items from Balls of Fur var ballOfFurRemovalItems as IItemStack[] = [ , , , , ]; for item in ballOfFurRemovalItems { BallOfFur.removeReturn(item); } // Empowerer Empowerer.addRecipe( * 4, , , , , , 5000, 200, [0.698, 0.870, 0.960] ); }