mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
34 lines
417 B
Java
34 lines
417 B
Java
package com.hbm.items.machine;
|
|
|
|
import com.hbm.items.ItemEnumMulti;
|
|
|
|
public class ItemBreedingRod extends ItemEnumMulti {
|
|
|
|
public ItemBreedingRod() {
|
|
super(BreedingRodType.class, true, true);
|
|
}
|
|
|
|
public enum BreedingRodType {
|
|
LITHIUM,
|
|
TRITIUM,
|
|
CO,
|
|
CO60,
|
|
TH232,
|
|
THF,
|
|
U235,
|
|
NP237,
|
|
U238,
|
|
PU238,
|
|
PU239,
|
|
RGP,
|
|
WASTE,
|
|
|
|
//Required for prototype
|
|
LEAD,
|
|
URANIUM,
|
|
|
|
RA226,
|
|
AC227
|
|
}
|
|
}
|