From e6eb81de3422fa829aedbbcc865503c07fecdaa7 Mon Sep 17 00:00:00 2001 From: UmeFuu <35434208+UmeFuu@users.noreply.github.com> Date: Tue, 12 Feb 2019 20:16:50 -0300 Subject: [PATCH] Balances cookies reagents Chocolate chips cookies now have hot_coco so they actually taste like chocolate and also sugar Sugar cookies now have 1u of nutriment (they had 3 before) so they're equal the chocolate chips cookies --- code/modules/food_and_drinks/food/foods/baked_goods.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/food/foods/baked_goods.dm b/code/modules/food_and_drinks/food/foods/baked_goods.dm index 1115b42014e..0746f37d113 100644 --- a/code/modules/food_and_drinks/food/foods/baked_goods.dm +++ b/code/modules/food_and_drinks/food/foods/baked_goods.dm @@ -201,7 +201,7 @@ icon_state = "COOKIE!!!" bitesize = 1 filling_color = "#DBC94F" - list_reagents = list("nutriment" = 1) + list_reagents = list("nutriment" = 1, "sugar" = 3, "hot_coco" = 5 ) /obj/item/reagent_containers/food/snacks/fortunecookie name = "fortune cookie" @@ -215,7 +215,7 @@ name = "sugar cookie" desc = "Just like your little sister used to make." icon_state = "sugarcookie" - list_reagents = list("nutriment" = 3, "sugar" = 3) + list_reagents = list("nutriment" = 1, "sugar" = 3) //////////////////////