Adds Additional Jackboot Styles (#9520)

This commit is contained in:
Snakebittenn
2020-08-01 19:10:16 -06:00
committed by GitHub
parent 039e080abd
commit 09cc511d56
9 changed files with 110 additions and 52 deletions
@@ -1,30 +1,14 @@
// Shoelocker
/datum/gear/shoes
display_name = "jackboots"
path = /obj/item/clothing/shoes/jackboots
display_name = "sandals"
path = /obj/item/clothing/shoes/sandal
slot = slot_shoes
sort_category = "Shoes and Footwear"
/datum/gear/shoes/workboots
display_name = "workboots selection"
path = /obj/item/clothing/shoes/workboots
/datum/gear/shoes/workboots/New()
..()
var/shoes = list()
shoes["brown workboots"] = /obj/item/clothing/shoes/workboots
shoes["grey workboots"] = /obj/item/clothing/shoes/workboots/grey
shoes["dark workboots"] = /obj/item/clothing/shoes/workboots/dark
gear_tweaks += new/datum/gear_tweak/path(shoes)
/datum/gear/shoes/winterboots
display_name = "winter boots"
path = /obj/item/clothing/shoes/winter
/datum/gear/shoes/sandals
display_name = "sandals"
path = /obj/item/clothing/shoes/sandal
/datum/gear/shoes/color
display_name = "shoe selection"
path = /obj/item/clothing/shoes/black
@@ -111,9 +95,24 @@
shoes["high-tops, yellow"] = /obj/item/clothing/shoes/hitops/yellow
gear_tweaks += new/datum/gear_tweak/path(shoes)
/datum/gear/shoes/black_boots
display_name = "black boots"
path = /obj/item/clothing/shoes/black_boots
/datum/gear/shoes/boots
display_name = "boot selection"
description = "Boots, in a variety of styles."
path = /obj/item/clothing/shoes/jackboots
/datum/gear/shoes/boots/New()
..()
var/shoes = list()
shoes["black boots, short"] = /obj/item/clothing/shoes/jackboots
shoes["black boots, knee"] = /obj/item/clothing/shoes/jackboots/knee
shoes["black boots, thigh"] = /obj/item/clothing/shoes/jackboots/thigh
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
shoes["brown workboots"] = /obj/item/clothing/shoes/workboots
shoes["grey workboots"] = /obj/item/clothing/shoes/workboots/grey
shoes["dark workboots"] = /obj/item/clothing/shoes/workboots/dark
gear_tweaks += new/datum/gear_tweak/path(shoes)
/datum/gear/shoes/lyodsuit_boots
display_name = "lyodsuit boots"
@@ -17,20 +17,6 @@
sort_category = "Xenowear"
whitelisted = list("Vaurca Worker", "Vaurca Warrior", "Unathi", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara")
/datum/gear/shoes/workboots_toeless
display_name = "toeless workboots selection"
path = /obj/item/clothing/shoes/workboots/toeless
sort_category = "Xenowear"
whitelisted = list("Vaurca Worker", "Vaurca Warrior", "Unathi", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara")
/datum/gear/shoes/workboots_toeless/New()
..()
var/shoes = list()
shoes["brown toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless
shoes["grey toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless/grey
shoes["dark toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless/dark
gear_tweaks += new/datum/gear_tweak/path(shoes)
/datum/gear/shoes/caligae
display_name = "caligae selection"
path = /obj/item/clothing/shoes/caligae
@@ -46,3 +32,19 @@
caligae["white sock"] = /obj/item/clothing/shoes/caligae/white
caligae["leather"] = /obj/item/clothing/shoes/caligae/armor
gear_tweaks += new/datum/gear_tweak/path(caligae)
/datum/gear/shoes/toeless
display_name = "toeless boot selection"
path = /obj/item/clothing/shoes/jackboots/toeless
whitelisted = list("Vaurca Worker", "Vaurca Warrior", "Unathi", "Tajara", "Zhan-Khazan Tajara", "M'sai Tajara")
sort_category = "Xenowear"
/datum/gear/shoes/toeless/New()
..()
var/shoes = list()
shoes["brown toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless
shoes["grey toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless/grey
shoes["dark toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless/dark
shoes["toeless black boots, short"] = /obj/item/clothing/shoes/jackboots/toeless
shoes["toeless black boots, knee"] = /obj/item/clothing/shoes/jackboots/toeless/knee
shoes["toeless black boots, thigh"] = /obj/item/clothing/shoes/jackboots/toeless/thigh