From 2a138d9aadbf4e72ea71d7281ba0ec54bce281c3 Mon Sep 17 00:00:00 2001 From: VES <35824499+Arithkauv@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:32:50 -0400 Subject: [PATCH] Update fluids.js Noticed a comment in the file about how some alloys needed to be added, so I included them into this file. Added: - Battery Alloy (Modern Industrialization) - Blastproof Alloy (Modern Industrialization) There were also some alloys I wasn't sure if I should add, either because they weren't MI, or because they did not have an ingot form. So I did NOT add them. These are: - Andesite Alloy (Create) - Nuclear Alloy (Modern Industrialization) - Advanced Alloy (Tech Reborn) --- kubejs/startup_scripts/fluids.js | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/kubejs/startup_scripts/fluids.js b/kubejs/startup_scripts/fluids.js index 1ac09559..4f96639f 100644 --- a/kubejs/startup_scripts/fluids.js +++ b/kubejs/startup_scripts/fluids.js @@ -25,4 +25,22 @@ StartupEvents.registry('fluid', event => { .noBucket() // Alloys (TO BE DONE) -}) \ No newline at end of file + // Battery Alloy + event.create('molten_battery_alloy') + .thickTexture(0x93758D) + .bucketColor(0x93758D) + .displayName('Molten Battery Alloy') + .luminosity(8) + .noBucket() + + // Blastproof Alloy + event.create('molten_blastproof_alloy') + .thickTexture(0x59523F) + .bucketColor(0x59523F) + .displayName('Molten Blastproof Alloy') + .luminosity(0) + .noBucket() + + // Advanced Alloy ? + // Andesite Alloy ? +})