mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 06:00:23 +01:00
Fixes excludes (#19421)
This commit is contained in:
@@ -159,7 +159,7 @@
|
||||
|
||||
activation_message="You feel off balance..."
|
||||
primitive_expression_messages=list("staggers")
|
||||
excludes = list(/datum/trait/negative/lightweight_light)
|
||||
excludes = list(/datum/trait/negative/lightweight_light, /datum/trait/positive/heavyweight)
|
||||
|
||||
/datum/trait/negative/neural_hypersensitivity
|
||||
name = "Neural Hypersensitivity"
|
||||
@@ -732,7 +732,7 @@
|
||||
desc = "Your light weight and poor balance make you very susceptible to unhelpful bumping if you are unprepared)"
|
||||
cost = -1
|
||||
var_changes = list("lightweight_light" = 1)
|
||||
excludes = list(/datum/trait/negative/lightweight)
|
||||
excludes = list(/datum/trait/negative/lightweight, /datum/trait/positive/heavyweight)
|
||||
custom_only = FALSE
|
||||
|
||||
/datum/trait/negative/scrawny
|
||||
|
||||
@@ -648,6 +648,7 @@
|
||||
desc = "You are more heavyweight or otherwise more sturdy than most species, and as such, more resistant to knockdown effects and stuns. Stuns are only half as effective on you, and neither players nor mobs can trade places with you or bump you out of the way."
|
||||
cost = 2
|
||||
var_changes = list("stun_mod" = 0.5, "weaken_mod" = 0.5) // Stuns are 50% as effective - a stun of 3 seconds will be 2 seconds due to rounding up. Set to 0.5 to be in-line with the trait's description. (Weaken is used alongside stun to prevent aiming.)
|
||||
excludes = list(/datum/trait/negative/lightweight_light, /datum/trait/negative/lightweight)
|
||||
|
||||
/datum/trait/positive/heavyweight/apply(var/datum/species/S,var/mob/living/carbon/human/H)
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user