diff --git a/code/modules/food_and_drinks/food/condiment.dm b/code/modules/food_and_drinks/food/condiment.dm index 0b7719f93a..19633ba87a 100644 --- a/code/modules/food_and_drinks/food/condiment.dm +++ b/code/modules/food_and_drinks/food/condiment.dm @@ -384,15 +384,17 @@ desc = "A jar of super heavy and dense strawberry jam" icon_state = "strawberryjam" list_reagents = list(/datum/reagent/consumable/strawberryjam = 50) + /obj/item/reagent_containers/food/condiment/raspberryjam name = "Raspberry Jam" desc = "A jar of sweet raspberry jam" icon_state = "raspberryjam" list_reagents = list(/datum/reagent/consumable/raspberryjam = 50) - + /obj/item/reagent_containers/food/condiment/lemonjam name = "Strawberry Jam" - desc = "A Jar of sweet lemon jam" + desc = "A Jar of tangy lemon jam" icon_state = "lemonjam" list_reagents = list(/datum/reagent/consumable/lemonjam = 50) + diff --git a/code/modules/food_and_drinks/food/snacks_other.dm b/code/modules/food_and_drinks/food/snacks_other.dm index 8fac1511c7..f9098bd752 100644 --- a/code/modules/food_and_drinks/food/snacks_other.dm +++ b/code/modules/food_and_drinks/food/snacks_other.dm @@ -1003,15 +1003,18 @@ desc= "A Jar of really heavy and dense strawberry jam." icon_state = "strawberryjam" list_reagents = list(/datum/reagent/consumable/strawberryjam = 40) + w_class = 3 /obj/item/reagent_containers/food/snacks/raspberryjam name = "Raspberry Jam" desc= "A Jar of sweet raspberry jam." icon_state = "raspberryjam" list_reagents = list(/datum/reagent/consumable/raspberryjam = 10) + w_class = 2 /obj/item/reagent_containers/food/snacks/lemonjam name = "Lemon Jam" desc= "A Jar of sweet lemon jam." icon_state = "lemonjam" list_reagents = list(/datum/reagent/consumable/lemonjam = 10) + w_class = 2 diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index ca63541f59..f7c8e2df48 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -1061,14 +1061,14 @@ /datum/reagent/consumable/raspberryjam name = "Raspberry Jam" - description = "A jar of sweet raspberry jam" + description = "Some very tasty sweet raspberry jam" nutriment_factor = 10 * REAGENTS_METABOLISM taste_description = "calming raspberry" color = "#630807" /datum/reagent/consumable/lemonjam name = "Lemon Jam" - description = "A jar of sweet lemon jam" + description = "Some very tangy lemon jam" nutriment_factor = 10 * REAGENTS_METABOLISM taste_description = "very tangy lemon" color = "#f5fc19"