Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] donator item switch #1883

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified modular_nova/master_files/icons/donator/mob/clothing/mask.dmi
Binary file not shown.
Binary file modified modular_nova/master_files/icons/donator/obj/clothing/masks.dmi
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -821,13 +821,24 @@
worn_icon_state = "mikuleggings"

// Donation reward for CandleJax
/obj/item/clothing/head/helmet/space/plasmaman/candlejax
name = "emission's helmet"
desc = "A special containment helmet designed for heavy usage. Multiple dings and notches are on this one."
icon = 'modular_nova/master_files/icons/donator/obj/clothing/hats.dmi'
worn_icon = 'modular_nova/master_files/icons/donator/mob/clothing/head.dmi'
icon_state = "emissionhelm"
/obj/item/clothing/mask/gas/CMCP_mask
name = "\improper CMCP 'Oni' Faceplate"
desc = "A modular faceplate mount. Typically meant to be attached to field platforms."
icon = 'modular_nova/master_files/icons/donator/obj/clothing/masks.dmi'
worn_icon = 'modular_nova/master_files/icons/donator/mob/clothing/mask.dmi'
icon_state = "yoni"
w_class = WEIGHT_CLASS_SMALL
tint = 0
flags_cover = MASKCOVERSMOUTH | MASKCOVERSEYES | PEPPERPROOF
visor_flags_cover = MASKCOVERSMOUTH | MASKCOVERSEYES | PEPPERPROOF
clothing_flags = VOICEBOX_DISABLED | MASKINTERNALS | BLOCK_GAS_SMOKE_EFFECT | GAS_FILTERING
use_radio_beeps_tts = TRUE
flags_inv = NONE

/obj/item/clothing/mask/gas/CMCP_mask/Initialize(mapload)
. = ..()
var/obj/item/clothing/mask/gas/sechailer/sechailer_type = /obj/item/clothing/mask/gas/sechailer
voice_filter = initial(sechailer_type.voice_filter)

// Donation reward for CandleJax
/obj/item/clothing/head/helmet/space/plasmaman/candlejax2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
ckeywhitelist = list("candlejax")
restricted_roles = list(JOB_RESEARCH_DIRECTOR, JOB_SCIENTIST, JOB_SCIENCE_GUARD, JOB_VIROLOGIST, JOB_GENETICIST)

/datum/loadout_item/head/emissionhelm
name = "Emission's Helmet"
item_path = /obj/item/clothing/head/helmet/space/plasmaman/candlejax
/datum/loadout_item/mask/cmcp_mask
name = "CMCP Mask"
item_path = /obj/item/clothing/mask/gas/CMCP_mask
ckeywhitelist = list("candlejax")

/datum/loadout_item/head/anahelm
Expand Down
Loading