Adds Fernet, a digestif that reduces your satiety.

This commit is contained in:
ThePainkiller
2018-05-17 10:19:40 -05:00
committed by letterjay
parent 56544307ec
commit e2bcf82341
6 changed files with 155 additions and 1 deletions
@@ -298,6 +298,32 @@
icon_state = "grappabottle"
list_reagents = list("grappa" = 100)
<<<<<<< HEAD
=======
/obj/item/reagent_containers/food/drinks/bottle/sake
name = "Ryo's traditional sake"
desc = "Sweet as can be, and burns like fire going down."
icon_state = "sakebottle"
list_reagents = list("sake" = 100)
/obj/item/reagent_containers/food/drinks/bottle/sake/Initialize()
. = ..()
if(prob(10))
name = "Fluffy Tail Sake"
desc += " On the bottle is a picture of a kitsune with nine touchable tails."
icon_state = "sakebottle_k"
else if(prob(10))
name = "Inubashiri's Home Brew"
desc += " Awoo."
icon_state = "sakebottle_i"
/obj/item/reagent_containers/food/drinks/bottle/fernet
name = "Fernet Bronca"
desc = "A bottle of pure Fernet Bronca, produced in Cordoba Space Station"
icon_state = "fernetbottle"
list_reagents = list("fernet" = 100)
>>>>>>> 703ab07... Adds Fernet, a digestif that reduces your satiety. (#37869)
//////////////////////////JUICES AND STUFF ///////////////////////
/obj/item/reagent_containers/food/drinks/bottle/orangejuice
@@ -662,3 +662,25 @@
id = "mojito"
results = list("mojito" = 5)
required_reagents = list("rum" = 1, "sugar" = 1, "limejuice" = 1, "sodawater" = 1, "menthol" = 1)
<<<<<<< HEAD
=======
/datum/chemical_reaction/fernet_cola
name = "Fernet Cola"
id = "fernet_cola"
results = list("fernet_cola" = 2)
required_reagents = list("fernet" = 1, "cola" = 1)
/datum/chemical_reaction/fanciulli
name = "Fanciulli"
id = "fanciulli"
results = list("fanciulli" = 2)
required_reagents = list("manhattan" = 1, "fernet" = 1)
/datum/chemical_reaction/branca_menta
name = "Branca Menta"
id = "branca_menta"
results = list("branca_menta" = 3)
required_reagents = list("fernet" = 1, "creme_de_menthe" = 1, "ice" = 1)
>>>>>>> 703ab07... Adds Fernet, a digestif that reduces your satiety. (#37869)