Мова

Cauldron Concrete Powder

Cauldron Concrete Powder

Modrinth

CauldronConcretePowder is a simple Datapack created to add to possibility for players to drop concrete powders directly in water cauldrons to transform them. Datapack optimized as much as possible. Working faster than VanillaTweaks' one.

50.4k завантажень 90 підписників оновлено 3d ago
остання v1.5.3+quilt Modrinth
Datapack Fabric Forge Neoforge Quilt 1.15 – 26.2 Game-mechanicsUtility

Cauldron Concrete Powder

GitHub
Smithed
Modrinth
PMC
Discord
Powered by StewBeet

🧪 CauldronConcretePowder is a simple yet powerful Datapack that enhances your Minecraft experience

by allowing you to instantly transform concrete powder into hardened concrete by dropping it into water cauldrons!

No more tedious manual placement required.

⚡ This Datapack has been meticulously optimized for maximum performance and efficiency. Our benchmarks show it runs significantly faster than VanillaTweaks' equivalent solution.

💡 Originally created as a community request.

Promotional image

| CauldronConcretePowder Image 1 | CauldronConcretePowder Image 2 | CauldronConcretePowder Image 3 |
|---|---|---|

🔧 Adding Custom Cauldron Recipes

CauldronConcretePowder uses function tags to allow other datapacks to easily add their own "cauldron recipes".

This means you can create custom items that transform when dropped into water cauldrons, just like concrete powder.

📋 How It Works

The dry_concrete function is called via the function tag #cauldron_concrete_powder:signals/dry_concrete.

When an item is dropped into a water cauldron, this tag is executed,
allowing multiple datapacks to add their own transformation logic.

Your custom function should:

  1. Check if the dropped item matches your custom "powder" item.
  2. If it matches, change the item to its "hardened" version.
  3. If the transformation is successful and the item count is 16 or more, call the remove_water function to reduce the cauldron's water level.
  4. Reset any temporary scores.

📦 Creating a Custom Datapack

To add your own cauldron recipe, create a datapack with the following structure:

your_datapack/
├── 📦 pack.mcmeta
└── 📁 data/
    └── 📁 your_namespace/
        ├── 📁 functions/
        │   └── 📁 cauldron_concrete_powder/
        │       └── 📄 dry_concrete.mcfunction
        └── 📁 tags/
            └── 📁 functions/
                └── 📁 signals/
                    └── 📄 dry_concrete.json
  • 🔄 Replace your_namespace with your datapack's namespace.
  • 📝 The dry_concrete.mcfunction should contain your custom transformation logic.
  • 🏷️ The dry_concrete.json should define the function tag with your function:
{
  "values": [
    "your_namespace:cauldron_concrete_powder/dry_concrete"
  ]
}

You can download a template datapack from assets/function_tag_template.zip and modify it to fit your needs.

💡 Example Function

Here's an example of what your dry_concrete.mcfunction might look like:

#> your_namespace:cauldron_concrete_powder/dry_concrete
#
# @within #cauldron_concrete_powder:signals/dry_concrete
#

# Check for your custom powder and transform it
execute if score #success cauldron_concrete_powder.dropped matches 0 store success score #success cauldron_concrete_powder.dropped if items entity @s contents your_namespace:custom_powder run data modify entity @s Item.id set value "your_namespace:custom_hardened"

# If success and count >=16, remove water
execute if score #success cauldron_concrete_powder.dropped matches 1 store result score #count cauldron_concrete_powder.dropped run data get entity @s Item.count
execute if score #success cauldron_concrete_powder.dropped matches 1 if score #count cauldron_concrete_powder.dropped matches 16.. run function cauldron_concrete_powder:v1.4.0/remove_water

# Reset scores
scoreboard players reset #success cauldron_concrete_powder.dropped
scoreboard players reset #count cauldron_concrete_powder.dropped

Make sure to adjust the version in the remove_water call to match the current version of CauldronConcretePowder.

This allows for seamless integration and expansion of cauldron-based crafting!

🧵 For Fabric Mod Developers

Fabric mods can also add custom cauldron recipes by including datapack-compatible files in their mod's src/main/resources/data/ folder. Use the same structure as above, placing your custom dry_concrete.mcfunction and the function tag JSON in the appropriate directories. This way, your mod can extend the cauldron transformation system without conflicting with other datapacks or mods.

For example, your mod's resources might include:

