mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 14:08:31 +01:00
Adds grenadine. (#37598)
* Adds the grenadine sprite to drinks.dmi * Everything else, woops! * Sprite tweaks. * Requested changes! * hopefully fixes merge conflict issues. * Removes bad files! * Messed that one up! * dupe! * dupes...
This commit is contained in:
committed by
Jordan Brown
parent
c7bb736ef6
commit
b0b7f2df9a
@@ -371,6 +371,15 @@
|
||||
isGlass = FALSE
|
||||
list_reagents = list("menthol" = 100)
|
||||
|
||||
/obj/item/reagent_containers/food/drinks/bottle/grenadine
|
||||
name = "Jester Grenadine"
|
||||
desc = "Contains 0% real cherries!"
|
||||
icon_state = "grenadine"
|
||||
isGlass = TRUE
|
||||
list_reagents = list("grenadine" = 100)
|
||||
foodtype = FRUIT
|
||||
|
||||
|
||||
////////////////////////// MOLOTOV ///////////////////////
|
||||
/obj/item/reagent_containers/food/drinks/bottle/molotov
|
||||
name = "molotov cocktail"
|
||||
|
||||
@@ -141,8 +141,8 @@
|
||||
/datum/chemical_reaction/tequila_sunrise
|
||||
name = "tequila Sunrise"
|
||||
id = "tequilasunrise"
|
||||
results = list("tequilasunrise" = 3)
|
||||
required_reagents = list("tequila" = 2, "orangejuice" = 1)
|
||||
results = list("tequilasunrise" = 5)
|
||||
required_reagents = list("tequila" = 2, "orangejuice" = 2, "grenadine" = 1)
|
||||
|
||||
/datum/chemical_reaction/toxins_special
|
||||
name = "Toxins Special"
|
||||
@@ -662,3 +662,4 @@
|
||||
id = "mojito"
|
||||
results = list("mojito" = 5)
|
||||
required_reagents = list("rum" = 1, "sugar" = 1, "limejuice" = 1, "sodawater" = 1, "menthol" = 1)
|
||||
|
||||
|
||||
@@ -431,6 +431,7 @@ obj/machinery/chem_dispenser/proc/work_animation()
|
||||
"shamblers",
|
||||
"sugar",
|
||||
"orangejuice",
|
||||
"grenadine",
|
||||
"limejuice",
|
||||
"tomatojuice",
|
||||
"lemonjuice",
|
||||
|
||||
@@ -561,10 +561,10 @@ All effects don't start immediately, but rather get worse over time; the rate is
|
||||
/datum/reagent/consumable/ethanol/tequila_sunrise
|
||||
name = "Tequila Sunrise"
|
||||
id = "tequilasunrise"
|
||||
description = "Tequila and orange juice. Much like a Screwdriver, only Mexican~"
|
||||
description = "Tequila, Grenadine, and Orange Juice."
|
||||
color = "#FFE48C" // rgb: 255, 228, 140
|
||||
boozepwr = 45
|
||||
taste_description = "oranges"
|
||||
taste_description = "oranges with a hint of pomegranate"
|
||||
glass_icon_state = "tequilasunriseglass"
|
||||
glass_name = "tequila Sunrise"
|
||||
glass_desc = "Oh great, now you feel nostalgic about sunrises back on Terra..."
|
||||
|
||||
@@ -721,7 +721,6 @@
|
||||
description = "Milk for cool kids."
|
||||
color = "#7D4E29"
|
||||
taste_description = "chocolate milk"
|
||||
|
||||
/datum/reagent/consumable/menthol
|
||||
name = "Menthol"
|
||||
id = "menthol"
|
||||
@@ -731,3 +730,12 @@
|
||||
glass_icon_state = "glass_green"
|
||||
glass_name = "glass of menthol"
|
||||
glass_desc = "Tastes naturally minty, and imparts a very mild numbing sensation."
|
||||
|
||||
/datum/reagent/consumable/grenadine
|
||||
name = "Grenadine"
|
||||
id = "grenadine"
|
||||
description = "Not cherry flavored!"
|
||||
color = "#EA1D26"
|
||||
taste_description = "sweet pomegranates"
|
||||
glass_name = "glass of grenadine"
|
||||
glass_desc = "Delicious flavored syrup."
|
||||
@@ -180,7 +180,7 @@ Borg Shaker
|
||||
recharge_time = 3
|
||||
accepts_reagent_upgrades = FALSE
|
||||
|
||||
reagent_ids = list("beer", "orangejuice", "limejuice", "tomatojuice", "cola", "tonic", "sodawater", "ice", "cream", "whiskey", "vodka", "rum", "gin", "tequila", "vermouth", "wine", "kahlua", "cognac", "ale")
|
||||
reagent_ids = list("beer", "orangejuice", "grenadine" ,"limejuice", "tomatojuice", "cola", "tonic", "sodawater", "ice", "cream", "whiskey", "vodka", "rum", "gin", "tequila", "vermouth", "wine", "kahlua", "cognac", "ale")
|
||||
|
||||
/obj/item/reagent_containers/borghypo/borgshaker/attack(mob/M, mob/user)
|
||||
return //Can't inject stuff with a shaker, can we? //not with that attitude
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
/obj/item/reagent_containers/food/drinks/bottle/orangejuice = 4,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/tomatojuice = 4,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/limejuice = 4,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/grenadine = 4,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/menthol = 4,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/cream = 4,
|
||||
/obj/item/reagent_containers/food/drinks/soda_cans/tonic = 8,
|
||||
@@ -39,5 +40,5 @@
|
||||
/obj/item/vending_refill/boozeomat
|
||||
machine_name = "Booze-O-Mat"
|
||||
icon_state = "refill_booze"
|
||||
charges = list(59, 4, 0)//of 178 standard, 12 contraband
|
||||
init_charges = list(59, 4, 0)
|
||||
charges = list(61, 4, 0)//of 182 standard, 12 contraband
|
||||
init_charges = list(61, 4, 0)
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 70 KiB |
Reference in New Issue
Block a user