diff --git a/code/modules/economy/price_list.dm b/code/modules/economy/price_list.dm index e9c8b1372d..cc359cfc0e 100644 --- a/code/modules/economy/price_list.dm +++ b/code/modules/economy/price_list.dm @@ -138,6 +138,8 @@ /datum/reagent/ethanol/coffee/brave_bull // Not an original liquor in its own. But since it's a mix of purely Tequila price_tag = 5 // and Kahlua, it's basically just another one and gets the same price. +/datum/reagent/ethanol/snaps + price_tag = 5 // Wines // @@ -486,6 +488,8 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine price_tag = 15 +/obj/item/weapon/reagent_containers/food/drinks/bottle/snaps + price_tag = 15 // Wines // diff --git a/code/modules/examine/descriptions/containers.dm b/code/modules/examine/descriptions/containers.dm index 83a97086b4..93c6d98097 100644 --- a/code/modules/examine/descriptions/containers.dm +++ b/code/modules/examine/descriptions/containers.dm @@ -96,3 +96,6 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/sake description_fluff = "An export from New Kyoto, Mono-no-Aware promises to show to the drinker the beautiful transience of all life. Mostly it just tastes like dry booze." + +/obj/item/weapon/reagent_containers/food/drinks/bottle/snaps + description_fluff = "Its a wonder how such an ancient and obscure drink from Earth made it all the way out here." \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index bdccd1b07d..878b3fd0c0 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -3008,4 +3008,15 @@ strength = 15 glass_name = "Brimming glass of spiders" - glass_desc = "A glass filled to the brim with tiny drunk spiderlings. Lets hope they dont escape." \ No newline at end of file + glass_desc = "A glass filled to the brim with tiny drunk spiderlings. Lets hope they dont escape." + +/datum/reagent/ethanol/snaps + name = "Akvavit" + id = "snaps" + description = "Burns the nose and throat and soothes it with a herby aftertaste...Barely." + taste_description = "strong spirit and a little dill" + color = "e6d670" // rgb: 230, 214, 112 + strength = 15 + + glass_name = "akvavit" + glass_desc = "Burns the nose and throat, and soothes it with a herby aftertaste...Barely." \ No newline at end of file diff --git a/code/modules/reagents/reagent_containers/food/drinks/bottle.dm b/code/modules/reagents/reagent_containers/food/drinks/bottle.dm index 0a09b22fe9..3aee3fc815 100644 --- a/code/modules/reagents/reagent_containers/food/drinks/bottle.dm +++ b/code/modules/reagents/reagent_containers/food/drinks/bottle.dm @@ -416,6 +416,16 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/redeemersbrew/New() ..() reagents.add_reagent("unathiliquor", 100) + +/obj/item/weapon/reagent_containers/food/drinks/bottle/snaps + name = "Akvavit" + desc = "This could go well with lunch." + icon_state = "snapsbottle" + center_of_mass = list("x"=17, "y"=3) + +/obj/item/weapon/reagent_containers/food/drinks/bottle/snaps/New() + ..() + reagents.add_reagent("snaps", 100) //////////////////////////JUICES AND STUFF /////////////////////// diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 2d3cb98787..6b88bde9e9 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