src/main/resources/data/
└── 📁 your_mod_namespace/
    ├── 📁 functions/
    │   └── 📁 cauldron_concrete_powder/
    │       └── 📄 dry_concrete.mcfunction
    └── 📁 tags/
        └── 📁 functions/
            └── 📁 signals/
                └── 📄 dry_concrete.json

⭐ Star History

Star History Chart

Версії

Release
1.5.3+quilt
quilt · 1.21.5, 1.21.6, 1.21.7 · 3d ago
## Changelog ### Build System - 🚀 Bumped v1.5.3 (MC 1.21.5 - 26.2+) [49e9d97](https://github.com/Stoupy51/CauldronConcretePowder/commit/49e9d971ed53e1d1d660…
3
Release
1.5.3+neoforge
neoforge · 1.21.5, 1.21.6, 1.21.7 · 3d ago
## Changelog ### Build System - 🚀 Bumped v1.5.3 (MC 1.21.5 - 26.2+) [49e9d97](https://github.com/Stoupy51/CauldronConcretePowder/commit/49e9d971ed53e1d1d660…
10
Release
1.5.3+forge
forge · 1.21.5, 1.21.6, 1.21.7 · 3d ago
## Changelog ### Build System - 🚀 Bumped v1.5.3 (MC 1.21.5 - 26.2+) [49e9d97](https://github.com/Stoupy51/CauldronConcretePowder/commit/49e9d971ed53e1d1d660…
7
Release
1.5.3+fabric
fabric · 1.21.5, 1.21.6, 1.21.7 · 3d ago
## Changelog ### Build System - 🚀 Bumped v1.5.3 (MC 1.21.5 - 26.2+) [49e9d97](https://github.com/Stoupy51/CauldronConcretePowder/commit/49e9d971ed53e1d1d660…
226
Release
1.5.3
datapack · 1.21.5, 1.21.6, 1.21.7 · 3d ago
## Changelog ### Build System - 🚀 Bumped v1.5.3 (MC 1.21.5 - 26.2+) [49e9d97](https://github.com/Stoupy51/CauldronConcretePowder/commit/49e9d971ed53e1d1d660…
57
Release
1.5.2+quilt
quilt · 1.21.5, 1.21.6, 1.21.7 · 2mo ago
## Changelog ### Build System - 🚀 Bumped v1.5.2 (MC 1.21.5 - 26.1.2+) [806189f](https://github.com/Stoupy51/CauldronConcretePowder/commit/806189f47cfdbe86e5…
46
Release
1.5.2+neoforge
neoforge · 1.21.5, 1.21.6, 1.21.7 · 2mo ago
## Changelog ### Build System - 🚀 Bumped v1.5.2 (MC 1.21.5 - 26.1.2+) [806189f](https://github.com/Stoupy51/CauldronConcretePowder/commit/806189f47cfdbe86e5…
76
Release
1.5.2+forge
forge · 1.21.5, 1.21.6, 1.21.7 · 2mo ago
## Changelog ### Build System - 🚀 Bumped v1.5.2 (MC 1.21.5 - 26.1.2+) [806189f](https://github.com/Stoupy51/CauldronConcretePowder/commit/806189f47cfdbe86e5…
46
Release
1.5.2+fabric
fabric · 1.21.5, 1.21.6, 1.21.7 · 2mo ago
## Changelog ### Build System - 🚀 Bumped v1.5.2 (MC 1.21.5 - 26.1.2+) [806189f](https://github.com/Stoupy51/CauldronConcretePowder/commit/806189f47cfdbe86e5…
1.6k
Release
1.5.2
datapack · 1.21.5, 1.21.6, 1.21.7 · 2mo ago
## Changelog ### Build System - 🚀 Bumped v1.5.2 (MC 1.21.5 - 26.1.2+) [806189f](https://github.com/Stoupy51/CauldronConcretePowder/commit/806189f47cfdbe86e5…
652
Release
1.5.1+quilt
quilt · 1.21.5, 1.21.6, 1.21.7 · 2mo ago
## Changelog ### Documentation - 📝 Add "Powered by StewBeet" badge to README [b2e914e](https://github.com/Stoupy51/CauldronConcretePowder/commit/b2e914ec66e…
40
Release
1.5.1+neoforge
neoforge · 1.21.5, 1.21.6, 1.21.7 · 2mo ago
## Changelog ### Documentation - 📝 Add "Powered by StewBeet" badge to README [b2e914e](https://github.com/Stoupy51/CauldronConcretePowder/commit/b2e914ec66e…
25

Коментарі 0

