diff --git a/code/datums/diseases/advance/symptoms/hair.dm b/code/datums/diseases/advance/symptoms/hair.dm
index 51186153551..1a6c2ff109c 100644
--- a/code/datums/diseases/advance/symptoms/hair.dm
+++ b/code/datums/diseases/advance/symptoms/hair.dm
@@ -33,7 +33,7 @@ BONUS
var/obj/item/organ/external/head/head_organ = H.get_organ(BP_HEAD)
if(!istype(head_organ))
return
- to_chat(H, span_warning("[pick("Your scal itches.", "Your skin feels flakey.")]"))
+ to_chat(H, span_warning("[pick("Your scalp itches.", "Your skin feels flakey.")]"))
switch(A.stage)
if(3, 4)
diff --git a/code/datums/diseases/fake_gbs.dm b/code/datums/diseases/fake_gbs.dm
new file mode 100644
index 00000000000..7060e9a82af
--- /dev/null
+++ b/code/datums/diseases/fake_gbs.dm
@@ -0,0 +1,32 @@
+/datum/disease/fake_gbs
+ name = "GBS"
+ max_stages = 5
+ spread_text = "On contact"
+ spread_flags = CONTACT_GENERAL
+ cure_text = "Adranol and sulfur"
+ cures = list("adranol", "sulfur")
+ agent = "Gravitokinetic Bipotential SADS-"
+ viable_mobtypes = list(/mob/living/carbon/human, /mob/living/carbon/human/monkey)
+ desc = "if left untreated death will occur."
+ severity = BIOHAZARD // Mimics real GBS
+
+/datum/disease/fake_gbs/stage_act()
+ if(!..())
+ return FALSE
+ switch(stage)
+ if(2)
+ if(prob(1))
+ affected_mob.emote("sneeze")
+ if(3)
+ if(prob(5))
+ affected_mob.emote("cough")
+ else if(prob(5))
+ affected_mob.emote("gasp")
+ if(prob(10))
+ to_chat(span_danger("You're starting to feel very weak..."))
+ if(4)
+ if(prob(10))
+ affected_mob.emote("cough")
+ if(5)
+ if(prob(10))
+ affected_mob.emote("cough")
diff --git a/code/game/machinery/pandemic.dm b/code/game/machinery/pandemic.dm
index ae8687d6657..4df82ec7ed0 100644
--- a/code/game/machinery/pandemic.dm
+++ b/code/game/machinery/pandemic.dm
@@ -1,6 +1,7 @@
/obj/machinery/computer/pandemic
name = "PanD.E.M.I.C 2200"
desc = "Used to work with viruses."
+ circuit = /obj/item/circuitboard/pandemic
density = TRUE
anchored = TRUE
icon = 'icons/obj/pandemic.dmi'
@@ -325,7 +326,7 @@
printing = 1
var/obj/item/paper/P = new /obj/item/paper(loc)
visible_message(span_notice("[src] rattles and prints out a sheet of paper."))
- // playsound(loc, 'sound/goonstation/machines/printer_dotmatrix.ogg', 50, 1)
+ playsound(loc, 'sound/machines/printer.ogg', 50, 1)
P.info = " Releasing Virus "
P.info += "
"
diff --git a/code/game/objects/items/weapons/circuitboards/machinery/pandemic.dm b/code/game/objects/items/weapons/circuitboards/machinery/pandemic.dm
new file mode 100644
index 00000000000..415044d0e51
--- /dev/null
+++ b/code/game/objects/items/weapons/circuitboards/machinery/pandemic.dm
@@ -0,0 +1,16 @@
+#ifndef T_BOARD
+#error T_BOARD macro is not defined but we need it!
+#endif
+
+/obj/item/circuitboard/pandemic
+ name = T_BOARD("pandemic")
+ build_path = /obj/machinery/computer/pandemic
+ board_type = new /datum/frame/frame_types/computer
+ origin_tech = list(TECH_DATA = 2, TECH_BIO = 2)
+ req_components = list(
+ /obj/item/stock_parts/matter_bin = 2,
+ /obj/item/stock_parts/scanning_module = 1,
+ /obj/item/stock_parts/manipulator = 1
+ /obj/item/stack/cable_coil = 5,
+ /obj/item/stock_parts/capacitor = 1
+ )
diff --git a/code/modules/research/designs/circuits/circuits.dm b/code/modules/research/designs/circuits/circuits.dm
index 972ee1b1598..1ce050dfb3f 100644
--- a/code/modules/research/designs/circuits/circuits.dm
+++ b/code/modules/research/designs/circuits/circuits.dm
@@ -123,6 +123,13 @@ CIRCUITS BELOW
build_path = /obj/item/circuitboard/crew
sort_string = "FAGAI"
+/datum/design/circuit/pandemic
+ name = "PanD.E.M.I.C 2200"
+ id = "pandemic"
+ req_tech = list(TECH_DATA = 2, TECH_BIO 2)
+ build_path = /obj/item/circuitboard/pandemic
+ sort_string = "FAGAJ"
+
/datum/design/circuit/teleconsole
name = "teleporter control console"
id = "teleconsole"
diff --git a/vorestation.dme b/vorestation.dme
index c61cff3cdd4..f732bd02f1b 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -465,6 +465,7 @@
#include "code\datums\diseases\choreomania.dm"
#include "code\datums\diseases\cold.dm"
#include "code\datums\diseases\cold9.dm"
+#include "code\datums\diseases\fake_gbs.dm"
#include "code\datums\diseases\flu.dm"
#include "code\datums\diseases\food_poisoning.dm"
#include "code\datums\diseases\lycancoughy.dm"
@@ -1478,6 +1479,7 @@
#include "code\game\objects\items\weapons\circuitboards\machinery\mech_recharger.dm"
#include "code\game\objects\items\weapons\circuitboards\machinery\mining_drill.dm"
#include "code\game\objects\items\weapons\circuitboards\machinery\pacman.dm"
+#include "code\game\objects\items\weapons\circuitboards\machinery\pandemic.dm"
#include "code\game\objects\items\weapons\circuitboards\machinery\papershredder.dm"
#include "code\game\objects\items\weapons\circuitboards\machinery\power.dm"
#include "code\game\objects\items\weapons\circuitboards\machinery\recharge_station.dm"