mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 12:02:31 +01:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user