neuralgia/kubejs/startup_scripts/tfg/fluids.js
Pyritie 4602044a59
add new blocks + fluids
Signed-off-by: Pyritie <pyritie@gmail.com>
2025-01-10 23:20:11 +00:00

28 lines
No EOL
600 B
JavaScript

const registerTFGFluids = (event) => {
event.create('tfg:nether_slurry')
.thickTexture(0x6b281b)
.bucketColor(0x6b281b)
.temperature(1000)
.luminosity(7)
.noBlock()
event.create('tfg:enriched_nether_slurry')
.thickTexture(0x99594d)
.bucketColor(0x99594d)
.temperature(1000)
.luminosity(7)
.noBlock()
event.create('tfg:ender_slurry')
.thickTexture(0x1b5c51)
.bucketColor(0x1b5c51)
.luminosity(2)
.noBlock()
event.create('tfg:enriched_ender_slurry')
.thickTexture(0x3a9178)
.bucketColor(0x3a9178)
.luminosity(2)
.noBlock()
}