adds organs.dm to code/citadel

can probably just move this to the real organs file later, didn't want
to forget about it
This commit is contained in:
TalkingCactus
2016-08-12 19:19:46 -04:00
parent 9c89be1930
commit 12c830d66c

12
code/citadel/organs.dm Normal file
View File

@@ -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