mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 15:21:29 +00:00
* drip * this is unneeded actually * Update code/game/objects/items/stacks/sheets/sheet_types.dm sure. Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * flips item sprite for now, at least --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
78 lines
3.4 KiB
Plaintext
78 lines
3.4 KiB
Plaintext
/*
|
|
######################################################################################
|
|
## ##
|
|
## IMPORTANT README ##
|
|
## ##
|
|
## Changing any /datum/gear typepaths --WILL-- break people's loadouts. ##
|
|
## The typepaths are stored directly in the `characters.gear` column of the DB. ##
|
|
## Please inform the server host if you wish to modify any of these. ##
|
|
## ##
|
|
######################################################################################
|
|
*/
|
|
|
|
|
|
/datum/gear/racial
|
|
sort_category = "Racial"
|
|
main_typepath = /datum/gear/racial
|
|
cost = 1
|
|
|
|
/datum/gear/racial/taj
|
|
display_name = "Embroidered veil"
|
|
description = "A common traditional nano-fiber veil worn by many Tajaran, It is rare and offensive to see it on other races."
|
|
path = /obj/item/clothing/glasses/tajblind
|
|
slot = SLOT_HUD_GLASSES
|
|
|
|
/datum/gear/racial/taj/sec
|
|
display_name = "Sleek veil"
|
|
description = "A common traditional nano-fiber veil worn by many Tajaran, It is rare and offensive to see it on other races. This one has an in-built security HUD."
|
|
path = /obj/item/clothing/glasses/hud/security/tajblind
|
|
allowed_roles = list("Head of Security", "Warden", "Security Officer", "Internal Affairs Agent", "Magistrate", "Detective")
|
|
cost = 2
|
|
|
|
/datum/gear/racial/taj/med
|
|
display_name = "Lightweight veil"
|
|
description = "A common traditional nano-fiber veil worn by many Tajaran, It is rare and offensive to see it on other races. This one has an in-built medical HUD."
|
|
path = /obj/item/clothing/glasses/hud/health/tajblind
|
|
allowed_roles = list("Chief Medical Officer", "Medical Doctor", "Chemist", "Psychiatrist", "Paramedic", "Virologist", "Coroner")
|
|
cost = 2
|
|
|
|
/datum/gear/racial/taj/sci
|
|
display_name = "Hi-tech veil"
|
|
description = "A common traditional nano-fiber veil worn by many Tajaran, It is rare and offensive to see it on other races."
|
|
path = /obj/item/clothing/glasses/tajblind/sci
|
|
cost = 2
|
|
|
|
/datum/gear/racial/taj/eng
|
|
display_name = "Industrial veil"
|
|
description = "A common traditional nano-fiber veil worn by many Tajaran, It is rare and offensive to see it on other races."
|
|
path = /obj/item/clothing/glasses/tajblind/eng
|
|
cost = 2
|
|
|
|
/datum/gear/racial/taj/cargo
|
|
display_name = "Khaki veil"
|
|
description = "A common traditional nano-fiber veil worn by many Tajaran, It is rare and offensive to see it on other races. It is light and comfy!"
|
|
path = /obj/item/clothing/glasses/tajblind/cargo
|
|
cost = 2
|
|
|
|
/datum/gear/racial/footwraps
|
|
display_name = "Cloth footwraps"
|
|
path = /obj/item/clothing/shoes/footwraps
|
|
slot = SLOT_HUD_SHOES
|
|
|
|
/datum/gear/racial/handwraps
|
|
display_name = "Cloth handwraps"
|
|
path = /obj/item/clothing/gloves/handwraps
|
|
slot = SLOT_HUD_GLOVES
|
|
|
|
/datum/gear/racial/vox_casual
|
|
display_name = "Vox jumpsuit"
|
|
description = "These loose clothes are optimized for the labors of the lower castes onboard the arkships. Large openings in the top allow for breathability while the pants are durable yet flexible enough to not restrict movement."
|
|
path = /obj/item/clothing/under/vox/vox_casual
|
|
slot = SLOT_HUD_JUMPSUIT
|
|
|
|
/datum/gear/racial/vox_robes
|
|
display_name = "Vox robes"
|
|
description = "Large, comfortable robes worn by those who need a bit more covering. The thick fabric contains a pocket suitable for those that need their hands free during their work, while the cloth serves to cover scars or other injuries to the wearer's body."
|
|
path = /obj/item/clothing/suit/hooded/vox_robes
|
|
slot = SLOT_HUD_OUTER_SUIT
|