mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
27 lines
618 B
Java
27 lines
618 B
Java
package com.hbm.items.food;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.items.ModItems;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemFood;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class ItemNugget extends ItemFood {
|
|
|
|
public ItemNugget(int p_i45340_1_, boolean p_i45340_2_) {
|
|
super(p_i45340_1_, p_i45340_2_);
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack itemstack, EntityPlayer player, List list, boolean bool) {
|
|
|
|
if (this == ModItems.gun_moist_nugget) {
|
|
list.add("A Mosin-Na...no wait, it's");
|
|
list.add("just a moist nugget.");
|
|
}
|
|
}
|
|
|
|
}
|