Merge pull request #10234 from klaasjared/Bringing-back-the-Bepsi

Bringing Back the Bepsi
This commit is contained in:
Novacat
2021-05-03 00:00:02 -04:00
committed by GitHub
6 changed files with 168 additions and 1 deletions
+75
View File
@@ -0,0 +1,75 @@
//////////////////////Bepis Drinks (04/29/2021)//////////////////////
/obj/item/weapon/reagent_containers/food/drinks/cans/bepis
name = "\improper Bepis"
desc = "It has a smell of 'off-brand' whenever you open it..."
description_fluff = "Puts the 'B' in Best Soda! Bepis is the number one competitor to \
Space Cola and has vendors scattered across the frontier. While the drink is not as \
popular as Space Cola, many people across known space enjoy the sweet beverage."
icon = 'icons/obj/drinks_vr.dmi'
icon_state = "bepis"
center_of_mass = list("x"=16, "y"=10)
/obj/item/weapon/reagent_containers/food/drinks/cans/bepis/Initialize()
. = ..()
reagents.add_reagent("bepis", 30)
/obj/item/weapon/reagent_containers/food/drinks/cans/astrodew
name = "\improper Astro Dew Spring Water"
desc = "A can of refreshing 'spring' water! Or so the can claims."
icon = 'icons/obj/drinks_vr.dmi'
icon_state = "watercan"
center_of_mass = list("x"=16, "y"=10)
/obj/item/weapon/reagent_containers/food/drinks/cans/astrodew/Initialize()
. = ..()
reagents.add_reagent("water", 30)
/obj/item/weapon/reagent_containers/food/drinks/cans/icecoffee
name = "\improper Café Del Consumir"
desc = "A can of deliciously sweet iced coffee that originates from Earth."
description_fluff = "Café Del Consumir originates from a small coffee brewery in México \
that still opperates to this day. Café Del Consumir prides itself on being true to form \
and retaining its original recipe. They've been producing and selling thier product across \
the galaxy for decades without fail. NanoTrasen has attempted to by out the small company for \
years now, howerver all attempts they've made have failed."
icon = 'icons/obj/drinks_vr.dmi'
icon_state = "coffeecan"
center_of_mass = list("x"=16, "y"=10)
/obj/item/weapon/reagent_containers/food/drinks/cans/icecoffee/Initialize()
. = ..()
reagents.add_reagent("icecoffee", 30)
/obj/item/weapon/reagent_containers/food/drinks/cans/buzz
name = "\improper Buzz Fuzz"
desc = "Uses real honey, making it a sweet tooth's dream drink."
icon = 'icons/obj/drinks_vr.dmi'
icon_state = "buzzfuzz"
center_of_mass = list("x"=16, "y"=10)
/obj/item/weapon/reagent_containers/food/drinks/cans/buzz/Initialize()
. = ..()
reagents.add_reagent("buzz_fuzz", 30)
/obj/item/weapon/reagent_containers/food/drinks/cans/shambler
name = "\improper Shambler's Juice"
desc = "~Shake me up some of that Shambler's Juice!~"
icon = 'icons/obj/drinks_vr.dmi'
icon_state = "shambler"
center_of_mass = list("x"=16, "y"=10)
/obj/item/weapon/reagent_containers/food/drinks/cans/shambler/Initialize()
. = ..()
reagents.add_reagent("shamblers", 30)
/obj/item/weapon/reagent_containers/food/drinks/cans/cranberry
name = "\improper Sprited Cranberry"
desc = "A delicious blend of fresh cranberry juice and various spices, the perfect drink."
icon = 'icons/obj/drinks_vr.dmi'
icon_state = "cranberry"
center_of_mass = list("x"=16, "y"=10)
/obj/item/weapon/reagent_containers/food/drinks/cans/cranberry/Initialize()
. = ..()
reagents.add_reagent("sprited_cranberry", 30)
@@ -458,4 +458,62 @@
M.adjustToxLoss(removed) //Equivalent to half as much protein, since it's half protein.
if(M.species.organic_food_coeff)
if(alien == IS_SLIME || alien == IS_CHIMERA) //slimes and chimera can get nutrition from injected nutriment and protein
M.nutrition += (alt_nutriment_factor * removed)
M.nutrition += (alt_nutriment_factor * removed)
//////////////////////Bepis Drinks (04/29/2021)//////////////////////
/datum/reagent/drink/soda/bepis_cola
name = "Bepis"
id = "bepis"
description = "A weird cola-like beverage."
taste_description = "bepsi"
reagent_state = LIQUID
color = "#100800"
adj_drowsy = -3
adj_temp = -5
glass_name = "Bepis Cola"
glass_desc = "A glass of weird cola beverage."
glass_special = list(DRINK_FIZZ)
/datum/reagent/drink/soda/buzz_fuzz
name = "Buzz Fuzz"
id = "buzz_fuzz"
description = "A delicious frontier beverage that's simply a Hive of Flavour!"
taste_description = "carbonated honey and pollen"
reagent_state = LIQUID
color = "#8CFF00"
adj_drowsy = -3
adj_temp = -5
glass_name = "Buzz Fuzz"
glass_desc = "A glass that's stinging with flavour."
glass_special = list(DRINK_FIZZ)
/datum/reagent/drink/soda/sprited_cranberry
name = "Sprited Cranberry"
id = "sprited_cranberry"
description = "A winter spiced cranberry drink. Perfect for year-round consumption."
taste_description = "sweet spiced cranberry"
reagent_state = LIQUID
color = "#fffafa"
adj_drowsy = -3
adj_temp = -5
glass_name = "Sprited Cranberry"
glass_desc = "A glass of sprited cranberry"
glass_special = list(DRINK_FIZZ)
/datum/reagent/drink/soda/shamblers
name = "Shambler's Juice"
id = "shamblers"
description = "A strange off-brand beverage that's bursting with flavor."
taste_description = "carbonated metallic soda"
reagent_state = LIQUID
color = "#f00060"
adj_drowsy = -3
adj_temp = -5
glass_name = "Shambler's Juice"
glass_desc = "A glass of something shambly"
glass_special = list(DRINK_FIZZ)