
custom recipes
Hyrcas opened this issue · 4 comments
Minecraft Version
1.19.2
Forge Version
43.2.11
Mod Version
3.1.0.0
Modpack or other Mod
No response
Describe the Issue
trying to create a custom recipe but i can't seem to refer to specific filled buckets using kubeJS if i say ceramicbucket:ceramic_bucket
i have no way to specify wich liquid is inside the bucket.
Logs
No response
Do you use any performance-enhancing mods (e.g. OptiFine)?
No response
Please see here: https://github.com/cech12/CeramicBucket/wiki#usage-in-datapack-recipes
Let me know if this was helpful :)
Since Minecraft 1.18 the ingredient types of the BuketLib mod should be used. Here are some example recipes:
https://github.com/cech12/BucketLib/tree/1.19/src/main/resources/data/bucketlib/recipes
Since Minecraft 1.18 the ingredient types of the BuketLib mod should be used. Here are some example recipes: https://github.com/cech12/BucketLib/tree/1.19/src/main/resources/data/bucketlib/recipes
thank you that worked.
if anyone is reading this and has the same question i'll leave here how i did it:
{
"type": "minecraft:crafting_shaped",
"pattern": [
"FFF",
"BEC",
"FFF"
],
"key": {
"F": {
"tag": "forge:cobblestone"
},
"B": {
"type": "bucketlib:fluid",
"fluid": "minecraft:water"
},
"C": {
"type": "bucketlib:fluid",
"fluid": "minecraft:lava"
},
"E": {
"tag": "forge:glass"
}
},
"result": {
"item": "cobblefordays:tier_2"
}
}
I added some information about datapack recipes to the BucketLib wiki: https://github.com/cech12/BucketLib/wiki/Datapack-Recipes
and I added a reference to that page in the Ceramic Bucket wiki: https://github.com/cech12/CeramicBucket/wiki#usage-in-datapack-recipes