diff --git a/code/modules/food_and_drinks/drinks/drinks/bottle.dm b/code/modules/food_and_drinks/drinks/drinks/bottle.dm index 7a61fd5f981..f5fc875642c 100644 --- a/code/modules/food_and_drinks/drinks/drinks/bottle.dm +++ b/code/modules/food_and_drinks/drinks/drinks/bottle.dm @@ -288,6 +288,12 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe/premium/redact() return +/obj/item/weapon/reagent_containers/food/drinks/bottle/lizardwine + name = "Bottle of lizard wine" + desc = "An alcoholic beverage from Space China, made by infusing lizard tails in ethanol. Inexplicably popular among command staff." + icon_state = "lizardwine" + list_reagents = list("lizardwine" = 100) + //////////////////////////JUICES AND STUFF /////////////////////// /obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm index 32dea3f7b57..485e1552d1d 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm @@ -269,4 +269,14 @@ /datum/reagent/consumable/capsaicin = 2 ) result = /obj/item/weapon/reagent_containers/food/snacks/stuffedlegion + category = CAT_FOOD + +/datum/crafting_recipe/lizardwine + name = "Lizard wine" + time = 40 + reqs = list( + /obj/item/severedtail = 1, + /datum/reagent/consumable/ethanol = 100 + ) + result = /obj/item/weapon/reagent_containers/food/drinks/bottle/lizardwine category = CAT_FOOD \ No newline at end of file diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index 4f696604516..d87039f859b 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -190,6 +190,13 @@ All effects don't start immediately, but rather get worse over time; the rate is color = "#7E4043" // rgb: 126, 64, 67 boozepwr = 35 +/datum/reagent/consumable/ethanol/lizardwine + name = "Lizard wine" + id = "lizardwine" + description = "An alcoholic beverage from Space China, made by infusing lizard tails in ethanol." + color = "#7E4043" // rgb: 126, 64, 67 + boozepwr = 45 + /datum/reagent/consumable/ethanol/grappa name = "Grappa" id = "grappa" diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 370a97c8fc8..a90d4b19f1a 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