From 5dcea6ff9de099ff56d5367f65355010204c0421 Mon Sep 17 00:00:00 2001 From: GhostActual Date: Sun, 17 Apr 2022 13:31:31 -0400 Subject: [PATCH] Base Commit --- code/game/objects/items/weapons/chewables.dm | 7 +++---- code/modules/reagents/reagents/food_drinks.dm | 9 +++++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/weapons/chewables.dm b/code/game/objects/items/weapons/chewables.dm index a715fee32cb..59e95f103fb 100644 --- a/code/game/objects/items/weapons/chewables.dm +++ b/code/game/objects/items/weapons/chewables.dm @@ -287,13 +287,12 @@ desc = "A chocolate-coated biscuit stick." icon_state = "pockystick" item_state = "pocky" + filling = list("sugar" = 2, "chocolate" = 5) type_butt = null /obj/item/clothing/mask/chewable/candy/pocky/process() chew() if(chewtime < 1) + if(ismob(loc)) + to_chat(loc, "There's no more of \the [name] left!") spitout(0) - -/obj/item/clothing/mask/chewable/candy/pocky/Initialize() - . = ..() - reagents.add_reagent("chocolate", 10) \ No newline at end of file diff --git a/code/modules/reagents/reagents/food_drinks.dm b/code/modules/reagents/reagents/food_drinks.dm index fc6d2c32693..8fd72d1a3c2 100644 --- a/code/modules/reagents/reagents/food_drinks.dm +++ b/code/modules/reagents/reagents/food_drinks.dm @@ -436,6 +436,15 @@ nutriment_factor = 5 color = "#302000" +/datum/reagent/nutriment/chocolate + name = "Chocolate" + id = "chocolate" + description = "Great for cooking or on its own!" + taste_description = "chocolate" + color = "#582815" + nutriment_factor = 5 + taste_mult = 1.3 + /datum/reagent/nutriment/instantjuice name = "Juice Powder" id = "instantjuice"