forked from Foundation-19/Foundation-19
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
|
||
#include "_outfits.dm" | ||
#include "code\security.dm" | ||
#include "code\dclass.dm" | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/obj/item/clothing/under/scp/dclass/fem | ||
name = "D-Class skirtsuit" | ||
desc = "A bright orange skirtsuit, indicative of Class D personnel." | ||
icon_state = "d" | ||
icon = 'mod_celadon/clothing/icon/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mod_celadon/clothing/icon/onmob_under.dmi') | ||
|
||
/obj/item/clothing/under/scp/dclass/short/fem | ||
name = "Short Sleeved D-Class skirtsuit" | ||
desc = "A bright orange skirtsuit, indicative of Class D personnel. This one has short sleeves." | ||
icon_state = "dr" | ||
icon = 'mod_celadon/clothing/icon/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mod_celadon/clothing/icon/onmob_under.dmi') | ||
|
||
/obj/item/clothing/under/scp/dclass/undershirt/fem | ||
name = "Undershirt D-Class skirtsuit" | ||
desc = "A bright orange skirtsuit, indicative of Class D personnel. This one is missing the upper button-up shirt, showing a white short sleeved shirt." | ||
icon_state = "ds" | ||
icon = 'mod_celadon/clothing/icon/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mod_celadon/clothing/icon/onmob_under.dmi') | ||
|
||
/obj/item/clothing/under/scp/dclass/turtleneck/fem | ||
name = "Turtleneck D-Class skirtsuit" | ||
desc = "A bright orange skirtsuit, indicative of Class D personnel. This one has a quite well-kempt turtleneck above the uniform." | ||
icon_state = "dt" | ||
icon = 'mod_celadon/clothing/icon/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mod_celadon/clothing/icon/onmob_under.dmi') | ||
|
||
/obj/item/clothing/under/scp/dclass/janitor/fem | ||
name = "Janitorial D-Class skirtsuit" | ||
desc = "A bright orange skirtsuit, indicative of Class D personnel. This one only has the orange colors on the sleeves, indicating it's a janitor, but still D-Class scum." | ||
icon_state = "dj" | ||
icon = 'mod_celadon/clothing/icon/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mod_celadon/clothing/icon/onmob_under.dmi') |