blob: b166b3fc3da1031e2339a14562155c35b9c536ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package reactor.items;
import items.MetaItem_ReactorComponent;
import kekztech.GTRecipe;
import kekztech.Items;
public class CoolantCell {
public static String TYPE = "CoolantCell";
public static String[] RESOURCE_NAME = {
"HeliumCoolantCell360k", "NaKCoolantCell360k"
};
public static int[] HEAT_CAPACITY = {
360000, 360000
};
public static GTRecipe[] RECIPE = {
new GTRecipe().setDuration(1200).setEUPerTick(480)
.addOutputItem(MetaItem_ReactorComponent.getInstance().getStackFromDamage(Items.HeliumCoolantCell360k.getMetaID())),
new GTRecipe().setDuration(1200).setEUPerTick(480)
.addOutputItem(MetaItem_ReactorComponent.getInstance().getStackFromDamage(Items.NaKCoolantCell360k.getMetaID()))
};
}
|