diff options
author | Technus <daniel112092@gmail.com> | 2016-09-05 12:46:04 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2016-09-21 21:50:43 +0200 |
commit | 803c0e2bc67510b331d213624318cc8d9d0faceb (patch) | |
tree | 10276e5fd71d4a2b2dccc1c61dcc19b08714d478 /src/main/java/gregtech/api/enums/GT_Values.java | |
parent | 0a04741a6050fd4976565da1a16aeb257c73ecd0 (diff) | |
download | GT5-Unofficial-803c0e2bc67510b331d213624318cc8d9d0faceb.tar.gz GT5-Unofficial-803c0e2bc67510b331d213624318cc8d9d0faceb.tar.bz2 GT5-Unofficial-803c0e2bc67510b331d213624318cc8d9d0faceb.zip |
Initial material change and tier expansion.
Diffstat (limited to 'src/main/java/gregtech/api/enums/GT_Values.java')
-rw-r--r-- | src/main/java/gregtech/api/enums/GT_Values.java | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/enums/GT_Values.java b/src/main/java/gregtech/api/enums/GT_Values.java index c459be5f4d..deee4e32d0 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -62,12 +62,20 @@ public class GT_Values { * The Voltage Tiers. Use this Array instead of the old named Voltage Variables */ public static final long[] V = new long[]{8L, 32L, 128L, 512L, 2048L, 8192L, 32768L, 131072L, 524288L, 2097152L, 8388608L, 33554432L, 134217728L, 536870912L, 1073741824L, Integer.MAX_VALUE-7}; + //TODO:Adding that in coremod!!! //TODO:tier 14,15 wires and transformers only (not even cables !!!) - //TODO:tier 12,13 the above + batteries, battery buffers - //TODO:tier 10,11 the above + charger other machines - //TODO:tier 9 machines - //TODO:AND ALL THE MATERIALS... + //TODO:tier 12,13 the above + batteries, battery buffers, (maybe cables) + //TODO:tier 10,11 the above + chargers and other machines, (cables would be nice) + //TODO:tier 9 machines and batteries + //TODO:AND ALL THE MATERIALS... for that + //TODO:LIST OF MACHINES WITH POINTLESS TIERS (unless you implement some other tiering mechanism like reducing eu cost if time=1tick) + //Macerator/Compressor/Furnace... and for cheap recipes any + /** + * keeping Voltage*Amps < Integer.MAX_VALUE-7 for machines (and tier logic 4x EUt 2/ time) + * AMV[4]= max amps at tier 4 + */ + public static final long[] AatV = new long[]{268435455,67108863,16777215,4194303,1048575,262143,65535,16383,4095,1023,255,63,15,3,1,1}; /** * The short Names for the Voltages */ |