mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-02 05:32:16 +00:00
31 lines
737 B
Plaintext
31 lines
737 B
Plaintext
|
|
/*
|
|
|
|
Contents:
|
|
- The Ninja Space Mask
|
|
|
|
*/
|
|
|
|
/obj/item/clothing/mask/gas/space_ninja
|
|
name = "ninja mask"
|
|
desc = "A close-fitting mask that acts both as an air filter and a post-modern fashion statement."
|
|
icon_state = "s-ninja(norm)"
|
|
item_state = "s-ninja_mask"
|
|
unacidable = 1
|
|
|
|
sprite_sheets = list(
|
|
"Vox" = 'icons/mob/species/vox/mask.dmi',
|
|
"Unathi" = 'icons/mob/species/unathi/mask.dmi',
|
|
"Tajaran" = 'icons/mob/species/tajaran/mask.dmi',
|
|
"Vulpkanin" = 'icons/mob/species/vulpkanin/mask.dmi'
|
|
)
|
|
|
|
var/obj/item/voice_changer/voice_changer
|
|
|
|
/obj/item/clothing/mask/gas/space_ninja/Initialize(mapload)
|
|
. = ..()
|
|
voice_changer = new(src)
|
|
|
|
/obj/item/clothing/mask/gas/space_ninja/Destroy()
|
|
QDEL_NULL(voice_changer)
|
|
return ..() |