New content for ULV + LV (#2873)

* require black steel plates before the forge hammer, add some blue steel things post-deployer that require a colored steel anvil, start refractory clay dust

* first draft of bakelite, new phenolic boards, new cupro coils

* add another page to the medicine quest

* cl

* backup of lv quests

* quest stuff and some recipe tweaks

* tweak

---------

Co-authored-by: Redeix <redeix.m@gmail.com>
This commit is contained in:
Pyritie 2026-01-27 00:10:22 +00:00 committed by GitHub
parent 1190408623
commit f324e7e6da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 1092 additions and 493 deletions

View file

@ -25,7 +25,6 @@ function registerTFGPrimitiveItems(event) {
// Chipboard
event.create('tfg:chipboard_composite')
event.create('tfg:treated_chipboard_composite')
event.create('tfg:high_density_treated_fiberboard')
// Wax
event.create('tfg:paraffin_wax')

View file

@ -94,5 +94,35 @@ function registerTFGPrimitiveMaterials(event) {
.dust()
.color(0xf0ccb4)
.formula("C6H3(OH)3")
.iconSet('rough')
.iconSet(GTMaterialIconSet.ROUGH)
// Fire clay
event.create('tfg:refractory_clay')
.dust()
.iconSet(GTMaterialIconSet.ROUGH)
.color(0xB49AA2)
.secondaryColor(0x60545F)
// Weak colored steel
event.create('tfg:weak_blue_steel')
.dust()
.ingot()
.liquid()
.components('1x sterling_silver', '1x bismuth_bronze', '2x steel', '4x black_steel')
.blastTemp(1000, null, GTValues.VA[GTValues.MV], 25 * 20)
.color(0x697FBD)
.secondaryColor(0x384B82)
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.NO_SMELTING, GTMaterialFlags.DISABLE_ALLOY_BLAST)
.iconSet(GTMaterialIconSet.METALLIC)
event.create('tfg:weak_red_steel')
.dust()
.ingot()
.liquid()
.components('1x brass', '1x rose_gold', '2x steel', '4x black_steel')
.blastTemp(1000, null, GTValues.VA[GTValues.MV], 25 * 20)
.color(0xB55C5C)
.secondaryColor(0x7D3232)
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.NO_SMELTING, GTMaterialFlags.DISABLE_ALLOY_BLAST)
.iconSet(GTMaterialIconSet.METALLIC)
}