mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
33 lines
715 B
Java
33 lines
715 B
Java
package com.hbm.items.bomb;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.items.ModItems;
|
|
import com.hbm.items.special.ItemRadioactive;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.EnumRarity;
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public class ItemFleija extends ItemRadioactive {
|
|
|
|
@Override
|
|
public void addInformation(ItemStack itemstack, EntityPlayer player, List list, boolean bool)
|
|
{
|
|
list.add("Used in:");
|
|
list.add("F.L.E.I.J.A.");
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack p_77613_1_) {
|
|
|
|
if(this == ModItems.fleija_propellant)
|
|
{
|
|
return EnumRarity.rare;
|
|
}
|
|
|
|
return EnumRarity.common;
|
|
}
|
|
|
|
}
|