mirror of
https://codeberg.org/tenplus1/farming.git
synced 2024-12-28 19:40:20 +01:00
add gingerbread man, tweak pineapple drops
This commit is contained in:
parent
8717625d0c
commit
2f461785d6
@ -218,7 +218,7 @@ on an older map are enabled and growing properly.
|
|||||||
|
|
||||||
### Changelog:
|
### Changelog:
|
||||||
|
|
||||||
- 1.48 - added 'farming_use_utensils' setting to enable/disable utensils in recipes, added mayonnaise (thx felfa)
|
- 1.48 - added 'farming_use_utensils' setting to enable/disable utensils in recipes, added mayonnaise (thx felfa), added gingerbread man
|
||||||
- 1.47 - Now blueberries can make blue dye, tweak soil types to work better with older 0.4.x clients and add spanish translation (thx mckaygerhard), add trellis setting to registered_crops and fix pea and soy crop names (thx nixnoxus), add strawberries if ethereal mod not active, added asparagus; spinach; eggplant (thx Atlante for new textures), Sugar Cube
|
- 1.47 - Now blueberries can make blue dye, tweak soil types to work better with older 0.4.x clients and add spanish translation (thx mckaygerhard), add trellis setting to registered_crops and fix pea and soy crop names (thx nixnoxus), add strawberries if ethereal mod not active, added asparagus; spinach; eggplant (thx Atlante for new textures), Sugar Cube
|
||||||
- 1.46 - Added min/max default light settings, added lettuce and blackberries with food items (thanks OgelGames), added soya, vanilla and sunflowers (thanks Felfa), added tofu, added salt crystals (thanks gorlock)
|
- 1.46 - Added min/max default light settings, added lettuce and blackberries with food items (thanks OgelGames), added soya, vanilla and sunflowers (thanks Felfa), added tofu, added salt crystals (thanks gorlock)
|
||||||
- 1.45 - Dirt and Hoes are more in line with default by using dry/wet/base, added cactus juice, added pasta, spaghetti, cabbage, korean bibimbap, code tidy
|
- 1.45 - Dirt and Hoes are more in line with default by using dry/wet/base, added cactus juice, added pasta, spaghetti, cabbage, korean bibimbap, code tidy
|
||||||
|
@ -130,7 +130,7 @@ def.selection_box = farming.select_final
|
|||||||
def.drop = {
|
def.drop = {
|
||||||
items = {
|
items = {
|
||||||
{items = {"farming:pineapple"}, rarity = 1},
|
{items = {"farming:pineapple"}, rarity = 1},
|
||||||
{items = {"farming:pineapple"}, rarity = 5}
|
{items = {"farming:pineapple"}, rarity = 2}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
minetest.register_node("farming:pineapple_8", table.copy(def))
|
minetest.register_node("farming:pineapple_8", table.copy(def))
|
||||||
|
17
food.lua
17
food.lua
@ -782,3 +782,20 @@ minetest.register_craft({
|
|||||||
{"farming:glass_water", "vessels:drinking_glass"}
|
{"farming:glass_water", "vessels:drinking_glass"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Gingerbread Man
|
||||||
|
|
||||||
|
minetest.register_craftitem("farming:gingerbread_man", {
|
||||||
|
description = S("Gingerbread Man"),
|
||||||
|
inventory_image = "farming_gingerbread_man.png",
|
||||||
|
on_use = minetest.item_eat(2)
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "farming:gingerbread_man 3",
|
||||||
|
recipe = {
|
||||||
|
{"", "group:food_egg", ""},
|
||||||
|
{"group:food_wheat", "group:food_ginger", "group:food_wheat"},
|
||||||
|
{"group:food_sugar", "", "group:food_sugar"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
@ -142,6 +142,7 @@ Created by TenPlus1 (CC BY 3.0)
|
|||||||
farming_rhubarb.png
|
farming_rhubarb.png
|
||||||
farming_hemp*.png
|
farming_hemp*.png
|
||||||
farming_tofu*.png
|
farming_tofu*.png
|
||||||
|
farming_gingerbread_man.png
|
||||||
|
|
||||||
Created by ademant (CC-BY-3.0)
|
Created by ademant (CC-BY-3.0)
|
||||||
farming_rye*.png
|
farming_rye*.png
|
||||||
|
BIN
textures/farming_gingerbread_man.png
Normal file
BIN
textures/farming_gingerbread_man.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 264 B |
Loading…
Reference in New Issue
Block a user