From 392bbbaa1ed0e8cc24c8316816703c2b82e1a4a0 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sun, 29 Sep 2019 07:32:04 -0300 Subject: [PATCH] Changes how vaurca phoron leaking works (#7047) -vaurca phoron tanks will only leak when damaged -removed the breeder commanding power -removes the vaurca monkey exhaling phoron --- .../mob/living/carbon/human/species/station/monkey.dm | 3 --- .../human/species/station/vaurca/vaurca_subspecies.dm | 3 +-- code/modules/organs/subtypes/vaurca.dm | 4 ++-- html/changelogs/alberyk-vaurcathing.yml | 7 +++++++ 4 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 html/changelogs/alberyk-vaurcathing.yml diff --git a/code/modules/mob/living/carbon/human/species/station/monkey.dm b/code/modules/mob/living/carbon/human/species/station/monkey.dm index 6c6136fa286..37052ccc8d8 100644 --- a/code/modules/mob/living/carbon/human/species/station/monkey.dm +++ b/code/modules/mob/living/carbon/human/species/station/monkey.dm @@ -142,9 +142,6 @@ blood_color = "#E6E600" flesh_color = "#E6E600" //base_color = "#E6E600" - breath_type = "oxygen" - poison_type = "" - exhale_type = "phoron" warning_low_pressure = 50 hazard_low_pressure = 0 siemens_coefficient = 0.2 diff --git a/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca_subspecies.dm b/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca_subspecies.dm index 572d1b6433b..0a61007ee02 100644 --- a/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca_subspecies.dm +++ b/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca_subspecies.dm @@ -73,8 +73,7 @@ flags = NO_SCAN | NO_SLIP inherent_verbs = list( - /mob/living/carbon/human/proc/bugbite, - /mob/living/carbon/human/proc/hivenet + /mob/living/carbon/human/proc/bugbite ) default_h_style = "Bald" diff --git a/code/modules/organs/subtypes/vaurca.dm b/code/modules/organs/subtypes/vaurca.dm index 3289d0264d0..c57d2a18813 100644 --- a/code/modules/organs/subtypes/vaurca.dm +++ b/code/modules/organs/subtypes/vaurca.dm @@ -352,7 +352,7 @@ obj/item/organ/vaurca/neuralsocket/process() else if(pressure > (8.0*ONE_ATMOSPHERE)) - if(damage >= 60) + if(is_broken()) var/turf/simulated/T = get_turf(src) if(!T) return @@ -362,7 +362,7 @@ obj/item/organ/vaurca/neuralsocket/process() else if(pressure > (5.0*ONE_ATMOSPHERE)) - if(damage >= 45) + if(is_bruised()) var/turf/simulated/T = get_turf(src) if(!T) return diff --git a/html/changelogs/alberyk-vaurcathing.yml b/html/changelogs/alberyk-vaurcathing.yml new file mode 100644 index 00000000000..b6563278475 --- /dev/null +++ b/html/changelogs/alberyk-vaurcathing.yml @@ -0,0 +1,7 @@ +author: Alberky + +delete-after: True + +changes: + - tweak: "Vaurca phoron tanks will now only leak when damaged." + - tweak: "Ta consulars can no longer issue orders over hivenet in any way besides actually saying them."