add sugar cube

This commit is contained in:
tenplus1 2022-11-12 10:20:54 +00:00
parent 924bcd8868
commit 46e0ef5a17
3 changed files with 19 additions and 1 deletions

View File

@ -98,6 +98,7 @@ This farming mod provides a large selection of craftable food and items:
| farming:rose_water | Rose Water | | farming:rose_water | Rose Water |
| farming:glass_water | Glass of Water | | farming:glass_water | Glass of Water |
| farming:sugar | Sugar | | farming:sugar | Sugar |
| farming:sugar_cube | Sugar Cube |
| farming:caramel | Caramel | | farming:caramel | Caramel |
| farming:turkish_delight | Turkish Delight | | farming:turkish_delight | Turkish Delight |
| farming:garlic_bread | Garlic Bread | | farming:garlic_bread | Garlic Bread |
@ -217,7 +218,7 @@ on an older map are enabled and growing properly.
### Changelog: ### Changelog:
- 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) - 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
options, onion soup added (thanks edcrypt), Added apple pie, added wild cotton to savanna options, onion soup added (thanks edcrypt), Added apple pie, added wild cotton to savanna

View File

@ -68,6 +68,23 @@ minetest.register_craft({
recipe = "default:papyrus" recipe = "default:papyrus"
}) })
minetest.register_node("farming:sugar_cube", {
description = S("Sugar Cube"),
tiles = {"farming_sugar_cube.png"},
groups = {crumbly = 2},
floodable = true,
sounds = default.node_sound_gravel_defaults()
})
minetest.register_craft({
output = "farming:sugar_cube",
recipe = {
{"farming:sugar", "farming:sugar", "farming:sugar"},
{"farming:sugar", "farming:sugar", "farming:sugar"},
{"farming:sugar", "farming:sugar", "farming:sugar"}
}
})
--= Sugar caramel --= Sugar caramel
minetest.register_craftitem("farming:caramel", { minetest.register_craftitem("farming:caramel", {

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B