mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
Reworks the random brain trauma storyteller event to give you fun traumas, and makes them curable via basic brain surgery (#5513)
## About The Pull Request
Reworks the random brain trauma storyteller event to give you fun
traumas, and makes them curable via basic brain surgery
Current traumas:
- Imaginary Friend
- Poltergeist (Things are thrown at you).
- Antimagic (Magic immunity).
- Stalker (A thing only you can see slowly chases you and kills you).
- Ocky Icky phobia (A phobia that makes you scared of OOC terms).
- Godwoken (Random Voice of God stuff)
- Bluespace Prophet (Teleport between rifts that randomly show up).
- Quantum Alignment (An item you're holding will randomly return to you
at future dates).
- Psychotic Brawling (Your punches have a chance to REALLY hurt).
- Tenacity (You can't be put in hard crit or soft crit (but you can
still die), and you can't feel your injuries).
- Death Whispers (Small chance to hear deadchat).
- Existential Crisis (Randomy fade in and out of reality).
- Beepsky (Chased by a Beepsky unit only you can see)
-
## Why It's Good For The Game
Previous event had near impossible to cure traumas. This wasn't fun.
Also a lot of traumas were pretty bad.
## Proof Of Testing
Untested. If it compiles, it werks.
## Changelog
🆑 BurgerBB
balance: Reworks the random brain trauma storyteller event to give you
fun traumas, and makes them curable via basic brain surgery
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
/datum/round_event/brain_trauma/traumatize(mob/living/carbon/human/H)
|
||||
|
||||
var/static/list/possible_traumas = list(
|
||||
/datum/brain_trauma/special/imaginary_friend,
|
||||
/datum/brain_trauma/magic/poltergeist,
|
||||
/datum/brain_trauma/magic/antimagic,
|
||||
/datum/brain_trauma/magic/stalker,
|
||||
/datum/brain_trauma/mild/phobia/ocky_icky,
|
||||
/datum/brain_trauma/special/godwoken,
|
||||
/datum/brain_trauma/special/bluespace_prophet,
|
||||
/datum/brain_trauma/special/quantum_alignment,
|
||||
/datum/brain_trauma/special/psychotic_brawling,
|
||||
/datum/brain_trauma/special/tenacity,
|
||||
/datum/brain_trauma/special/death_whispers,
|
||||
/datum/brain_trauma/special/existential_crisis,
|
||||
/datum/brain_trauma/special/beepsky,
|
||||
)
|
||||
|
||||
H.gain_trauma(pick(possible_traumas),TRAUMA_RESILIENCE_SURGERY)
|
||||
@@ -9567,6 +9567,7 @@
|
||||
#include "modular_zubbers\code\modules\emotes\scream_datums.dm"
|
||||
#include "modular_zubbers\code\modules\emotes\species_screams.dm"
|
||||
#include "modular_zubbers\code\modules\emotes\synth_emotes.dm"
|
||||
#include "modular_zubbers\code\modules\events\brain_trauma.dm"
|
||||
#include "modular_zubbers\code\modules\events\ev_roleplay_check.dm"
|
||||
#include "modular_zubbers\code\modules\events\meteor_wave.dm"
|
||||
#include "modular_zubbers\code\modules\events\pipe_carp.dm"
|
||||
|
||||
Reference in New Issue
Block a user