Adds more loadout option, lore and shoes edition (#4705)

-adds some dominia related clothing options, at request of Zundy to the loadout.
-adds more shoe options, such as cowboy boots, high heels and etc to the loadout.
This commit is contained in:
Alberyk
2018-05-13 17:48:46 +03:00
committed by Erki
parent aad698be53
commit 7b1d5516c0
13 changed files with 131 additions and 4 deletions
@@ -54,4 +54,32 @@
shoes["dress flats, blue"] = /obj/item/clothing/shoes/flats/blue
shoes["dress flats, green"] = /obj/item/clothing/shoes/flats/green
shoes["dress flats, purple"] = /obj/item/clothing/shoes/flats/purple
gear_tweaks += new/datum/gear_tweak/path(shoes)
gear_tweaks += new/datum/gear_tweak/path(shoes)
/datum/gear/shoes/cowboy
display_name = "cowboy boots selection"
path = /obj/item/clothing/shoes/cowboy
/datum/gear/shoes/cowboy/New()
..()
var/shoes = list()
shoes["cowboy boots"] = /obj/item/clothing/shoes/cowboy
shoes["classic cowboy boots"] = /obj/item/clothing/shoes/cowboy/classic
shoes["snakeskin cowboy boots"] = /obj/item/clothing/shoes/cowboy/snakeskin
gear_tweaks += new/datum/gear_tweak/path(shoes)
/datum/gear/shoes/heels
display_name = "high heels"
path = /obj/item/clothing/shoes/heels
/datum/gear/shoes/heels/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/shoes/tongs
display_name = "flip flops"
path = /obj/item/clothing/shoes/sandal/flipflop
/datum/gear/shoes/tongs/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
@@ -176,4 +176,18 @@
/datum/gear/suit/secjackethos
display_name = "navy security jacket (Head of Security)"
path = /obj/item/clothing/suit/security/navyhos
allowed_roles = list("Head of Security")
allowed_roles = list("Head of Security")
/datum/gear/suit/dominia
display_name = "dominia great coat selection"
path = /obj/item/clothing/suit/storage/toggle/dominia
/datum/gear/suit/dominia/New()
..()
var/coat = list()
coat["dominia great coat"] = /obj/item/clothing/suit/storage/toggle/dominia
coat["dominia great coat, alternative"] = /obj/item/clothing/suit/storage/toggle/dominia/alt
coat["dominia cape"] = /obj/item/clothing/suit/storage/dominia
coat["dominia great coat, black"] = /obj/item/clothing/suit/storage/toggle/dominia/black
coat["dominia great coat, alternative black"] = /obj/item/clothing/suit/storage/toggle/dominia/black/alt
gear_tweaks += new/datum/gear_tweak/path(coat)
@@ -200,3 +200,14 @@
display_name = "tacticool turtleneck"
path = /obj/item/clothing/under/syndicate/tacticool
/datum/gear/uniform/dominia
display_name = "dominia suit selection"
path = /obj/item/clothing/under/dominia
/datum/gear/uniform/dominia/New()
..()
var/suit = list()
suit["dominia suit"] = /obj/item/clothing/under/dominia
suit["dominia suit, black"] = /obj/item/clothing/under/dominia/black
suit["lyodsuit"] = /obj/item/clothing/under/dom_thermal
gear_tweaks += new/datum/gear_tweak/path(suit)