Adds lot of new skrell uniforms (#13015)

This commit is contained in:
Casper3667
2022-02-02 17:01:09 +01:00
committed by GitHub
parent 4019f173ac
commit f08f84adfb
7 changed files with 400 additions and 2 deletions

View File

@@ -1607,6 +1607,7 @@
#include "code\modules\clothing\under\accessories\medal.dm"
#include "code\modules\clothing\under\accessories\shirts.dm"
#include "code\modules\clothing\under\accessories\storage.dm"
#include "code\modules\clothing\under\accessories\xeno\skrell.dm"
#include "code\modules\clothing\under\accessories\xeno\tajara.dm"
#include "code\modules\clothing\under\accessories\xeno\unathi.dm"
#include "code\modules\clothing\under\accessories\xeno\vaurca.dm"

View File

@@ -54,6 +54,19 @@
averagetypes[initial(average.name)] = average
gear_tweaks += new /datum/gear_tweak/path(sortAssoc(averagetypes))
/datum/gear/ears/skrell/workhat
display_name = "worker hat"
path = /obj/item/clothing/ears/skrell/workcap
sort_category = "Xenowear - Skrell"
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
/datum/gear/ears/skrell/workhat/New()
..()
var/list/hat = list()
hat["worker's hat"] = /obj/item/clothing/ears/skrell/workcap
hat["long worker's hat"] = /obj/item/clothing/ears/skrell/workcap/long
gear_tweaks += new /datum/gear_tweak/path(hat)
/datum/gear/accessory/capes
display_name = "shoulder capes"
path = /obj/item/clothing/accessory/poncho/shouldercape
@@ -185,3 +198,82 @@ datum/gear_tweak/social_credit/tweak_item(var/obj/item/clothing/accessory/badge/
if(!istype(PP))
return
PP.credit_score = metadata + pick(-0.01, 0, 0.01)
/datum/gear/uniform/skrell/work
display_name = "work uniforms"
path = /obj/item/clothing/under/skrell/ox
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_BREEDER, SPECIES_VAURCA_BULWARK, SPECIES_DIONA, SPECIES_DIONA_COEUS)
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/uniform/skrell/work/New()
..()
var/list/outfit = list()
outfit["ox research"] = /obj/item/clothing/under/skrell/ox
outfit["ox security"] = /obj/item/clothing/under/skrell/ox/security
outfit["ox engineer"] = /obj/item/clothing/under/skrell/ox/engineer
outfit["ox service"] = /obj/item/clothing/under/skrell/ox/service
outfit["ox medical"] = /obj/item/clothing/under/skrell/ox/med
outfit["ix research"] = /obj/item/clothing/under/skrell/ix
outfit["ix security"] = /obj/item/clothing/under/skrell/ix/security
outfit["ix engineer"] = /obj/item/clothing/under/skrell/ix/engineer
outfit["ix service"] = /obj/item/clothing/under/skrell/ix/service
outfit["ix medical"] = /obj/item/clothing/under/skrell/ix/med
outfit["oqi research"] = /obj/item/clothing/under/skrell/oqi
outfit["oqi security"] = /obj/item/clothing/under/skrell/oqi/security
outfit["oqi engineer"] = /obj/item/clothing/under/skrell/oqi/engineer
outfit["oqi service"] = /obj/item/clothing/under/skrell/oqi/service
outfit["oqi medical"] = /obj/item/clothing/under/skrell/oqi/med
outfit["iqi research"] = /obj/item/clothing/under/skrell/iqi
outfit["iqi security"] = /obj/item/clothing/under/skrell/iqi/security
outfit["iqi engineer"] = /obj/item/clothing/under/skrell/iqi/engineer
outfit["iqi service"] = /obj/item/clothing/under/skrell/iqi/service
outfit["iqi medical"] = /obj/item/clothing/under/skrell/iqi/med
gear_tweaks += new /datum/gear_tweak/path(outfit)
/datum/gear/suit/skrell/jacket
display_name = "work jackets"
path = /obj/item/clothing/suit/storage/toggle/skrell
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_BREEDER, SPECIES_VAURCA_BULWARK, SPECIES_DIONA, SPECIES_DIONA_COEUS)
sort_category = "Xenowear - Skrell"
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/suit/skrell/jacket/New()
..()
var/list/jacket = list()
jacket["ox research"] = /obj/item/clothing/suit/storage/toggle/skrell
jacket["ox bridge/security"] = /obj/item/clothing/suit/storage/toggle/skrell/ox/security
jacket["ox engineer"] = /obj/item/clothing/suit/storage/toggle/skrell/ox/engineer
jacket["ox cargo/service"] = /obj/item/clothing/suit/storage/toggle/skrell/ox/service
jacket["ox medical"] = /obj/item/clothing/suit/storage/toggle/skrell/ox/med
jacket["ix research"] = /obj/item/clothing/suit/storage/toggle/skrell/ix
jacket["ix bridge/security"] = /obj/item/clothing/suit/storage/toggle/skrell/ix/security
jacket["ix engineer"] = /obj/item/clothing/suit/storage/toggle/skrell/ix/engineer
jacket["ix cargo/service"] = /obj/item/clothing/suit/storage/toggle/skrell/ix/service
jacket["ix medical"] = /obj/item/clothing/suit/storage/toggle/skrell/ix/med
jacket["oqi research"] = /obj/item/clothing/suit/storage/toggle/skrell/oqi
jacket["oqi bridge/security"] = /obj/item/clothing/suit/storage/toggle/skrell/oqi/security
jacket["oqi engineer"] = /obj/item/clothing/suit/storage/toggle/skrell/oqi/engineer
jacket["oqi cargo/service"] = /obj/item/clothing/suit/storage/toggle/skrell/oqi/service
jacket["oqi medical"] = /obj/item/clothing/suit/storage/toggle/skrell/oqi/med
jacket["iqi research"] = /obj/item/clothing/suit/storage/toggle/skrell/iqi
jacket["iqi bridge/security"] = /obj/item/clothing/suit/storage/toggle/skrell/iqi/security
jacket["iqi engineer"] = /obj/item/clothing/suit/storage/toggle/skrell/iqi/engineer
jacket["iqi cargo/service"] = /obj/item/clothing/suit/storage/toggle/skrell/iqi/service
jacket["iqi medical"] = /obj/item/clothing/suit/storage/toggle/skrell/iqi/med
gear_tweaks += new /datum/gear_tweak/path(jacket)
/datum/gear/accessory/skrell/workcloak
display_name = "work cloaks"
path = /obj/item/clothing/accessory/poncho/shouldercape
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_VAURCA_WARRIOR, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_BREEDER, SPECIES_VAURCA_BULWARK, SPECIES_DIONA, SPECIES_DIONA_COEUS)
sort_category = "Xenowear - Skrell"
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/accessory/skrell/workcloak/New()
..()
var/list/workcloak = list()
workcloak["ox cloak"] = /obj/item/clothing/accessory/poncho/shouldercape/cloak
workcloak["ix cloak"] = /obj/item/clothing/accessory/poncho/shouldercape/cloak/ix
workcloak["oqi cloak"] = /obj/item/clothing/accessory/poncho/shouldercape/cloak/oqi
workcloak["iqi cloak"] = /obj/item/clothing/accessory/poncho/shouldercape/cloak/iqi
gear_tweaks += new /datum/gear_tweak/path(workcloak)

