

Drip
The Drip mod is a highly customizable extension for working with dripstone formations in Minecraft. With it, you can create drips with various fluids, opening up new possibilities for decoration and gameplay mechanics.
Installation and Usage
To use the mod, you'll need:
- Minecraft version 1.19 or newer
- Drip mod installed
- One of the supported mod loaders: Quilt or Fabric
After installing all necessary components, you can configure the mod's behavior through the configuration file config/drip.json
. A client version of the mod is not required but may be useful for accurate visual effects.
Configuration Settings
Example configuration file
{
// Main entries for blocks and their properties
"entries": {
// Magma block creates lava
"minecraft:magma_block": {
// Sets the drip fluid to lava
"fluid": "minecraft:lava",
// Doesn't replace the block
"replace": false
},
// Ice creates water
"minecraft:ice": {
// Sets the drip fluid to water
"fluid": "minecraft:water",
// Also doesn't replace the block
"replace": false
}
}
}