Skip to content

Commit

Permalink
Rebalancing of Material Blast Furnace Stats
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit committed Feb 20, 2024
1 parent 7c55cb8 commit b56299e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public static void init() {
.ingot().liquid().ore()
.element(Dc)
.color(0xbe49ed).iconSet(METALLIC)
.blast(6800, GasTier.HIGHER)
.blast(builder -> builder
.temp(6800, GasTier.HIGHER)
.blastStats(VA[LuV], 1800)
.vacuumStats(VA[EV], 600))
.cableProperties(V[UV], 1, 0, true)
.flags(GENERATE_PLATE, GENERATE_DOUBLE_PLATE, GENERATE_ROD, GENERATE_GEAR, GENERATE_DENSE)
.build();
Expand All @@ -49,7 +52,7 @@ public static void init() {
.blast(builder -> builder
.temp(10800, GasTier.HIGHEST)
.blastStats(VA[ZPM], 1800)
.vacuumStats(VA[LuV], 600))
.vacuumStats(VA[IV], 600))
.build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ public static void initThermal() {
.flags(GENERATE_PLATE, GENERATE_DOUBLE_PLATE, GENERATE_GEAR, GENERATE_FINE_WIRE)
.blast(builder -> builder
.temp(6400, GasTier.HIGHEST)
.blastStats(VA[LuV], 1200)
.vacuumStats(VA[EV], 400))
.blastStats(VA[LuV], 1600)
.vacuumStats(VA[EV], 600))
.components(Lead, 4, Platinum, 2, BlueSteel, 1, Osmium, 1)
.cableProperties(V[ZPM], 1, 0, true)
.build();
Expand All @@ -76,7 +76,10 @@ public static void initThermal() {
.liquid()
.color(0xf7be20).iconSet(BRIGHT)
.flags(GENERATE_PLATE, GENERATE_DOUBLE_PLATE, GENERATE_GEAR)
.blast(1100)
.blast(builder -> builder
.temp(1100, GasTier.LOW)
.blastStats(VA[EV], 1600)
.vacuumStats(VA[MV], 600))
.components(Electrum, 6, Lumium, 1, Signalum, 1)
.build();

Expand Down

0 comments on commit b56299e

Please sign in to comment.