From 12c830d66c601470d2e93fc0b92973b9411e50f3 Mon Sep 17 00:00:00 2001 From: TalkingCactus Date: Fri, 12 Aug 2016 19:19:46 -0400 Subject: [PATCH] adds organs.dm to code/citadel can probably just move this to the real organs file later, didn't want to forget about it --- code/citadel/organs.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 code/citadel/organs.dm diff --git a/code/citadel/organs.dm b/code/citadel/organs.dm new file mode 100644 index 0000000000..86e0319ee1 --- /dev/null +++ b/code/citadel/organs.dm @@ -0,0 +1,12 @@ + +/obj/item/organ/stomach + name = "stomach" + icon_state = "stomach" + zone = "chest" + slot = "stomach" + w_class = 3 + +/obj/item/organ/stomach/prepare_eat() + var/obj/S = ..() + S.reagents.add_reagent("sacid", 2) + return S \ No newline at end of file