From 0db9b961ecccb00a4aae013d63e2328664d1861b Mon Sep 17 00:00:00 2001 From: Cameron653 Date: Sat, 26 Aug 2017 19:20:00 -0400 Subject: [PATCH] Update custom_items_vr.dm --- code/modules/vore/fluffstuff/custom_items_vr.dm | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index fbacc37690..fe4ff47a71 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1352,4 +1352,16 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie access = list(access_cent_general,access_cent_thunder,access_cent_medical,access_cent_living,access_cent_storage,access_cent_teleporter,access_research,access_xenobiology,access_maint_tunnels,access_xenoarch,access_robotics,access_tox_storage,access_tox) //Yes, this looks awful. I tried calling both central and resarch access but it didn't work. age = 39 blood_type = "O-" - sex = "Female" \ No newline at end of file + sex = "Female" +/obj/item/weapon/fluff/kitchi_injector + name = "Kitchi Monkey Injector" + desc = "Allows the user (Kitchi) to transform into a monkey. Single use. + icon = 'icons/obj/items.dmi' + icon_state = "dnainjector" + +/obj/item/weapon/fluff/kitchi_injector/attack_self(mob/user as mob) + if(user.ckey != "Ketrai") + H << "You inject yourself.... Nothing happens." + return + user.monkeyize() + qdel(src) //One time use.