Files
CHOMPStation2/code/modules/clothing/masks/gasmask_vr.dm
Spades e2941dfb5a Fixes some badly done vorestation edits in gasmasks
also adds my new gas masks
2017-09-02 04:07:51 -04:00

20 lines
814 B
Plaintext

// Our clear gas masks don't hide faces, but changing the var on mask/gas would require un-chaging it on all children. This is nicer.
/obj/item/clothing/mask/gas/New()
if(type == /obj/item/clothing/mask/gas)
flags_inv &= ~HIDEFACE
..()
// Since we changed the gas mask sprite, if we want the old one for some reason use this.
/obj/item/clothing/mask/gas/wwii
icon = 'icons/obj/clothing/masks.dmi'
icon_override = 'icons/mob/mask.dmi'
flags_inv = HIDEEARS|HIDEEYES|HIDEFACE
/obj/item/clothing/mask/gas/imperial
name = "imperial soldier facemask"
desc = "A close-fitting tactical mask that can be connected to an air supply."
icon_state = "ge_visor"
icon = 'icons/obj/clothing/masks_vr.dmi'
icon_override = 'icons/mob/mask_vr.dmi'
body_parts_covered = FACE|EYES
flags_inv = HIDEEARS|HIDEEYES|HIDEFACE