Merge pull request #3505 from Dhaeleena/Somecat

Winter boots
This commit is contained in:
Anewbe
2017-07-09 17:13:27 -05:00
committed by GitHub
12 changed files with 124 additions and 1 deletions

View File

@@ -193,4 +193,53 @@
/datum/gear/shoes/heels/New()
..()
gear_tweaks = list(gear_tweak_free_color_choice)
gear_tweaks = list(gear_tweak_free_color_choice)
/datum/gear/shoes/boots/winter
display_name = "winter boots"
path = /obj/item/clothing/shoes/boots/winter
/datum/gear/shoes/boots/winter/security
display_name = "security winter boots"
path = /obj/item/clothing/shoes/boots/winter/security
allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective")
/datum/gear/shoes/boots/winter/science
display_name = "science winter boots"
path = /obj/item/clothing/shoes/boots/winter/science
allowed_roles = list("Research Director","Scientist", "Roboticist", "Xenobiologist")
/datum/gear/shoes/boots/winter/command
display_name = "colony director's winter boots"
path = /obj/item/clothing/shoes/boots/winter/command
allowed_roles = list("Colony Director")
/datum/gear/shoes/boots/winter/engineering
display_name = "engineering winter boots"
path = /obj/item/clothing/shoes/boots/winter/engineering
allowed_roles = list("Chief Engineer","Atmospheric Technician", "Station Engineer")
/datum/gear/shoes/boots/winter/atmos
display_name = "atmospherics winter boots"
path = /obj/item/clothing/shoes/boots/winter/atmos
allowed_roles = list("Chief Engineer", "Atmospheric Technician")
/datum/gear/shoes/boots/winter/medical
display_name = "medical winter boots"
path = /obj/item/clothing/shoes/boots/winter/medical
allowed_roles = list("Medical Doctor","Chief Medical Officer","Chemist","Paramedic","Geneticist")
/datum/gear/shoes/boots/winter/mining
display_name = "mining winter boots"
path = /obj/item/clothing/shoes/boots/winter/mining
allowed_roles = list("Shaft Miner")
/datum/gear/shoes/boots/winter/supply
display_name = "supply winter boots"
path = /obj/item/clothing/shoes/boots/winter/supply
allowed_roles = list("Quartermaster","Cargo Technician")
/datum/gear/shoes/boots/winter/hydro
display_name = "hydroponics winter boots"
path = /obj/item/clothing/shoes/boots/winter/hydro
allowed_roles = list("Botanist", "Xenobiologist")

View File

@@ -47,6 +47,52 @@
heat_protection = FEET|LEGS
max_heat_protection_temperature = SHOE_MAX_HEAT_PROTECTION_TEMPERATURE
/obj/item/clothing/shoes/boots/winter/security
name = "security winter boots"
desc = "A pair of winter boots. These ones are lined with grey fur, and coloured an angry red."
icon_state = "winterboots_sec"
armor = list(melee = 30, bullet = 10, laser = 10, energy = 15, bomb = 20, bio = 0, rad = 0)
/obj/item/clothing/shoes/boots/winter/science
name = "science winter boots"
desc = "A pair of winter boots. These ones are lined with white fur, and are trimmed with scientific advancement!"
icon_state = "winterboots_sci"
/obj/item/clothing/shoes/boots/winter/command
name = "colony director's winter boots"
desc = "A pair of winter boots. They're lined with dark fur, and trimmed in the colours of superiority."
icon_state = "winterboots_cap"
/obj/item/clothing/shoes/boots/winter/engineering
name = "engineering winter boots"
desc = "A pair of winter boots. These ones are lined with orange fur and are trimmed in the colours of disaster."
icon_state = "winterboots_eng"
/obj/item/clothing/shoes/boots/winter/atmos
name = "atmospherics winter boots"
desc = "A pair of winter boots. These ones are lined with beige fur, and are trimmed in breath taking colours."
icon_state = "winterboots_atmos"
/obj/item/clothing/shoes/boots/winter/medical
name = "medical winter boots"
desc = "A pair of winter boots. These ones are lined with white fur, and are trimmed like 30cc of dexalin"
icon_state = "winterboots_med"
/obj/item/clothing/shoes/boots/winter/mining
name = "mining winter boots"
desc = "A pair of winter boots. These ones are lined with greyish fur, and their trim is golden!"
icon_state = "winterboots_mining"
/obj/item/clothing/shoes/boots/winter/supply
name = "supply winter boots"
desc = "A pair of winter boots. These ones are lined with the galactic cargonia colors!"
icon_state = "winterboots_sup"
/obj/item/clothing/shoes/boots/winter/hydro
name = "hydroponics winter boots"
desc = "A pair of winter boots.These ones are lined with brown fur, and their trim is ambrosia green"
icon_state = "winterboots_hydro"
/obj/item/clothing/shoes/boots/tactical
name = "tactical boots"
desc = "Tan boots with extra padding and armor."

View File

@@ -27,6 +27,8 @@
new /obj/item/weapon/shovel(src)
new /obj/item/weapon/pickaxe(src)
new /obj/item/clothing/glasses/material(src)
new /obj/item/clothing/suit/storage/hooded/wintercoat/miner(src)
new /obj/item/clothing/shoes/boots/winter/mining(src)
/******************************Lantern*******************************/