changing a lot of custom formulas to components for moldraw coloring

This commit is contained in:
Pyritie 2025-11-08 02:38:14 +00:00
parent d1c1ddff95
commit 52e81ba582
8 changed files with 72 additions and 63 deletions

View file

@ -12,6 +12,7 @@
- Added a sky stone block recipe to the rock breaker (#2159) @Pyritie - Added a sky stone block recipe to the rock breaker (#2159) @Pyritie
- Improved the tag for cleanroom doors @Pyritie - Improved the tag for cleanroom doors @Pyritie
- The food oven and refrigerator now emit heat (for TFC ambiental) @Pyritie - The food oven and refrigerator now emit heat (for TFC ambiental) @Pyritie
- Dioxygen Difluoride is now cryogenic and acidic @Pyritie
### Bug fixes ### Bug fixes
- Fixed TFC bug where paths and roads can collapse on themselves when creating a staircase shape. (#2144) @Redeix - Fixed TFC bug where paths and roads can collapse on themselves when creating a staircase shape. (#2144) @Redeix
- Fixed the HV aqueous accumulator water recipe so the amount of water can actually fit in the HV machine @Pyritie - Fixed the HV aqueous accumulator water recipe so the amount of water can actually fit in the HV machine @Pyritie

View file

@ -4,7 +4,7 @@ debugMode: false
coloredAtoms: true coloredAtoms: true
useMaterialColors: false useMaterialColors: true
onlyShowOnShift: true onlyShowOnShift: true

View file

@ -11,7 +11,7 @@ const registerAE2Materials = (event) => {
GTMaterialFlags.CRYSTALLIZABLE, GTMaterialFlags.CRYSTALLIZABLE,
GTMaterialFlags.DISABLE_DECOMPOSITION GTMaterialFlags.DISABLE_DECOMPOSITION
) )
.components('1x nether_quartz', '1x certus_quartz') .components('1x unknown', '1x nether_quartz', '1x certus_quartz')
.color(0x8f5ccb) .color(0x8f5ccb)
.secondaryColor(0x252f5a) .secondaryColor(0x252f5a)
} }

View file

@ -9,5 +9,6 @@ const registerGreateMaterialModification = (event) => {
GTMaterialFlags.GENERATE_LENS GTMaterialFlags.GENERATE_LENS
); );
GTMaterials.get('andesite_alloy').setFormula("?", true) GTMaterials.get('andesite_alloy').setComponents([])
GTMaterials.get('andesite_alloy').setFormula("?")
} }

View file

@ -422,10 +422,7 @@ const registerGTCEuMaterialModification = (event) => {
rose_quartz.getProperty(PropertyKey.ORE).setOreByProducts(rose_quartz, GTMaterials.Redstone, rose_quartz); rose_quartz.getProperty(PropertyKey.ORE).setOreByProducts(rose_quartz, GTMaterials.Redstone, rose_quartz);
rose_quartz.setMaterialIconSet(GTMaterialIconSet.getByName('nether_quartz')) rose_quartz.setMaterialIconSet(GTMaterialIconSet.getByName('nether_quartz'))
GTMaterials.get('tfg:kaolinite').setFormula("Al2Si2O5(OH)4", true) GTMaterials.CertusQuartz.setComponents('1x unknown', '1x silicon', '2x oxygen')
GTMaterials.get('tfg:vitrified_pearl').setFormula("(Al2Si2O5(OH)4)(BeK4N5)", true) GTMaterials.GraniteRed.setComponents([])
GTMaterials.get('tfg:tmos').setFormula("Si(OCH3)4", true) GTMaterials.GraniteRed.setFormula("?")
GTMaterials.get('tfg:fluix').setFormula("?(?SiO2)(SiO2)", true)
GTMaterials.CertusQuartz.setFormula("?SiO2", true)
GTMaterials.GraniteRed.setFormula("?", true)
} }

View file

