mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-15 09:03:53 +01:00
Deconf
This commit is contained in:
@@ -555,60 +555,17 @@ Talon pin
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(insignia)
|
||||
|
||||
/datum/gear/accessory/plushie
|
||||
display_name = "Plushie Selection"
|
||||
description = "A single plushie of your selection!"
|
||||
path = /obj/item/toy/plushie/nymph
|
||||
/datum/gear/accessory/belt_selection
|
||||
display_name = "belts (selection, colorable)"
|
||||
path = /obj/item/clothing/accessory/belt
|
||||
|
||||
/datum/gear/accessory/plushie/New()
|
||||
/datum/gear/accessory/belt_selection/New()
|
||||
..()
|
||||
var/plushie = list(
|
||||
"Nymph" = /obj/item/toy/plushie/nymph,
|
||||
"Mouse" = /obj/item/toy/plushie/mouse,
|
||||
"Kitten" = /obj/item/toy/plushie/kitten,
|
||||
"Lizard" = /obj/item/toy/plushie/lizard,
|
||||
"Black cat" = /obj/item/toy/plushie/black_cat,
|
||||
"Black fox" = /obj/item/toy/plushie/black_fox,
|
||||
"Blue fox" = /obj/item/toy/plushie/blue_fox,
|
||||
"Carp plushie" = /obj/random/carp_plushie,
|
||||
"Coffee fox" = /obj/item/toy/plushie/coffee_fox,
|
||||
"Corgi" = /obj/item/toy/plushie/corgi,
|
||||
"Crimson fox" = /obj/item/toy/plushie/crimson_fox,
|
||||
"Deer" = /obj/item/toy/plushie/deer,
|
||||
"Girly corgi" = /obj/item/toy/plushie/girly_corgi,
|
||||
"Grey cat" = /obj/item/toy/plushie/grey_cat,
|
||||
"Marble fox" = /obj/item/toy/plushie/marble_fox,
|
||||
"Octopus" = /obj/item/toy/plushie/octopus,
|
||||
"Orange cat" = /obj/item/toy/plushie/orange_cat,
|
||||
"Orange fox" = /obj/item/toy/plushie/orange_fox,
|
||||
"Pink fox" = /obj/item/toy/plushie/pink_fox,
|
||||
"Purple fox" = /obj/item/toy/plushie/purple_fox,
|
||||
"Red fox" = /obj/item/toy/plushie/red_fox,
|
||||
"Robo corgi" = /obj/item/toy/plushie/robo_corgi,
|
||||
"Siamese cat" = /obj/item/toy/plushie/siamese_cat,
|
||||
"Spider" = /obj/item/toy/plushie/spider,
|
||||
"Tabby cat" = /obj/item/toy/plushie/tabby_cat,
|
||||
"Tuxedo cat" = /obj/item/toy/plushie/tuxedo_cat,
|
||||
"White cat" = /obj/item/toy/plushie/white_cat,
|
||||
"Lizard" = /obj/item/toy/plushie/lizardplushie,
|
||||
"Kobold" = /obj/item/toy/plushie/lizardplushie/kobold,
|
||||
"Resh" = /obj/item/toy/plushie/lizardplushie/resh,
|
||||
"Slime" = /obj/item/toy/plushie/slimeplushie,
|
||||
"Box" = /obj/item/toy/plushie/box,
|
||||
"Robot" = /obj/item/toy/plushie/borgplushie,
|
||||
"Medihound" = /obj/item/toy/plushie/borgplushie/medihound,
|
||||
"Scrubpuppy" = /obj/item/toy/plushie/borgplushie/scrubpuppy,
|
||||
"Foxbear" = /obj/item/toy/plushie/foxbear,
|
||||
"Operative" = /obj/item/toy/plushie/nukeplushie,
|
||||
"Otter" = /obj/item/toy/plushie/otter,
|
||||
"Vox" = /obj/item/toy/plushie/vox,
|
||||
"Shark" = /obj/item/toy/plushie/shark,
|
||||
"Sec Drake" = /obj/item/toy/plushie/borgplushie/drake/sec,
|
||||
"Med Drake" = /obj/item/toy/plushie/borgplushie/drake/med,
|
||||
"Sci Drake" = /obj/item/toy/plushie/borgplushie/drake/sci,
|
||||
"Jani Drake" = /obj/item/toy/plushie/borgplushie/drake/jani,
|
||||
"Eng Drake" = /obj/item/toy/plushie/borgplushie/drake/eng,
|
||||
"Mine Drake" = /obj/item/toy/plushie/borgplushie/drake/mine,
|
||||
"Trauma Drake" = /obj/item/toy/plushie/borgplushie/drake/trauma,
|
||||
var/list/wristband_lists = list(
|
||||
"Thin Belt" = /obj/item/clothing/accessory/belt,
|
||||
"Thick Belt" = /obj/item/clothing/accessory/belt/thick,
|
||||
"Strap Belt" = /obj/item/clothing/accessory/belt/strap,
|
||||
"Studded Belt" = /obj/item/clothing/accessory/belt/studded
|
||||
)
|
||||
gear_tweaks += new/datum/gear_tweak/path(plushie)
|
||||
gear_tweaks += new/datum/gear_tweak/path(wristband_lists)
|
||||
gear_tweaks += gear_tweak_free_color_choice
|
||||
@@ -185,7 +185,9 @@ Talon jumpsuit
|
||||
"high skirt"=/obj/item/clothing/under/skirt/colorable/high,
|
||||
"swept skirt"=/obj/item/clothing/under/skirt/colorable/swept,
|
||||
"jumper skirt"=/obj/item/clothing/under/skirt/colorable/jumper,
|
||||
"jumper dress"=/obj/item/clothing/under/skirt/colorable/jumperdress
|
||||
"jumper dress"=/obj/item/clothing/under/skirt/colorable/jumperdress,
|
||||
"short skirt"=/obj/item/clothing/under/skirt/colorable/short,
|
||||
"short skirt (split)"=/obj/item/clothing/under/skirt/colorable/short_split
|
||||
)
|
||||
gear_tweaks += list(new/datum/gear_tweak/path(skirts), gear_tweak_free_color_choice)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user