mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 21:49:11 +01:00
Prommie Cohesion Suits (#4937)
* Adds prommie cohesion suits. Still need tesh sprites + loadout. * adds the tesh sprites + loadout option. * Renammed cohesion suits & icon files. * Almost forgot to adjust the bird file names. There we go. * Removed redundant line
This commit is contained in:
@@ -147,4 +147,17 @@
|
||||
display_name = "cloth footwraps"
|
||||
path = /obj/item/clothing/shoes/footwraps
|
||||
sort_category = "Xenowear"
|
||||
cost = 1
|
||||
cost = 1
|
||||
|
||||
/datum/gear/uniform/cohesionsuits
|
||||
display_name = "cohesion suit selection (Promethean)"
|
||||
path = /obj/item/clothing/under/cohesion
|
||||
sort_category = "Xenowear"
|
||||
|
||||
/datum/gear/uniform/cohesionsuits/New()
|
||||
..()
|
||||
var/list/cohesionsuits = list()
|
||||
for(var/cohesionsuit in (typesof(/obj/item/clothing/under/cohesion)))
|
||||
var/obj/item/clothing/under/cohesion/cohesion_type = cohesionsuit
|
||||
cohesionsuits[initial(cohesion_type.name)] = cohesion_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cohesionsuits))
|
||||
@@ -816,4 +816,30 @@
|
||||
/obj/item/clothing/under/explorer
|
||||
desc = "A green uniform for operating in hazardous environments."
|
||||
name = "explorer's jumpsuit"
|
||||
icon_state = "explorer"
|
||||
icon_state = "explorer"
|
||||
|
||||
/obj/item/clothing/under/cohesion
|
||||
name = "black cohesion suit"
|
||||
desc = "A plain black cohesion suit intended to assist Prometheans in maintaining their form and prevent direct skin exposure."
|
||||
icon_state = "cohesionsuit"
|
||||
rolled_sleeves = -1 // defeats the purpose!!!
|
||||
|
||||
/obj/item/clothing/under/cohesion/striped
|
||||
name = "red striped cohesion suit"
|
||||
desc = "A black cohesion suit with red stripes intended to assist Prometheans in maintaining their form and prevent direct skin exposure."
|
||||
icon_state = "cohesionsuit_striped"
|
||||
|
||||
/obj/item/clothing/under/cohesion/decal
|
||||
name = "purple decaled cohesion suit"
|
||||
desc = "A white cohesion suit with purple decals intended to assist Prometheans in maintaining their form and prevent direct skin exposure."
|
||||
icon_state = "cohesionsuit_decal"
|
||||
|
||||
/obj/item/clothing/under/cohesion/pattern
|
||||
name = "blue patterned cohesion suit"
|
||||
desc = "A white cohesion suit with blue patterns intended to assist Prometheans in maintaining their form and prevent direct skin exposure."
|
||||
icon_state = "cohesionsuit_pattern"
|
||||
|
||||
/obj/item/clothing/under/cohesion/hazard
|
||||
name = "hazard cohesion suit"
|
||||
desc = "An orange cohesion suit with yellow hazard stripes intended to assist Prometheans in maintaining their form and prevent direct skin exposure."
|
||||
icon_state = "cohesionsuit_hazard"
|
||||
Reference in New Issue
Block a user