mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-28 14:37:04 +01:00
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
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user