Assmos tweaks/minor additions. (#32400)

* Adds pluoxium formation, makes fusion radioactive and nerfs it, makes noblium cost more energy.

* Review response.

* tanks now melt above 1 Million degrees Kelvin.
This commit is contained in:
as334
2017-11-10 02:30:36 -05:00
committed by CitadelStationBot
parent 5de28f6eb8
commit 7f9800e8fa
6 changed files with 36 additions and 17 deletions
+8
View File
@@ -355,3 +355,11 @@
if(wet_overlay)
cut_overlay(wet_overlay)
/turf/open/rad_act(pulse_strength)
if (air.gases[/datum/gas/carbon_dioxide] && air.gases[/datum/gas/oxygen])
air.gases[/datum/gas/carbon_dioxide][MOLES]=max(air.gases[/datum/gas/carbon_dioxide][MOLES]-(pulse_strength/1000),0)
air.gases[/datum/gas/oxygen][MOLES]=max(air.gases[/datum/gas/oxygen][MOLES]-(pulse_strength/2000),0)
ASSERT_GAS(/datum/gas/pluoxium,air)
air.gases[/datum/gas/pluoxium][MOLES]+=(pulse_strength/4000)
air.garbage_collect()