blob: 8ba03c85fafe11f28bd2e8c136921d34fb716b00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package kubatech.loaders.item.items;
import java.util.List;
import kubatech.loaders.item.ItemProxy;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumChatFormatting;
public class TeaIngredient extends ItemProxy {
public TeaIngredient(String unlocalizedName) {
super("teaingredient." + unlocalizedName, "teaingredient/" + unlocalizedName);
}
@Override
public void addInformation(ItemStack stack, EntityPlayer entity, List<String> tooltipList, boolean showDebugInfo) {
tooltipList.add(EnumChatFormatting.GRAY + "This is Tea ingredient");
}
}
|