View File

@@ -267,4 +267,15 @@
var/datum/sprite_accessory/hair/skr_tentacle_m/hair_datum = hair_styles_list[H.h_style]
if(hair_datum.scrunchy_style)
item_state = "scrunchy_[hair_datum.scrunchy_style]"
return ..()
return ..()
/obj/item/clothing/ears/skrell/workcap
name = "Worker's Cap"
desc = "A simple clothing item used by Skrell to cover their headtails. It comes with a main sleeve for the middle headtail, with smaller sleeves for the outer headtails to help keep it in place."
item_state = "skrell_cap"
icon_state = "skrell_cap_item"
/obj/item/clothing/ears/skrell/workcap/long
name = "Long Worker's Cap"
desc = "A simple clothing item used by Skrell to cover their headtails. It comes with a main sleeve for the middle headtail, with smaller sleeves for the outer headtails to help keep it in place. This one is longer to account for Skrell with longer headtails."
item_state = "skrell_cap_long"

View File

@@ -0,0 +1,29 @@
// Skrell Cloaks
/obj/item/clothing/accessory/poncho/shouldercape/cloak
name = "Ox cloak"
desc = "A plain cloak that denotes the wearer as being an Ox-class worker."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Ox are those who are within the Tertiary Numerical band, and are provided with the bare essentials for adequate clothes. Tertiary Numericals are typically criminals, or Skrell who otherwise do not conform to the standards of Jargon Society."
icon = 'icons/obj/skrell_items.dmi'
icon_override = 'icons/obj/skrell_items.dmi'
item_state = "ox_cloak"
icon_state = "cloak_item"
flippable = FALSE
contained_sprite = TRUE
/obj/item/clothing/accessory/poncho/shouldercape/cloak/ix
name = "Ix cloak"
desc = "An average cloak that denotes the wearer as being an Ix-class worker."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Ix are those who are low-scoring Secondary Numericals with their clothes typically being plain, yet still considered pleasant to wear and be seen in. Secondary Numericals are the majority population in the Jargon Federation, with Ix being those who are in the lower end of the band. "
item_state = "ix_cloak"
/obj/item/clothing/accessory/poncho/shouldercape/cloak/oqi
name = "Oqi cloak"
desc = "A fashionable cloak that denotes the wearer as being an Oqi-class worker."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Oqi are high-scoring Secondary Numericals or low-scoring Primary Numericals, with their workwear generally having more accessories that help them work in their specific industry. Skrell who are Oqi are typically more fashion-conscious, making it not uncommon to see these uniforms altered slightly to account for the latest fashion trends in the Jargon Federation."
item_state = "oqi_cloak"
/obj/item/clothing/accessory/poncho/shouldercape/cloak/iqi
name = "Iqi cloak"
desc = "A very fashionable cloak that denotes the wearer as being an Iqi-class worker."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Iqi are high-scoring Primary Numericals, and as such their workwear is of the highest quality afforded by the Federation. These clothes are typically made of sturdier materials and are more comfortable to wear. Primary Numericals are typically seen as the trend-setters in Federation society, and Skrell who are ranked at Iqi are known to influence fashion through how they accessorise."
item_state = "iqi_cloak"

