Skip to content

Commit

Permalink
Final Polishing 6 | Tech Tree Adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
Eschatologue committed Mar 11, 2022
1 parent 291dc21 commit 669a562
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 15 deletions.
Binary file modified assets/sprites/blocks/power/steam-turbine-heat-top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/sprites/blocks/power/steam-turbine-top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/sprites/blocks/power/steam-turbine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/UAW/content/UAWGas.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class UAWGas implements ContentList {
@Override
public void load() {
steam = new Gas("gas-steam") {{
localizedName = "Steam";
alwaysUnlocked = true;
color = Color.valueOf("ececec");
explosiveness = 0f;
temperature = 0.6f;
Expand Down
20 changes: 7 additions & 13 deletions src/UAW/content/UAWTechTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,11 @@ public void load() {
// region Consumeables
vanillaNode(pyratite, () ->
// Cryogel
node(cryogel)
nodeProduce(cryogel)
);
vanillaNode(titanium, () ->
// Titanium Carbide
node(titaniumCarbide,
Seq.with(
new Research(thorium),
new Research(surgeAlloy)
)
)
nodeProduce(titaniumCarbide)
);

vanillaNode(surgeAlloy, () ->
Expand Down Expand Up @@ -279,13 +274,12 @@ public void load() {
)
);
});
// Steam Turbine
node(steamTurbine, () -> {
node(advancedSteamTurbine);
}
);
});
// Steam Turbine
node(steamTurbine, () -> {
node(advancedSteamTurbine);
}
);

// Steam Drills
node(steamDrill, () -> {
node(steamPress, () ->
Expand Down
3 changes: 2 additions & 1 deletion src/UAW/content/blocks/UAWBlocksPower.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public void load() {
squareSprite = false;
powerProduction = 6f;
gasCapacity = 120f;
steamBottom = false;
consumes.add(new ConsumeGas(UAWGas.steam, 0.5f).optional(false, false));
}};
advancedSteamTurbine = new GasGenerator("advanced-steam-turbine") {{
Expand Down Expand Up @@ -92,7 +93,7 @@ public void load() {
size = 2;
squareSprite = false;
warmupSpeed = 0.002f;
liquidAmount = 35;
liquidAmount = 36;
consumes.items(new ItemStack(
Items.coal, 3
));
Expand Down

0 comments on commit 669a562

Please sign in to comment.