Vox changes and additions (#3585)

This commit is contained in:
Alberyk
2017-10-10 18:53:00 -05:00
committed by Lohikar
parent 0aff2d8785
commit 15a391f209
5 changed files with 86 additions and 19 deletions
+12
View File
@@ -60,3 +60,15 @@
/obj/item/organ/stack/vox
name = "vox cortical stack"
vital = 0
/obj/item/organ/stack/vox/removed(var/mob/living/user)
if(owner && ishuman(owner))
if(!isvox(owner))
return
if(prob(80))
owner.death()
else
owner << "<span class='warning'> Your mind breaks apart when your cortical stack is removed! Your memories and personality are nothing but echoes lost in the numbness of your thoughts...</span>"
owner.set_species("Vox Pariah")
..()