https://github.com/ftbteam/ftb-dripper
https://github.com/ftbteam/ftb-dripper
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/ftbteam/ftb-dripper
- Owner: FTBTeam
- Created: 2021-08-27T09:16:10.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-05-24T15:39:13.000Z (about 3 years ago)
- Last Synced: 2025-01-21T23:25:23.544Z (over 1 year ago)
- Language: Java
- Size: 134 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FTB Dripper
A simple mod allowing blocks to be slowly transformed into other blocks by dripping a fluid on them.
Use https://github.com/FTBTeam/FTB-Mods-Issues for any mod issues
## Recipes
No recipes are included by default: add your own recipes via datapack, KubeJS, CraftTweaker, etc.
Example recipe JSON:
```json
{
"type": "ftbdripper:drip",
"inputBlock": "minecraft:dirt",
"outputBlock": "minecraft:diamond_block",
"fluid": "minecraft:water",
"chance": 1.0
}
```
* "inputBlock" is a blockstate, so can include properties (e.g. `minecraft:camp_fire[lit=true]`)
* "outputBlock" is just a block
* "fluid" is the fluid which must be dripped from the Dripper
* "chance" is optional and defaults to 1.0 (valid range: 0.0 -> 1.0)