Skip to content

Commit

Permalink
The Bleppening (#2884)
Browse files Browse the repository at this point in the history
* bleps

* HAH found the typo before you Mal

* Update modular_nova/master_files/code/datums/traits/neutral.dm

* moves Sneezing to not spam chat

---------

Co-authored-by: Bloop <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Jun 10, 2024
1 parent d4c581e commit b012b66
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion modular_nova/master_files/code/datums/traits/neutral.dm
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,13 @@ GLOBAL_VAR_INIT(DNR_trait_overlay, generate_DNR_trait_overlay())
#define SEVERITY_STUN 1
#define SEVERITY_SNEEZE 2
#define SEVERITY_KNOCKDOWN 3
#define SEVERITY_BLEP 4

GLOBAL_LIST_INIT(possible_snout_sensitivities, list(
"Stun" = SEVERITY_STUN,
"Sneeze" = SEVERITY_SNEEZE, //Includes a stun
"Collapse" = SEVERITY_KNOCKDOWN,
"Blep" = SEVERITY_BLEP,
))

/datum/quirk/sensitivesnout
Expand Down Expand Up @@ -341,18 +343,23 @@ GLOBAL_LIST_INIT(possible_snout_sensitivities, list(
to_chat(quirk_holder, span_warning("[attacker] boops you on your sensitive nose, freezing you in place!"))
quirk_holder.Stun(1 SECONDS)
if(SEVERITY_SNEEZE)
to_chat(quirk_holder, span_warning("[attacker] boops you on your sensitive nose! You can't hold back a sneeze!"))
quirk_holder.Stun(1 SECONDS)
if(can_emote)
to_chat(quirk_holder, span_warning("[attacker] boops you on your sensitive nose! You can't hold back a sneeze!"))
quirk_holder.emote("sneeze")
if(SEVERITY_KNOCKDOWN)
to_chat(quirk_holder, span_warning("[attacker] boops you on your sensitive nose, sending you to the ground!"))
quirk_holder.Knockdown(1 SECONDS)
quirk_holder.apply_damage(30, STAMINA)
if(SEVERITY_BLEP)
if(can_emote)
to_chat(quirk_holder, span_warning("[attacker] boops you on your sensitive nose! You stick your tongue out on reflex!"))
quirk_holder.emote("blep")

#undef SEVERITY_STUN
#undef SEVERITY_SNEEZE
#undef SEVERITY_KNOCKDOWN
#undef SEVERITY_BLEP

/datum/quirk/overweight
name = "Overweight"
Expand Down

0 comments on commit b012b66

Please sign in to comment.