More drink! (#12369)

This commit is contained in:
desven
2021-08-26 00:26:15 -05:00
committed by GitHub
parent fbc98d3208
commit 5a7e62552f
9 changed files with 102 additions and 2 deletions

View File

@@ -4789,5 +4789,44 @@
glass_name = "glass of gibb floats"
glass_desc = "A floating soda of icecream and Dr. Gibb."
/decl/reagent/drink/diet_cola
name = "Diet Cola"
description = "Space Cola! Now in diet!"
color = "#100800"
taste_description = "cola and less calories"
carbonated = TRUE
glass_icon_state = "spacecola"
glass_name = "glass of diet cola"
glass_desc = "Space Cola! Now in diet!"
/decl/reagent/drink/milk/chocolate
name = "Chocolate milk"
description = "A mixture of perfectly healthy milk and delicious chocolate."
color = "#74533b"
taste_description = "chocolate milk"
glass_icon_state = "glass_chocolate"
glass_name = "glass of chocolate milk"
glass_desc = "A mixture of perfectly healthy milk and delicious chocolate."
/decl/reagent/drink/milk/strawberry
name = "Strawberry milk"
description = "A mixture of perfectly healthy milk and delicious strawberry."
color = "#fc5a8d"
taste_description = "strawberry milk"
glass_icon_state = "glass_strawberry"
glass_name = "glass of strawberry milk"
glass_desc = "A mixture of perfectly healthy milk and delicious strawberry."
/decl/reagent/drink/peach_soda
name = "Xanu Rush!"
description = "Made from the NEW Xanu Prime peaches."
color = "#FFE5B4"
taste_description = "dull peaches"
carbonated = TRUE
glass_icon_state = "glass_red"
glass_name = "glass of Xanu Rush!"
glass_desc = "Made from the NEW Xanu Prime peaches."

View File

@@ -462,3 +462,18 @@
center_of_mass = list("x"=16, "y"=10)
reagents_to_add = list(/decl/reagent/drink/hrozamal_soda = 30)
/obj/item/reagent_containers/food/drinks/cans/diet_cola
name = "Diet Cola"
desc = "Space Cola! Now in diet!"
icon_state = "diet_cola"
center_of_mass = list("x"=16, "y"=10)
reagents_to_add = list(/decl/reagent/drink/diet_cola = 30)
/obj/item/reagent_containers/food/drinks/cans/peach_soda
name = "Xanu Rush!"
desc = "Made from the NEW Xanu Prime peaches."
desc_fluff = "The rehabilitating environment of Xanu has allowed for small-scale agriculture to bloom. Xanu Rush! Is the number one Coalition soda, despite its dull taste."
icon_state = "xanu_rush"
center_of_mass = list("x"=16, "y"=10)
reagents_to_add = list(/decl/reagent/drink/peach_soda = 30)

View File

@@ -567,3 +567,33 @@ If you add a drink with no empty icon sprite, ensure it is flagged as NO_EMPTY_I
icon_state = "britcup"
volume = 30
center_of_mass = list("x"=15, "y"=13)
/obj/item/reagent_containers/food/drinks/small_milk
name = "small milk carton"
desc = "It's milk. White and nutritious goodness!"
icon_state = "mini-milk"
item_state = "carton"
drop_sound = 'sound/items/drop/papercup.ogg'
pickup_sound = 'sound/items/pickup/papercup.ogg'
center_of_mass = list("x"=16, "y"=14)
reagents_to_add = list(/decl/reagent/drink/milk = 20)
/obj/item/reagent_containers/food/drinks/small_milk_choco
name = "small chocolate milk carton"
desc = "It's milk. This one is in delicious chocolate flavor."
icon_state = "mini-milk_choco"
item_state = "carton"
drop_sound = 'sound/items/drop/papercup.ogg'
pickup_sound = 'sound/items/pickup/papercup.ogg'
center_of_mass = list("x"=16, "y"=14)
reagents_to_add = list(/decl/reagent/drink/milk/chocolate = 20)
/obj/item/reagent_containers/food/drinks/small_milk_strawberry
name = "small strawberry milk carton"
desc = "It's milk. This one is in delicious strawberry flavor."
icon_state = "mini-milk_strawberry"
item_state = "carton"
drop_sound = 'sound/items/drop/papercup.ogg'
pickup_sound = 'sound/items/pickup/papercup.ogg'
center_of_mass = list("x"=16, "y"=14)
reagents_to_add = list(/decl/reagent/drink/milk/strawberry = 20)