Bad Swimmer

Added a bad swimmer trait that slows you down in water and causes you to drown in deep water (depths of 2 or above).

One thing I would like to improve before merging and want advice on: Currently the splashing/"you are drowning" message spams pretty frequently and I would like to slow that down.
This commit is contained in:
SatinIsle
2024-01-15 14:43:43 +00:00
parent 9bee566544
commit 28ad56cd97
3 changed files with 39 additions and 0 deletions
@@ -137,6 +137,7 @@
var/poison_type = "phoron" // Poisonous air.
var/exhale_type = "carbon_dioxide" // Exhaled gas type.
var/water_breather = FALSE
var/bad_swimmer = FALSE
var/body_temperature = 310.15 // Species will try to stabilize at this temperature. (also affects temperature processing)
@@ -513,6 +514,10 @@
/datum/species/proc/can_breathe_water()
return water_breather
// Called when standing on a water tile.
/datum/species/proc/is_bad_swimmer()
return bad_swimmer
// Impliments different trails for species depending on if they're wearing shoes.
/datum/species/proc/get_move_trail(var/mob/living/carbon/human/H)
if( H.shoes || ( H.wear_suit && (H.wear_suit.body_parts_covered & FEET) ) )
@@ -168,3 +168,9 @@
custom_only = FALSE
varchange_type = TRAIT_VARCHANGE_MORE_BETTER
/datum/trait/negative/bad_swimmer
name = "Bad Swimmer"
desc = "You can't swim very well, all water slows you down a lot and you drown in deep water."
cost = -1
custom_only = FALSE
var_changes = list("bad_swimmer" = 1, "water_movement" = 4)