Add ginger ale. (#30915)

* Add ginger ale.

* Change name of ginger ale can to Zingiber Gold.
This commit is contained in:
Alan
2025-11-10 16:37:19 +00:00
committed by GitHub
parent 3af59de586
commit 95a22490ae
6 changed files with 21 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
spread_flags = SPREAD_NON_CONTAGIOUS
cure_text = "Sleep"
agent = "Salmonella"
cures = list("chicken_soup")
cures = list("chicken_soup", "ginger_ale")
cure_chance = 10
viable_mobtypes = list(/mob/living/carbon/human)
desc = "Nausea, sickness, and vomitting."
+3
View File
@@ -62,6 +62,7 @@
/obj/item/reagent_containers/drinks/cans/cola = 8,
/obj/item/reagent_containers/drinks/cans/electrolytes = 4,
/obj/item/reagent_containers/drinks/cans/sodawater = 15,
/obj/item/reagent_containers/drinks/cans/ginger_ale = 8,
/obj/item/reagent_containers/drinks/drinkingglass = 30,
/obj/item/reagent_containers/drinks/drinkingglass/shotglass = 30,
/obj/item/reagent_containers/drinks/ice = 9)
@@ -1081,6 +1082,7 @@
/obj/item/reagent_containers/drinks/cans/starkist = 10,
/obj/item/reagent_containers/drinks/cans/space_up = 10,
/obj/item/reagent_containers/drinks/cans/grape_juice = 10,
/obj/item/reagent_containers/drinks/cans/ginger_ale = 10,
/obj/item/reagent_containers/drinks/cans/electrolytes = 10,
/obj/item/reagent_containers/glass/beaker/waterbottle = 10)
@@ -1092,6 +1094,7 @@
/obj/item/reagent_containers/drinks/cans/starkist = 50,
/obj/item/reagent_containers/drinks/cans/space_up = 50,
/obj/item/reagent_containers/drinks/cans/grape_juice = 50,
/obj/item/reagent_containers/drinks/cans/ginger_ale = 50,
/obj/item/reagent_containers/drinks/cans/electrolytes = 40,
/obj/item/reagent_containers/glass/beaker/waterbottle = 20)
@@ -237,6 +237,12 @@
icon_state = "sodawater"
list_reagents = list("sodawater" = 50)
/obj/item/reagent_containers/drinks/cans/ginger_ale
name = "Zingiber Gold"
desc = "A can of ginger ale. Second-best thing for a tummy ache."
icon_state = "ginger_ale_can"
list_reagents = list("ginger_ale" = 50)
/obj/item/reagent_containers/drinks/cans/synthanol
name = "Beep's Classic Synthanol"
desc = "A can of IPC booze, however that works."
@@ -351,7 +351,7 @@
dispensable_reagents = list("water", "ice", "milk", "soymilk", "coffee", "tea", "hot_coco", "cola", "spacemountainwind", "dr_gibb", "space_up",
"tonic", "sodawater", "lemon_lime", "grapejuice", "sugar", "orangejuice", "lemonjuice", "limejuice", "tomatojuice", "banana",
"watermelonjuice", "pineapplejuice", "cream", "berryjuice")
upgrade_reagents = list("electrolytes", "bananahonk", "milkshake", "cafe_latte", "cafe_mocha", "triple_citrus", "icecoffe","icetea")
upgrade_reagents = list("electrolytes", "ginger_ale", "bananahonk", "milkshake", "cafe_latte", "cafe_mocha", "triple_citrus", "icecoffe","icetea")
hacked_reagents = list("thirteenloko")
hack_message = "You change the mode from 'McNano' to 'Pizza King'."
unhack_message = "You change the mode from 'Pizza King' to 'McNano'."
@@ -996,3 +996,13 @@
if(H.blood_volume < BLOOD_VOLUME_NORMAL)
H.blood_volume += 0.5
return ..()
/datum/reagent/consumable/drink/gingerale
name = "Ginger Ale"
description = "Spicy and fizzy soda."
id = "ginger_ale"
color = "#996B2B"
drink_icon = "ginger_ale_glass"
drink_name = "Glass of Ginger Ale"
drink_desc = "Spicy and fizzy soda."
taste_description = "sweet, carbonated ginger"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 97 KiB