Feature/tier3 rocket (#1483)

* stuff for rocket

* worm

* Revert "worm"

This reverts commit fa2f0fc74727a7c7f15cbaae2365b8147b2e9313.

* Update blocks.js

* rocket stuff

* Update constants.js

* More

* final stuff

* probably disalbed everything

* Delete options.txt

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* Delete kubejs/startup_scripts/tfg/elements.js

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* dry ice change

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

* vacuum freezer change

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>

---------

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
GameStar 2025-07-30 14:33:50 -05:00 committed by GitHub
parent 0a0d793490
commit 125efd9ac1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 556 additions and 71 deletions

View file

@ -24,8 +24,6 @@ global.AD_ASTRA_DISABLED_ITEMS =
'ad_astra:fan',
'ad_astra:steel_tank',
'ad_astra:desh_tank',
'ad_astra:ostrum_tank',
'ad_astra:calorite_tank',
'ad_astra:ice_shard',
'ad_astra:oxygen_bucket',
'ad_astra:hydrogen_bucket',
@ -79,23 +77,30 @@ global.AD_ASTRA_DISABLED_ITEMS =
// Disabled until IV planets
'ad_astra:tier_3_rocket',
'ad_astra:ostrum_engine',
'ad_astra:ostrum_tank',
'tfg:rocket_fin_t3',
'tfg:rocket_cone_t3',
'tfg:elite_power_thruster',
'tfg:better_space_suit_fabric',
'ad_astra:netherite_space_helmet',
'ad_astra:netherite_space_suit',
'ad_astra:netherite_space_pants',
'ad_astra:netherite_space_boots',
'ad_astra:ostrum_engine',
// Disabled until LuV planet
'ad_astra:glacio_globe', // maybe
'ad_astra:tier_4_rocket',
'ad_astra:calorite_engine',
'ad_astra:calorite_tank',
'ad_astra:jet_suit_helmet',
'ad_astra:jet_suit',
'ad_astra:jet_suit_pants',
'ad_astra:jet_suit_boots',
'ad_astra:calorite_engine'
'ad_astra:jet_suit_boots'
];
global.AD_ASTRA_DISABLED_FLUIDS =

View file

@ -35,17 +35,21 @@ const registerAdAstraMaterials = (event) => {
GTMaterialFlags.DISABLE_ALLOY_BLAST
)
// mars?
// mars
event.create('ostrum')
//.components('2x scheelite', '1x hematite', '1x rutile', '4x oxygen')
//.components('3x scheelite', '2x hematite', '2x thorium', '4x oxygen')
.color(0xbd7980)
.secondaryColor(0xA66C8D)
.iconSet(GTMaterialIconSet.getByName('tfc_cassiterite'))
.ore()
.dust()
.ingot()
.liquid()
.blastTemp(2900, 'mid', GTValues.VA[GTValues.HV])
.flags(
GTMaterialFlags.FORCE_GENERATE_BLOCK,
GTMaterialFlags.GENERATE_PLATE
GTMaterialFlags.GENERATE_PLATE,
GTMaterialFlags.DISABLE_ALLOY_BLAST
)
// venus?

View file

@ -230,6 +230,8 @@ const registerGTCEuMaterialModification = (event) => {
GTMaterials.Cupronickel.addFlags(GENERATE_BOLT_SCREW, GENERATE_RING);
GTMaterials.Ultimet.addFlags(GENERATE_ROTOR)
GTMaterials.Invar.addFlags(GENERATE_RING);
GTMaterials.Magnalium.addFlags(GENERATE_RING);
GTMaterials.TinAlloy.addFlags(GENERATE_RING);
@ -360,5 +362,6 @@ const registerGTCEuMaterialModification = (event) => {
GTCEuAPI.materialManager.getMaterial('tfg:kaolinite').setFormula("Al2Si2O5(OH)4", true)
GTCEuAPI.materialManager.getMaterial('tfg:vitrified_pearl').setFormula("(Al2Si2O5(OH)4)(BeK4N5)", true)
GTCEuAPI.materialManager.getMaterial('tfg:tmos').setFormula("Si(OCH3)4", true)
}

View file

@ -72,7 +72,6 @@ GTCEuStartupEvents.registry('gtceu:dimension_marker', event => {
registerTFGDimensionMarkers(event)
})
GTCEuStartupEvents.registry("gtceu:element", event => {
registerTFGElement(event)
})

View file

@ -340,7 +340,7 @@ const registerTFGItems = (event) => {
.translationKey('tfg:nitrocellulose')
//endregion
//RockWool
//Tier2 Insulation
event.create('tfg:aes_wool')
.translationKey('tfg:aes_wool')
event.create('tfg:aes_compressed_wool')
@ -353,9 +353,21 @@ const registerTFGItems = (event) => {
//Tier 2 Rocket Parts
event.create('tfg:rocket_fin_t2')
.translationKey('tfg:rocket_fin_t2')
event.create('tfg:rocket_cone_t2')
.translationKey('tfg:rocket_cone_t2')
//endregion
//Tier 3 Insulation
event.create('tfg:aes_polyurethane')
event.create('tfg:mli_shielding')
event.create('tfg:silica_aerogel')
//endregion
//Tier 3 Rocket Parts
event.create('tfg:rocket_fin_t3')
event.create('tfg:rocket_cone_t3')
event.create('tfg:elite_power_thruster')
event.create('tfg:better_space_suit_fabric')
//endregion
//#region Universal compost items

View file

@ -51,7 +51,9 @@ const registerTFGMaterials = (event) => {
.color(0x333e47)
.iconSet('metallic')
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR)
.blastTemp(1760, 'low', 256, 1200)
.blastTemp(1760, 'low', 256, 900)
/*
event.create('rocket_alloy_t2')
.ingot()
@ -59,8 +61,19 @@ const registerTFGMaterials = (event) => {
.color(0x3c253d)
.iconSet('metallic')
.flags(GTMaterialFlags.GENERATE_PLATE, GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_DENSE, GTMaterialFlags.GENERATE_GEAR)
.blastTemp(4500, 'mid', 1024, 1200)
.blastTemp(3200, 'mid', 1024, 1100)
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()
@ -149,6 +162,11 @@ const registerTFGMaterials = (event) => {
.color(0xEDFFB3)
//end region
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')
@ -165,6 +183,84 @@ const registerTFGMaterials = (event) => {
.color(0xe65609)
.secondaryColor(0xe65609)
//end region
//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 carbon','6x hydrogen', '3x oxygen')
.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()
.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
@ -219,5 +315,4 @@ const registerTFGMaterials = (event) => {
.gas(new GTFluidBuilder().state(GTFluidState.GAS).temperature(293))
.color(0x82a6ce)
.formula('HI')
}