Skip to content

Commit e695164

Browse files
committed
[WIP] Radiation
Rads rads we're the rads
1 parent d018717 commit e695164

File tree

2 files changed

+56
-1
lines changed

2 files changed

+56
-1
lines changed

code/modules/power/fusion/core/core_field.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@
336336
var/datum/gas_mixture/environment = owned_core.loc.return_air()
337337
if(environment && environment.temperature < (T0C+1000)) // Putting an upper bound on it to stop it being used in a TEG.
338338
environment.add_thermal_energy(plasma_temperature*20000)
339-
radiation = 0
339+
//radiation = 0
340340

341341
/obj/effect/fusion_em_field/proc/change_size(var/newsize = 1)
342342
var/changed = 0

code/modules/power/fusion/fusion_reactions.dm

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,3 +216,58 @@ proc/cache_reactions()
216216
energy_production = 8.00
217217
products = list("nickel" = 1, "gamma ray" = 1)
218218
priority = 2
219+
220+
221+
222+
223+
224+
225+
226+
227+
228+
229+
230+
231+
232+
233+
234+
235+
236+
237+
238+
239+
240+
241+
242+
243+
244+
245+
246+
247+
248+
249+
250+
251+
252+
253+
254+
255+
256+
257+
// the cursed place
258+
///decl/fusion_reaction/suppermatter_boss_fight
259+
260+
// for the bravest
261+
/decl/fusion_reaction/cooking
262+
energy_production = 0
263+
energy_consumption = 10
264+
instability = 100
265+
is_special = TRUE
266+
267+
/decl/fusion_reaction/cooking/steak
268+
l_reactants = list("raw steak" = 1, "metaphoron" = 1)
269+
minimum_reaction_temperature = 100000
270+
products = list("fusion steak" = 1)
271+
272+
/decl/fusion_reaction/cooking/steak/handle_reaction_special(obj/effect/fusion_em_field/holder)
273+
// TBD

0 commit comments

Comments
 (0)