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")
..()
+21
View File
@@ -104,3 +104,24 @@
name = "skull"
dislocated = -1
vital = 0
//vox organs
/obj/item/organ/heart/vox
icon_state = "vox_heart"
dead_icon = "vox_heart"
/obj/item/organ/lungs/vox
name = "air capillary sack"
icon_state = "vox_lung"
/obj/item/organ/kidneys/vox
name = "filtration bladder"
icon_state = "lungs"
color = "#99ccff"
parent_organ = "chest"
/obj/item/organ/liver/vox
name = "waste tract"
parent_organ = "chest"
color = "#0033cc"