mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
135 lines
3.4 KiB
Java
135 lines
3.4 KiB
Java
package com.hbm.items.special;
|
|
|
|
import java.util.List;
|
|
|
|
import com.hbm.items.ModItems;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
public class ItemFuelRod extends ItemRadioactive {
|
|
|
|
public int lifeTime;
|
|
|
|
public ItemFuelRod(int life) {
|
|
this.lifeTime = life;
|
|
this.setMaxDamage(100);
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack itemstack, EntityPlayer player, List list, boolean bool)
|
|
{
|
|
list.add("Used in nuclear reactor");
|
|
|
|
if(this == ModItems.rod_uranium_fuel)
|
|
{
|
|
list.add("Generates 100 power per tick");
|
|
list.add("Generates 1 heat per tick");
|
|
list.add("Lasts 10000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_dual_uranium_fuel)
|
|
{
|
|
list.add("Generates 100 power per tick");
|
|
list.add("Generates 1 heat per tick");
|
|
list.add("Lasts 20000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_quad_uranium_fuel)
|
|
{
|
|
list.add("Generates 100 power per tick");
|
|
list.add("Generates 1 heat per tick");
|
|
list.add("Lasts 40000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_plutonium_fuel)
|
|
{
|
|
list.add("Generates 150 power per tick");
|
|
list.add("Generates 2 heat per tick");
|
|
list.add("Lasts 25000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_dual_plutonium_fuel)
|
|
{
|
|
list.add("Generates 150 power per tick");
|
|
list.add("Generates 2 heat per tick");
|
|
list.add("Lasts 50000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_quad_plutonium_fuel)
|
|
{
|
|
list.add("Generates 150 power per tick");
|
|
list.add("Generates 2 heat per tick");
|
|
list.add("Lasts 100000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_mox_fuel)
|
|
{
|
|
list.add("Generates 50 power per tick");
|
|
list.add("Generates 1 heat per tick");
|
|
list.add("Lasts 100000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_dual_mox_fuel)
|
|
{
|
|
list.add("Generates 50 power per tick");
|
|
list.add("Generates 1 heat per tick");
|
|
list.add("Lasts 200000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_quad_mox_fuel)
|
|
{
|
|
list.add("Generates 50 power per tick");
|
|
list.add("Generates 1 heat per tick");
|
|
list.add("Lasts 400000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_schrabidium_fuel)
|
|
{
|
|
list.add("Generates 25000 power per tick");
|
|
list.add("Generates 10 heat per tick");
|
|
list.add("Lasts 2500000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_dual_schrabidium_fuel)
|
|
{
|
|
list.add("Generates 25000 power per tick");
|
|
list.add("Generates 10 heat per tick");
|
|
list.add("Lasts 5000000 ticks");
|
|
}
|
|
|
|
if(this == ModItems.rod_quad_schrabidium_fuel)
|
|
{
|
|
list.add("Generates 25000 power per tick");
|
|
list.add("Generates 10 heat per tick");
|
|
list.add("Lasts 10000000 ticks");
|
|
}
|
|
}
|
|
|
|
public static void setLifeTime(ItemStack stack, int time) {
|
|
if(!stack.hasTagCompound())
|
|
stack.stackTagCompound = new NBTTagCompound();
|
|
|
|
stack.stackTagCompound.setInteger("life", time);
|
|
}
|
|
|
|
public static void updateDamage(ItemStack stack) {
|
|
|
|
if(!stack.hasTagCompound())
|
|
stack.stackTagCompound = new NBTTagCompound();
|
|
|
|
stack.setItemDamage((int)((double)getLifeTime(stack) / (double)((ItemFuelRod)stack.getItem()).lifeTime * 100D));
|
|
}
|
|
|
|
public static int getLifeTime(ItemStack stack) {
|
|
if(!stack.hasTagCompound()) {
|
|
stack.stackTagCompound = new NBTTagCompound();
|
|
return 0;
|
|
}
|
|
|
|
return stack.stackTagCompound.getInteger("life");
|
|
}
|
|
|
|
}
|