Make cookies edible on full hunger?

How difficult would it be to make cookies edible on full hunger? I know you can modify recipes and some other tricks like that, but I'd ideally like to apply this change to all cookies. Is there an easy way to do this? My server is on paper 1.21.4
3 Replies
Cosmic
Cosmic2mo ago
You can use a datapack for this, just place it in a datapack in the right subfolder, would apply for all newly-crafted cookies. For Existing Cookies you could probably set a check if they have regular cookies to replace them with these, but making a custom villager to do that (by players trading in old ones) is prolly easier
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "minecraft:wheat"
},
"X": {
"item": "minecraft:cocoa_beans"
}
},
"pattern": [
"#X#"
],
"result": {
"components": {
"minecraft:food": {
"nutrition": 2,
"saturation": 0.2,
"can_always_eat": true
}
},
"count": 8,
"id": "minecraft:cookie"
}
}
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "minecraft:wheat"
},
"X": {
"item": "minecraft:cocoa_beans"
}
},
"pattern": [
"#X#"
],
"result": {
"components": {
"minecraft:food": {
"nutrition": 2,
"saturation": 0.2,
"can_always_eat": true
}
},
"count": 8,
"id": "minecraft:cookie"
}
}
Command Wise, Here's one you can /give /give @p cookie[food={nutrition:4,saturation:0.2,can_always_eat:true}] 1
Eismeister
EismeisterOP2mo ago
This is interesting, thanks for providing this! I don't suppose it's possible to modify existing villager trades, is it? I'd like to make it so farmer villagers trade these special cookies instead of the normal ones.
Error110
Error1102mo ago
pt sure it would do it for all new cookies including traded ones

Did you find this page helpful?