Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Соусы ∞.dm #12889

Merged
Merged
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
9 changes: 9 additions & 0 deletions code/modules/reagents/reagent_containers/food/condiment.dm
Original file line number Diff line number Diff line change
Expand Up @@ -302,34 +302,40 @@
name = "soy sauce"
desc = "A salty soy-based flavoring."
icon_state = "soysauce"
item_state = "soysauce"
emptystate = null
list_reagents = list("soysauce" = 40)

/obj/item/weapon/reagent_containers/food/condiment/hotsauce
name = "hot sauce"
desc = "You can almost TASTE the stomach ulcers now!"
icon_state = "hotsauce"
item_state = "hotsauce"
emptystate = null
list_reagents = list("capsaicin" = 30)

/obj/item/weapon/reagent_containers/food/condiment/ketchup
name = "ketchup"
desc = "You feel more American already."
icon_state = "ketchup"
item_state = "ketchup"
emptystate = "ketchup"
list_reagents = list("ketchup" = 50)

/obj/item/weapon/reagent_containers/food/condiment/coldsauce
name = "cold sauce"
desc = "Leaves the tongue numb in its passage."
icon_state = "coldsauce"
item_state = "coldsauce"
emptystate = null
list_reagents = list("frostoil" = 30)

/obj/item/weapon/reagent_containers/food/condiment/cornoil
name = "corn oil"
desc = "A delicious oil used in cooking. Made from corn."
icon_state = "cornoil"
item_state = "cornoil"
emptystate = null
list_reagents = list("cornoil" = 40)

// SUPPLEMENTS
Expand All @@ -346,6 +352,7 @@
name = "salt shaker"
desc = "Salt. From space oceans, presumably."
icon_state = "saltshakersmall"
item_state = "saltshakersmall"
emptystate = "saltshakersmall"
possible_transfer_amounts = list(1,20) // for the clown turning the lid off
amount_per_transfer_from_this = 1
Expand All @@ -356,6 +363,7 @@
name = "pepper mill"
desc = "Often used to flavor food or make people sneeze."
icon_state = "peppermillsmall"
item_state = "peppermillsmall"
emptystate = null
possible_transfer_amounts = list(1,20) // for the clown turning the lid off
amount_per_transfer_from_this = 1
Expand All @@ -366,5 +374,6 @@
name = "honey pot"
desc = "Sweet and healthy!"
icon_state = "honey"
item_state = "honey"
emptystate = null
list_reagents = list("honey" = 40)
Loading