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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
package gregtech.api.metatileentity.implementations;
import static gregtech.api.enums.GTValues.V;
import net.minecraft.util.EnumChatFormatting;
import org.apache.commons.lang3.ArrayUtils;
import gregtech.api.enums.Textures;
import gregtech.api.interfaces.ITexture;
import gregtech.api.interfaces.metatileentity.IMetaTileEntity;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
public class MTEWetTransformer extends MTETransformer {
public MTEWetTransformer(int aID, String aName, String aNameRegional, int aTier, String aDescription) {
super(aID, aName, aNameRegional, aTier, aDescription);
}
public MTEWetTransformer(String aName, int aTier, String[] aDescription, ITexture[][][] aTextures) {
super(aName, aTier, aDescription, aTextures);
}
@Override
public IMetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
return new MTEWetTransformer(mName, mTier, mDescriptionArray, mTextures);
}
@Override
public ITexture[][][] getTextureSet(ITexture[] aTextures) {
ITexture[][][] rTextures = new ITexture[12][17][];
for (byte b = -1; b < 16; b++) {
rTextures[0][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_OUT_MULTI[mTier] };
rTextures[1][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_OUT_MULTI[mTier] };
rTextures[2][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_OUT_MULTI[mTier] };
rTextures[3][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_IN_POWER[mTier + 1] };
rTextures[4][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_IN_POWER[mTier + 1] };
rTextures[5][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_IN_POWER[mTier + 1] };
rTextures[6][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_IN_MULTI[mTier] };
rTextures[7][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_IN_MULTI[mTier] };
rTextures[8][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_IN_MULTI[mTier] };
rTextures[9][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_OUT_POWER[mTier + 1] };
rTextures[10][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_OUT_POWER[mTier + 1] };
rTextures[11][b + 1] = new ITexture[] { Textures.BlockIcons.MACHINE_CASINGS[mTier][b + 1],
Textures.BlockIcons.OVERLAYS_ENERGY_OUT_POWER[mTier + 1] };
}
return rTextures;
}
@Override
public String[] getDescription() {
return ArrayUtils.addAll(
mDescriptionArray,
"Accepts 16A and outputs 64A",
EnumChatFormatting.BLUE + "Tec"
+ EnumChatFormatting.DARK_BLUE
+ "Tech"
+ EnumChatFormatting.BLUE
+ ": Interdimensional");
}
@Override
public long getMinimumStoredEU() {
return V[mTier + 1];
}
@Override
public long maxEUStore() {
return 512L + V[mTier + 1] * 128L;
}
@Override
public long maxAmperesOut() {
return getBaseMetaTileEntity().isAllowedToWork() ? 64 : 16;
}
@Override
public long maxAmperesIn() {
return getBaseMetaTileEntity().isAllowedToWork() ? 16 : 64;
}
}
|