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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
package reactor.items;
import kekztech.GTRecipe;
public class HeatVent {
public static final String TYPE = "HeatVent";
public static final String HEAT = "HEAT";
public static final String RESOURCE_NAME = "RESOURCE_NAME";
public static final String HEAT_CAPACITY = "HEAT_CAPACITY";
public static final String COMPONENT_VENT_RATE = "COMPONENT_VENT_RATE";
public static final String HULL_DRAW_RATE = "HULL_DRAW_RATE";
public static final String SELF_COOL_RATE = "SELF_COOL_RATE";
public static String[] RESOURCE_NAMES = {
"T1HeatVent", "T2HeatVent", "T3HeatVent", "T4HeatVent",
"T1ComponentHeatVent", "T2ComponentHeatVent", "T3ComponentHeatVent", "T4ComponentHeatVent",
"T1OverclockedHeatVent", "T2OverclockedHeatVent", "T3OverclockedHeatVent", "T4OverclockedHeatVent"
};
public static int[] HEAT_CAPACITIES = {
1000, 4000, 8000, 32000,
1000, 4000, 8000, 32000,
1000, 4000, 8000, 32000
};
public static int[] COMPONENT_VENT_RATES = {
0, 0, 0, 0,
6, 12, 48, 96,
0, 0, 0, 0
};
public static int[] HULL_DRAW_RATES = {
0, 0, 0, 0,
0, 0, 0, 0,
18, 36, 144, 288
};
public static int[] SELF_COOL_RATES = {
6, 12, 48, 96,
0, 0, 0, 0,
10, 20, 80, 160
};
public static final GTRecipe[] RECIPE = {
};
}
|