mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-02 05:23:01 +00:00
71 lines
2.6 KiB
Plaintext
71 lines
2.6 KiB
Plaintext
/obj/item/clothing/head/hood
|
|
name = "hood"
|
|
desc = "A generic hood."
|
|
icon_state = "generic_hood"
|
|
body_parts_covered = HEAD
|
|
cold_protection = HEAD
|
|
flags_inv = HIDEEARS | BLOCKHAIR
|
|
|
|
// Winter coats
|
|
/obj/item/clothing/head/hood/winter
|
|
name = "winter hood"
|
|
desc = "A hood attached to a heavy winter jacket."
|
|
icon_state = "generic_hood"
|
|
min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE
|
|
|
|
/obj/item/clothing/head/hood/winter/captain
|
|
name = "site manager's winter hood"
|
|
armor = list(melee = 20, bullet = 15, laser = 20, energy = 10, bomb = 15, bio = 0, rad = 0)
|
|
|
|
/obj/item/clothing/head/hood/winter/security
|
|
name = "security winter hood"
|
|
armor = list(melee = 25, bullet = 20, laser = 20, energy = 15, bomb = 20, bio = 0, rad = 0)
|
|
|
|
/obj/item/clothing/head/hood/winter/medical
|
|
name = "medical winter hood"
|
|
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0)
|
|
|
|
/obj/item/clothing/head/hood/winter/science
|
|
name = "science winter hood"
|
|
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0)
|
|
|
|
/obj/item/clothing/head/hood/winter/engineering
|
|
name = "engineering winter hood"
|
|
armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 20)
|
|
|
|
/obj/item/clothing/head/hood/winter/engineering/atmos
|
|
name = "atmospherics winter hood"
|
|
|
|
/obj/item/clothing/head/hood/winter/hydro
|
|
name = "hydroponics winter hood"
|
|
|
|
/obj/item/clothing/head/hood/winter/cargo
|
|
name = "cargo winter hood"
|
|
|
|
/obj/item/clothing/head/hood/winter/miner
|
|
name = "mining winter hood"
|
|
armor = list(melee = 10, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0)
|
|
|
|
// Explorer gear
|
|
/obj/item/clothing/head/hood/explorer
|
|
name = "explorer hood"
|
|
desc = "An armoured hood for exploring harsh environments."
|
|
icon_state = "explorer"
|
|
flags = THICKMATERIAL
|
|
min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE
|
|
siemens_coefficient = 0.9
|
|
armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35)
|
|
|
|
// Costumes
|
|
/obj/item/clothing/head/hood/carp_hood
|
|
name = "carp hood"
|
|
desc = "A hood attached to a carp costume."
|
|
icon_state = "carp_casual"
|
|
item_state_slots = list(slot_r_hand_str = "carp_casual", slot_l_hand_str = "carp_casual") //Does not exist -S2-
|
|
min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE //Space carp like space, so you should too
|
|
|
|
/obj/item/clothing/head/hood/ian_hood
|
|
name = "corgi hood"
|
|
desc = "A hood that looks just like a corgi's head, it won't guarantee dog biscuits."
|
|
icon_state = "ian"
|
|
item_state_slots = list(slot_r_hand_str = "ian", slot_l_hand_str = "ian") //Does not exist -S2- |