Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/modflower/drip
A configurable dripstone mod. Requested by @QPCrummer
https://github.com/modflower/drip
Last synced: about 1 month ago
JSON representation
A configurable dripstone mod. Requested by @QPCrummer
- Host: GitHub
- URL: https://github.com/modflower/drip
- Owner: Modflower
- License: mit
- Created: 2022-08-19T00:06:24.000Z (over 2 years ago)
- Default Branch: 1.19.3/dev
- Last Pushed: 2024-02-28T03:08:23.000Z (10 months ago)
- Last Synced: 2024-05-01T19:43:15.464Z (8 months ago)
- Language: Java
- Size: 334 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Drip
A configurable dripstone mod.
## How to Use?
Requirements:
- Minecraft 1.19+
- [Drip](https://github.com/Modflower/drip/releases)
- One of either mod loader:
- [Quilt](https://quiltmc.org/install)
- [Fabric](https://fabricmc.net/use)Install Minecraft 1.19+, Drip and your mod loader of choice, then customise the config at `config/drip.json`. No client
mod is required, but you may want to install & configure for visual accuracy.## Config - `drip.json`
*Example configuration*
```json5
{
// Main entries of block -> {fluid, replace}
"entries": {
// Magma Block -> Lava
"minecraft:magma_block": {
// Sets the fluid to drip to lava.
"fluid": "minecraft:lava",
// Doesn't replace.
"replace": false
},
// Ice -> Water
"minecraft:ice": {
// Sets the fluid to drip to water.
"fluid": "minecraft:water",
// Also doesn't replace.
"replace": false
}
}
}
```