Skip to content
This repository was archived by the owner on Apr 16, 2021. It is now read-only.
Open
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
8 changes: 8 additions & 0 deletions code/datums/traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,14 @@
points = 2
isPositive = 0

/obj/trait/nerd_voice
name = "Nerd voice (-2)"
cleanName = "Nerd Voice"
desc = "Your voice is distinctly nerdy (ridiculous tie not included.) Also works for females."
id = "nerd_voice"
points = -2
isPositive = 0

/obj/trait/leftfeet
name = "Two left feet (+1)"
cleanName = "Two left feet"
Expand Down
5 changes: 5 additions & 0 deletions code/mob/living/carbon/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3677,6 +3677,11 @@
boutput(src, "<span style=\"color:red\">The starlight burns you!</span>")
src.TakeDamage("chest", 0, 2, 0, DAMAGE_BURN)

// Replace our scream noises with scientist screams if we took the appropriate trait.
if (src.traitHolder.hasTrait("nerd_voice"))
sound_list_scream = list('sound/voice/nerd_scream_1.ogg', 'sound/voice/nerd_scream_2.ogg', 'sound/voice/nerd_scream_3.ogg', 'sound/voice/nerd_scream_4.ogg', 'sound/voice/nerd_scream_5.ogg')


if (src.loc && isarea(src.loc.loc))
if (src.loc.loc:irradiated)
if (src.wear_suit && src.wear_suit:radproof)
Expand Down
Binary file added sound/voice/nerd_scream_1.ogg
Binary file not shown.
Binary file added sound/voice/nerd_scream_2.ogg
Binary file not shown.
Binary file added sound/voice/nerd_scream_3.ogg
Binary file not shown.
Binary file added sound/voice/nerd_scream_4.ogg
Binary file not shown.
Binary file added sound/voice/nerd_scream_5.ogg
Binary file not shown.