Skip to content

Commit

Permalink
Changeling blind stings no longer stack
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy committed May 28, 2024
1 parent bdc733e commit c83e792
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/datum/action/changeling/sting/blind/sting_action(mob/user, mob/living/carbon/target)
var/obj/item/organ/internal/eyes/eyes = target.get_organ_slot(ORGAN_SLOT_EYES)
if(!eyes)
user.balloon_alert(user, "no eyes!")
return FALSE

log_combat(user, target, "stung", "blind sting")
to_chat(target, span_danger("Your eyes burn horrifically!"))
eyes.apply_organ_damage(eyes.maxHealth * 0.8, maximum = eyes.maxHealth * 0.8)
target.set_temp_blindness_if_lower(40 SECONDS)
target.set_eye_blur_if_lower(80 SECONDS)
return TRUE
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -5880,6 +5880,7 @@
#include "monkestation\code\modules\antagonists\brother\actions\gear.dm"
#include "monkestation\code\modules\antagonists\brother\gear\_gear.dm"
#include "monkestation\code\modules\antagonists\brother\gear\recipes.dm"
#include "monkestation\code\modules\antagonists\changeling\powers\tiny_prick.dm"
#include "monkestation\code\modules\antagonists\clock_cult\area.dm"
#include "monkestation\code\modules\antagonists\clock_cult\dynamic_ruleset.dm"
#include "monkestation\code\modules\antagonists\clock_cult\globals.dm"
Expand Down

0 comments on commit c83e792

Please sign in to comment.