This repository has been archived by the owner on May 25, 2024. It is now read-only.
forked from GlodBlock/GoodGenerator
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix fuel rod tooltip and damage stuff
- Loading branch information
Showing
4 changed files
with
82 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
package goodgenerator.items; | ||
|
||
import ic2.api.item.IBoxable; | ||
import ic2.api.reactor.IReactor; | ||
import ic2.api.reactor.IReactorComponent; | ||
import net.minecraft.creativetab.CreativeTabs; | ||
import net.minecraft.item.ItemStack; | ||
|
||
public class DepletedFuelRod extends RadioactiveItem implements IReactorComponent, IBoxable { | ||
|
||
|
||
public DepletedFuelRod(String name, String[] tooltip, CreativeTabs Tab, int Rad) { | ||
super(name, tooltip, Tab, Rad); | ||
} | ||
|
||
@Override | ||
public boolean canBeStoredInToolbox(ItemStack itemStack) { | ||
return true; | ||
} | ||
|
||
@Override | ||
public void processChamber(IReactor iReactor, ItemStack itemStack, int i, int i1, boolean b) { | ||
} | ||
|
||
@Override | ||
public boolean acceptUraniumPulse(IReactor iReactor, ItemStack itemStack, ItemStack itemStack1, int i, int i1, int i2, int i3, boolean b) { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean canStoreHeat(IReactor iReactor, ItemStack itemStack, int i, int i1) { | ||
return false; | ||
} | ||
|
||
@Override | ||
public int getMaxHeat(IReactor iReactor, ItemStack itemStack, int i, int i1) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public int getCurrentHeat(IReactor iReactor, ItemStack itemStack, int i, int i1) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public int alterHeat(IReactor iReactor, ItemStack itemStack, int i, int i1, int i2) { | ||
return 0; | ||
} | ||
|
||
@Override | ||
public float influenceExplosion(IReactor iReactor, ItemStack itemStack) { | ||
return 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters