/* SevTech: Ages Item Renaming Script This script allows for the renaming of an item. 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; static renameMap as string[IItemStack] = { : "Wet Tanned Hide", : "Rice Flour", : "Flint Saw Blade", : "Jingles", : "Pulp", : "Golden Rod", : "Platinum Wand", //Space Platinum : "Block of Space Platinum", : "§9Space Platinum Ingot", : "§9Compressed Space Platinum", //Chisel & Bits : "Bit Chisel", : "JourneyMap Token", //Fixing Localization : "Wolf Head" }; function init() { for item, displayName in renameMap { item.displayName = displayName; } }