mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-07-14 17:23:07 +01:00
a40e002595
more prices I missed
58 lines
2.0 KiB
Plaintext
58 lines
2.0 KiB
Plaintext
/obj/item/clothing/gloves/latexsleeves
|
|
name = "latex sleeves"
|
|
desc = "A pair of shiny latex sleeves that covers ones arms."
|
|
icon_state = "latex"
|
|
item_state = "latex"
|
|
icon = 'hyperstation/icons/obj/clothing/gloves.dmi'
|
|
alternate_worn_icon = 'hyperstation/icons/mobs/gloves.dmi'
|
|
mutantrace_variation = NO_MUTANTRACE_VARIATION
|
|
price = 5
|
|
|
|
/obj/item/clothing/gloves/latexsleeves/security
|
|
name = "security sleeves"
|
|
desc = "A pair of latex sleeves, with a band of red above the elbows denoting that the wearer is part of the security team."
|
|
icon_state = "latexsec"
|
|
item_state = "latexsec"
|
|
price = 5
|
|
|
|
/obj/item/clothing/head/dominatrixcap
|
|
name = "dominatrix cap"
|
|
desc = "A sign of authority, over the body."
|
|
icon_state = "dominatrix"
|
|
item_state = "dominatrix"
|
|
icon = 'hyperstation/icons/obj/clothing/head.dmi'
|
|
alternate_worn_icon = 'hyperstation/icons/mobs/head.dmi'
|
|
mutantrace_variation = NO_MUTANTRACE_VARIATION
|
|
|
|
/obj/item/clothing/shoes/highheels
|
|
name = "high heels"
|
|
desc = "They make the wearer appear taller, and more noisey!"
|
|
icon_state = "highheels"
|
|
item_state = "highheels"
|
|
icon = 'hyperstation/icons/obj/clothing/shoes.dmi'
|
|
alternate_worn_icon = 'hyperstation/icons/mobs/feet.dmi'
|
|
mutantrace_variation = NO_MUTANTRACE_VARIATION
|
|
|
|
/obj/item/clothing/shoes/highheels/Initialize()
|
|
. = ..()
|
|
AddComponent(/datum/component/squeak, list('sound/effects/footstep/highheel1.ogg' = 1,'sound/effects/footstep/highheel2.ogg' = 1), 20)
|
|
//the classic click clack
|
|
|
|
obj/item/clothing/neck/stole
|
|
name = "white stole"
|
|
desc = "Fluffy neck wear to keep you warm, and attract others."
|
|
icon = 'hyperstation/icons/obj/clothing/neck.dmi'
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
icon_state = "stole"
|
|
item_state = "" //no inhands
|
|
price = 3
|
|
|
|
obj/item/clothing/neck/stole/black
|
|
name = "black stole"
|
|
desc = "Fluffy neck wear to keep you warm, and attract others."
|
|
icon = 'hyperstation/icons/obj/clothing/neck.dmi'
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
icon_state = "stole"
|
|
item_state = "" //no inhands
|
|
color = "#3d3d3d"
|
|
price = 3 |