Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Virology Fixes #2882

Merged
merged 22 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion code/modules/admin/admin_verbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ var/global/list/admin_verbs_fun = list(
/client/proc/cmd_admin_simulate_distant_explosion,
/datum/admins/proc/ai_hologram_set,
/client/proc/bombard_zlevel,
/client/proc/rename_shuttle
/client/proc/rename_shuttle,
/client/proc/give_disease2 // [/SIERRA-ADD] - CLIENT_VERBS
)

var/global/list/admin_verbs_spawn = list(
Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/skills/skill.dm
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,6 @@ GLOBAL_LIST_EMPTY(skills)
desc = "Virology requires a specialist to have not only a deep knowledge of viruses, but also the ability to work with them, similar to how a chemist works with chemicals. This means not only understanding chemical reactions and their effects, but also knowing how these reactions will affect the human body. Thus, a virologist must have not only knowledge of virology, but also medical skills. An analogy can be drawn with a medical chemist, who must have experience working with chemicals and understand what effect they will have in order to use them safely in medicine."
levels = list( "Unskilled" = "You know that virologist work with viruses; you know that they can be very dangerous. You probably know basic defence against viruses..",
"Trained" = "You can engeener viruses. You have some training in safety and you won't infect yourself while work... probably. You can almost safely use the virologist equipment.")
prerequisites = list(SKILL_CHEMISTRY = SKILL_TRAINED)
prerequisites = list(SKILL_CHEMISTRY = SKILL_BASIC)
default_max = SKILL_BASIC
difficulty = SKILL_AVERAGE
difficulty = SKILL_EXPERIENCED
4 changes: 2 additions & 2 deletions maps/sierra/sierra_unit_testing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@
name = "ZAS: Supply Shuttle (CentComm)"
area_path = /area/supply/dock

/*

/datum/unit_test/zas_area_test/virology
name = "ZAS: Virology"
area_path = /area/medical/virology
*/


/datum/unit_test/zas_area_test/xenobio
name = "ZAS: Xenobiology"
Expand Down
Loading
Loading