Skip to content

Commit

Permalink
Nerfs non-antag vox.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistakeNot4892 authored and Spookerton committed Aug 14, 2023
1 parent 16ef531 commit e0274c3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions code/modules/mob/living/carbon/human/species/outsider/vox.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e0274c3

Please sign in to comment.