Skip to content
This repository was archived by the owner on Aug 9, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions locale/template.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ check=
Bowl=
Bowl of soup=
Cauldron=
Cauldron (active)=
Cauldron (active) - Drop foods inside to make a soup=
Cauldron (active) - Use a bowl to eat the soup=
Cauldron (empty)=
Expand Down
1 change: 1 addition & 0 deletions locale/xdecor.de.tr
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ check=Schach
Bowl=Schüssel
Bowl of soup=Suppenschüssel
Cauldron=Kessel
Cauldron (active)=Kessel (aktiv)
Cauldron (active) - Drop foods inside to make a soup=Kessel (aktiv) - Nahrungsmittel einwerfen, um Suppe zu machen.
Cauldron (active) - Use a bowl to eat the soup=Kessel (aktiv) - Benutze eine Schüssel, um die Suppe zu essen
Cauldron (empty)=Kessel (leer)
Expand Down
1 change: 1 addition & 0 deletions locale/xdecor.fr.tr
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ check=échec
Bowl=Bol
Bowl of soup=Bol de soupe
Cauldron=Chaudron
Cauldron (active)=Chaudron (actif)
Cauldron (active) - Drop foods inside to make a soup=Chaudron (actif) - Placez des ingrédients à l’intérieur pour faire une soupe
Cauldron (active) - Use a bowl to eat the soup=Chaudron (actif) - Utilisez un bol pour boire la soupe
Cauldron (empty)=Chaudron (vide)
Expand Down
1 change: 1 addition & 0 deletions locale/xdecor.it.tr
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ check=scacco
Bowl=Ciotola
Bowl of soup=Ciotola di zuppa
Cauldron=Calderone
Cauldron (active)=Calderone (attivo)
Cauldron (active) - Drop foods inside to make a soup=Calderone (attivo) - Mettere gli ingredienti all'interno per fare una zuppa.
Cauldron (active) - Use a bowl to eat the soup=Calderone (actif) - Utilizzare una ciotola per mangiare la zuppa
Cauldron (empty)=Calderone (vuoto)
Expand Down
3 changes: 3 additions & 0 deletions src/cooking.lua
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ xdecor.register("cauldron_empty", {
})

xdecor.register("cauldron_idle", {
description = S("Cauldron (idle)"),
groups = {cracky=2, oddly_breakable_by_hand=1, not_in_creative_inventory=1},
on_rotate = screwdriver.rotate_simple,
tiles = {"xdecor_cauldron_top_idle.png", "xdecor_cauldron_sides.png"},
Expand All @@ -185,6 +186,7 @@ xdecor.register("cauldron_idle", {
})

xdecor.register("cauldron_boiling", {
description = S("Cauldron (active)"),
groups = {cracky=2, oddly_breakable_by_hand=1, not_in_creative_inventory=1},
on_rotate = screwdriver.rotate_simple,
drop = "xdecor:cauldron_empty",
Expand All @@ -207,6 +209,7 @@ xdecor.register("cauldron_boiling", {
})

xdecor.register("cauldron_soup", {
description = S("Cauldron (active)"),
groups = {cracky = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory = 1},
on_rotate = screwdriver.rotate_simple,
drop = "xdecor:cauldron_empty",
Expand Down