Files
S.P.L.U.R.T-Station-13/modular_citadel/code/modules/client/loadout/neck.dm
silicons 1d72a574b2 Merge pull request #14093 from timothyteakettle/rename-redescribe-loadout
loadout part 3: custom names and descriptions
2021-01-27 19:09:41 -07:00

101 lines
2.7 KiB
Plaintext

/datum/gear/neck
category = LOADOUT_CATEGORY_NECK
subcategory = LOADOUT_SUBCATEGORY_NECK_GENERAL
slot = SLOT_NECK
/datum/gear/neck/bluetie
name = "Blue tie"
subcategory = LOADOUT_SUBCATEGORY_NECK_TIE
path = /obj/item/clothing/neck/tie/blue
/datum/gear/neck/redtie
name = "Red tie"
subcategory = LOADOUT_SUBCATEGORY_NECK_TIE
path = /obj/item/clothing/neck/tie/red
/datum/gear/neck/blacktie
name = "Black tie"
subcategory = LOADOUT_SUBCATEGORY_NECK_TIE
path = /obj/item/clothing/neck/tie/black
/datum/gear/neck/collar
name = "Collar"
path = /obj/item/clothing/neck/petcollar
/datum/gear/neck/leathercollar
name = "Leather collar"
path = /obj/item/clothing/neck/petcollar/leather
/datum/gear/neck/choker
name = "Choker"
path = /obj/item/clothing/neck/petcollar/choker
/datum/gear/neck/cowbell
name = "Cowbell collar"
path = /obj/item/clothing/neck/necklace/cowbell
/datum/gear/neck/scarf
name = "White scarf"
subcategory = LOADOUT_SUBCATEGORY_NECK_SCARVES
path = /obj/item/clothing/neck/scarf
/datum/gear/neck/scarf/black
name = "Black scarf"
path = /obj/item/clothing/neck/scarf/black
/datum/gear/neck/scarf/red
name = "Red scarf"
path = /obj/item/clothing/neck/scarf/red
/datum/gear/neck/scarf/green
name = "Green scarf"
path = /obj/item/clothing/neck/scarf/green
/datum/gear/neck/scarf/darkblue
name = "Dark blue scarf"
path = /obj/item/clothing/neck/scarf/darkblue
/datum/gear/neck/scarf/purple
name = "Purple scarf"
path = /obj/item/clothing/neck/scarf/purple
/datum/gear/neck/scarf/yellow
name = "Yellow scarf"
path = /obj/item/clothing/neck/scarf/yellow
/datum/gear/neck/scarf/orange
name = "Orange scarf"
path = /obj/item/clothing/neck/scarf/orange
/datum/gear/neck/scarf/cyan
name = "Cyan scarf"
path = /obj/item/clothing/neck/scarf/cyan
/datum/gear/neck/scarf/stripedred
name = "Striped red scarf"
path = /obj/item/clothing/neck/stripedredscarf
/datum/gear/neck/scarf/stripedblue
name = "Striped blue scarf"
path = /obj/item/clothing/neck/stripedbluescarf
/datum/gear/neck/scarf/stripedgreen
name = "Striped green scarf"
path = /obj/item/clothing/neck/stripedgreenscarf
/datum/gear/neck/headphones
name = "Headphones"
path = /obj/item/clothing/ears/headphones
/datum/gear/neck/polycloak
name = "Polychromatic Cloak"
path = /obj/item/clothing/neck/cloak/polychromic
loadout_flags = LOADOUT_CAN_NAME | LOADOUT_CAN_DESCRIPTION | LOADOUT_CAN_COLOR_POLYCHROMIC
loadout_initial_colors = list("#FFFFFF", "#FFFFFF", "#808080")
/datum/gear/neck/altpolycloak
name = "Alternate Cloak"
path = /obj/item/clothing/neck/cloak/alt/polychromic
loadout_flags = LOADOUT_CAN_COLOR_POLYCHROMIC
loadout_initial_colors = list("#FFFFFF", "#676767", "#4C4C4C")