Skip to content

Commit

Permalink
Diona changes (New language color, emote, speech sound)
Browse files Browse the repository at this point in the history
Changed the Diona Language color
New diona emote (Tremble +sound)
New diona speech sound
  • Loading branch information
Varghh committed Sep 17, 2017
1 parent 06bb352 commit 82af15e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions code/modules/mob/living/carbon/human/emote.dm
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@
else //Everyone else fails, skip the emote attempt
return

if("tremble")
if(species.name == "Diona") //Only Dionas can Tremble.
on_CD = handle_emote_CD() //proc located in code\modules\mob\emote.dm'
else //Everyone else fails, skip the emote attempt
return

if("hiss", "hisses")
if(species.name == "Unathi") //Only Unathi can hiss.
on_CD = handle_emote_CD() //proc located in code\modules\mob\emote.dm'
Expand Down Expand Up @@ -170,6 +176,13 @@
playsound(loc, 'sound/effects/Kidanclack2.ogg', 50, 0) //Credit to DrMinky (freesound.org) for the sound.
m_type = 2

if("tremble")
var/M = handle_emote_param(param)

message = "<B>[src]</B> trembles[M ? " at [M]" : ""]."
playsound(loc, 'sound/voice/dionatalk1.ogg', 50, 0)
m_type = 2

if("hiss", "hisses")
var/M = handle_emote_param(param)

Expand Down
2 changes: 2 additions & 0 deletions code/modules/mob/living/carbon/human/species/station.dm
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,8 @@
path = /mob/living/carbon/human/diona
default_language = "Galactic Common"
language = "Rootspeak"
speech_sounds = list('sound/voice/dionatalk1.ogg')
speech_chance = 20
unarmed_type = /datum/unarmed_attack/diona
//primitive_form = "Nymph"
slowdown = 5
Expand Down
1 change: 1 addition & 0 deletions goon/browserassets/css/browserOutput.css
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ h1.alert, h2.alert {color: #000000;}
.soghun {color: #228B22;}
.changeling {color: #800080;}
.vox {color: #AA00AA;}
.diona {color: #804000; font-weight: bold;}
.trinary {color: #727272;}
.kidan {color: #664205;}
.slime {color: #0077AA;}
Expand Down
Binary file added sound/voice/dionatalk1.ogg
Binary file not shown.

0 comments on commit 82af15e

Please sign in to comment.