add screenshot, craftguide icons, and blueberry jam craft
@ -68,6 +68,11 @@ cooking.register_craft({
|
||||
recipe = "farming:bread",
|
||||
output = "cooking:bread_sliced 6"
|
||||
})
|
||||
cooking.register_craft({
|
||||
type = "press",
|
||||
recipe = "default:blueberries",
|
||||
output = "cooking:blueberry_jam 4"
|
||||
})
|
||||
foodspoil_register("cooking:bread_sliced", 4)
|
||||
cooking.register_craft({
|
||||
type = "stack",
|
||||
|
18
init.lua
@ -34,20 +34,20 @@ local function table_to_string(tbl)
|
||||
end
|
||||
|
||||
local crafttypelist = {
|
||||
stack = {"Stacking", "default_tool_steelpick.png"},
|
||||
mix = {"Mixing", "default_tool_steelpick.png"},
|
||||
cut = {"Cutting", "default_tool_steelpick.png"},
|
||||
press = {"Pressing", "default_tool_steelpick.png"},
|
||||
roll = {"Rolling", "default_tool_steelpick.png"},
|
||||
stove = {"Stove", "default_tool_steelpick.png"},
|
||||
oven = {"Oven", "default_tool_steelpick.png"},
|
||||
soup = {"Soup", "default_tool_steelpick.png"},
|
||||
stack = "Stacking",
|
||||
mix = "Mixing",
|
||||
cut = "Cutting",
|
||||
press = "Pressing",
|
||||
roll = "Rolling",
|
||||
stove = "Stove",
|
||||
oven = "Oven",
|
||||
soup = "Soup",
|
||||
}
|
||||
if craftguide then
|
||||
for craftname, tbl in pairs(crafttypelist) do
|
||||
craftguide.register_craft_type(craftname, {
|
||||
description = tbl[1],
|
||||
icon = tbl[2],
|
||||
icon = "craftguide_"..craftname.."_icon.png",
|
||||
})
|
||||
end
|
||||
end
|
||||
|
11
license.txt
@ -1,4 +1,4 @@
|
||||
in ovenstove.lua there is some copied and edited code from minetest_game, which is under the following license:
|
||||
in ovenstove.lua there is some copied and edited code from minetest_game default mod, which is under the following license:
|
||||
----------------------
|
||||
|
||||
GNU Lesser General Public License, version 2.1
|
||||
@ -26,7 +26,14 @@ ShadowNinja
|
||||
VanessaE
|
||||
And many others...
|
||||
|
||||
jelys_pizzaria_rolling_pin_inv.png
|
||||
craftguide_cut_icon.png contains default_sword_steel.png from minetest_game default mod, which is under the following license:
|
||||
-------------------------------
|
||||
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
|
||||
Attribution 3.0 Unported (CC BY 3.0)
|
||||
CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
|
||||
See https://github.com/minetest/minetest_game/blob/master/mods/default/license.txt for more infomation
|
||||
|
||||
jelys_pizzaria_rolling_pin_inv.png and craftguide_roll_icon.png
|
||||
------------------------------
|
||||
Attribution-ShareAlike 3.0 (CC BY-SA 3.0) Extex
|
||||
inspired by https://www.brik.co/blogs/pixel-art/rolling-pin-pixel-art
|
||||
|
BIN
screenshot.png
Normal file
After Width: | Height: | Size: 344 KiB |
BIN
textures/craftguide_cut_icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
textures/craftguide_mix_icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
textures/craftguide_oven_icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
textures/craftguide_press_icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
textures/craftguide_roll_icon.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
textures/craftguide_soup_icon.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
textures/craftguide_stack_icon.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
textures/craftguide_stove_icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |