mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Mail goodies changes (#7337)
This commit is contained in:
23
modular_chomp/code/modules/food/glass/bottle.dm
Normal file
23
modular_chomp/code/modules/food/glass/bottle.dm
Normal file
@@ -0,0 +1,23 @@
|
||||
/obj/item/weapon/reagent_containers/glass/bottle/cakebatter
|
||||
name = "cake batter bottle"
|
||||
desc = "A bottle of pre-made cake batter."
|
||||
icon_state = "bottle-1"
|
||||
prefill = list("cakebatter" = 60)
|
||||
|
||||
/obj/item/weapon/reagent_containers/glass/bottle/cinnamonpowder
|
||||
name = "cake batter bottle"
|
||||
desc = "A bottle with expensive cinnamon powder."
|
||||
icon_state = "bottle-1"
|
||||
prefill = list("cinnamonpowder" = 30) // Expensive!
|
||||
|
||||
/obj/item/weapon/reagent_containers/glass/bottle/nothing
|
||||
name = "empty bottle?"
|
||||
desc = "An apparently empty bottle."
|
||||
icon_state = "bottle-1"
|
||||
prefill = list("nothing" = 60)
|
||||
|
||||
/obj/item/weapon/reagent_containers/glass/bottle/gelatin
|
||||
name = "gelatin bottle"
|
||||
desc = "A bottle full of gelatin."
|
||||
icon_state = "bottle-1"
|
||||
prefill = list("gelatin" = 60)
|
||||
Reference in New Issue
Block a user