/* SkyFactory 4 Item Renaming Script This script allows for the renaming of an item. */ import crafttweaker.item.IItemStack; static renameMap as string[IItemStack] = { : "Party Pickaxe", : "Twilight Forest Cake", : "Lost Cities Cake", : "Crescent Hammer (Wrench)" }; function init() { for item, displayName in renameMap { item.displayName = displayName; } }