big tidying of startup scripts!

This commit is contained in:
Pyritie 2025-12-01 23:39:42 +00:00
parent bda35f7f6c
commit 0916fd2e21
50 changed files with 2767 additions and 2841 deletions

View file

@ -7,128 +7,19 @@ const registerTFGMaterials = (event) => {
.color('0xFFFFFF')
.formula('?')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
registerTFGPowerReworkMaterials(event);
registerTFGNuclearMaterials(event);
registerTFGBiolineMaterials(event);
registerTFGPrimitiveMaterials(event);
registerTFGRockMaterials(event);
event.create('hardwood')
.dust()
.flags(GTMaterialFlags.FLAMMABLE)
.iconSet(GTMaterialIconSet.WOOD)
.color('0x7a5225')
.secondaryColor('0x7a5225')
registerTFGRocketMaterials(event);
registerTFGMoonMaterials(event);
registerTFGMarsMaterials(event);
registerTFGVenusMaterials(event);
registerTFGEuropaMaterials(event);
event.create('thermochemically_treated_hardwood')
.dust()
.flags(GTMaterialFlags.FLAMMABLE)
.iconSet(GTMaterialIconSet.WOOD)
.color('0x52482c')
.secondaryColor('0x52482c')
// Important tags to add to fluids:
// tfc:usable_in_pot, tfc:usable_in_barrel, tfc:usable_in_wooden_bucket
event.create('tfg:latex')
.liquid()
.color(0xFBB982)
event.create('tfg:vulcanized_latex')
.liquid()
.color(0xc79973)
event.create('tfg:conifer_pitch')
.liquid()
.color(0xfbdf82)
.secondaryColor(0xff9d2e)
// Ores
event.create('tarkianite')
.ore()
.components('1x copper', '1x iron', '4x rhenium', '4x molybdenum', '8x sulfur')
.color(0x8bb054)
.secondaryColor(0x3d8021)
.iconSet(GTMaterialIconSet.getByName('tfc_emerald'))
.addOreByproducts('sulfur', 'rhenium', 'molybdenum')
// Cooking
event.create('lactose')
.dust()
.iconSet(GTMaterialIconSet.FINE)
.color('0xede8da')
.secondaryColor('0xeddcad')
.components('12x carbon', '22x hydrogen', '11x oxygen')
// Used as a TFC aluminium substitute so you can't make actual aluminium ingots early
event.create('aluminium_silicate')
.dust()
.ingot()
.liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(1520))
.components('2x aluminium', '1x silicon', '5x oxygen')
.iconSet('metallic')
.color(0xB6D3FF)
.secondaryColor(0x6F4AB3)
// Space Rocket Materials
event.create('rocket_alloy_t1')
.ingot()
.components('6x aluminium', '2x stainless_steel', '1x red_steel')
.color(0x333e47)
.iconSet('metallic')
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR)
.blastTemp(1760, 'low', 256, 900)
event.create('rocket_alloy_t2')
.ingot()
.components('19x titanium', '4x vanadium', '3x aluminium', '3x chromium', '3x tin')
.color(0x3c253d)
.iconSet('metallic')
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR, GTMaterialFlags.DISABLE_ALLOY_BLAST)
.blastTemp(3200, 'mid', 1024, 1100)
.liquid()
/* event.create('rocket_alloy_t3')
.ingot()
.components('8x titanium', '9x tungsten_steel', '2x tantalum', '2x radon')
.color(0x6c678b)
//.secondaryColor(0xa59fc6)
.liquid()
.removeHazard()
.iconSet('metallic')
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR)
.blastTemp(4200, 'high', 4096, 1300)
*/
event.create('vitrified_asbestos')
.dust()
.fluid()
.iconSet('glass')
.color(0xcccccc)
// Space suit gases (these all add up to 10B of components = 1B of space suit gas)
event.create('tfg:compressed_nitrox')
.gas()
.components('8x nitrogen', '2x oxygen')
.color(0xaef5ef)
event.create('tfg:compressed_heliox')
.gas()
.components('8x helium', '2x oxygen')
.color(0xf5eeb3)
event.create('tfg:compressed_heliox_3')
.gas()
.components('8x helium_3', '2x oxygen')
.color(0xf5ea90)
event.create('tfg:compressed_trimix')
.gas()
.components('5x nitrogen', '3x oxygen', '2x helium')
.color(0xc3fab9)
event.create('tfg:compressed_trimix_3')
.gas()
.components('5x nitrogen', '3x oxygen', '2x helium_3')
.color(0xa3ed95)
// Refrigerants
@ -152,25 +43,8 @@ const registerTFGMaterials = (event) => {
.components('2x carbon', '2x hydrogen', '4x fluorine')
.color(0x46702e)
// Fission Component
event.create('tfg:tetrafluoroethane')
.fluid()
.gem()
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES, GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.QUARTZ)
.components('2x carbon', '2x hydrogen', '4x fluorine')
.color(0x46702e)
// Crafting components
event.create('tfg:kaolinite')
.dust()
.components('2x aluminium', '2x silicon', '9x oxygen', '4x hydrogen')
.color(0xEEB9AD)
.secondaryColor(0xF6A797)
.formula("Al2Si2O5(OH)4")
event.create('tfg:vitrified_pearl')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_CENTRIFUGING)
@ -179,250 +53,6 @@ const registerTFGMaterials = (event) => {
.secondaryColor(0x67FFE6)
.formula("(Al2Si2O5(OH)4)(BeK4N5)")
//#region Solar Panel Chemicals
event.create('tfg:chloryl_fluoride')
.gas()
.components('1x fluorine', '1x chlorine', '2x oxygen')
.color(0x8AFAF4)
event.create('tfg:chlorine_pentafluoride')
.gas()
.components('5x fluorine', '1x chlorine')
.color(0x51F7C0)
event.create('tfg:solar_coolant')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(163))
.components('8x helium_3', '11x oxygen', '11x hydrogen')
.color(0xEDFFB3)
event.create('tfg:solar_coolant_tier2')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(73))
.components('8x tfg:solar_coolant', '1x argon')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xfeff5d)
event.create('liquid_carbon_dioxide')
.liquid(100) //Not realistic but I want it to be cryogenic
.components('1x carbon', '2x oxygen')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xDBFBFF)
//#region Rockwool
event.create('tfg:aes_mix')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_CENTRIFUGING)
.components('5x silicon_dioxide', '4x quicklime', '1x magnesia')
.hazard(HazardProperty.HazardTrigger.SKIN_CONTACT, GTMedicalConditions.CHEMICAL_BURNS)
.color(0xE0E9E4)
//.secondaryColor(0x54483d)
event.create('tfg:molten_aes')
.liquid(2900)
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.components('5x silicon_dioxide', '4x quicklime', '1x magnesia')
.color(0xe65609)
.secondaryColor(0xe65609)
//#endregion
//#region Ammonia Borane
event.create('tfg:sodium_hydride')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('1x sodium', '1x hydrogen')
.color(0xEDF5F3)
event.create('tfg:boric_acid')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('3x hydrogen', '1x boron', '3x oxygen')
.color(0xDFEDDF)
.secondaryColor(0xDFEDDF)
event.create('tfg:trimethyl_borate')
.liquid()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('3x carbon', '9x hydrogen', '1x boron', '3x oxygen')
.color(0xF7F7F7)
event.create('tfg:sodium_borohydride')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('1x sodium', '1x boron', '4x hydrogen')
.color(0xE8F1FF)
.secondaryColor(0xE8F1FF)
event.create('tfg:sodium_methoxide')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('1x sodium', '1x oxygen', '1x carbon', '3x hydrogen')
.color(0xE8E5DF)
.secondaryColor(0xE8E5DF)
event.create('tfg:ammonia_borane')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING, GTMaterialFlags.GENERATE_PLATE)
.components('1x ammonia', '1x boron', '3x hydrogen')
.color(0xCCE3E3)
.secondaryColor(0xCCE3E3)
//#endregion
//#region polyurethane
event.create('tfg:aniline')
.liquid()
.components('6x carbon', '5x hydrogen', '1x nitrogen', '2x hydrogen')
.color(0xBAB999)
event.create('tfg:dimethyl_carbonate')
.liquid()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('3x formaldehyde') // CH2O
.color(0xFFFFF2)
event.create('tfg:methyl_phenylcarbamate')
.liquid()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('8x carbon','9x hydrogen','1x nitrogen', '2x oxygen')
.color(0xB4EDB4)
event.create('tfg:methylene_diphenyl_dicarbamate')
.liquid()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('17x carbon','18x hydrogen','2x nitrogen', '4x oxygen')
.color(0x69C2C1)
event.create('tfg:methylene_diphenyl_diisocyanate')
.dust()
.flags(GTMaterialFlags.DECOMPOSITION_BY_ELECTROLYZING)
.components('13x carbon','10x hydrogen','2x nitrogen', '2x oxygen')
.color(0xFFFFBA)
//#endregion
//#region aerogel
event.create('tfg:tmos')
.liquid()
.formula("Si(OCH3)4")
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xC2C6CC)
event.create('tfg:silica_gel')
.liquid()
.color(0x60BABF)
.secondaryColor(0xFFD38C)
event.create('tfg:soaked_silica_gel')
.liquid()
.color(0x9ED5D9)
//#endregion
//#region Bromine Line
event.create('raw_brine')
.fluid()
.color(0x947a11)
//.secondaryColor(0x81FFF9)
event.create('hot_brine')
.liquid(320)
.color(0x944611)
event.create('hot_chlorinated_brominated_brine')
.liquid(320)
.color(0xbf8d5a)
.components('1x unknown', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('brominated_chlorine_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(320))
.color(0xbf8d5a)
.components('1x chlorine', '1x bromine', '1x water')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('acidic_bromine_solution')
.liquid(new GTFluidBuilder().attribute(GTFluidAttributes.ACID))
.color(0xe7b989)
.components('1x chlorine', '1x bromine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('concentrated_bromine_solution')
.liquid()
.color(0x905d29)
.components('1x bromine', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('debrominated_brine')
.liquid()
.color(0xc3874a)
event.create('acidic_bromine_exhaust')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).attribute(GTFluidAttributes.ACID).temperature(293))
.color(0xec9c4a)
.components('3x water', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('hot_alkaline_debrominated_brine')
.liquid()
.color(0xcc6a06)
.components('2x unknown', '1x chlorine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
event.create('hot_debrominated_brine')
.liquid(320)
.color(0xb08e6b)
event.create('hydrogen_iodide')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(293))
.color(0x82a6ce)
.components('1x hydrogen', '1x iodine')
//#endregion
//#region Mars Ore Line
event.create('lightweight_ostrum_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(760))
event.create('ostrum_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(815))
event.create('dense_ostrum_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(930))
event.create('residual_radioactive_concoction')
.liquid(new GTFluidBuilder().customStill().temperature(450))
//#endregion
//#region Moon Ore Line
event.create('regolith_vapor')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).customStill().temperature(727))
event.create('tfg:certus_regolith')
.dust()
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.iconSet(GTMaterialIconSet.CERTUS)
.color('0xc1e6e4')
.secondaryColor('0x7a5225')
event.create('tfg:goethe_regolith')
.dust()
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.iconSet(GTMaterialIconSet.METALLIC)
.color('0xb0af5b')
.secondaryColor('0x7a5225')
event.create('tfg:bright_regolith')
.dust()
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.iconSet(GTMaterialIconSet.SHINY)
.color('0xf0efe9')
.secondaryColor('0xffffff')
event.create('tfg:cassiterite_regolith')
.dust()
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.iconSet(GTMaterialIconSet.METALLIC)
.color('0xbab6b7')
.secondaryColor('0x7a5225')
event.create('tfg:regolith_mush')
.dust()
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.iconSet(GTMaterialIconSet.WOOD)
.color('0xa2cde0')
.secondaryColor('0x7a5225')
//#endregion
//#region Tungsten Line
@ -456,23 +86,6 @@ const registerTFGMaterials = (event) => {
// #endregion
// #region Atmospheres
event.create('tfg:mars_air')
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(208))
.color('0xD08957')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.components('94x carbon_dioxide', '3x nitrogen', '2x argon', '1x oxygen')
// TODO: move neon and xenon somewhere else
event.create('tfg:liquid_mars_air')
.liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(58))
.color('0xD08957')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.components('80x carbon_dioxide', '7x nitrogen', '5x argon', '3x oxygen', '1x neon', '1x krypton', '1x xenon')
// #endregion
//#region New Alloy for Turbines
event.create('tfg:tungsten_bismuth_oxide_composite')
@ -495,46 +108,6 @@ const registerTFGMaterials = (event) => {
// #endregion
// #region Mars sap
event.create('tfg:crimsene')
.liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(220))
.gem()
.iconSet('lapis')
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.color(0xB12727)
.secondaryColor(0x562C3E)
event.create('tfg:warpane')
.liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(220))
.gem()
.iconSet('quartz')
.flags(GTMaterialFlags.DISABLE_MATERIAL_RECIPES)
.color(0x45ABA9)
.secondaryColor(0x562C3E)
event.create('tfg:mycelienzene')
.dust()
.color(0x9E7385)
event.create('tfg:cooked_mycelienzane')
.liquid(new GTFluidBuilder().state(GTFluidState.LIQUID).temperature(1830))
.color(0x9E7385)
event.create('tfg:iodomethane')
.liquid()
.components('1x carbon', '3x hydrogen', '1x iodine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xAC45C6)
event.create('tfg:trideuteroiodomethane')
.liquid()
.components('1x carbon', '3x deuterium', '1x iodine')
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.color(0xDD9DED)
// #endregion
// #region conductor
event.create('tfg:thermally_conductive_fluid')
.liquid()
@ -612,33 +185,4 @@ const registerTFGMaterials = (event) => {
.flags(GTMaterialFlags.GENERATE_PLATE)
// #endregion
//#region Food Materials(?)
event.create('tfg:sodium_dihydrogen_citrate')
.dust()
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.BRIGHT)
.components('6x carbon', '7x hydrogen', '1x sodium', '7x oxygen')
.color('0xE38818')
event.create('tfg:citric_acid')
.dust()
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
.iconSet(GTMaterialIconSet.SHINY)
.components('6x carbon', '8x hydrogen', '7x oxygen')
.color('0xE3AD18')
// I decided to make these materials because why not?
event.create('tfg:rich_stock')
.liquid(new GTFluidBuilder().customStill().state(GTFluidState.LIQUID).temperature(360));
event.create('tfg:light_stock')
.liquid(new GTFluidBuilder().customStill().state(GTFluidState.LIQUID).temperature(360));
event.create('tfg:brown_gravy')
.liquid(new GTFluidBuilder().customStill().state(GTFluidState.LIQUID).temperature(360));
//#endregion
}