Funny Breathing Traits (#7056)

This commit is contained in:
FluffMedic
2023-10-24 17:41:53 -04:00
committed by GitHub
parent e89ee8d9b0
commit ad9d55a278
4 changed files with 30 additions and 0 deletions

View File

@@ -1,2 +1,13 @@
/datum/trait/negative/deep_sleeper
custom_only = FALSE
/datum/trait/negative/deep_breather
name ="Deep Breather"
desc = "You need more air for your lungs to properly work.."
cost = -1
custom_only = FALSE
can_take = ORGANICS
var_changes = list("minimum_breath_pressure" = 22)
excludes = list(/datum/trait/positive/light_breather)

View File

@@ -0,0 +1,8 @@
/datum/trait/neutral/metabolism_up
can_take = ORGANICS
/datum/trait/neutral/metabolism_down
can_take = ORGANICS
/datum/trait/neutral/metabolism_apex
can_take = ORGANICS

View File

@@ -6,3 +6,13 @@
/datum/trait/positive/toxin_gut
custom_only = FALSE
/datum/trait/positive/light_breather
name ="Light Breather"
desc = "You need less air for your lungs to properly work.."
cost = 1
custom_only = FALSE
can_take = ORGANICS
var_changes = list("minimum_breath_pressure" = 12)
excludes = list(/datum/trait/negative/deep_breather)