mirror of
https://codeberg.org/tenplus1/farming.git
synced 2024-12-26 02:30:20 +01:00
onion soup added thanks to edcrypt
This commit is contained in:
parent
0e42a72120
commit
ca0876c6d8
@ -13,7 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t
|
|||||||
|
|
||||||
### Changelog:
|
### Changelog:
|
||||||
|
|
||||||
- 1.45 - Dirt and Hoes are more in line with default by using dry/wet/base options
|
- 1.45 - Dirt and Hoes are more in line with default by using dry/wet/base options, onion soup added (thanks edcrypt)
|
||||||
- 1.44 - Added 'farming_stage_length' in mod settings for speed of crop growth, also thanks to TheDarkTiger for translation updates
|
- 1.44 - Added 'farming_stage_length' in mod settings for speed of crop growth, also thanks to TheDarkTiger for translation updates
|
||||||
- 1.43 - Scythe works on use instead of right-click, added seed=1 groups to actual seeds and seed=2 group for plantable food items.
|
- 1.43 - Scythe works on use instead of right-click, added seed=1 groups to actual seeds and seed=2 group for plantable food items.
|
||||||
- 1.42 - Soil needs water to be present within 3 blocks horizontally and 1 below to make wet soil, Jack 'o Lanterns now check protection, add chocolate block.
|
- 1.42 - Soil needs water to be present within 3 blocks horizontally and 1 below to make wet soil, Jack 'o Lanterns now check protection, add chocolate block.
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
local S = farming.intllib
|
local S = farming.intllib
|
||||||
|
|
||||||
-- potato
|
-- onion
|
||||||
minetest.register_craftitem("farming:onion", {
|
minetest.register_craftitem("farming:onion", {
|
||||||
description = S("Onion"),
|
description = S("Onion"),
|
||||||
inventory_image = "crops_onion.png",
|
inventory_image = "crops_onion.png",
|
||||||
@ -18,6 +18,25 @@ minetest.register_craftitem("farming:onion", {
|
|||||||
on_use = minetest.item_eat(1),
|
on_use = minetest.item_eat(1),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- onion soup
|
||||||
|
minetest.register_craftitem("farming:onion_soup", {
|
||||||
|
description = S("Onion Soup"),
|
||||||
|
inventory_image = "farming_onion_soup.png",
|
||||||
|
groups = {flammable = 2},
|
||||||
|
on_use = minetest.item_eat(6, "farming:bowl"),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
type = "shapeless",
|
||||||
|
output = "farming:onion_soup",
|
||||||
|
recipe = {
|
||||||
|
"group:food_onion", "group:food_onion", "group:food_pot",
|
||||||
|
"group:food_onion", "group:food_onion",
|
||||||
|
"group:food_onion", "group:food_onion", "group:food_bowl"
|
||||||
|
},
|
||||||
|
replacements = {{"farming:pot", "farming:pot"}}
|
||||||
|
})
|
||||||
|
|
||||||
-- crop definition
|
-- crop definition
|
||||||
local crop_def = {
|
local crop_def = {
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
|
BIN
textures/farming_onion_soup.png
Normal file
BIN
textures/farming_onion_soup.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 161 B |
Loading…
Reference in New Issue
Block a user