Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
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
2 changes: 1 addition & 1 deletion yogstation/code/datums/antagonists/vampire.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/datum/vampire_passive/full = 420,
/obj/effect/proc_holder/spell/self/summon_coat = 420,
/obj/effect/proc_holder/spell/targeted/vampirize = 450,
/obj/effect/proc_holder/spell/self/revive = 350)
/obj/effect/proc_holder/spell/self/revive = 0)

/datum/antagonist/vampire/get_admin_commands()
. = ..()
Expand Down
2 changes: 1 addition & 1 deletion yogstation/code/game/gamemodes/vampire/vampire_powers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
/obj/effect/proc_holder/spell/targeted/hypnotise/cast(list/targets, mob/user = usr)
for(var/mob/living/target in targets)
user.visible_message("<span class='warning'>[user]'s eyes flash briefly as he stares into [target]'s eyes</span>")
if(do_mob(user, target, 50))
if(do_mob(user, target, 30))
to_chat(user, "<span class='warning'>Your piercing gaze knocks out [target].</span>")
to_chat(target, "<span class='warning'>You find yourself unable to move and barely able to speak.</span>")
target.Paralyze(150)
Expand Down