mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
500 adds a "color" var to /atom, which conflicts with /obj/item/color, /obj/atmospherics/color and various simple_animals. /obj/item/color is now item_color /obj/atmospherics/color is now pipe_color simple_animals color is now body_color Removes transformer.dm since it conflicted with transform() and was never used. Signed-off-by: Mloc-Argent <colmohici@gmail.com>
43 lines
1.9 KiB
Plaintext
43 lines
1.9 KiB
Plaintext
// Reference: http://www.teuse.net/personal/harrington/hh_bible.htm
|
|
// http://www.trmn.org/portal/images/uniforms/rmn/rmn_officer_srv_dress_lrg.png
|
|
|
|
/obj/item/clothing/head/beret/centcom/officer
|
|
name = "officers beret"
|
|
desc = "A black beret adorned with the shield—a silver kite shield with an engraved sword—of the NanoTrasen security forces, announcing to the world that the wearer is a defender of NanoTrasen."
|
|
icon_state = "centcomofficerberet"
|
|
flags = FPRINT | TABLEPASS
|
|
|
|
/obj/item/clothing/head/beret/centcom/captain
|
|
name = "captains beret"
|
|
desc = "A white beret adorned with the shield—a cobalt kite shield with an engraved sword—of the NanoTrasen security forces, worn only by those captaining a vessel of the NanoTrasen Navy."
|
|
icon_state = "centcomcaptain"
|
|
flags = FPRINT | TABLEPASS
|
|
|
|
/obj/item/clothing/shoes/centcom
|
|
name = "dress shoes"
|
|
desc = "They appear impeccably polished."
|
|
icon_state = "laceups"
|
|
|
|
/obj/item/clothing/under/rank/centcom/representative
|
|
desc = "Gold trim on space-black cloth, this uniform displays the rank of \"Ensign\" and bears \"N.C.V. Fearless CV-286\" on the left shounder."
|
|
name = "\improper NanoTrasen Navy Uniform"
|
|
icon_state = "officer"
|
|
item_state = "g_suit"
|
|
item_color = "officer"
|
|
displays_id = 0
|
|
|
|
/obj/item/clothing/under/rank/centcom/officer
|
|
desc = "Gold trim on space-black cloth, this uniform displays the rank of \"Lieutenant Commander\" and bears \"N.C.V. Fearless CV-286\" on the left shounder."
|
|
name = "\improper NanoTrasen Officers Uniform"
|
|
icon_state = "officer"
|
|
item_state = "g_suit"
|
|
item_color = "officer"
|
|
displays_id = 0
|
|
|
|
/obj/item/clothing/under/rank/centcom/captain
|
|
desc = "Gold trim on space-black cloth, this uniform displays the rank of \"Captain\" and bears \"N.C.V. Fearless CV-286\" on the left shounder."
|
|
name = "\improper NanoTrasen Captains Uniform"
|
|
icon_state = "centcom"
|
|
item_state = "dg_suit"
|
|
item_color = "centcom"
|
|
displays_id = 0 |