Fixing up vox and vox armalis gear

This commit is contained in:
ZomgPonies
2014-05-14 22:24:34 -04:00
parent 188593e452
commit 66d9ba3fb8
15 changed files with 12771 additions and 62 deletions
+3 -12
View File
@@ -1,23 +1,14 @@
/proc/EquipRacialItems(mob/living/carbon/human/M)
if(M.species.name=="Vox")
if(istype(M,/mob/living/carbon/human/vox))
M.equip_to_slot_or_del(new /obj/item/clothing/shoes/magboots/vox(M), slot_shoes) // REPLACE THESE WITH CODED VOX ALTERNATIVES.
M.equip_to_slot_or_del(new /obj/item/clothing/mask/breath/vox(M), slot_wear_mask)
M.equip_to_slot_or_del(new /obj/item/clothing/mask/breath(M), slot_wear_mask)
M.equip_to_slot_or_del(new /obj/item/weapon/tank/nitrogen(M), slot_back)
M << "\blue You are now running on nitrogen internals from the [M.back] in your suit storage. Your species finds oxygen toxic, so you must breathe nitrogen only."
M.internal = M.back
if (M.internals)
M.internals.icon_state = "internal1"
var/sounds = rand(2,10)
var/i = 0
var/newname = ""
while(i<=sounds)
i++
newname += pick(list("ti","hi","ki","ya","ta","ha","ka","ya","chi","cha","kah"))
M.real_name = capitalize(newname)
M.name = M.real_name
M.generate_name()
if( M.species.name=="Tajaran" || M.species.name=="Unathi" )
M.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(M), slot_shoes)