@ -3,6 +3,10 @@
const registerTFGMaterials = (event) => { const registerTFGMaterials = (event) => {
event.create('unknown')
.color('0xFFFFFF')
.formula('?')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('hardwood') event.create('hardwood')
.dust() .dust()
@ -155,6 +159,7 @@ const registerTFGMaterials = (event) => {
.components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen') .components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen')
.color(0xEEB9AD) .color(0xEEB9AD)
.secondaryColor(0xF6A797) .secondaryColor(0xF6A797)
.formula("Al2Si2O5(OH)4")
event.create('tfg:vitrified_pearl') event.create('tfg:vitrified_pearl')
.dust() .dust()
@ -162,6 +167,7 @@ const registerTFGMaterials = (event) => {
.components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen', '1x ender_pearl') .components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen', '1x ender_pearl')
.color(0xFFFFFF) .color(0xFFFFFF)
.secondaryColor(0x67FFE6) .secondaryColor(0x67FFE6)
.formula("(Al2Si2O5(OH)4)(BeK4N5)")
//#region Solar Panel Chemicals //#region Solar Panel Chemicals
@ -182,7 +188,8 @@ const registerTFGMaterials = (event) => {
event.create('tfg:solar_coolant_tier2') event.create('tfg:solar_coolant_tier2')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(73)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(73))
.formula('(He³8O11H11)8(Ar)(?)') .components('8x tfg:solar_coolant', '1x argon')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xfeff5d) .color(0xfeff5d)
//#endregion //#endregion
@ -253,7 +260,7 @@ const registerTFGMaterials = (event) => {
event.create('tfg:dimethyl_carbonate') event.create('tfg:dimethyl_carbonate')
.liquid() .liquid()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING) .flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('3x carbon','6x hydrogen', '3x oxygen') .components('3x formaldehyde') // CH2O
.color(0xFFFFF2) .color(0xFFFFF2)
event.create('tfg:methyl_phenylcarbamate') event.create('tfg:methyl_phenylcarbamate')
.liquid() .liquid()
@ -275,6 +282,7 @@ const registerTFGMaterials = (event) => {
//#region aerogel //#region aerogel
event.create('tfg:tmos') event.create('tfg:tmos')
.liquid() .liquid()
.formula("Si(OCH3)4")
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xC2C6CC) .color(0xC2C6CC)
event.create('tfg:silica_gel') event.create('tfg:silica_gel')
@ -300,22 +308,26 @@ const registerTFGMaterials = (event) => {
event.create('hot_chlorinated_brominated_brine') event.create('hot_chlorinated_brominated_brine')
.liquid(320) .liquid(320)
.color(0xbf8d5a) .color(0xbf8d5a)
.formula('?Cl') .components('1x unknown', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('brominated_chlorine_vapor') event.create('brominated_chlorine_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(320)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(320))
.color(0xbf8d5a) .color(0xbf8d5a)
.formula('ClBr(H2O)') .components('1x chlorine', '1x bromine', '1x water')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('acidic_bromine_solution') event.create('acidic_bromine_solution')
.liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID)) .liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID))
.color(0xe7b989) .color(0xe7b989)
.formula('ClBr') .components('1x chlorine', '1x bromine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('concentrated_bromine_solution') event.create('concentrated_bromine_solution')
.liquid() .liquid()
.color(0x905d29) .color(0x905d29)
.formula('Br2Cl') .components('1x bromine', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('debrominated_brine') event.create('debrominated_brine')
.liquid() .liquid()
@ -324,12 +336,14 @@ const registerTFGMaterials = (event) => {
event.create('acidic_bromine_exhaust') event.create('acidic_bromine_exhaust')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).attribute(GTFluidAttributes.ACID).temperature(293)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).attribute(GTFluidAttributes.ACID).temperature(293))
.color(0xec9c4a) .color(0xec9c4a)
.formula('(H2O)3Cl') .components('3x water', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('hot_alkaline_debrominated_brine') event.create('hot_alkaline_debrominated_brine')
.liquid() .liquid()
.color(0xcc6a06) .color(0xcc6a06)
.formula('?2Cl') .components('2x unknown', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('hot_debrominated_brine') event.create('hot_debrominated_brine')
.liquid(320) .liquid(320)
@ -338,7 +352,7 @@ const registerTFGMaterials = (event) => {
event.create('hydrogen_iodide') event.create('hydrogen_iodide')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(293)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(293))
.color(0x82a6ce) .color(0x82a6ce)
.formula('HI') .components('1x hydrogen', '1x iodine')
//#endregion //#endregion
@ -346,19 +360,15 @@ const registerTFGMaterials = (event) => {
event.create('lightweight_ostrum_vapor') event.create('lightweight_ostrum_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(760)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(760))
.formula('(?)')
event.create('ostrum_vapor') event.create('ostrum_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(815)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(815))
.formula('(?)')
event.create('dense_ostrum_vapor') event.create('dense_ostrum_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(930)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(930))
.formula('(?)')
event.create('residual_radioactive_concoction') event.create('residual_radioactive_concoction')
.liquid(new GTFluidBuilder().customStill().temperature(450)) .liquid(new GTFluidBuilder().customStill().temperature(450))
.formula('(?)')
//#endregion //#endregion
@ -413,18 +423,22 @@ const registerTFGMaterials = (event) => {
.components('2x sodium','1x tungsten', '4x oxygen') .components('2x sodium','1x tungsten', '4x oxygen')
.color('0xdcf6f7') .color('0xdcf6f7')
event.create('tfg:tungstate')
.components('2x hydrogen', '12x tungsten', '42x oxygen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('tfg:ammonium_tungstate') event.create('tfg:ammonium_tungstate')
.dust() .dust()
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.DULL) .iconSet(GTMaterialIconSet.DULL)
.formula('(NH4)10(H2W12O42)') .components('10x ammonia', '1x tfg:tungstate')
.color('0xfafafa') .color('0xfafafa')
event.create('tfg:apt') event.create('tfg:apt')
.gem() .gem()
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.FLINT) .iconSet(GTMaterialIconSet.FLINT)
.formula("(NH4)10(H2W12O42)(H2O)4") .components('10x ammonia', '1x tfg:tungstate', '4x water')
.color('0xaabdf0') .color('0xaabdf0')
event.create('tfg:tungsten_oxide') event.create('tfg:tungsten_oxide')

View file

@ -26,55 +26,49 @@ const registerTFGNuclearMaterials = (event) => {
event.create('dense_steam') event.create('dense_steam')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730))
.components('2x hydrogen', '1x oxygen') .components('2x hydrogen', '1x oxygen')
.flags( .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('radioactive_steam') event.create('radioactive_steam')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730))
.components('2x hydrogen', '1x oxygen') .components('1x water', '1x unknown')
.formula('H2O(?)')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('radioactive_waste') event.create('radioactive_waste')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(3730))
.formula("(?)") .components('1x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('irradiated_steam') event.create('irradiated_steam')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(4250)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(4250))
.formula("(?)") .components('1x water', '1x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('tfg:heavy_water') event.create('tfg:heavy_water')
.liquid(new GTFluidBuilder().temperature(236)) .liquid(new GTFluidBuilder().temperature(236))
.components('2x deuterium', '1x oxygen') .components('2x deuterium', '1x oxygen')
.iconSet(GTMaterialIconSet.FINE)
.color(0xB5B9FF) .color(0xB5B9FF)
.secondaryColor(0x81FFF9) .secondaryColor(0x81FFF9)
event.create('tfg:semiheavy_water') event.create('tfg:semiheavy_water')
.liquid(new GTFluidBuilder().temperature(213)) .liquid(new GTFluidBuilder().temperature(213))
.components('1x deuterium', '1x hydrogen', '1x oxygen') .components('1x deuterium', '1x hydrogen', '1x oxygen')
.iconSet(GTMaterialIconSet.FINE)
.color(0xb5ffff) .color(0xb5ffff)
.secondaryColor(0x81FFF9) .secondaryColor(0x81FFF9)
event.create('uranium_waste') event.create('uranium_waste')
.liquid(new GTFluidBuilder().customStill().temperature(3850)) .liquid(new GTFluidBuilder().customStill().temperature(3850))
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.FINE)
.color(0xB5B9FF) .color(0xB5B9FF)
.secondaryColor(0x81FFF9) .secondaryColor(0x81FFF9)
event.create('nuclear_waste') event.create('nuclear_waste')
.liquid(new GTFluidBuilder().customStill().temperature(3850)) .liquid(new GTFluidBuilder().customStill().temperature(3850))
.components('1x thorium', '1x uranium', '1x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.formula('ThU(?)')
event.create('dirty_hexafluorosilicic_acid') event.create('dirty_hexafluorosilicic_acid')
.liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID)) .liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID))
//.liquid(320) .components('2x hydrogen', '1x silicon', '6x fluorine', '1x unknown')
.formula('H2SiF6(?)')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xe6fafb) .color(0xe6fafb)
.secondaryColor(0xb5fdff) .secondaryColor(0xb5fdff)
@ -82,23 +76,21 @@ const registerTFGNuclearMaterials = (event) => {
event.create('martian_sludge') event.create('martian_sludge')
.liquid(new GTFluidBuilder().temperature(4239)) .liquid(new GTFluidBuilder().temperature(4239))
.formula('(?)') .components('1x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xd86f27) .color(0xd86f27)
.secondaryColor(0xecd7c9) .secondaryColor(0xecd7c9)
.iconSet(GTMaterialIconSet.getByName('bullshit')) .iconSet(GTMaterialIconSet.getByName('bullshit'))
event.create('dioxygen_difluoride') event.create('dioxygen_difluoride')
.fluid() .liquid(new GTFluidBuilder().temperature(110).attribute(GTFluidAttributes.ACID))
.components('2x oxygen', '2x fluorine') .components('2x oxygen', '2x fluorine')
.iconSet(GTMaterialIconSet.FINE)
.color(0xfcb603) .color(0xfcb603)
.secondaryColor(0xfc5e03) .secondaryColor(0xfc5e03)
event.create('tritiated_water') event.create('tritiated_water')
.fluid() .fluid()
.components('2x tritium', '1x oxygen') .components('2x tritium', '1x oxygen')
.iconSet(GTMaterialIconSet.FINE)
.color(0xb2c3e7) .color(0xb2c3e7)
// FLiBe Line // FLiBe Line
@ -108,26 +100,33 @@ const registerTFGNuclearMaterials = (event) => {
event.create('hot_iodine_brine') event.create('hot_iodine_brine')
.liquid(new GTFluidBuilder().customStill().temperature(293)) .liquid(new GTFluidBuilder().customStill().temperature(293))
.formula('HIMgCl(?)') .components('1x hydrogen', '1x iodine', '1x magnesium', '1x chlorine', '1x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('brominated_iodine_vapor') event.create('brominated_iodine_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(412)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(412))
.formula('HI(?)') .components('1x hydrogen', '1x iodine', '1x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('basic_bromine_exhaust') event.create('basic_bromine_exhaust')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(406)) .gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(406))
.components('1x bromine', '1x unknown')
event.create('dirty_flibe') .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.liquid(new GTFluidBuilder().customStill().temperature(293))
.formula('FLiBe(?)')
event.create('flibe') event.create('flibe')
.liquid(new GTFluidBuilder().customStill().temperature(293)) .liquid(new GTFluidBuilder().customStill().temperature(293))
.formula('FLiBe') .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.components('1x fluorine', '1x lithium', '1x beryllium')
event.create('dirty_flibe')
.liquid(new GTFluidBuilder().customStill().temperature(293))
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.components('1x flibe', '1x unknown')
event.create('hot_flibe') event.create('hot_flibe')
.liquid(new GTFluidBuilder().customStill().temperature(3293)) .liquid(new GTFluidBuilder().customStill().temperature(3293))
.formula('FLiBe') .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.components('1x flibe')
//#endregion //#endregion
@ -135,7 +134,7 @@ const registerTFGNuclearMaterials = (event) => {
event.create('tfg:nuclear_residue') event.create('tfg:nuclear_residue')
.dust() .dust()
.formula('(?)') .components('1x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.SHINY) .iconSet(GTMaterialIconSet.SHINY)
.color(0x332816) .color(0x332816)
@ -144,7 +143,7 @@ const registerTFGNuclearMaterials = (event) => {
event.create('tfg:oxidized_nuclear_residue') event.create('tfg:oxidized_nuclear_residue')
.dust() .dust()
.formula('U?O?(?)') .components('1x uranium', '1x oxygen', '2x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.SHINY) .iconSet(GTMaterialIconSet.SHINY)
.color(0x286529) .color(0x286529)
@ -153,7 +152,7 @@ const registerTFGNuclearMaterials = (event) => {
event.create('tfg:refined_nuclear_residue') event.create('tfg:refined_nuclear_residue')
.dust() .dust()
.formula('U?(?)') .components('1x uranium', '2x unknown')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0x82c383) .color(0x82c383)
.secondaryColor('0xffffff') .secondaryColor('0xffffff')
@ -164,7 +163,6 @@ const registerTFGNuclearMaterials = (event) => {
event.create('lithium_carbonate') event.create('lithium_carbonate')
.dust() .dust()
.components('2x lithium', '1x carbon', '3x oxygen') .components('2x lithium', '1x carbon', '3x oxygen')
.formula('Li2CO3')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xffffff) .color(0xffffff)
.secondaryColor(0xb7b9bd) .secondaryColor(0xb7b9bd)
@ -173,7 +171,6 @@ const registerTFGNuclearMaterials = (event) => {
event.create('lithium_fluoride') event.create('lithium_fluoride')
.gem() .gem()
.components('1x lithium', '1x fluorine') .components('1x lithium', '1x fluorine')
.formula('LiF')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.color(0xffffff) .color(0xffffff)
.secondaryColor(0xb7b9bd) .secondaryColor(0xb7b9bd)
@ -182,7 +179,6 @@ const registerTFGNuclearMaterials = (event) => {
event.create('tetrafluoroberyllate') event.create('tetrafluoroberyllate')
.gem() .gem()
.components('1x beryllium', '4x fluorine') .components('1x beryllium', '4x fluorine')
.formula('BeF4')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES) .flags(GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.color(0xdcdee1) .color(0xdcdee1)
.secondaryColor(0xb7b9bd) .secondaryColor(0xb7b9bd)

View file

@ -7121,7 +7121,7 @@
] ]
}, },
{ {
"pakku_id": "WTbDrl3JrTmqPQaW", "pakku_id": "QHcH7jVuZ4XwJ61j",
"pakku_links": [ "pakku_links": [
"WN9DdLqsRKVeZIc9" "WN9DdLqsRKVeZIc9"
], ],
@ -7138,7 +7138,7 @@
"files": [ "files": [
{ {
"type": "curseforge", "type": "curseforge",
"file_name": "gtmoldraw-2.0.0.jar", "file_name": "gtmoldraw-2.0.1.jar",
"mc_versions": [ "mc_versions": [
"1.20.1" "1.20.1"
], ],
@ -7146,18 +7146,18 @@
"forge" "forge"
], ],
"release_type": "release", "release_type": "release",
"url": "https://edge.forgecdn.net/files/7197/3/gtmoldraw-2.0.0.jar", "url": "https://edge.forgecdn.net/files/7197/329/gtmoldraw-2.0.1.jar",
"id": "7197003", "id": "7197329",
"parent_id": "1348330", "parent_id": "1348330",
"hashes": { "hashes": {
"sha1": "cd8c19e95f5ad36a5a439ef9a917c3e362ba5aac", "sha1": "701eb021adae14b1d1df909fa6fc8974aa01c8d6",
"md5": "ac3a8b5b9e4926cbca43f8000cfe2312" "md5": "9236597f2d9001eb79ad0f5af589a2f9"
}, },
"required_dependencies": [ "required_dependencies": [
"890405" "890405"
], ],
"size": 826370, "size": 826741,
"date_published": "2025-11-07T23:18:11.033Z" "date_published": "2025-11-08T02:02:14.183Z"
} }
] ]
}, },