|
|
|
@@ -241,12 +241,9 @@
|
|
|
|
|
cost = 1
|
|
|
|
|
var_changes = list("throwforce_absorb_threshold" = 10)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/datum/trait/positive/wall_climber
|
|
|
|
|
name = "Climber, Amateur"
|
|
|
|
|
desc = "You can climb certain walls without tools! This is likely a personal skill you developed."
|
|
|
|
|
desc = "You can climb certain walls without tools! This is likely a personal skill you developed. You can also climb lattices and ladders a little bit faster than everyone else."
|
|
|
|
|
tutorial = "You must approach a wall and right click it and select the \
|
|
|
|
|
'climb wall' verb to climb it. You suffer from a movement delay of 1.5 with this trait.\n \
|
|
|
|
|
Your total climb time is expected to be 17.5 seconds. Tools may reduce this. \n\n \
|
|
|
|
@@ -255,12 +252,12 @@
|
|
|
|
|
cost = 1
|
|
|
|
|
custom_only = FALSE
|
|
|
|
|
banned_species = list(SPECIES_TAJ, SPECIES_VASILISSAN) // They got unique climbing delay.
|
|
|
|
|
var_changes = list("can_climb" = TRUE)
|
|
|
|
|
var_changes = list("can_climb" = TRUE, "climb_mult" = 0.75)
|
|
|
|
|
excludes = list(/datum/trait/positive/wall_climber_pro, /datum/trait/positive/wall_climber_natural)
|
|
|
|
|
|
|
|
|
|
/datum/trait/positive/wall_climber_natural
|
|
|
|
|
name = "Climber, Natural"
|
|
|
|
|
desc = "You can climb certain walls without tools! This is likely due to the unique anatomy of your species. CUSTOM AND XENOCHIM ONLY"
|
|
|
|
|
desc = "You can climb certain walls without tools! This is likely due to the unique anatomy of your species. You can climb lattices and ladders slightly faster than everyone else. CUSTOM AND XENOCHIM ONLY"
|
|
|
|
|
tutorial = "You must approach a wall and right click it and select the \
|
|
|
|
|
'climb wall' verb to climb it. You suffer from a movement delay of 1.5 with this trait.\n \
|
|
|
|
|
Your total climb time is expected to be 17.5 seconds. Tools may reduce this. \n\n \
|
|
|
|
@@ -268,13 +265,13 @@
|
|
|
|
|
a climbable wall. To climbe like so, use the verb 'Climb Down Wall' in IC tab!"
|
|
|
|
|
cost = 0
|
|
|
|
|
custom_only = FALSE
|
|
|
|
|
var_changes = list("can_climb" = TRUE)
|
|
|
|
|
var_changes = list("can_climb" = TRUE, "climb_mult" = 0.75)
|
|
|
|
|
allowed_species = list(SPECIES_XENOCHIMERA, SPECIES_CUSTOM) //So that we avoid needless bloat for xenochim
|
|
|
|
|
excludes = list(/datum/trait/positive/wall_climber_pro, /datum/trait/positive/wall_climber)
|
|
|
|
|
|
|
|
|
|
/datum/trait/positive/wall_climber_pro
|
|
|
|
|
name = "Climber, Professional"
|
|
|
|
|
desc = "You can climb certain walls without tools! You are a professional rock climber at this, letting you climb almost twice as fast!"
|
|
|
|
|
desc = "You can climb certain walls without tools! You are a professional rock climber at this, letting you climb almost twice as fast! You can also climb lattices and ladders a fair bit faster than everyone else!"
|
|
|
|
|
tutorial = "You must approach a wall and right click it and select the \
|
|
|
|
|
'climb wall' verb to climb it. Your movement delay is just 1.25 with this trait.\n \
|
|
|
|
|
Your climb time is expected to be 9 seconds. Tools may reduce this. \n\n \
|
|
|
|
@@ -282,7 +279,7 @@
|
|
|
|
|
a climbable wall. To climbe like so, use the verb 'Climb Down Wall' in IC tab!"
|
|
|
|
|
cost = 2
|
|
|
|
|
custom_only = FALSE
|
|
|
|
|
var_changes = list("climbing_delay" = 1.25)
|
|
|
|
|
var_changes = list("climbing_delay" = 1.25, "climb_mult" = 0.5)
|
|
|
|
|
varchange_type = TRAIT_VARCHANGE_LESS_BETTER
|
|
|
|
|
excludes = list(/datum/trait/positive/wall_climber,/datum/trait/positive/wall_climber_natural)
|
|
|
|
|
|
|
|
|
@@ -292,3 +289,14 @@
|
|
|
|
|
/datum/trait/positive/wall_climber_pro/apply(var/datum/species/S,var/mob/living/carbon/human/H)
|
|
|
|
|
..()
|
|
|
|
|
S.can_climb = TRUE
|
|
|
|
|
|
|
|
|
|
/datum/trait/positive/good_swimmer
|
|
|
|
|
name = "Pro Swimmer"
|
|
|
|
|
desc = "You were top of your group in swimming class! This is of questionable usefulness on most planets, but hey, maybe you'll get to visit a nice beach world someday?"
|
|
|
|
|
tutorial = "You move faster in water, and can move up and down z-levels faster than other swimmers!"
|
|
|
|
|
cost = 1
|
|
|
|
|
custom_only = FALSE
|
|
|
|
|
var_changes = list("water_movement" = -2, "swim_mult" = 0.5)
|
|
|
|
|
varchange_type = TRAIT_VARCHANGE_LESS_BETTER
|
|
|
|
|
excludes = list(/datum/trait/negative/bad_swimmer)
|
|
|
|
|
banned_species = list(SPECIES_AKULA) // They already swim better than this
|
|
|
|
|