mirror of
https://codeberg.org/tenplus1/farming.git
synced 2025-08-23 09:40:23 +02:00
add water floorb (easier to cook these into salt than buckets with no bugs)
This commit is contained in:
@ -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", {
|
||||
|
@ -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({
|
||||
|
BIN
textures/farming_water_floorb.png
Normal file
BIN
textures/farming_water_floorb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 233 B |
Reference in New Issue
Block a user