Skip to content

Commit

Permalink
D-class skirts
Browse files Browse the repository at this point in the history
  • Loading branch information
FeenieRU committed Dec 5, 2024
1 parent 058fb3d commit 2241c90
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
Binary file added mod_celadon/clothing/icon/obj_under.dmi
Binary file not shown.
Binary file added mod_celadon/clothing/icon/onmob_under.dmi
Binary file not shown.
1 change: 1 addition & 0 deletions mod_celadon/outfits/_outfits.dme
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@

#include "_outfits.dm"
#include "code\security.dm"
#include "code\dclass.dm"

#endif
34 changes: 34 additions & 0 deletions mod_celadon/outfits/code/dclass.dm
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')

0 comments on commit 2241c90

Please sign in to comment.