Skip to content

Commit a616064

Browse files
committed
Fixes:
- Layered mechanic quest icon - Component fluid costs inaccurate for component nexus - Adjustment to hellforge catalyst quest description
1 parent aa5b831 commit a616064

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

config/ftbquests/quests/chapters/mechanics.snbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,11 @@
284284
{
285285
dependencies: ["027C5CE3CFCB5649"]
286286
description: ["{ftbquests.mechanics.layered_inputs.description}"]
287+
icon: "gtceu:large_rotor_machine"
287288
id: "6AEB17C2D2AF5344"
288289
tasks: [{
289-
id: "4463F39E5E37E799"
290-
item: "gtceu:advanced_synthesis_plant"
291-
type: "item"
290+
id: "650C431936B805AA"
291+
type: "checkmark"
292292
}]
293293
title: "{ftbquests.mechanics.layered_inputs.title}"
294294
x: -1.5d

kubejs/assets/ftbquestlocalizer/lang/en_us.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@
468468
"ftbquests.draconic_age.end_city.title": "Cities of The Abyss",
469469
"ftbquests.draconic_age.end_talisman.description": "You have been granted protection in this place allowing you to forgo armor needs.\n\nAlternatively you can craft this after acquiring the appropriate means.",
470470
"ftbquests.draconic_age.enriched_pallarovium_alloy_ingot.description": "The §aUEV§r superconductor used in your machines and components.",
471-
"ftbquests.draconic_age.hell_forge_catalysts.description": "By using special catalysts you can achieve a §a33%%§r reduction in recipe time. The same type of bonus you would get with Gas Boosting in an §7EBF§r or §7ABS§r.",
471+
"ftbquests.draconic_age.hell_forge_catalysts.description": "By using special catalysts you can achieve a §a15%%§r reduction in recipe time, and a §a25%%§r increase in output yield",
472472
"ftbquests.draconic_age.hell_forge_catalysts.item_title": "Hell Forge Catalyst",
473473
"ftbquests.draconic_age.hell_forge_catalysts.title": "Catalyst Boosting",
474474
"ftbquests.draconic_age.hellforge.description": "A towering furnace, needing both fuel and power, to heat up materials to Mega-kelvins.",

kubejs/server_scripts/common/additions/progression/components/component_nexus.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ ServerEvents.recipes(event => {
108108
`4x #gtceu:circuits/${tier2}`,
109109
`4x gtceu:${cable}_single_cable`
110110
], [
111-
`gtceu:${solder} ${576*scaler}`,
111+
`gtceu:${solder} ${288*scaler}`,
112112
`gtceu:${lubricant} ${125*(2**scaler)}`
113113
]);
114114

@@ -121,7 +121,7 @@ ServerEvents.recipes(event => {
121121
`128x gtceu:fine_${superconductor}_wire`,
122122
`4x gtceu:${cable}_single_cable`
123123
], [
124-
`gtceu:${solder} ${576*scaler}`
124+
`gtceu:${solder} ${288*(2**scaler)}`
125125
]);
126126

127127
componentTypesNexus('emitter', [

0 commit comments

Comments
 (0)