mirror of
https://codeberg.org/tenplus1/farming.git
synced 2024-11-05 09:50:36 +01:00
96 lines
2.3 KiB
Lua
96 lines
2.3 KiB
Lua
|
|
||
|
local S = farming.intllib
|
||
|
|
||
|
--= Sugar
|
||
|
|
||
|
minetest.register_craftitem("farming:sugar", {
|
||
|
description = S("Sugar"),
|
||
|
inventory_image = "farming_sugar.png",
|
||
|
groups = {food_sugar = 1, flammable = 3},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
type = "cooking",
|
||
|
cooktime = 3,
|
||
|
output = "farming:sugar 2",
|
||
|
recipe = "default:papyrus",
|
||
|
})
|
||
|
|
||
|
|
||
|
--= Salt
|
||
|
|
||
|
minetest.register_node("farming:salt", {
|
||
|
description = ("Salt"),
|
||
|
inventory_image = "farming_salt.png",
|
||
|
wield_image = "farming_salt.png",
|
||
|
drawtype = "plantlike",
|
||
|
visual_scale = 0.8,
|
||
|
paramtype = "light",
|
||
|
tiles = {"farming_salt.png"},
|
||
|
groups = {food_salt = 1, vessel = 1, dig_immediate = 3,
|
||
|
attached_node = 1},
|
||
|
sounds = default.node_sound_defaults(),
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
||
|
},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
type = "cooking",
|
||
|
cooktime = 15,
|
||
|
output = "farming:salt",
|
||
|
recipe = "bucket:bucket_water",
|
||
|
replacements = {{"bucket:bucket_water", "bucket:bucket_empty"}}
|
||
|
})
|
||
|
|
||
|
--= Rose Water
|
||
|
|
||
|
minetest.register_node("farming:rose_water", {
|
||
|
description = ("Rose Water"),
|
||
|
inventory_image = "farming_rose_water.png",
|
||
|
wield_image = "farming_rose_Water.png",
|
||
|
drawtype = "plantlike",
|
||
|
visual_scale = 0.8,
|
||
|
paramtype = "light",
|
||
|
tiles = {"farming_rose_water.png"},
|
||
|
groups = {food_rose_water = 1, vessel = 1, dig_immediate = 3,
|
||
|
attached_node = 1},
|
||
|
sounds = default.node_sound_defaults(),
|
||
|
selection_box = {
|
||
|
type = "fixed",
|
||
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
||
|
},
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = "farming:rose_water",
|
||
|
recipe = {
|
||
|
{"flowers:rose", "flowers:rose", "flowers:rose"},
|
||
|
{"flowers:rose", "flowers:rose", "flowers:rose"},
|
||
|
{"bucket:bucket_water", "group:food_pot", "vessels:glass_bottle"},
|
||
|
},
|
||
|
replacements = {
|
||
|
{"bucket:bucket_water", "bucket:bucket_empty"},
|
||
|
{"farming:pot", "farming:pot"},
|
||
|
}
|
||
|
})
|
||
|
|
||
|
--= Turkish Delight
|
||
|
|
||
|
minetest.register_craftitem("farming:turkish_delight", {
|
||
|
description = S("Turkish Delight"),
|
||
|
inventory_image = "farming_turkish_delight.png",
|
||
|
groups = {flammable = 3},
|
||
|
on_use = minetest.item_eat(2),
|
||
|
})
|
||
|
|
||
|
minetest.register_craft({
|
||
|
output = "farming:turkish_delight 4",
|
||
|
recipe = {
|
||
|
{"group:food_gelatin", "group:food_sugar", "group:food_gelatin"},
|
||
|
{"group:food_sugar", "group:food_rose_water", "group:food_sugar"},
|
||
|
{"group:food_cornstarch", "group:food_sugar", "dye:pink"},
|
||
|
},
|
||
|
})
|