mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-24 13:37:16 +01:00
Converts gas, mat and reagent strings to defines
This commit is contained in:
@@ -791,8 +791,8 @@
|
||||
/datum/gas_mixture/belly_air/New()
|
||||
. = ..()
|
||||
gas = list(
|
||||
"oxygen" = 21,
|
||||
"nitrogen" = 79)
|
||||
GAS_O2 = 21,
|
||||
GAS_N2 = 79)
|
||||
|
||||
/datum/gas_mixture/belly_air/vox
|
||||
volume = 2500
|
||||
@@ -802,7 +802,7 @@
|
||||
/datum/gas_mixture/belly_air/vox/New()
|
||||
. = ..()
|
||||
gas = list(
|
||||
"phoron" = 100)
|
||||
GAS_PHORON = 100)
|
||||
|
||||
/datum/gas_mixture/belly_air/zaddat
|
||||
volume = 2500
|
||||
@@ -812,7 +812,7 @@
|
||||
/datum/gas_mixture/belly_air/zaddat/New()
|
||||
. = ..()
|
||||
gas = list(
|
||||
"oxygen" = 100)
|
||||
GAS_O2 = 100)
|
||||
|
||||
/datum/gas_mixture/belly_air/nitrogen_breather
|
||||
volume = 2500
|
||||
@@ -822,7 +822,7 @@
|
||||
/datum/gas_mixture/belly_air/nitrogen_breather/New()
|
||||
. = ..()
|
||||
gas = list(
|
||||
"nitrogen" = 100)
|
||||
GAS_N2 = 100)
|
||||
|
||||
|
||||
/mob/living/proc/feed_grabbed_to_self_falling_nom(var/mob/living/user, var/mob/living/prey)
|
||||
|
||||
Reference in New Issue
Block a user