View File

@@ -40,4 +40,263 @@
set_light(0)
update_icon()
usr.update_inv_w_uniform()
usr.update_inv_w_uniform()
// Skrell Ox clothing
/obj/item/clothing/under/skrell/ox
name = "Ox research uniform"
desc = "A plain, utilitarian jumpsuit that signifies the wearer as a Tertiary Numerical working in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Ox are those who are within the Tertiary Numerical band, and are provided with the bare essentials for adequate clothes. Tertiary Numericals are typically criminals, or Skrell who otherwise do not conform to the standards of Jargon Society."
item_state = "ox_sci"
icon_state = "ox_sci"
/obj/item/clothing/under/skrell/ox/security
name = "Ox bridge and security uniform"
desc = "A plain, utilitarian jumpsuit that signifies the wearer as a Tertiary Numerical working in the security service or as pilots or bridge crew."
item_state = "ox_sec"
icon_state = "ox_sec"
/obj/item/clothing/under/skrell/ox/engineer
name = "Ox engineering and maintenance uniform"
desc = "A plain, utilitarian jumpsuit that signifies the wearer as a Tertiary Numerical working in the engineering industry or in maintenance."
item_state = "ox_engi"
icon_state = "ox_engi"
/obj/item/clothing/under/skrell/ox/service
name = "Ox mailing and service uniform"
desc = "A plain, utilitarian jumpsuit that signifies the wearer as a Tertiary Numerical working in the mail service or hospitality industries."
item_state = "ox_cargo"
icon_state = "ox_cargo"
/obj/item/clothing/under/skrell/ox/med
name = "Ox healthcare uniform"
desc = "A plain, utilitarian jumpsuit that signifies the wearer as a Tertiary Numerical in the healthcare industry."
item_state = "ox_med"
icon_state = "ox_med"
// Skrell Ix clothing
/obj/item/clothing/under/skrell/ix
name = "Ix research uniform"
desc = "A plain jumpsuit that signifies the wearer as a low-scoring Secondary Numerical working in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Ix are those who are low-scoring Secondary Numericals with their clothes typically being plain, yet still considered pleasant to wear and be seen in. Secondary Numericals are the majority population in the Jargon Federation, with Ix being those who are in the lower end of the band. "
item_state = "ix_sci"
icon_state = "ix_sci"
/obj/item/clothing/under/skrell/ix/security
name = "Ix bridge and security uniform"
desc = "A plain jumpsuit that signifies the wearer as a low-scoring Secondary Numerical working in the security service or as pilots or bridge crew."
item_state = "ix_sec"
icon_state = "ix_sec"
/obj/item/clothing/under/skrell/ix/engineer
name = "Ix engineering and maintenance uniform"
desc = "A plain jumpsuit that signifies the wearer as a low-scoring Secondary Numerical in the engineering industry or in maintenance."
item_state = "ix_engi"
icon_state = "ix_engi"
/obj/item/clothing/under/skrell/ix/service
name = "Ix mailing and service uniform"
desc = "A plain jumpsuit that signifies the wearer as a low-scoring Secondary Numerical in the mail service or hospitality industries."
item_state = "ix_cargo"
icon_state = "ix_cargo"
/obj/item/clothing/under/skrell/ix/med
name = "Ix healthcare uniform"
desc = "A plain jumpsuit that signifies the wearer as a low-scoring Secondary Numerical in the healthcare industry."
item_state = "ix_med"
icon_state = "ix_med"
// Skrell Oqi clothing
/obj/item/clothing/under/skrell/oqi
name = "Oqi research uniform"
desc = "A more fashionable jumpsuit that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Oqi are high-scoring Secondary Numericals or low-scoring Primary Numericals, with their workwear generally having more accessories that help them work in their specific industry. Skrell who are Oqi are typically more fashion-conscious, making it not uncommon to see these uniforms altered slightly to account for the latest fashion trends in the Jargon Federation."
item_state = "oqi_sci"
icon_state = "oqi_sci"
/obj/item/clothing/under/skrell/oqi/security
name = "Oqi bridge and security uniform"
desc = "A more fashionable jumpsuit that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the security service or as pilots or bridge crew."
item_state = "oqi_sec"
icon_state = "oqi_sec"
/obj/item/clothing/under/skrell/oqi/engineer
name = "Oqi engineering and maintenance uniform"
desc = "A more fashionable jumpsuit that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the engineering industry or in maintenance."
item_state = "oqi_engi"
icon_state = "oqi_engi"
/obj/item/clothing/under/skrell/oqi/service
name = "Oqi mailing and service uniform"
desc = "A more fashionable jumpsuit that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the mail service or hospitality industries."
item_state = "oqi_cargo"
icon_state = "oqi_cargo"
/obj/item/clothing/under/skrell/oqi/med
name = "Ix healthcare uniform"
desc = "A more fashionable jumpsuit that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the healthcare industry."
item_state = "oqi_med"
icon_state = "oqi_med"
// Skrell Iqi clothing
/obj/item/clothing/under/skrell/iqi
name = "Iqi research uniform"
desc = "A very fashionable jumpsuit that signifies the wearer as a high-scoring Primary Numerical in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Iqi are high-scoring Primary Numericals, and as such their workwear is of the highest quality afforded by the Federation. These clothes are typically made of sturdier materials and are more comfortable to wear. Primary Numericals are typically seen as the trend-setters in Federation society, and Skrell who are ranked at Iqi are known to influence fashion through how they accessorise."
item_state = "iqi_sci"
icon_state = "iqi_sci"
/obj/item/clothing/under/skrell/iqi/security
name = "Iqi bridge and security uniform"
desc = "A very fashionable jumpsuit that signifies the wearer as a high-scoring Primary Numerical in the security service or as pilots or bridge crew."
item_state = "iqi_sec"
icon_state = "iqi_sec"
/obj/item/clothing/under/skrell/iqi/engineer
name = "Iqi engineering and maintenance uniform"
desc = "A very fashionable jumpsuit that signifies the wearer as a high-scoring Primary Numerical in the engineering industry or in maintenance."
item_state = "iqi_engi"
icon_state = "iqi_engi"
/obj/item/clothing/under/skrell/iqi/service
name = "Iqi mailing and service uniform"
desc = "A very fashionable jumpsuit that signifies the wearer as a high-scoring Primary Numerical in the mail service or hospitality industries."
item_state = "iqi_cargo"
icon_state = "iqi_cargo"
/obj/item/clothing/under/skrell/iqi/med
name = "Iqi healthcare uniform"
desc = "A very fashionable jumpsuit that signifies the wearer as a high-scoring Primary Numerical in the healthcare industry."
item_state = "iqi_med"
icon_state = "iqi_med"
// Skrell Ox jackets
/obj/item/clothing/suit/storage/toggle/skrell
name = "Ox research jacket"
desc = "A plain, utilitarian jacket that signifies the wearer as a Tertiary Numerical in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Ox are those who are within the Tertiary Numerical band, and are provided with the bare essentials for adequate clothes. Tertiary Numericals are typically criminals, or Skrell who otherwise do not conform to the standards of Jargon Society."
icon = 'icons/obj/skrell_items.dmi'
item_state = "ox_sci_jacket"
icon_state = "ox_sci_jacket"
contained_sprite = TRUE
/obj/item/clothing/suit/storage/toggle/skrell/ox/security
name = "Ox bridge and security jacket"
desc = "A plain, utilitarian jacket that signifies the wearer as a Tertiary Numerical in the security service or as pilots or bridge crew."
item_state = "ox_sec_jacket"
icon_state = "ox_sec_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/ox/engineer
name = "Ox engineering and maintenance jacket"
desc = "A plain, utilitarian jacket that signifies the wearer as a Tertiary Numerical in the engineering industry or in maintenance."
item_state = "ox_engi_jacket"
icon_state = "ox_engi_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/ox/service
name = "Ox mailing and service jacket"
desc = "A plain, utilitarian jacket that signifies the wearer as a Tertiary Numerical in the mail service or hospitality industries."
item_state = "ox_cargo_jacket"
icon_state = "ox_cargo_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/ox/med
name = "Ox healthcare jacket"
desc = "A plain, utilitarian jacket that signifies the wearer as a Tertiary Numerical in the healthcare industry."
item_state = "ox_med_jacket"
icon_state = "ox_med_jacket"
// Skrell Ix jackets
/obj/item/clothing/suit/storage/toggle/skrell/ix
name = "Ix research jacket"
desc = "A plain jacket that signifies the wearer as a low-scoring Secondary Numerical in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Ix are those who are low-scoring Secondary Numericals with their clothes typically being plain, yet still considered pleasant to wear and be seen in. Secondary Numericals are the majority population in the Jargon Federation, with Ix being those who are in the lower end of the band. "
item_state = "ix_sci_jacket"
icon_state = "ix_sci_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/ix/security
name = "Ix bridge and security jacket"
desc = "A plain jacket that signifies the wearer as a low-scoring Secondary Numerical in the security service or as pilots or bridge crew."
item_state = "ix_sec_jacket"
icon_state = "ix_sec_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/ix/engineer
name = "Ix engineering and maintenance jacket"
desc = "A plain jacket that signifies the wearer as a low-scoring Secondary Numerical in the engineering industry or in maintenance."
item_state = "ix_engi_jacket"
icon_state = "ix_engi_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/ix/service
name = "Ix mailing and service jacket"
desc = "A plain jacket that signifies the wearer as a low-scoring Secondary Numerical in the mail service or hospitality industries."
item_state = "ix_cargo_jacket"
icon_state = "ix_cargo_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/ix/med
name = "Ix healthcare jacket"
desc = "A plain jacket that signifies the wearer as a low-scoring Secondary Numerical in the healthcare industry."
item_state = "ix_med_jacket"
icon_state = "ix_med_jacket"
// Skrell Oqi jackets
/obj/item/clothing/suit/storage/toggle/skrell/oqi
name = "Oqi research jacket"
desc = "A more fashionable jacket that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Oqi are high-scoring Secondary Numericals or low-scoring Primary Numericals, with their workwear generally having more accessories that help them work in their specific industry. Skrell who are Oqi are typically more fashion-conscious, making it not uncommon to see these uniforms altered slightly to account for the latest fashion trends in the Jargon Federation."
item_state = "oqi_sci_jacket"
icon_state = "oqi_sci_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/oqi/security
name = "Oqi bridge and security jacket"
desc = "A more fashionable jacket that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the security service or as pilots or bridge crew."
item_state = "oqi_sec_jacket"
icon_state = "oqi_sec_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/oqi/engineer
name = "Oqi engineering and maintenance jacket"
desc = "A more fashionable jacket that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the engineering industry or in maintenance."
item_state = "oqi_engi_jacket"
icon_state = "oqi_engi_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/oqi/service
name = "Oqi mailing and service jacket"
desc = "A more fashionable jacket that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the mail service or hospitality industries."
item_state = "oqi_cargo_jacket"
icon_state = "oqi_cargo_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/oqi/med
name = "Oqi healthcare jacket"
desc = "A more fashionable jacket that signifies the wearer as either a high-scoring Secondary Numerical or low-scoring Primary Numerical in the healthcare industry."
item_state = "oqi_med_jacket"
icon_state = "oqi_med_jacket"
// Skrell Iqi jackets
/obj/item/clothing/suit/storage/toggle/skrell/iqi
name = "Iqi research jacket"
desc = "A very fashionable jacket that signifies the wearer as a high-scoring Primary Numerical in a scientific field."
desc_fluff = "The Jargon Federation ranks its workers based on their social credit score, and provides workwear based on said score: Iqi are high-scoring Primary Numericals, and as such their workwear is of the highest quality afforded by the Federation. These clothes are typically made of sturdier materials and are more comfortable to wear. Primary Numericals are typically seen as the trend-setters in Federation society, and Skrell who are ranked at Iqi are known to influence fashion through how they accessorise."
item_state = "iqi_sci_jacket"
icon_state = "iqi_sci_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/iqi/security
name = "Iqi bridge and security jacket"
desc = "A very fashionable jacket that signifies the wearer as a high-scoring Primary Numerical in the security service or as pilots or bridge crew."
item_state = "iqi_sec_jacket"
icon_state = "iqi_sec_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/iqi/engineer
name = "Iqi engineering and maintenance jacket"
desc = "A very fashionable jacket that signifies the wearer as a high-scoring Primary Numerical in the engineering industry or in maintenance."
item_state = "iqi_engi_jacket"
icon_state = "iqi_engi_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/iqi/service
name = "Iqi mailing and service jacket"
desc = "A very fashionable jacket that signifies the wearer as a high-scoring Primary Numerical in the mail service or hospitality industries."
item_state = "iqi_cargo_jacket"
icon_state = "iqi_cargo_jacket"
/obj/item/clothing/suit/storage/toggle/skrell/iqi/med
name = "Iqi healthcare jacket"
desc = "A very fashionable jacket that signifies the wearer as a high-scoring Primary Numerical in the healthcare industry."
item_state = "iqi_med_jacket"
icon_state = "iqi_med_jacket"

View File

@@ -0,0 +1,6 @@
author: TheGreyWolf
delete-after: True
changes:
- rscadd: "Added a lot of new skrell clothing related to the jargon state-owned enterprises, to the loadout under several new options labelled as 'work [clothing]'."

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 130 KiB