mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 04:28:12 +01:00
Merge remote-tracking branch 'upstream/master' into kk-spacetraffic
This commit is contained in:
@@ -360,18 +360,18 @@
|
||||
|
||||
/datum/gear/accessory/wristband_collection
|
||||
display_name = "wristbands (selection)"
|
||||
path = /obj/item/clothing/accessory/wristbandcollection
|
||||
path = /obj/item/clothing/accessory/wristband/collection
|
||||
|
||||
/datum/gear/accessory/wristband_collection/New()
|
||||
..()
|
||||
var/list/wristband_lists = list(
|
||||
"Green, Blue and Yellow" = /obj/item/clothing/accessory/wristbandcollection,
|
||||
"Pink, Black and Red" = /obj/item/clothing/accessory/wristbandcollection/pink,
|
||||
"Red and Orange" = /obj/item/clothing/accessory/wristbandcollection/les,
|
||||
"White, Pink and Blue" = /obj/item/clothing/accessory/wristbandcollection/trans,
|
||||
"Blue, Purple and Pink" = /obj/item/clothing/accessory/wristbandcollection/bi,
|
||||
"Black, White and Grey" = /obj/item/clothing/accessory/wristbandcollection/ace,
|
||||
"Spiked" = /obj/item/clothing/accessory/wristband_spiked
|
||||
"Green, Blue and Yellow" = /obj/item/clothing/accessory/wristband/collection,
|
||||
"Pink, Black and Red" = /obj/item/clothing/accessory/wristband/collection/pink,
|
||||
"Red and Orange" = /obj/item/clothing/accessory/wristband/collection/les,
|
||||
"White, Pink and Blue" = /obj/item/clothing/accessory/wristband/collection/trans,
|
||||
"Blue, Purple and Pink" = /obj/item/clothing/accessory/wristband/collection/bi,
|
||||
"Black, White and Grey" = /obj/item/clothing/accessory/wristband/collection/ace,
|
||||
"Spiked" = /obj/item/clothing/accessory/wristband/spiked
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(wristband_lists)
|
||||
|
||||
|
||||
@@ -271,7 +271,7 @@
|
||||
|
||||
// C CKEYS
|
||||
/datum/gear/fluff/cappy_watch
|
||||
path = /obj/item/clothing/accessory/watch
|
||||
path = /obj/item/clothing/accessory/watch/custom
|
||||
display_name = "Cappy's Pocket Watch"
|
||||
ckeywhitelist = list("cappycat")
|
||||
character_name = list("Cappy Fuzzlyfeathers")
|
||||
@@ -528,7 +528,7 @@
|
||||
character_name = list("Elizabeth Bayou")
|
||||
|
||||
/datum/gear/fluff/mercury_vopal_ring
|
||||
path = /obj/item/clothing/gloves/ring/material/void_opal/fluff/mercury
|
||||
path = /obj/item/clothing/accessory/ring/material/void_opal/fluff/mercury
|
||||
display_name = "Mercury's Mate Ring"
|
||||
ckeywhitelist = list("haloren")
|
||||
character_name = list("Mercury")
|
||||
@@ -694,6 +694,12 @@
|
||||
ckeywhitelist = list("john.wayne9392")
|
||||
character_name = list("Harmony Pretchl")
|
||||
|
||||
/datum/gear/fluff/vox_dylo_pills
|
||||
path = /obj/item/storage/pill_bottle/dylovene
|
||||
display_name = "Dylovene pill bottle"
|
||||
ckeywhitelist = list("jparker890")
|
||||
character_name = list("Krey-Timinine")
|
||||
|
||||
/datum/gear/fluff/koyo_box
|
||||
path = /obj/item/storage/box/fluff/koyoakimomi
|
||||
display_name = "Koyo's Box"
|
||||
@@ -1239,6 +1245,13 @@
|
||||
ckeywhitelist = list("satinisle")
|
||||
character_name = list("Parriz Tavakdavi")
|
||||
|
||||
/datum/gear/fluff/dark_tarot
|
||||
path = /obj/item/deck/dark_tarot
|
||||
display_name = "dark rose tarot deck"
|
||||
ckeywhitelist = list("satinisle")
|
||||
character_name = list("Millie Orlen")
|
||||
|
||||
|
||||
// T CKEYS
|
||||
/datum/gear/fluff/ascian_medal
|
||||
path = /obj/item/clothing/accessory/medal/silver/unity/tabiranth
|
||||
|
||||
@@ -56,7 +56,6 @@
|
||||
toytype["Big Red Button"] = /obj/item/toy/redbutton
|
||||
toytype["Garden gnome"] = /obj/item/toy/gnome
|
||||
toytype["Toy AI"] = /obj/item/toy/AI
|
||||
toytype["Hand buzzer"] = /obj/item/clothing/gloves/ring/buzzer/toy
|
||||
toytype["Toy nuke"] = /obj/item/toy/nuke
|
||||
toytype["Toy gibber"] = /obj/item/toy/minigibber
|
||||
toytype["Toy xeno"] = /obj/item/toy/toy_xeno
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
|
||||
/datum/gear/gloves/fingerless
|
||||
display_name = "fingerless gloves"
|
||||
description = "A pair of gloves that don't actually cover the fingers. Available in classic black or recolourable white."
|
||||
description = "A pair of gloves that don't actually cover the fingers. Available in classic black or recolourable white, with or without cutouts."
|
||||
path = /obj/item/clothing/gloves/fingerless
|
||||
|
||||
/datum/gear/gloves/fingerless/New()
|
||||
@@ -66,7 +66,8 @@
|
||||
var/list/selector_uniforms = list(
|
||||
"black"=/obj/item/clothing/gloves/fingerless,
|
||||
"black, alt" =/obj/item/clothing/gloves/fingerless/alt,
|
||||
"recolourable white"=/obj/item/clothing/gloves/fingerless_recolourable
|
||||
"recolourable white"=/obj/item/clothing/gloves/fingerless_recolourable,
|
||||
"recolourable, alt"=/obj/item/clothing/gloves/fingerless_recolourable/alt
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(selector_uniforms))
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
@@ -74,27 +75,27 @@
|
||||
/datum/gear/gloves/ring
|
||||
display_name = "ring selection"
|
||||
description = "Choose from a number of rings."
|
||||
path = /obj/item/clothing/gloves/ring
|
||||
path = /obj/item/clothing/accessory/ring
|
||||
cost = 1
|
||||
|
||||
/datum/gear/gloves/ring/New()
|
||||
..()
|
||||
var/ringtype = list()
|
||||
ringtype["CTI ring"] = /obj/item/clothing/gloves/ring/cti
|
||||
ringtype["Mariner University ring"] = /obj/item/clothing/gloves/ring/mariner
|
||||
ringtype["engagement ring"] = /obj/item/clothing/gloves/ring/engagement
|
||||
ringtype["signet ring"] = /obj/item/clothing/gloves/ring/seal/signet
|
||||
ringtype["masonic ring"] = /obj/item/clothing/gloves/ring/seal/mason
|
||||
ringtype["ring, glass"] = /obj/item/clothing/gloves/ring/material/glass
|
||||
ringtype["ring, wood"] = /obj/item/clothing/gloves/ring/material/wood
|
||||
ringtype["ring, plastic"] = /obj/item/clothing/gloves/ring/material/plastic
|
||||
ringtype["ring, iron"] = /obj/item/clothing/gloves/ring/material/iron
|
||||
ringtype["ring, bronze"] = /obj/item/clothing/gloves/ring/material/bronze
|
||||
ringtype["ring, steel"] = /obj/item/clothing/gloves/ring/material/steel
|
||||
ringtype["ring, copper"] = /obj/item/clothing/gloves/ring/material/copper
|
||||
ringtype["ring, silver"] = /obj/item/clothing/gloves/ring/material/silver
|
||||
ringtype["ring, gold"] = /obj/item/clothing/gloves/ring/material/gold
|
||||
ringtype["ring, platinum"] = /obj/item/clothing/gloves/ring/material/platinum
|
||||
ringtype["CTI ring"] = /obj/item/clothing/accessory/ring/cti
|
||||
ringtype["Mariner University ring"] = /obj/item/clothing/accessory/ring/mariner
|
||||
ringtype["engagement ring"] = /obj/item/clothing/accessory/ring/engagement
|
||||
ringtype["signet ring"] = /obj/item/clothing/accessory/ring/seal/signet
|
||||
ringtype["masonic ring"] = /obj/item/clothing/accessory/ring/seal/mason
|
||||
ringtype["ring, glass"] = /obj/item/clothing/accessory/ring/material/glass
|
||||
ringtype["ring, wood"] = /obj/item/clothing/accessory/ring/material/wood
|
||||
ringtype["ring, plastic"] = /obj/item/clothing/accessory/ring/material/plastic
|
||||
ringtype["ring, iron"] = /obj/item/clothing/accessory/ring/material/iron
|
||||
ringtype["ring, bronze"] = /obj/item/clothing/accessory/ring/material/bronze
|
||||
ringtype["ring, steel"] = /obj/item/clothing/accessory/ring/material/steel
|
||||
ringtype["ring, copper"] = /obj/item/clothing/accessory/ring/material/copper
|
||||
ringtype["ring, silver"] = /obj/item/clothing/accessory/ring/material/silver
|
||||
ringtype["ring, gold"] = /obj/item/clothing/accessory/ring/material/gold
|
||||
ringtype["ring, platinum"] = /obj/item/clothing/accessory/ring/material/platinum
|
||||
|
||||
gear_tweaks += new/datum/gear_tweak/path(ringtype)
|
||||
|
||||
@@ -105,14 +106,14 @@
|
||||
/datum/gear/gloves/watch
|
||||
display_name = "wristwatch selector"
|
||||
description = "Pick from a range of wristwatches."
|
||||
path = /obj/item/clothing/gloves/watch
|
||||
path = /obj/item/clothing/accessory/watch
|
||||
|
||||
/datum/gear/gloves/watch/New()
|
||||
..()
|
||||
var/list/selector_watches = list(
|
||||
"plain plastic"=/obj/item/clothing/gloves/watch,
|
||||
"silver"=/obj/item/clothing/gloves/watch/silver,
|
||||
"gold"=/obj/item/clothing/gloves/watch/gold,
|
||||
"survival"=/obj/item/clothing/gloves/watch/survival
|
||||
"plain plastic"=/obj/item/clothing/accessory/watch,
|
||||
"silver"=/obj/item/clothing/accessory/watch/silver,
|
||||
"gold"=/obj/item/clothing/accessory/watch/gold,
|
||||
"survival"=/obj/item/clothing/accessory/watch/survival
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(selector_watches))
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
/datum/gear/gloves/goldring
|
||||
display_name = "wedding ring, gold"
|
||||
path = /obj/item/clothing/gloves/ring/wedding
|
||||
path = /obj/item/clothing/accessory/ring/wedding
|
||||
|
||||
/datum/gear/gloves/silverring
|
||||
display_name = "wedding ring, silver"
|
||||
path = /obj/item/clothing/gloves/ring/wedding/silver
|
||||
path = /obj/item/clothing/accessory/ring/wedding/silver
|
||||
|
||||
/datum/gear/gloves/colored
|
||||
display_name = "gloves, colorable"
|
||||
|
||||
Reference in New Issue
Block a user