mirror of
https://codeberg.org/tenplus1/farming.git
synced 2025-01-12 10:50:20 +01:00
added sliced bread, toast, toast sandwich. changed some recipes
This commit is contained in:
parent
283e4b7a9b
commit
7a972937da
@ -30,7 +30,11 @@ minetest.register_craftitem("farming:barley", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "farming:flour",
|
output = "farming:flour",
|
||||||
recipe = {"farming:barley", "farming:barley", "farming:barley", "farming:barley"}
|
recipe = {
|
||||||
|
"farming:barley", "farming:barley", "farming:barley",
|
||||||
|
"farming:barley", "farming:mortar_pestle"
|
||||||
|
},
|
||||||
|
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- barley definition
|
-- barley definition
|
||||||
|
25
donut.lua
25
donut.lua
@ -51,31 +51,26 @@ minetest.register_craft({
|
|||||||
minetest.register_craftitem("farming:porridge", {
|
minetest.register_craftitem("farming:porridge", {
|
||||||
description = S("Porridge"),
|
description = S("Porridge"),
|
||||||
inventory_image = "farming_porridge.png",
|
inventory_image = "farming_porridge.png",
|
||||||
on_use = minetest.item_eat(6),
|
on_use = minetest.item_eat(6, "farming:bowl"),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.after(0, function()
|
minetest.after(0, function()
|
||||||
|
|
||||||
|
local fluid = "bucket:bucket_water"
|
||||||
|
local fluid_return = "bucket:bucket_water"
|
||||||
|
|
||||||
if minetest.get_modpath("mobs") and mobs and mobs.mod == "redo" then
|
if minetest.get_modpath("mobs") and mobs and mobs.mod == "redo" then
|
||||||
|
fluid = "group:food_milk"
|
||||||
|
fluid_return = "mobs:bucket_milk"
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "farming:porridge",
|
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
|
output = "farming:porridge",
|
||||||
recipe = {
|
recipe = {
|
||||||
"group:food_barley", "group:food_barley", "group:food_wheat",
|
"group:food_barley", "group:food_barley", "group:food_wheat",
|
||||||
"group:food_wheat", "group:food_milk"
|
"group:food_wheat", "group:food_bowl", fluid
|
||||||
},
|
},
|
||||||
replacements = {{"mobs:bucket_milk", "bucket:bucket_empty"}}
|
replacements = {{fluid_return, "bucket:bucket_empty"}}
|
||||||
})
|
})
|
||||||
else
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "farming:porridge",
|
|
||||||
type = "shapeless",
|
|
||||||
recipe = {
|
|
||||||
"group:food_barley", "group:food_barley", "group:food_wheat",
|
|
||||||
"group:food_wheat", "bucket:bucket_water"
|
|
||||||
},
|
|
||||||
replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end)
|
end)
|
||||||
|
@ -22,10 +22,11 @@ minetest.register_craftitem("farming:rhubarb_pie", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "farming:rhubarb_pie",
|
output = "farming:rhubarb_pie",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "group:food_sugar", ""},
|
{"farming:baking_tray", "group:food_sugar", ""},
|
||||||
{"group:food_rhubarb", "group:food_rhubarb", "group:food_rhubarb"},
|
{"group:food_rhubarb", "group:food_rhubarb", "group:food_rhubarb"},
|
||||||
{"group:food_wheat", "group:food_wheat", "group:food_wheat"},
|
{"group:food_wheat", "group:food_wheat", "group:food_wheat"},
|
||||||
}
|
},
|
||||||
|
replacements = {{"farming:baking_tray", "farming:baking_tray"}}
|
||||||
})
|
})
|
||||||
|
|
||||||
-- rhubarb definition
|
-- rhubarb definition
|
||||||
|
BIN
textures/farming_bread_slice.png
Normal file
BIN
textures/farming_bread_slice.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 159 B |
BIN
textures/farming_toast.png
Normal file
BIN
textures/farming_toast.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 159 B |
BIN
textures/farming_toast_sandwich.png
Normal file
BIN
textures/farming_toast_sandwich.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 175 B |
53
wheat.lua
53
wheat.lua
@ -61,7 +61,11 @@ minetest.register_craftitem("farming:flour", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "farming:flour",
|
output = "farming:flour",
|
||||||
recipe = {"farming:wheat", "farming:wheat", "farming:wheat", "farming:wheat"}
|
recipe = {
|
||||||
|
"farming:wheat", "farming:wheat", "farming:wheat",
|
||||||
|
"farming:wheat", "farming:mortar_pestle"
|
||||||
|
},
|
||||||
|
replacements = {{"farming:mortar_pestle", "farming:mortar_pestle"}},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- bread
|
-- bread
|
||||||
@ -79,6 +83,53 @@ minetest.register_craft({
|
|||||||
recipe = "farming:flour"
|
recipe = "farming:flour"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- sliced bread
|
||||||
|
minetest.register_craftitem("farming:bread_slice", {
|
||||||
|
description = S("Sliced Bread"),
|
||||||
|
inventory_image = "farming_bread_slice.png",
|
||||||
|
on_use = minetest.item_eat(1),
|
||||||
|
groups = {food_bread_slice = 1, flammable = 2},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "farming:bread_slice 5",
|
||||||
|
recipe = {"farming:bread", "group:food_cutting_board"},
|
||||||
|
replacements = {{"farming:cutting_board", "farming:cutting_board"}},
|
||||||
|
})
|
||||||
|
|
||||||
|
-- toast
|
||||||
|
minetest.register_craftitem("farming:toast", {
|
||||||
|
description = S("Toast"),
|
||||||
|
inventory_image = "farming_toast.png",
|
||||||
|
on_use = minetest.item_eat(1),
|
||||||
|
groups = {food_toast = 1, flammable = 2},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "cooking",
|
||||||
|
cooktime = 3,
|
||||||
|
output = "farming:toast",
|
||||||
|
recipe = "farming:bread_slice"
|
||||||
|
})
|
||||||
|
|
||||||
|
-- toast sandwich
|
||||||
|
minetest.register_craftitem("farming:toast_sandwich", {
|
||||||
|
description = S("Toast Sandwich"),
|
||||||
|
inventory_image = "farming_toast_sandwich.png",
|
||||||
|
on_use = minetest.item_eat(4),
|
||||||
|
groups = {flammable = 2},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "farming:toast_sandwich",
|
||||||
|
recipe = {
|
||||||
|
{"farming:bread_slice"},
|
||||||
|
{"farming:toast"},
|
||||||
|
{"farming:bread_slice"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
-- wheat definition
|
-- wheat definition
|
||||||
local crop_def = {
|
local crop_def = {
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
|
Loading…
Reference in New Issue
Block a user