Quests rework and small fixes (#911)

* First modification of MV Quest structure
test

* Starting some changes for quest_rework

* Fixes for scaffolding frame and bloomery steam consumption so it works with only one High pressure liquid boiler

* Big changes for quests including Ore Processing Chapter, MV Chapter without the lang file and some fixes around the quest book. Also include a fix for Steam Bloomery so it only needs 1 High Pressure Liquid Boiler to run as max parallel and the fix for scaffolding frame

* Update my branch with recent changes

* Fix for Ice to Packed Ice
This commit is contained in:
TomPlop 2025-04-23 12:34:31 -04:00 committed by GitHub
parent 87b3937768
commit 03fa741db6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 1796 additions and 624 deletions

View file

@ -976,13 +976,13 @@ const registerGTCEURecipes = (event) => {
.itemInputs('#forge:ingots/iron', '#tfc:steam_bloomery_basic_fuels')
.itemOutputs('tfc:raw_iron_bloom')
.duration(2400)
.EUt(GTValues.VEX[GTValues.ULV])
.EUt(2)
event.recipes.gtceu.steam_bloomery('steam_raw_iron_bloom_coalcoke')
.itemInputs('2x #forge:ingots/iron', '#tfc:blast_furnace_fuel')
.itemOutputs('2x tfc:raw_iron_bloom')
.duration(2400)
.EUt(GTValues.VEX[GTValues.ULV])
.EUt(2)
GTMaterialRegistry.getRegisteredMaterials().forEach(material => {
@ -996,13 +996,13 @@ const registerGTCEURecipes = (event) => {
.itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 1), '#tfc:steam_bloomery_basic_fuels')
.itemOutputs('tfc:raw_iron_bloom')
.duration(2400)
.EUt(GTValues.VEX[GTValues.ULV])
.EUt(2)
event.recipes.gtceu.steam_bloomery(`steam_raw_iron_bloom_coalcoke_${material.getName()}`)
.itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 2), '#tfc:blast_furnace_fuel')
.itemOutputs('2x tfc:raw_iron_bloom')
.duration(2400)
.EUt(GTValues.VEX[GTValues.ULV])
.EUt(2)
}
})