1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-08-23 17:50:23 +02:00

add water floorb (easier to cook these into salt than buckets with no bugs)

This commit is contained in:
tenplus1
2025-08-22 11:59:50 +01:00
parent 47f001e765
commit 43179b37e2
3 changed files with 27 additions and 0 deletions

View File

@ -1,6 +1,14 @@
local S = core.get_translator("farming")
-- water floorb
core.register_craftitem("farming:water_floorb", {
description = S("Water Floorb"),
inventory_image = "farming_water_floorb.png",
groups = {flammable = 1}
})
-- saucepan
core.register_craftitem("farming:saucepan", {

View File

@ -353,6 +353,25 @@ core.register_craft({
replacements = {{a.bucket_water, a.bucket_empty}}
})
core.register_craft({
type = "cooking",
cooktime = 10,
output = "farming:salt",
recipe = "farming:water_floorb"
})
-- water floorb
core.register_craft({
output = "farming:water_floorb 8",
recipe = {
{a.bucket_water, a.bucket_water, a.bucket_water},
{a.bucket_water, "group:food_gelatin", a.bucket_water},
{a.bucket_water, a.bucket_water, a.bucket_water},
},
replacements = {{a.bucket_water, a.bucket_empty .. " 8"}}
})
-- salt crystal
core.register_craft({

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B