Skip to content

Commit

Permalink
Firefighting foam recipe change (#16302)
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Earthfire committed Oct 6, 2023
1 parent dc96c5d commit 8ce8e5f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions code/modules/chemistry/Chemistry-Recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3858,11 +3858,16 @@
name = "Firefighting foam"
id = "ff-foam"
result = "ff-foam"
required_reagents = list("chlorine" = 1, "carbon" = 1, "sulfur" = 1)
result_amount = 3
required_reagents = list("chlorine" = 1, "carbon" = 1, "nickel" = 1)
result_amount = 2
mix_phrase = "The mixture bubbles gently."
mix_sound = 'sound/misc/drinkfizz.ogg'

on_reaction(var/datum/reagents/holder, var/created_volume)
// nickel is a catalyst and does not get used in the process
holder.add_reagent("nickel", created_volume / 2,,holder.total_temperature, chemical_reaction = TRUE)


foam
name = "Foam"
id = "foam"
Expand Down
2 changes: 1 addition & 1 deletion code/modules/chemistry/Reagents-Misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ datum
fffoam
name = "firefighting foam"
id = "ff-foam"
description = "Carbon Tetrachloride is a foam used for fire suppression."
description = "Carbon tetrachloride is used for fire suppression."
reagent_state = LIQUID
fluid_r = 195
fluid_g = 195
Expand Down

0 comments on commit 8ce8e5f

Please sign in to comment.