From 5da44492912d56d5ddf64c70f4efdd6ad817618a Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 13 Apr 2021 13:51:28 -0400 Subject: [PATCH] Fixes Xenochimera Custom Traits --- .../human/species/station/xenochimera_trait_vr.dm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm b/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm index be1783d9df..19e274306b 100644 --- a/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm @@ -3,39 +3,44 @@ ** These are only traits that they should reasonably be able to evolve to acquire themselves. ** I won't add the resistances though because those are kinda lame for a 'chimera to take! */ -/datum/trait/weaver/xenochimera +/datum/trait/positive/weaver/xenochimera allowed_species = list(SPECIES_XENOCHIMERA) name = "Xenochimera: Weaver" desc = "You've evolved your body to produce silk that you can fashion into articles of clothing and other objects." cost = 0 + category = 0 custom_only = FALSE -/datum/trait/hardfeet/xenochimera +/datum/trait/positive/hardfeet/xenochimera allowed_species = list(SPECIES_XENOCHIMERA) name = "Xenochimera: Hard Feet" desc = "Your body has adapted to make your feet immune to glass shards, whether by developing hooves, chitin, or just horrible callous." cost = 0 + category = 0 custom_only = FALSE // Why put this on Xenochimera of all species? I have no idea, but someone may be enough of a lunatic to take it. -/datum/trait/neural_hypersensitivity/xenochimera +/datum/trait/negative/neural_hypersensitivity/xenochimera allowed_species = list(SPECIES_XENOCHIMERA) name = "Xenochimera: Neural Hypersensitivity" desc = "Despite your evolutionary efforts, you are unusually sensitive to pain. \ Given your species' typical reactions to pain, this can only end well for you!" cost = 0 + category = 0 custom_only = FALSE -/datum/trait/melee_attack_fangs/xenochimera +/datum/trait/positive/melee_attack_fangs/xenochimera allowed_species = list(SPECIES_XENOCHIMERA) name = "Xenochimera: Sharp Melee & Numbing Fangs" desc = "Your hunting instincts manifest in earnest! You have grown numbing fangs alongside your naturally grown hunting weapons." cost = 0 + category = 0 custom_only = FALSE -/datum/trait/snowwalker/xenochimera +/datum/trait/positive/snowwalker/xenochimera allowed_species = list(SPECIES_XENOCHIMERA) name = "Xenochimera: Snow Walker" desc = "You've adapted to traversing snowy terrain. Snow does not slow you down!" cost = 0 + category = 0 custom_only = FALSE