Skip to content

Commit

Permalink
Version 1.9.5 Release: Heat Update
Browse files Browse the repository at this point in the history
Added RBMK Book line

Fixed fluid heat balance
  • Loading branch information
Alcatergit committed Jun 6, 2023
1 parent 0a09222 commit 2b1e0ed
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.9.5-II'
version = '1.9.6'
group = 'com.hbm' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'NTM-Extended-1.12.2'

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ org.gradle.daemon=true
org.gradle.configureondemand=true
org.gradle.parallel=true
version_mc=1.12.2
version=1.9.5-II
version=1.9.6
version_jei=4.16.1.302
version_crafttweaker=4.1.14.521
4 changes: 2 additions & 2 deletions src/main/java/com/hbm/inventory/HeatRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public static void registerHeatRecipes() {
addBoilRecipe(new FluidStack(FluidRegistry.WATER, 1), new FluidStack(ModForgeFluids.steam, 100), 100);
addCoolRecipe(new FluidStack(ModForgeFluids.steam, 100), new FluidStack(ModForgeFluids.spentsteam, 1), 100);

addBoilAndCoolRecipe(new FluidStack(ModForgeFluids.steam, 10), new FluidStack(ModForgeFluids.hotsteam, 1), 2);
addBoilAndCoolRecipe(new FluidStack(ModForgeFluids.hotsteam, 10), new FluidStack(ModForgeFluids.superhotsteam, 1), 10);
addBoilAndCoolRecipe(new FluidStack(ModForgeFluids.steam, 10), new FluidStack(ModForgeFluids.hotsteam, 1), 15);
addBoilAndCoolRecipe(new FluidStack(ModForgeFluids.hotsteam, 10), new FluidStack(ModForgeFluids.superhotsteam, 1), 30);
addBoilAndCoolRecipe(new FluidStack(ModForgeFluids.superhotsteam, 10), new FluidStack(ModForgeFluids.ultrahotsteam, 1), 120);
addBoilAndCoolRecipe(new FluidStack(ModForgeFluids.oil, 1), new FluidStack(ModForgeFluids.hotoil, 1), 300);
addBoilAndCoolRecipe(new FluidStack(ModForgeFluids.crackoil, 1), new FluidStack(ModForgeFluids.hotcrackoil, 1), 300);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/hbm/lib/RefStrings.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
public class RefStrings {
public static final String MODID = "hbm";
public static final String NAME = "Hbm's Nuclear Tech - Extended Edition";
public static final String VERSION = "NTM-Extended-1.12.2-1.9.5-II";
public static final String CHANGELOG = "§aAdded Forge Energy support to power converters$§aAdded JEI support to Transmutation and Nuclear Waste Storage Drum$§aAdded pages to RBMK Guide$§aAdded look overlay to batteries$§aAdded gas mask no-filter rendering$§aAdded Crystal schraranium recipe$§aAdded missing hen silex recipes$§aAdded RBMK Guide recipe$$§bChanged RBMK Neg-Quad functions$§bChanged RBMK fuel function display$§bChanged Meteor Dungeon spawn height from 10 to 12$$§eFixed Explosion crash$§eFixed fluid pipe rendering crash$§eFixed Particle Lag for Factories$§eFixed DiFurnace recipes$§eFixed Gas mask tooltip crash$§eFixed Zombie hazmat equip$§eFixed Advancement triggering$§eFixed Solid cable and duct fps lag";
public static final String VERSION = "NTM-Extended-1.12.2-1.9.6";
public static final String CHANGELOG = "§aAdded new small Turret Models$§aAdded Fluid Heat Exchanger$§aAdded Heating Oven$§aAdded Oil Burner$§aAdded Electric Heater$§aAdded Iron Furnace$§aAdded Chemfactory$§aAdded RBMK Emergency Freezer$§aAdded RBMK Fluid Heater$§aAdded Hot Coolant$§aAdded Meteor Charms$§aAdded THE VOICES$§aAdded UU Matter Gigafactory$§bChanged some textures$§bChanged ore radiation$§bChanged Italian Translation$§eFixed Transmutation crash$§eFixed crash when placing spitfire and tau turrets$§eFixed 30 more bugs";
//HBM's Beta Naming Convention:
//V T (X)
//V -> next release version
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/hbm/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ book.rbmk.page_schematic=In the reactor fission creates heat which converts wate
book.rbmk.title2=Heat
book.rbmk.page2=As the reactor operates, it will generate §lheat§r. Heat will spread between parts, slowly decreasing in the process. The goal is to produce as much heat as possible without melting the reactor, and to move that heat to a §lsteam channel§r which cools the reactor and produces steam.
book.rbmk.title3=Fuel Rod
book.rbmk.page3=When nuclear fuel fissions it releases neutrons. They cause more fission when hitting another fuel rod and are released in all four cardinal directions with a maximum range of 5 blocks. The amount of heat generated depends on the amount of emitted neutrons.
book.rbmk.page3=When nuclear fuel fissions it releases neutrons. They cause more fission when hitting another fuel rod and are released in all four cardinal directions with a maximum range of 5 blocks. The amount of heat generated depends on the amount of emitted neutrons. To get RBMK pellets the Fuel Rods Skin and Core temperature must be < 50°C.
book.rbmk.title4=Control Rod
book.rbmk.page4=The §lcontrol rod§r will decrease the amount of neutrons passing though it. Fully inserted, it will block all neutrons, at half insertion, it will only block half. Control rods are used to regulate the reactor's activity and to turn it off. Too much flux cause overheating and meltdown.
book.rbmk.title5=Control Rod - Usage
Expand Down

0 comments on commit 2b1e0ed

Please sign in to comment.