From e0274c3de6b9f8cac2622162e815b7655901caac Mon Sep 17 00:00:00 2001 From: MistakeNot4892 Date: Fri, 4 Aug 2023 19:52:53 +1000 Subject: [PATCH] Nerfs non-antag vox. --- .../mob/living/carbon/human/species/outsider/vox.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/outsider/vox.dm b/code/modules/mob/living/carbon/human/species/outsider/vox.dm index f9eff764823..7c876a99d86 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/vox.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/vox.dm @@ -210,3 +210,15 @@ "datum" = body_marking_styles_list["Vox Claws"] ) return TRUE + +// Nerfs some vox aspects if you aren't an antag (ie. raider, merc) +// TODO: raider/non-raider voxforms, if there's some way to do that nicely... +/datum/species/vox/can_shred(mob/living/carbon/human/H, ignore_intent) + if(H.mind && player_is_antag(H.mind)) + return ..() + return FALSE + +/datum/species/vox/get_siemens_coefficient(var/mob/living/carbon/human/H) + if(H.mind && player_is_antag(H.mind)) + return ..() + return 0.65 // resistant, but still able to be tased/shocked to an extent