diff --git a/code/modules/cargo/bounties/chef.dm b/code/modules/cargo/bounties/chef.dm index a66d6cfd381..d0e946ba2a6 100644 --- a/code/modules/cargo/bounties/chef.dm +++ b/code/modules/cargo/bounties/chef.dm @@ -32,6 +32,13 @@ required_count = 3 wanted_types = list(/obj/item/reagent_containers/food/snacks/icecreamsandwich) +/datum/bounty/item/chef/strawberryicecreamsandwich + name = " Strawberry Ice Cream Sandwiches" + description = "Upper management has been screaming non-stop for more flavourful ice cream. Please send some." + reward = 5000 + required_count = 3 + wanted_types = list(/obj/item/reagent_containers/food/snacks/strawberryicecreamsandwich) + /datum/bounty/item/chef/bread name = "Bread" description = "Problems with central planning have led to bread prices skyrocketing. Ship some bread to ease tensions." diff --git a/code/modules/food_and_drinks/food/snacks_frozen.dm b/code/modules/food_and_drinks/food/snacks_frozen.dm index 694fbd55fff..ce0aef118ce 100644 --- a/code/modules/food_and_drinks/food/snacks_frozen.dm +++ b/code/modules/food_and_drinks/food/snacks_frozen.dm @@ -13,6 +13,17 @@ tastes = list("ice cream" = 1) foodtype = GRAIN | DAIRY | SUGAR +/obj/item/reagent_containers/food/snacks/strawberryicecreamsandwich + name = "strawberry ice cream sandwich" + desc = "Portable ice-cream in its own packaging of the strawberry variety." + icon = 'icons/obj/food/frozen_treats.dmi' + icon_state = "strawberryicecreamsandwich" + bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/ice = 2) + list_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/ice = 2) + tastes = list("ice cream" = 2, "berry" = 2) + foodtype = FRUIT | DAIRY | SUGAR + + /obj/item/reagent_containers/food/snacks/spacefreezy name = "space freezy" desc = "The best icecream in space." diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm index aec81e1785f..588eb863fbd 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm @@ -13,6 +13,16 @@ result = /obj/item/reagent_containers/food/snacks/icecreamsandwich subcategory = CAT_ICE +/datum/crafting_recipe/food/strawberryicecreamsandwich + name = "Strawberry ice cream sandwich" + reqs = list( + /datum/reagent/consumable/cream = 5, + /datum/reagent/consumable/ice = 5, + /obj/item/reagent_containers/food/snacks/grown/berries = 2, + ) + result = /obj/item/reagent_containers/food/snacks/strawberryicecreamsandwich + subcategory = CAT_ICE + /datum/crafting_recipe/food/spacefreezy name ="Space freezy" reqs = list( diff --git a/icons/obj/food/frozen_treats.dmi b/icons/obj/food/frozen_treats.dmi index 81a230a8634..453bfaf277b 100644 Binary files a/icons/obj/food/frozen_treats.dmi and b/icons/obj/food/frozen_treats.dmi differ