mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-10 15:36:56 +01:00
Merge pull request #237 from PatrickLeeJohnson/milkshakes
Vanilla and chocolate milkshakes.
This commit is contained in:
@@ -131,3 +131,29 @@
|
||||
else
|
||||
M.nutrition += 1
|
||||
..()
|
||||
|
||||
/datum/reagent/consumable/milkshake_vanilla
|
||||
name = "Vanilla Milkshake"
|
||||
description = "A plain vanilla milkshake. A classic."
|
||||
color = "#DFDFDF"
|
||||
taste_description = "creamy vanilla"
|
||||
quality = DRINK_VERYGOOD
|
||||
nutriment_factor = 6 * REAGENTS_METABOLISM
|
||||
glass_icon_state = "milkshake_vanilla"
|
||||
glass_name = "vanilla milkshake"
|
||||
glass_desc = "Guess they fixed the milkshake machine after all, huh?"
|
||||
shot_glass_icon_state = "shotglasscream"
|
||||
hydration = 3
|
||||
|
||||
/datum/reagent/consumable/milkshake_chocolate
|
||||
name = "Chocolate Milkshake"
|
||||
description = "It's like chocolate milk, but for even cooler kids."
|
||||
color = "#7D4E29"
|
||||
taste_description = "creamy chocolate"
|
||||
quality = DRINK_VERYGOOD
|
||||
nutriment_factor = 8 * REAGENTS_METABOLISM
|
||||
glass_icon_state = "milkshake_chocolate"
|
||||
glass_name = "chocolate milkshake"
|
||||
glass_desc = "Nothing better than cream AND cocoa!"
|
||||
shot_glass_icon_state = "shotglassbrown"
|
||||
hydration = 3
|
||||
@@ -40,4 +40,16 @@
|
||||
name = "Snakebite"
|
||||
id = /datum/reagent/consumable/snakebite
|
||||
results = list(/datum/reagent/consumable/snakebite = 3)
|
||||
required_reagents = list(/datum/reagent/toxin = 1, /datum/reagent/consumable/limejuice = 1, /datum/reagent/consumable/lipoifier = 1)
|
||||
required_reagents = list(/datum/reagent/toxin = 1, /datum/reagent/consumable/limejuice = 1, /datum/reagent/consumable/lipoifier = 1)
|
||||
|
||||
/datum/chemical_reaction/milkshake_vanilla
|
||||
name = "Vanilla Milkshake"
|
||||
id = /datum/reagent/consumable/milkshake_vanilla
|
||||
results = list(/datum/reagent/consumable/milkshake_vanilla = 3)
|
||||
required_reagents = list(/datum/reagent/consumable/milk = 1, /datum/reagent/consumable/cream = 1, /datum/reagent/consumable/vanilla = 1)
|
||||
|
||||
/datum/chemical_reaction/milkshake_chocolate
|
||||
name = "Chocolate Milkshake"
|
||||
id = /datum/reagent/consumable/milkshake_chocolate
|
||||
results = list(/datum/reagent/consumable/milkshake_chocolate = 3)
|
||||
required_reagents = list(/datum/reagent/consumable/milk/chocolate_milk = 1, /datum/reagent/consumable/cream = 1, /datum/reagent/consumable/coco = 1)
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 109 KiB |
Reference in New Issue
Block a user