Status
Fixed
Issue description
I would be nice to add text to all items... (All thing that can be hold)
It could be useful like for Food type, to know what happen when we eat the food etc...
Same for tools as type "Special" to know what block it can break
To know what happen when a ranged item is used on a mob etc....
Just suggesting :)
Issue comments
It is possible to do it manually but you will need to add to block the item element for MCreator and edit it adding this imports:
import net.minecraft.world.World;
import net.minecraft.item.ItemStack;
import net.minecraft.client.util.ITooltipFlag;
import java.util.List;
most of stuff will already be there so only add what is missing then add the following:
@SideOnly(Side.CLIENT)
@Override
public void addInformation(ItemStack itemstack, World world, List<String> list, ITooltipFlag flag) {
super.addInformation(itemstack, world, list, flag);
list.add("YOUR TEXT HERE");
I will consider adding this in the future updates.