More discreet shells (#2272)

changes:

Shells Frames' species no longer show up on examine. They can still be detected via. other means such as checking pulse, health scanners, or them being damaged.
IPC Tags are now located in the head instead of the groin.
Note: This does not affect tags showing up on examine. They must be manually removed from the shell to completely disguise their examine text.
This commit is contained in:
Lohikar
2017-05-15 22:23:06 +03:00
committed by skull132
parent fa64b7cf7b
commit 5cec2cfa6d
6 changed files with 21 additions and 3 deletions
@@ -39,7 +39,7 @@
msg += "<EM>[src.name]</EM>"
if(species.name != "Human")
if(!species.hide_name)
msg += ", a <b><font color='[species.flesh_color]'>[species.name]</font></b>"
msg += "!\n"
@@ -7,7 +7,8 @@
// Descriptors and strings.
var/name // Species name.
var/name_plural // Pluralized name (since "[name]s" is not always valid)
var/short_name // Shortened form of the name, for code use. Must be exactly 3 letter long, and all lowercase
var/hide_name = FALSE // If TRUE, the species' name won't be visible on examine.
var/short_name // Shortened form of the name, for code use. Must be exactly 3 letter long, and all lowercase
var/blurb = "A completely nondescript species." // A brief lore summary for use in the chargen screen.
var/bodytype
var/age_min = 17
@@ -1,5 +1,6 @@
/datum/species/machine/shell
name = "Shell Frame"
hide_name = TRUE
short_name = "jak"
name_plural = "Shells"
bodytype = "Human"
@@ -1,5 +1,6 @@
/datum/species/human
name = "Human"
hide_name = TRUE
short_name = "hum"
name_plural = "Humans"
bodytype = "Human"