Adds CO2 Breather Trait (#9810)

This commit is contained in:
Ectype
2025-01-07 16:15:39 +01:00
committed by GitHub
parent f014732116
commit 2e5cd9aa72
6 changed files with 78 additions and 0 deletions
+11
View File
@@ -935,6 +935,17 @@
gas = list(
GAS_N2 = 100)
//CHOMPEdit Start - for CO2 breathers
/datum/gas_mixture/belly_air/carbon_dioxide_breather
volume = 2500
temperature = 293.150
total_moles = 104
/datum/gas_mixture/carbon_dioxide_breather/New()
. = ..()
gas = list(
GAS_CO2 = 100)
//CHOMPEdit End
/mob/living/proc/feed_grabbed_to_self_falling_nom(var/mob/living/user, var/mob/living/prey)
// CHOMPAdd Start