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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
package gregtech.api.multitileentity.enums;
import gregtech.api.enums.GT_Values;
public enum GT_MultiTileUpgradeCasing {
ULV_Inventory(0),
LV_Inventory(1),
MV_Inventory(2),
HV_Inventory(3),
EV_Inventory(4),
IV_Inventory(5),
LuV_Inventory(6),
ZPM_Inventory(7),
UV_Inventory(8),
UHV_Inventory(9),
UEV_Inventory(10),
UIV_Inventory(11),
UXV_Inventory(12),
UMV_Inventory(13),
MAX_Inventory(14),
ULV_Tank(15),
LV_Tank(16),
MV_Tank(17),
HV_Tank(18),
EV_Tank(19),
IV_Tank(20),
LuV_Tank(21),
ZPM_Tank(22),
UV_Tank(23),
UHV_Tank(24),
UEV_Tank(25),
UIV_Tank(26),
UXV_Tank(27),
UMV_Tank(28),
MAX_Tank(29),
Amp_4(30),
Amp_16(31),
Amp_64(32),
Amp_256(33),
Amp_1_024(34),
Amp_4_096(35),
Amp_16_384(36),
Amp_65_536(37),
Amp_262_144(38),
Amp_1_048_576(39),
Laser(40),
Wireless(41),
Cleanroom(42),
Heater_Prototype(100),
Heater_IndustrialGrade(101),
Heater_NextGen(102),
Heater_Omnipotent(103),
Heater_OmegaType(104),
Insulator_Prototype(105),
Insulator_IndustrialGrade(106),
Insulator_NextGen(107),
Insulator_Omnipotent(108),
Insulator_OmegaType(109),
NONE(GT_Values.W);
private final int meta;
GT_MultiTileUpgradeCasing(int meta) {
this.meta = meta;
}
public int getId() {
return meta;
}
}
|