Adds two new beers: lager and stout (#25476)

* Adds stout and lager

* forgot to give the stout a taste

* Halves the blood replenishment of stout

* Update code/modules/reagents/chemistry/reagents/alcohol.dm

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Signed-off-by: J.J <108263534+ChocoboLord@users.noreply.github.com>

---------

Signed-off-by: J.J <108263534+ChocoboLord@users.noreply.github.com>
Co-authored-by: JWheeler <108263534+BunnyGirlJen@users.noreply.github.com>
Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
This commit is contained in:
J.J
2024-05-30 16:12:40 +01:00
committed by GitHub
parent c38eddeaae
commit 8f0af32b19
3 changed files with 30 additions and 1 deletions
@@ -373,7 +373,7 @@
name = "booze dispenser"
ui_title = "Booze Portal 9001"
desc = "A technological marvel, supposedly able to mix just the mixture you'd like to drink the moment you ask for one."
dispensable_reagents = list("ice", "cream", "cider", "beer", "kahlua", "whiskey", "wine", "vodka", "gin", "rum", "tequila", "vermouth", "cognac", "ale", "mead", "synthanol")
dispensable_reagents = list("ice", "cream", "cider", "beer", "kahlua", "whiskey", "wine", "vodka", "gin", "rum", "tequila", "vermouth", "cognac", "ale", "mead", "synthanol", "lager", "stout")
upgrade_reagents = list("iced_beer", "irishcream", "manhattan", "antihol", "synthignon", "bravebull")
hacked_reagents = list("goldschlager", "patron", "absinthe", "ethanol", "nothing", "sake")
hack_message = "You disable the 'nanotrasen-are-cheap-bastards' lock, enabling hidden and very expensive boozes."
@@ -1862,3 +1862,32 @@
mutated = TRUE
return ..()
/datum/reagent/consumable/ethanol/lager
name = "Lager"
id = "lager"
description = "A pale beer commonly drank by football hooligans"
color = "#664300"
alcohol_perc = 0.4
drink_icon = "lagerglass"
drink_name = "Starlink Lager"
drink_desc = "A pale beer that's the cause of many a soccer-related fight"
taste_description = "an own goal"
/datum/reagent/consumable/ethanol/stout
name = "Stout"
id = "stout"
description = "A pitch black beer, high in iron content"
color = "#000000"
alcohol_perc = 0.4
drink_icon = "stoutglass"
drink_name = "Stout"
drink_desc = "A pitch black beer from Ireland, high in iron content"
taste_description = "the luck of the Irish"
/datum/reagent/consumable/ethanol/stout/on_mob_life(mob/living/M) // Replenishes blood, seeing as there's iron in it
if(ishuman(M))
var/mob/living/carbon/human/H = M
if(!(NO_BLOOD in H.dna.species.species_traits) && (H.blood_volume < BLOOD_VOLUME_NORMAL))
H.blood_volume += 0.4
return ..()