mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 04:32:42 +00:00
105 lines
2.9 KiB
Plaintext
105 lines
2.9 KiB
Plaintext
/obj/item/clothing/mask/muzzle
|
|
name = "muzzle"
|
|
desc = "To stop that awful noise."
|
|
icon_state = "muzzle"
|
|
item_state = "muzzle"
|
|
flags = FPRINT|TABLEPASS|MASKCOVERSMOUTH
|
|
body_parts_covered = 0
|
|
w_class = 2
|
|
gas_transfer_coefficient = 0.90
|
|
|
|
// Clumsy folks can't take the mask off themselves.
|
|
/obj/item/clothing/mask/muzzle/attack_hand(mob/user as mob)
|
|
if(user.wear_mask == src && !user.IsAdvancedToolUser())
|
|
return 0
|
|
..()
|
|
|
|
/obj/item/clothing/mask/surgical
|
|
name = "sterile mask"
|
|
desc = "A sterile mask designed to help prevent the spread of diseases."
|
|
icon_state = "sterile"
|
|
item_state = "sterile"
|
|
w_class = 2
|
|
flags = FPRINT|TABLEPASS|MASKCOVERSMOUTH
|
|
body_parts_covered = 0
|
|
gas_transfer_coefficient = 0.90
|
|
permeability_coefficient = 0.01
|
|
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 25, rad = 0)
|
|
|
|
/obj/item/clothing/mask/fakemoustache
|
|
name = "fake moustache"
|
|
desc = "Warning: moustache is fake."
|
|
icon_state = "fake-moustache"
|
|
flags = FPRINT|TABLEPASS
|
|
flags_inv = HIDEFACE
|
|
body_parts_covered = 0
|
|
|
|
/obj/item/clothing/mask/snorkel
|
|
name = "Snorkel"
|
|
desc = "For the Swimming Savant."
|
|
icon_state = "snorkel"
|
|
flags = FPRINT|TABLEPASS
|
|
flags_inv = HIDEFACE
|
|
body_parts_covered = 0
|
|
|
|
//scarves (fit in in mask slot)
|
|
|
|
/obj/item/clothing/mask/bluescarf
|
|
name = "blue neck scarf"
|
|
desc = "A blue neck scarf."
|
|
icon_state = "blueneckscarf"
|
|
item_state = "blueneckscarf"
|
|
flags = FPRINT|TABLEPASS|MASKCOVERSMOUTH
|
|
w_class = 2
|
|
gas_transfer_coefficient = 0.90
|
|
|
|
/obj/item/clothing/mask/redscarf
|
|
name = "red scarf"
|
|
desc = "A red and white checkered neck scarf."
|
|
icon_state = "redwhite_scarf"
|
|
item_state = "redwhite_scarf"
|
|
flags = FPRINT|TABLEPASS|MASKCOVERSMOUTH
|
|
w_class = 2
|
|
gas_transfer_coefficient = 0.90
|
|
|
|
/obj/item/clothing/mask/greenscarf
|
|
name = "green scarf"
|
|
desc = "A green neck scarf."
|
|
icon_state = "green_scarf"
|
|
item_state = "green_scarf"
|
|
flags = FPRINT|TABLEPASS|MASKCOVERSMOUTH
|
|
w_class = 2
|
|
gas_transfer_coefficient = 0.90
|
|
|
|
/obj/item/clothing/mask/ninjascarf
|
|
name = "ninja scarf"
|
|
desc = "A stealthy, dark scarf."
|
|
icon_state = "ninja_scarf"
|
|
item_state = "ninja_scarf"
|
|
flags = FPRINT|TABLEPASS|MASKCOVERSMOUTH
|
|
w_class = 2
|
|
gas_transfer_coefficient = 0.90
|
|
siemens_coefficient = 0
|
|
|
|
/obj/item/clothing/mask/pig
|
|
name = "pig mask"
|
|
desc = "A rubber pig mask."
|
|
icon_state = "pig"
|
|
item_state = "pig"
|
|
flags = FPRINT|TABLEPASS|BLOCKHAIR
|
|
flags_inv = HIDEFACE
|
|
w_class = 2
|
|
siemens_coefficient = 0.9
|
|
body_parts_covered = HEAD|FACE|EYES
|
|
|
|
/obj/item/clothing/mask/horsehead
|
|
name = "horse head mask"
|
|
desc = "A mask made of soft vinyl and latex, representing the head of a horse."
|
|
icon_state = "horsehead"
|
|
item_state = "horsehead"
|
|
flags = FPRINT|TABLEPASS|BLOCKHAIR
|
|
flags_inv = HIDEFACE
|
|
body_parts_covered = HEAD|FACE|EYES
|
|
w_class = 2
|
|
var/voicechange = 0
|
|
siemens_coefficient = 0.9 |