diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-02-05 20:02:33 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-02-05 20:02:33 +0000 |
commit | 5507b8c0e7b2117a33dfb1fedbd14b3c30f6a01b (patch) | |
tree | 7e4439b8b7a4d60efc65d6d6aee925c017a0c626 /src/Java/gtPlusPlus/xmod/gregtech/common | |
parent | 6770cc2c03d06ddbb59d993d4f157b3ad02e1d35 (diff) | |
download | GT5-Unofficial-5507b8c0e7b2117a33dfb1fedbd14b3c30f6a01b.tar.gz GT5-Unofficial-5507b8c0e7b2117a33dfb1fedbd14b3c30f6a01b.tar.bz2 GT5-Unofficial-5507b8c0e7b2117a33dfb1fedbd14b3c30f6a01b.zip |
+ Added recipe for Nano Healer.
+ Added recipe for Strange Dust.
+ Added recipe for Slow Builders Ring.
+ Added recipes for Charge Packs.
+ Added recipes to make obtaining Zirconium a little earlier.
+ Added packager recipes for all ore materials.
+ Added lathe recipes for all materials -> rods. Closes #411.
+ Added way to process Silicon Carbide into Synthetic Graphite. Closes #407.
+ Added proper achievement localization for all new AL recipes.
+ Added more INIT_PHASE's.
- Removed ways to obtain Trinium dust in GTNH. (Leave handling to GT instead).
% Adjusted recipes for Cyclotron and Casings, it's now assembled instead of shape crafted.
% Adjusted circuits used in lower tier dehydrator recipes for consistency. Closes #364.
% Adjusted a few materials having '-' in their name within en_US.lang.
% Adjusted power capacity of the Gem Batteries.
% Adjusted tiering for Large Auto-Assembler, it has been reduced by one.
% Adjusted composition of Pikyonium to now require Yttrium, instead of the rare Ytterbium.
% Adjusted composition of DEEP_EARTH_REACTOR_FUEL_DEPOSIT to be slightly more balanced.
% Adjusted smelting point of Zirconium Carbide.
$ Fixed an NPE in GeneralTooltipEventHandler.java.
$ Fixed weird invisible recipes. Closes #304.
$ Confirmed Large Mixer is now working correctly. Closes #366. (Closed in previous commit https://github.com/draknyte1/GTplusplus/commit/918d763dabd82d47db739a1b0a51c01f0803adc0).
$ Confirmed Matter Fabricator is now working correctly. Closes #360.
+ Auto Doors. Closes #338. (Closed in previous commit https://github.com/draknyte1/GTplusplus/commit/22c6a05a8a3a00294bcb8890a1e2a0fdc9196de8).
% Changed Energy Buffer Recipes. Closes #52. (Closed in previous commit https://github.com/draknyte1/GTplusplus/commit/499411aa21ac4a742b6d51ef3ce9c4046d0a22c1).
$ Invalid Recipe. Closes #241. (Closed in unknown, previous commit).
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java index 5f255069bf..411171a766 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/items/MetaGeneratedGregtechItems.java @@ -170,11 +170,11 @@ public class MetaGeneratedGregtechItems extends Gregtech_MetaItem_X32 { */ GregtechItemList.Battery_Gem_1.set(this.addItem(tLastID = 66, "Proton Cell", "Reusable", new Object[]{getTcAspectStack(TC_Aspects.ELECTRUM, 8L), getTcAspectStack(TC_Aspects.METALLUM, 24L), getTcAspectStack(TC_Aspects.POTENTIA, 16L)})); - this.setElectricStats(32000 + tLastID, 32000000L, GT_Values.V[6], 6L, -3L, false); + this.setElectricStats(32000 + tLastID, GT_Values.V[6] * 20 * 300 / 4, GT_Values.V[6], 6L, -3L, false); GregtechItemList.Battery_Gem_2.set(this.addItem(tLastID = 68, "Electron Cell", "Reusable", new Object[]{getTcAspectStack(TC_Aspects.ELECTRUM, 16L), getTcAspectStack(TC_Aspects.METALLUM, 32L), getTcAspectStack(TC_Aspects.POTENTIA, 32L)})); - this.setElectricStats(32000 + tLastID, 750000000L, GT_Values.V[7], 7L, -3L, false); + this.setElectricStats(32000 + tLastID, GT_Values.V[7] * 20 * 300 / 4, GT_Values.V[7], 7L, -3L, false); GregtechItemList.Battery_Gem_3.set(this.addItem(tLastID = 70, "Quark Entanglement", "Reusable", new Object[]{getTcAspectStack(TC_Aspects.ELECTRUM, 32L), getTcAspectStack(TC_Aspects.METALLUM, 48L), getTcAspectStack(TC_Aspects.POTENTIA, 64L)})); - this.setElectricStats(32000 + tLastID, 64000000000L, GT_Values.V[8], 8L, -3L, false); + this.setElectricStats(32000 + tLastID, GT_Values.V[8] * 20 * 300 / 4, GT_Values.V[8], 8L, -3L, false); //ItemUtils.addItemToOreDictionary(GregtechItemList.Battery_Gem_1.get(1), "batteryFutureBasic"); //ItemUtils.addItemToOreDictionary(GregtechItemList.Battery_Gem_2.get(1), "batteryFutureGood"); //ItemUtils.addItemToOreDictionary(GregtechItemList.Battery_Gem_3.get(1), "batteryFutureAdvanced"); |