init
This commit is contained in:
commit
a956daf8e2
2351 changed files with 163047 additions and 0 deletions
30
kubejs/startup_scripts/registry/fluid_registry.js
Normal file
30
kubejs/startup_scripts/registry/fluid_registry.js
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/**
|
||||
* Fluid Registry - defines ID, name,
|
||||
* color, and temperature of custom fluids.
|
||||
*/
|
||||
StartupEvents.registry("fluid", event => {
|
||||
|
||||
// Thermal Expansion Fluids
|
||||
event.create("molten_pyrotheum")
|
||||
.bucketColor(Color.rgba(247, 219, 58, 255))
|
||||
.displayName("§6Blazing Pyrotheum") // orange
|
||||
.temperature(8190)
|
||||
.stillTexture("kubejs:block/pyrotheum_still")
|
||||
.flowingTexture("kubejs:block/pyrotheum_flow");
|
||||
event.create("molten_cryotheum")
|
||||
.bucketColor(Color.rgba(67, 244, 247, 255))
|
||||
.displayName("§bGelid Cryotheum") // aqua
|
||||
.temperature(5)
|
||||
.stillTexture("kubejs:block/cryotheum_still")
|
||||
.flowingTexture("kubejs:block/cryotheum_flow");
|
||||
event.create("molten_petrotheum")
|
||||
.bucketColor(Color.rgba(26, 19, 16, 255))
|
||||
.displayName("§8Tectonic Petrotheum") // darkGray
|
||||
.stillTexture("kubejs:block/petrotheum_still")
|
||||
.flowingTexture("kubejs:block/petrotheum_flow");
|
||||
event.create("molten_aerotheum")
|
||||
.bucketColor(Color.rgba(200, 218, 148, 255))
|
||||
.displayName("§7Zephyrean Aerotheum") // gray
|
||||
.stillTexture("kubejs:block/aerotheum_still")
|
||||
.flowingTexture("kubejs:block/aerotheum_flow");
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue