Oven Cooking - Food Preparation Mod for Minecraft
The Oven Cooking mod adds a special oven block to the game designed for cooking various dishes. For the oven to function, you need to place a fire source underneath it - either a regular or soul campfire.
Main Features
The main feature of the mod is the ability to create your own food preparation recipes. You can develop unique culinary combinations and cook them in the new oven.
Technical Details
Heat Sources
The mod recognizes the following blocks as heat sources:
{
"replace": false,
"values": [
"minecraft:campfire",
"minecraft:soul_campfire"
]
}
Pre-made Recipes
The mod already includes several standard recipes:
Bread (bread.json)
{
"type": "ovenonly:baking",
"pattern": [
"WWW",
" ",
" "
],
"key": {
"W": {
"item": "minecraft:wheat"
}
},
"result": {
"item": "minecraft:bread",
"count": 1
},
"cooktime": 150,
"experience": 0.5
}
Oven (oven.json)
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"B": {
"item": "minecraft:bricks"
},
"S": {
"item": "minecraft:stone_bricks"
},
"i": {
"tag": "forge:ingots/iron"
}
},
"pattern": [
"BBB",
"B B",
"SiS"
],
"result": {
"item": "ovenonly:oven"
},
"show_notification": true
}
Cake (torty.json)
{
"type": "ovenonly:baking",
"pattern": [
"WWW",
"SMS",
"HHH"
],
"key": {
"W": {
"item": "minecraft:wheat"
},
"S": {
"item": "minecraft:sugar"
},
"M": {
"item": "minecraft:milk_bucket"
},
"H": {
"item": "minecraft:honey_bottle"
}
},
"result": {
"item": "minecraft:cake",
"count": 1
},
"cooktime": 250
}
The mod offers a flexible food preparation system with customizable cooking times and experience rewards.