-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Рецепт коагулянта и возможность его синтеза на станции (#104)
* добавлен рецепт коагулянта * Update coagulant_recipe * исправил то, что недоглядел * Update tff_modular/master_files/code/modules/reagents/recipe/coagulant_recipe.dm
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
tff_modular/master_files/code/modules/reagents/recipe/coagulant_recipe.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/datum/chemical_reaction/medicine/coagulant | ||
results = list(/datum/reagent/medicine/coagulant = 1) | ||
required_reagents = list(/datum/reagent/medicine/salglu_solution = 1, /datum/reagent/phenol = 1, /datum/reagent/carbon = 1, /datum/reagent/water = 1) | ||
required_temp = 300 | ||
optimal_temp = 500 | ||
overheat_temp = 620 | ||
optimal_ph_min = 7 | ||
optimal_ph_max = 9 | ||
thermic_constant = 15 | ||
H_ion_release = 0.20 | ||
reaction_tags = REACTION_TAG_HARD | REACTION_TAG_HEALING |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters