mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-21 15:42:53 +00:00
Unsimulated turfs can be climbed on once more. Small blobs can use the blob to move around in space. Jetpacks now have a toggle for the stabilization. Jetpack fuel use has been reset to .01. Moved most of the tanks over to a new folder and files so they are not all crammed into one. The meteor event actually spawns more than one wave worth of meteors. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2488 316c924e-a436-60f5-8080-3fe189b3f50e
33 lines
770 B
Plaintext
33 lines
770 B
Plaintext
|
|
/obj/item/weapon/tank/oxygen
|
|
name = "Gas Tank (Oxygen)"
|
|
desc = "A tank of oxygen"
|
|
icon_state = "oxygen"
|
|
distribute_pressure = ONE_ATMOSPHERE*O2STANDARD
|
|
|
|
|
|
New()
|
|
..()
|
|
src.air_contents.oxygen = (6*ONE_ATMOSPHERE)*volume/(R_IDEAL_GAS_EQUATION*T20C)
|
|
return
|
|
|
|
|
|
examine()
|
|
set src in usr
|
|
..()
|
|
if(air_contents.oxygen < 10)
|
|
usr << text("\red <B>The meter on the [src.name] indicates you are almost out of air!</B>")
|
|
playsound(usr, 'alert.ogg', 50, 1)
|
|
|
|
|
|
/obj/item/weapon/tank/oxygen/yellow
|
|
name = "Gas Tank (Oxygen)"
|
|
desc = "A tank of oxygen, this one is yellow."
|
|
icon_state = "oxygen_f"
|
|
|
|
|
|
/obj/item/weapon/tank/oxygen/red
|
|
name = "Gas Tank (Oxygen)"
|
|
desc = "A tank of oxygen, this one is red."
|
|
icon_state = "oxygen_fr"
|