Skip to content

Commit

Permalink
Fiiiixess
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDinamit committed Jul 21, 2023
1 parent f1ed5ba commit 8365e1f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions code/game/machinery/computer/pandemic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
else
return ..()

/obj/machinery/computer/pandemic/interface_interact(user)
interact(user)
return TRUE

/obj/machinery/computer/pandemic/interact(mob/user)
user.set_machine(src)
if(!istype(beaker))
Expand Down Expand Up @@ -97,6 +101,11 @@
dat += "<span style='color: #FF7777>\The [src] cannot detect any visible diseases.</span>"
else
dat += "<span style='color: #FF0000>The beaker does not contain blood!</span>"
var/datum/browser/popup = new(user, "pandemic_computer", "Pan.D.E.M.I.C. 2200 console", 400, 600)
popup.set_content(dat)
popup.open()
onclose(user, "pandemic_computer")
return

/obj/machinery/computer/pandemic/OnTopic(href, href_list)
if(href_list["choose_symptom"])
Expand Down
8 changes: 4 additions & 4 deletions code/modules/reagents/Chemistry-Reagents/toxins/virus.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/datum/reagent/unstable_mutagen/mutagen_virus_food
name = "mutagenic agar"
color = "#a3C00f" // rgb: 163,192,15
color = "#a3c00f" // rgb: 163,192,15
taste_description = "sourness"

/datum/reagent/unstable_mutagen/mutagen_virus_food/sugar
Expand All @@ -24,11 +24,11 @@

/datum/reagent/toxin/phoron/phoron_virus_food/weak
name = "weakened virus phoron"
color = "#a28Ca5" // rgb: 206,195,198
color = "#a28ca5" // rgb: 206,195,198

/datum/reagent/medicine/stimulant/synaptizine/synaptizine_virus_food
name = "virus rations"
color = "#D18aa5" // rgb: 209,138,165
color = "#d18aa5" // rgb: 209,138,165
taste_description = "bitterness"

/datum/reagent/uranium/uranium_virus_food
Expand All @@ -38,7 +38,7 @@

/datum/reagent/uranium/uranium_virus_food/unstable
name = "unstable uranium gel"
color = "#2FF2cb" // rgb: 47,242,203
color = "#2ff2cb" // rgb: 47,242,203

/datum/reagent/uranium/uranium_virus_food/stable
name = "stable uranium gel"
Expand Down

0 comments on commit 8365e1f

Please sign in to comment.