mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 04:51:32 +01:00
Vox changes and additions (#3585)
This commit is contained in:
@@ -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")
|
||||
..()
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user