Skip to content

Commit

Permalink
Condiment item_state additions.dm (#12889)
Browse files Browse the repository at this point in the history
Adding item states for all the condiments because last time I haven't...
  • Loading branch information
Ayaksblack authored Feb 25, 2024
1 parent f2df94a commit 26c25a4
Showing 1 changed file with 9 additions and 0 deletions.
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)

0 comments on commit 26c25a4

Please sign in to comment.