Medical doctors and CMOs can get virologist bounties (#96971)

## About The Pull Request

Virologist bounties are currently unobtainable, probably from when
virologist was removed. This PR gives medical doctors and CMOs a 25%
chance to get a virologist bounty instead of a regular bounty.

## Why It's Good For The Game

Content

## Changelog

🆑
add: Medical doctors and CMOs can get old virologist bounties
spellcheck: Changed "transmissible" to "transmission" in virologist
bounties
/🆑

---------

Co-authored-by: Fghj240 <fakeemail@notrealemail.com>
This commit is contained in:
Fghj240
2026-07-16 14:58:30 +02:00
committed by GitHub
co-authored by Fghj240
parent b663f2b147
commit 966e8aa3ba
6 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -60,7 +60,7 @@
return virus.totalStealth() == stat_value
/datum/bounty/virus/transmit
stat_name = "transmissible"
stat_name = "transmission"
/datum/bounty/virus/transmit/accepts_virus(datum/disease/advance/virus)
return virus.totalTransmittable() == stat_value
+5 -2
View File
@@ -105,8 +105,11 @@ GLOBAL_LIST_EMPTY(shared_crew_bounties)
chosen_type = /datum/bounty/reagent/chemical_simple
else
chosen_type = /datum/bounty/reagent/chemical_complex
if(CIV_JOB_VIRO)
chosen_type = pick(subtypesof(/datum/bounty/virus))
if(CIV_JOB_MED_VIRO)
if(prob(75))
chosen_type = pick(subtypesof(/datum/bounty/item/medical))
else
chosen_type = pick(subtypesof(/datum/bounty/virus))
if(CIV_JOB_SCI)
if(prob(50))
chosen_type = pick(subtypesof(/datum/bounty/item/science))