From 9b9c42fc57001922f9146c483e67d49182153e5a Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Sun, 30 Jun 2024 14:33:42 +1000 Subject: [PATCH] Change Void Oil Deposit Back to Raw Oil (#782) This reverts a change made in #619 (specifically commits [`be70198` (#619)](https://github.com/Nomi-CEu/Nomi-CEu/pull/619/commits/be7019840ca837a8c35d3f38c5258bfd7740d5dd) and [`4220f6c` (#619)](https://github.com/Nomi-CEu/Nomi-CEu/pull/619/commits/4220f6c185318d6632d35ba2ec18b21adafd7981)), where the Void Raw Oil Deposit was changed from Raw Oil to Oil. Although this was intended initially to maintain the same resource production as before the GregTech update, this decreased the production of Naphtha, leading to Gasoline and HoG being even less viable than before. ## Ratio Changes: Before: 50mb (Oil) -> 20mb (Sulfuric Naphtha), Ratio of 5:2 After: 100mb (Raw Oil) -> 150mb (Sulfuric Naphtha), Ratio of 2:3 All other ratios are not changed (as Deposit has also been changed to give x2 amount). /* GitHub Stuff */ [BALANCING] [IGNORE] checks = { compareNot = "1.7-alpha-4" } [IGNORE] [DETAILS] details = [ "Increase Viability of Naphtha, especially in Hard Mode", "Before: 50mb (Oil) -> 20mb (Sulfuric Naphtha), Ratio of 5:2", "After: 100mb (Raw Oil) -> 150mb (Sulfuric Naphtha), Ratio of 2:3", "Other Products have No Changed Ratios, due to Increasing Yield from 40-80", ] [DETAILS] --- .../worldgen/fluid/void/infinite_raw_oil_deposit.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/overrides/config/gregtech/worldgen/fluid/void/infinite_raw_oil_deposit.json b/overrides/config/gregtech/worldgen/fluid/void/infinite_raw_oil_deposit.json index 7a72910..7dcb09b 100755 --- a/overrides/config/gregtech/worldgen/fluid/void/infinite_raw_oil_deposit.json +++ b/overrides/config/gregtech/worldgen/fluid/void/infinite_raw_oil_deposit.json @@ -1,9 +1,9 @@ { "weight": 100, - "name": "Void Infinite Oil Deposit", + "name": "Void Infinite Raw Oil Deposit", "yield": { - "min": 40, - "max": 40 + "min": 80, + "max": 80 }, "depletion": { "amount": 0, @@ -13,5 +13,5 @@ "dimension_filter": [ "dimension_id:119" ], - "fluid": "oil" + "fluid": "oil_medium" }