Skip to content

Commit

Permalink
Fix issue Laskyyy#430
Browse files Browse the repository at this point in the history
  • Loading branch information
Druivenpasta authored Nov 13, 2024
1 parent fcd1b9c commit 75dad9b
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions kubejs/startup_scripts/fluid_registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,63 +6,69 @@ onEvent("fluid.registry", (event) => {
.bucketColor(0xc41a39)
.displayName("Calorite")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")
.tag("tconstruct:tooltips/metal")

event
.create("molten_ostrum")
.thickTexture(0x73515e)
.bucketColor(0x73515e)
.displayName("Ostrum")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")
.tag("tconstruct:tooltips/metal")

event
.create("molten_desh")
.thickTexture(0xec8742)
.bucketColor(0xec8742)
.displayName("Desh")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")
.tag("tconstruct:tooltips/metal")

event
.create("molten_yttrium")
.thickTexture(0x487d77)
.bucketColor(0x487d77)
.displayName("Yttrium")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")
.tag("tconstruct:tooltips/metal")

event
.create("molten_shadowsteel")
.thickTexture(0x2e2742)
.bucketColor(0x2e2742)
.displayName("Shadow Fluid")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")
.tag("tconstruct:tooltips/metal")

event
.create("molten_radiance")
.thickTexture(0xf7f2ff)
.bucketColor(0xf7f2ff)
.displayName("Radiant Residue")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")
.tag("tconstruct:tooltips/metal")

event
.create("aurorite")
.thickTexture(0xc8e9e9)
.bucketColor(0xc8e9e9)
.displayName("Aurorite")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")

event
.create("metabolic_broth")
.thickTexture(0xC3B1E1)
.bucketColor(0xC3B1E1)
.displayName("Metabolic Broth")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")

event
.create("plasma_fluid")
Expand Down Expand Up @@ -107,7 +113,8 @@ onEvent("fluid.registry", (event) => {
.bucketColor(0x959595)
.displayName("Blast-Resistant Cement")
.stillTexture("tconstruct:block/fluid/molten/still")
.flowingTexture("tconstruct:block/fluid/molten/flowing");
.flowingTexture("tconstruct:block/fluid/molten/flowing")
.tag("tconstruct:tooltips/metal")

event
.create("red_grape_juice")
Expand Down

0 comments on commit 75dad9b

Please sign in to comment.