mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-07-11 00:52:28 +01:00
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
/proc/generate_cold_pathogen()
|
|
var/datum/pathogen/P = unpool(/datum/pathogen)
|
|
P.forced_microbody = /datum/microbody/virus
|
|
P.curable_by_suppression = 7
|
|
P.setup(2, null, 0)
|
|
P.add_symptom(pathogen_controller.path_to_symptom[/datum/pathogeneffects/malevolent/coughing])
|
|
P.add_symptom(pathogen_controller.path_to_symptom[/datum/pathogeneffects/malevolent/indigestion])
|
|
return P
|
|
|
|
/proc/generate_flu_pathogen()
|
|
var/datum/pathogen/P = unpool(/datum/pathogen)
|
|
P.forced_microbody = /datum/microbody/virus
|
|
P.curable_by_suppression = 4
|
|
P.setup(2, null, 0)
|
|
P.add_symptom(pathogen_controller.path_to_symptom[/datum/pathogeneffects/malevolent/coughing])
|
|
P.add_symptom(pathogen_controller.path_to_symptom[/datum/pathogeneffects/malevolent/sneezing])
|
|
P.add_symptom(pathogen_controller.path_to_symptom[/datum/pathogeneffects/malevolent/muscleache])
|
|
return P
|
|
|
|
/proc/generate_indigestion_pathogen()
|
|
var/datum/pathogen/P = unpool(/datum/pathogen)
|
|
P.curable_by_suppression = 18
|
|
P.setup(2, null, 0)
|
|
P.add_symptom(pathogen_controller.path_to_symptom[/datum/pathogeneffects/malevolent/indigestion])
|
|
return P
|