Поки немає коментарів. Будь першим, хто поділиться думкою.

Завантажити Cauldron Concrete Powder

R 1.5.3+quilt 1.21.5, 1.21.6, 1.21.7 quilt 37 KB R 1.5.3+neoforge 1.21.5, 1.21.6, 1.21.7 neoforge 37 KB R 1.5.3+forge 1.21.5, 1.21.6, 1.21.7 forge 37 KB R 1.5.3+fabric 1.21.5, 1.21.6, 1.21.7 fabric 37 KB R 1.5.3 1.21.5, 1.21.6, 1.21.7 datapack 22 KB R 1.5.2+quilt 1.21.5, 1.21.6, 1.21.7 quilt 37 KB R 1.5.2+neoforge 1.21.5, 1.21.6, 1.21.7 neoforge 37 KB R 1.5.2+forge 1.21.5, 1.21.6, 1.21.7 forge 37 KB R 1.5.2+fabric 1.21.5, 1.21.6, 1.21.7 fabric 37 KB R 1.5.2 1.21.5, 1.21.6, 1.21.7 datapack 22 KB R 1.5.1+quilt 1.21.5, 1.21.6, 1.21.7 quilt 37 KB R 1.5.1+neoforge 1.21.5, 1.21.6, 1.21.7 neoforge 37 KB R 1.5.1+forge 1.21.5, 1.21.6, 1.21.7 forge 37 KB R 1.5.1+fabric 1.21.5, 1.21.6, 1.21.7 fabric 36 KB R 1.5.1 1.21.5, 1.21.6, 1.21.7 datapack 22 KB R 1.5.0+quilt 1.21.5, 1.21.6, 1.21.7 quilt 37 KB R 1.5.0+neoforge 1.21.5, 1.21.6, 1.21.7 neoforge 37 KB R 1.5.0+forge 1.21.5, 1.21.6, 1.21.7 forge 37 KB R 1.5.0+fabric 1.21.5, 1.21.6, 1.21.7 fabric 36 KB R 1.5.0 1.21.5, 1.21.6, 1.21.7 datapack 22 KB R 1.4.0+quilt 1.21.5, 1.21.6, 1.21.7 quilt 36 KB R 1.4.0+neoforge 1.21.5, 1.21.6, 1.21.7 neoforge 36 KB R 1.4.0+forge 1.21.5, 1.21.6, 1.21.7 forge 36 KB R 1.4.0+fabric 1.21.5, 1.21.6, 1.21.7 fabric 36 KB R 1.4.0 1.21.5, 1.21.6, 1.21.7 datapack 21 KB R 1.3.4+quilt 1.21.9, 1.21.10 quilt 36 KB R 1.3.4+neoforge 1.21.9, 1.21.10 neoforge 36 KB R 1.3.4+forge 1.21.9, 1.21.10 forge 36 KB R 1.3.4+fabric 1.21.9, 1.21.10 fabric 36 KB R 1.3.4 1.21.9, 1.21.10 datapack 21 KB R 1.1.0+mod 1.21, 1.21.1 fabric, forge, neoforge 23 KB R 1.3.3+mod 1.21.8, 1.21.9, 1.21.10 fabric, forge, neoforge 23 KB R 1.3.3 1.21.8, 1.21.9, 1.21.10 datapack 10 KB R 1.3.2+mod 1.21.7 fabric, forge, neoforge 23 KB R 1.3.2 1.21.7 datapack 10 KB R 1.3.1+mod 1.21.5, 1.21.6 fabric, forge, neoforge 23 KB R 1.3.1 1.21.5, 1.21.6 datapack 9 KB R 1.3.0+mod 1.21.2, 1.21.3, 1.21.4 fabric, forge, neoforge 23 KB R 1.3.0 1.21.2, 1.21.3, 1.21.4 datapack 9 KB R 1.1.0+mod 1.21, 1.21.1 fabric, forge, quilt 21 KB R 1.1.0 1.21, 1.21.1 datapack 10 KB R 1.0.0b+mod 1.15, 1.15.1, 1.15.2 fabric, forge, quilt 21 KB R 1.0.0b 1.15, 1.15.1, 1.15.2 datapack 10 KB R 1.0.0+mod 1.15, 1.15.1, 1.15.2 fabric, forge, quilt 19 KB R 1.0.0 1.15, 1.15.1, 1.15.2 datapack 8 KB

Файли надаються напряму з першоджерела. Modgrid не зберігає та не змінює їх.