Skip to content

MENTOR CLOAK #5152

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

Merged
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
10 changes: 10 additions & 0 deletions monkestation/code/modules/clothing/neck/cloaks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,16 @@
to_chat(user, span_userdanger("No mentor cloak for you!"))
return
select_cloak_appearance.Grant(user)
if(slot & ITEM_SLOT_HANDS)
if(user.mind?.has_antag_datum(/datum/antagonist/changeling))
to_chat(user, span_notice("You feel it's power flow through your body"))
else if(!user.client?.is_mentor())
user.setStaminaLoss(250)
user.sharp_pain(list(ARM_LEFT, ARM_RIGHT), 5, BURN, 20)
user.apply_status_effect(/datum/status_effect/jitter)
to_chat(user, span_userdanger("You feel a surge of power hit you like a [span_bolddanger("TRUCK")] draining your stamina instantly"))
return
select_cloak_appearance.Grant(user)

/obj/item/clothing/neck/mentorcloak/dropped(mob/living/user)
. = ..()
Expand Down
Loading