mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 02:56:14 +01:00
Trait Adjustments (#17392)
* Trait Adjustments - Disables tourettes - Disables Rotting Genetics - Disables xray - Swaps Anxiety Disorder name to Nervousness - Censored moved to Neutral (RP trait) - Nervousness moved to Neutral (RP trait) * Better Tagging * these too * what the fuck i dont even have an explanation for this
This commit is contained in:
@@ -381,7 +381,7 @@
|
||||
var/mob/living/protie = src
|
||||
if(temporary_form)
|
||||
protie = temporary_form
|
||||
//VoreStation Note: Catslug through Dullahan are commented out (Disabled) intentionally, as the ability to have mob icons as a protean is unwanted as of 19-3-2025. Nonetheless, the sprites have been tested and are completely functional at the current moment. If desired to re-enable downstream or at a later time, simply remove the comment tags starting at catslug and ending at Dullahan. These should honestly be split into two lists ('basic_forms' and 'advanced_forms') with a proper toggle instead of commenting it out, but that's for a later date.
|
||||
//VOREStation Note: Catslug through Dullahan are commented out (Disabled) intentionally, as the ability to have mob icons as a protean is unwanted as of 19-3-2025. Nonetheless, the sprites have been tested and are completely functional at the current moment. If desired to re-enable downstream or at a later time, simply remove the comment tags starting at catslug and ending at Dullahan. These should honestly be split into two lists ('basic_forms' and 'advanced_forms') with a proper toggle instead of commenting it out, but that's for a later date.
|
||||
var/list/icon_choices = list(
|
||||
"Primary" = image(icon = 'icons/mob/species/protean/protean.dmi', icon_state = "primary"),
|
||||
"Highlight" = image(icon = 'icons/mob/species/protean/protean.dmi', icon_state = "highlight"),
|
||||
|
||||
@@ -59,26 +59,13 @@
|
||||
cost = -2
|
||||
custom_only = FALSE
|
||||
|
||||
is_genetrait = TRUE
|
||||
hidden = FALSE
|
||||
is_genetrait = FALSE //VOREStation Note: TRAITGENETICS - Disabled on VS
|
||||
hidden = TRUE //VOREStation Note: TRAITGENETICS - Disabled on VS
|
||||
|
||||
disability=TOURETTES
|
||||
activation_message="You twitch."
|
||||
primitive_expression_messages=list("twitches and chitters.")
|
||||
|
||||
/datum/trait/negative/disability_anxiety
|
||||
name = "Anxiety Disorder"
|
||||
desc = "You have extreme anxiety, often stuttering words."
|
||||
cost = -1
|
||||
custom_only = FALSE
|
||||
|
||||
is_genetrait = TRUE
|
||||
hidden = FALSE
|
||||
|
||||
disability=NERVOUS
|
||||
activation_message="You feel nervous."
|
||||
primitive_expression_messages=list("anxiously chitters.")
|
||||
|
||||
/* Replaced by /datum/trait/negative/blindness
|
||||
/datum/trait/negative/disability_blind
|
||||
name = "Blinded"
|
||||
@@ -175,8 +162,8 @@
|
||||
cost = -4
|
||||
custom_only = FALSE
|
||||
|
||||
is_genetrait = TRUE
|
||||
hidden = FALSE
|
||||
is_genetrait = FALSE //VOREStation Note: TRAITGENETICS - Disabled on VS
|
||||
hidden = TRUE //VOREStation Note: TRAITGENETICS - Disabled on VS
|
||||
|
||||
disability=DETERIORATE
|
||||
activation_message="You feel sore..."
|
||||
@@ -195,19 +182,6 @@
|
||||
activation_message="You feel bloated..."
|
||||
primitive_expression_messages=list("shudders.","gasps.","chokes.")
|
||||
|
||||
/datum/trait/negative/disability_censored
|
||||
name = "Censored"
|
||||
desc = "You are unable to speak profanity. To an excessive degree..."
|
||||
cost = -1
|
||||
custom_only = FALSE
|
||||
|
||||
is_genetrait = TRUE
|
||||
hidden = FALSE
|
||||
|
||||
disability=CENSORED
|
||||
activation_message="You feel less rude..."
|
||||
primitive_expression_messages=list("BEEPS!")
|
||||
|
||||
/datum/trait/negative/disability_damagedspine
|
||||
name = "Lumbar Impairment"
|
||||
desc = "Due to neurological damage, you are unable to use your legs. Collapsing to the ground as soon as you try to stand. You should check the loadout menu for something to assist you."
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
//VOREStation Note: TRAITGENETICS - Originally, these were in negative_genes.dm
|
||||
//However, given their more RP centric nature, they have been moved to neutral_traits.
|
||||
//If desire is wanted to move them back to negative traits, change the 'neutral' to 'negative'
|
||||
/datum/trait/neutral/disability_censored
|
||||
name = "Censored"
|
||||
desc = "You are unable to speak profanity. To an excessive degree..."
|
||||
cost = 0 // TRAITGENETICS - Originally was -1
|
||||
custom_only = FALSE
|
||||
|
||||
is_genetrait = TRUE
|
||||
hidden = FALSE
|
||||
|
||||
disability=CENSORED
|
||||
activation_message="You feel less rude..."
|
||||
primitive_expression_messages=list("BEEPS!")
|
||||
|
||||
/datum/trait/neutral/disability_nervousness
|
||||
name = "Nervousness"
|
||||
desc = "You are generally nervous natured, often stuttering words."
|
||||
cost = 0 // TRAITGENETICS - Originally was -1
|
||||
custom_only = FALSE
|
||||
|
||||
is_genetrait = TRUE
|
||||
hidden = FALSE
|
||||
|
||||
disability=NERVOUS
|
||||
activation_message="You feel nervous."
|
||||
primitive_expression_messages=list("nervously chitters.")
|
||||
@@ -106,7 +106,7 @@
|
||||
cost = 5
|
||||
custom_only = FALSE
|
||||
|
||||
is_genetrait = TRUE
|
||||
is_genetrait = FALSE //VOREStation Note: TRAITGENETICS - Disabled on VS
|
||||
activity_bounds = DNA_HARDER_BOUNDS
|
||||
hidden = TRUE // Cannot start with superpowers
|
||||
|
||||
|
||||
Reference in New Issue
Block a user