package com.harry9137.ct.item; import com.harry9137.ct.reference.names; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import java.util.List; public class ItemCreepLeaf extends ItemCT { public ItemCreepLeaf(){ super(); this.setUnlocalizedName(names.items.ItemCreepLeaf); } @Override public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean par4) { list.add("The Core Of Everything!"); } }