Skip to content

Commit

Permalink
[MIRROR] Adds a filterless forked tongue (#3283)
Browse files Browse the repository at this point in the history
* Adds a filterless forked tongue (#2437)

* grfg

* Apply suggestions from code review

Co-authored-by: Bloop <[email protected]>

* Update modular_nova/modules/organs/code/tongue.dm

Co-authored-by: Bloop <[email protected]>

---------

Co-authored-by: Bloop <[email protected]>

* conflict resolution

---------

Co-authored-by: nikothedude <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: Iajret <[email protected]>
  • Loading branch information
4 people authored May 13, 2024
1 parent 1fc5e99 commit f0abb10
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,10 @@
name = "Forked tongue"
path = /obj/item/organ/internal/tongue/lizard

/datum/augment_item/organ/tongue/forked/filterless
name = "Forked tongue (Without TTS Filter)"
path = /obj/item/organ/internal/tongue/lizard/filterless

//FF add, for auto-accent for anthropomorphs
/datum/augment_item/organ/tongue/cat
name = "Cat tongue"
Expand Down
13 changes: 11 additions & 2 deletions modular_nova/modules/organs/code/tongue.dm
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,19 @@

/obj/item/organ/internal/tongue/xeno_hybrid/Initialize(mapload)
. = ..()
var/obj/item/organ/internal/tongue/alien/alien_tongue_type = /obj/item/organ/internal/tongue/alien
voice_filter = initial(alien_tongue_type.voice_filter)
voice_filter = /obj/item/organ/internal/tongue/alien::voice_filter

/obj/item/organ/internal/tongue/skrell
name = "skrell tongue"
desc = "A fleshy muscle mostly used for warbling."
say_mod = "warbles"

/obj/item/organ/internal/tongue/lizard/filterless
name = "smooth forked tongue"

voice_filter = null

/obj/item/organ/internal/tongue/lizard/filterless/Initialize(mapload)
. = ..()

desc += " This one is noticeably smooth, and would lack any non-hissing lisps if used."

0 comments on commit f0abb10

Please sign in to comment.