From 5c471a68f56548ee15d01daa3949f95075cb6904 Mon Sep 17 00:00:00 2001 From: "kortgstation@gmail.com" Date: Mon, 2 Jul 2012 07:15:47 +0000 Subject: [PATCH] The cult blade now stuns/damages non-cultists who pick it up. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3967 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/gamemodes/cult/cult_items.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/game/gamemodes/cult/cult_items.dm b/code/game/gamemodes/cult/cult_items.dm index b7ae8c9b9ad..bfb52065602 100644 --- a/code/game/gamemodes/cult/cult_items.dm +++ b/code/game/gamemodes/cult/cult_items.dm @@ -9,6 +9,16 @@ throwforce = 10 +/obj/item/weapon/melee/cultblade/pickup(mob/living/carbon/human/user as mob) + if(!iscultist(usr)) + user.Paralyse(5) + user << "\red The blade rebels against your touch!" + if(istype(user, /mob/living/carbon/human)) + var/organ = ((user.hand ? "l_":"r_") + "arm") + var/datum/organ/external/affecting = user.get_organ(organ) + if(affecting.take_damage(40)) + user.UpdateDamageIcon() + /obj/item/clothing/head/culthood name = "cult hood"