mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
-Added some extra virus protection to objects. -This should all fix randomly being infected while wearing full virus protection gear. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5233 316c924e-a436-60f5-8080-3fe189b3f50e
99 lines
2.6 KiB
Plaintext
99 lines
2.6 KiB
Plaintext
/obj/item/clothing/shoes/black
|
|
name = "black shoes"
|
|
icon_state = "black"
|
|
color = "black"
|
|
desc = "A pair of black shoes."
|
|
|
|
cold_protection = FEET
|
|
min_cold_protection_temperature = SHOE_MIN_COLD_PROTECITON_TEMPERATURE
|
|
heat_protection = FEET
|
|
max_heat_protection_temperature = SHOE_MAX_HEAT_PROTECITON_TEMPERATURE
|
|
|
|
redcoat
|
|
color = "redcoat" //Exists for washing machines. Is not different from black shoes in any way.
|
|
|
|
/obj/item/clothing/shoes/brown
|
|
name = "brown shoes"
|
|
desc = "A pair of brown shoes."
|
|
icon_state = "brown"
|
|
color = "brown"
|
|
|
|
captain
|
|
color = "captain" //Exists for washing machines. Is not different from brown shoes in any way.
|
|
hop
|
|
color = "hop" //Exists for washing machines. Is not different from brown shoes in any way.
|
|
ce
|
|
color = "chief" //Exists for washing machines. Is not different from brown shoes in any way.
|
|
rd
|
|
color = "director" //Exists for washing machines. Is not different from brown shoes in any way.
|
|
cmo
|
|
color = "medical" //Exists for washing machines. Is not different from brown shoes in any way.
|
|
cmo
|
|
color = "cargo" //Exists for washing machines. Is not different from brown shoes in any way.
|
|
|
|
/obj/item/clothing/shoes/blue
|
|
name = "blue shoes"
|
|
icon_state = "blue"
|
|
color = "blue"
|
|
|
|
/obj/item/clothing/shoes/green
|
|
name = "green shoes"
|
|
icon_state = "green"
|
|
color = "green"
|
|
|
|
/obj/item/clothing/shoes/yellow
|
|
name = "yellow shoes"
|
|
icon_state = "yellow"
|
|
color = "yellow"
|
|
|
|
/obj/item/clothing/shoes/purple
|
|
name = "purple shoes"
|
|
icon_state = "purple"
|
|
color = "purple"
|
|
|
|
/obj/item/clothing/shoes/brown
|
|
name = "brown shoes"
|
|
icon_state = "brown"
|
|
color = "brown"
|
|
|
|
/obj/item/clothing/shoes/red
|
|
name = "red shoes"
|
|
desc = "Stylish red shoes."
|
|
icon_state = "red"
|
|
color = "red"
|
|
|
|
/obj/item/clothing/shoes/white
|
|
name = "white shoes"
|
|
icon_state = "white"
|
|
permeability_coefficient = 0.01
|
|
color = "white"
|
|
|
|
/obj/item/clothing/shoes/rainbow
|
|
name = "rainbow shoes"
|
|
desc = "Very gay shoes."
|
|
icon_state = "rain_bow"
|
|
color = "rainbow"
|
|
|
|
/obj/item/clothing/shoes/orange
|
|
name = "orange shoes"
|
|
icon_state = "orange"
|
|
color = "orange"
|
|
|
|
/obj/item/clothing/shoes/orange/attack_self(mob/user as mob)
|
|
if (src.chained)
|
|
src.chained = null
|
|
src.slowdown = SHOES_SLOWDOWN
|
|
new /obj/item/weapon/handcuffs( user.loc )
|
|
src.icon_state = "orange"
|
|
return
|
|
|
|
/obj/item/clothing/shoes/orange/attackby(H as obj, loc)
|
|
..()
|
|
if ((istype(H, /obj/item/weapon/handcuffs) && !( src.chained )))
|
|
//H = null
|
|
if (src.icon_state != "orange") return
|
|
del(H)
|
|
src.chained = 1
|
|
src.slowdown = 15
|
|
src.icon_state = "orange1"
|
|
return |