big tidying of startup scripts!
This commit is contained in:
parent
bda35f7f6c
commit
0916fd2e21
50 changed files with 2767 additions and 2841 deletions
33
kubejs/startup_scripts/tfg/space_general/items.space.js
Normal file
33
kubejs/startup_scripts/tfg/space_general/items.space.js
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
"use strict";
|
||||
|
||||
function registerTFGSpaceItems(event) {
|
||||
|
||||
// Space suits
|
||||
event.create('tfg:space_suit_fabric')
|
||||
event.create('tfg:better_space_suit_fabric')
|
||||
|
||||
// Tier2 Insulation
|
||||
event.create('tfg:aes_wool')
|
||||
event.create('tfg:aes_compressed_wool')
|
||||
event.create('tfg:aes_insulation_sheet')
|
||||
event.create('tfg:aes_insulation_roll')
|
||||
|
||||
//Tier 2 Rocket Parts
|
||||
event.create('tfg:rocket_fin_t2')
|
||||
event.create('tfg:rocket_cone_t2')
|
||||
|
||||
//Tier 3 Insulation
|
||||
event.create('tfg:aes_polyurethane')
|
||||
event.create('tfg:mli_shielding')
|
||||
event.create('tfg:silica_aerogel')
|
||||
|
||||
//Tier 3 Rocket Parts
|
||||
event.create('tfg:rocket_fin_t3')
|
||||
event.create('tfg:rocket_cone_t3')
|
||||
event.create('tfg:elite_power_thruster')
|
||||
|
||||
// Solar Panel
|
||||
event.create('tfg:photo_cell_t1')
|
||||
.translationKey("item.tfg.basic.photovoltaic.cell")
|
||||
.texture('tfg:item/photo_cell_t1')
|
||||
}
|
||||
162
kubejs/startup_scripts/tfg/space_general/materials.rockets.js
Normal file
162
kubejs/startup_scripts/tfg/space_general/materials.rockets.js
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
"use strict";
|
||||
|
||||
function registerTFGRocketMaterials(event) {
|
||||
|
||||
// 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)
|
||||
*/
|
||||
|
||||
// Insulation
|
||||
event.create('vitrified_asbestos')
|
||||
.dust()
|
||||
.fluid()
|
||||
.iconSet('glass')
|
||||
.color(0xcccccc)
|
||||
|
||||
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)
|
||||
event.create('tfg:molten_aes')
|
||||
.liquid(2900)
|
||||
.flags(GTMaterialFlags.DISABLE_DECOMPOSITION)
|
||||
.components('5x silicon_dioxide', '4x quicklime', '1x magnesia')
|
||||
.color(0xe65609)
|
||||
.secondaryColor(0xe65609)
|
||||
|
||||
//#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
|
||||
|
||||
|
||||
// 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue