For karl!

This commit is contained in:
eyespy
2023-04-04 16:03:42 +10:00
parent 8a93c57397
commit 9f91af7742
6 changed files with 70 additions and 3 deletions
@@ -0,0 +1,28 @@
///GS13 drinks!
/datum/reagent/consumable/ethanol/oily_oafs
name = "Oily oafs"
description = "The oily oaf. while it isn't as strong as some of the other drinks on station, Its buttery aftertaste and affordability make it a staple of any good miner's diet."
color = "#ffc75f"
boozepwr = 30
taste_description = "rich butter and red sugar"
//quality = DRINK_NICE we need to get drink quality implemented in our drink files -Eye
glass_icon_state = "oily_oafs"
glass_name = "oily oafs"
glass_desc = "The oily oaf. A dwarvern classic beloved by miners around the cosmos."
shot_glass_icon_state = "shotglassbrown"
pH = 4.5
value = 0.1
/datum/reagent/consumable/ethanol/glyphid_slammer
name = "Glyphid slammer"
description = "A mixture of strong beer and energy drink. How it manages to be as strong as it is baffles scientists to this day"
color = "#FF8A33"
boozepwr = 60
taste_description = "Cheap booze and adventure"
glass_icon_state = "glyphid_slammer"
glass_name = "Glyphid slammer"
glass_desc = "A bold mixture of cheap energy drink, and even cheaper ale. Beloved by partygoers and daredevils across the galaxy. Beloathed by bugpeople"
shot_glass_icon_state = "shotglassbrown"
pH = 4.5
value = 0.1
@@ -0,0 +1,17 @@
//DRG drinks
/datum/chemical_reaction/oily_oafs
name = "Oily oafs"
id = /datum/reagent/consumable/ethanol/oily_oafs
results = list(/datum/reagent/consumable/ethanol/oily_oafs = 2)
required_reagents = list(/datum/reagent/consumable/ethanol/beer = 1, /datum/reagent/consumable/cream = 1)
/datum/chemical_reaction/glyphid_slammer
name = "Glyphid slammer"
id = /datum/reagent/consumable/ethanol/glyphid_slammer
results = list(/datum/reagent/consumable/ethanol/glyphid_slammer = 2)
required_reagents = list(/datum/reagent/consumable/pwr_game = 1, /datum/reagent/consumable/ethanol/beer = 1)