/* SevTech: Ages Table Extended Crafting Tier Table Recipes 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.IIngredient; import crafttweaker.item.IItemStack; // Shaped Recipes Tagged by Tier. static shapedRecipes as IIngredient[][][IItemStack][int] = { // Tier 0 0:{ // Mekanism Energy Cube .withTag({tier: 4, mekData: {energyStored: 1.7976931348623157E308}}): [ [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ] ], // Pneumaticraft Creative Compressor : [ [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ] ], // Environmental Tech Creative Flight Modifier : [ [, , , , .withTag({astralsorcery: {constellationName: "astralsorcery.constellation.vicio"}}), , , , ], [, .withTag({mobName: "Ender Dragon", level: 10, mobId: "minecraft:ender_dragon"}), , , , , , .withTag({mobName: "Shulker", level: 10, mobId: "minecraft:shulker"}), ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ], [, , , , , , , , ] ] } }; // Shapeless Recipes Tagged by Tier. static shapelessRecipes as IIngredient[][IItemStack][int] = { // Tier 0 0: { : [ , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ] } };