From 9026c64174ffda0304102ff2c1ff06f85c742ce7 Mon Sep 17 00:00:00 2001 From: desven <45808369+desvenlafaxine@users.noreply.github.com> Date: Sun, 31 Oct 2021 22:10:39 -0600 Subject: [PATCH] Changes how Basic Vaurca autohiss works (#12673) --- code/modules/mob/living/autohiss.dm | 18 ++++++++++++------ html/changelogs/desven-vaurcahiss.yml | 5 +++++ 2 files changed, 17 insertions(+), 6 deletions(-) create mode 100644 html/changelogs/desven-vaurcahiss.yml diff --git a/code/modules/mob/living/autohiss.dm b/code/modules/mob/living/autohiss.dm index ab8e080f3e8..456b0d8453b 100644 --- a/code/modules/mob/living/autohiss.dm +++ b/code/modules/mob/living/autohiss.dm @@ -62,21 +62,27 @@ /datum/species/bug autohiss_basic_map = list( - "s" = list("z","zz") + "f" = list("v","vh"), + "ph" = list("v", "vh") ) autohiss_extra_map = list( - "f" = list("v", "vh"), - "ph" = list("v", "vh") + "s" = list("z", "zz", "zzz"), + "ce" = list("z", "zz"), + "ci" = list("z", "zz"), + "v" = list("vv", "vvv") ) autohiss_exempt = list(LANGUAGE_VAURCA) /datum/species/bug/type_b autohiss_basic_map = list( - "s" = list("z","zz", "zzz") + "f" = list("v","vh"), + "ph" = list("v", "vh") ) autohiss_extra_map = list( - "f" = list("v", "vh"), - "ph" = list("v", "vh") + "s" = list("z", "zz", "zzz"), + "ce" = list("z", "zz"), + "ci" = list("z", "zz"), + "v" = list("vv", "vvv") ) autohiss_exempt = list(LANGUAGE_VAURCA) diff --git a/html/changelogs/desven-vaurcahiss.yml b/html/changelogs/desven-vaurcahiss.yml new file mode 100644 index 00000000000..9b8a5c2d54d --- /dev/null +++ b/html/changelogs/desven-vaurcahiss.yml @@ -0,0 +1,5 @@ +author: Desven +delete-after: True +changes: + - tweak: "Changed how Vaurca autohiss works. It is now v and vh for basic, and zz for full." + - tweak: "Full Vaurca autohiss will also change vs and ce and ci to ze and zi." \ No newline at end of file