Blacklist sansufentanyl from medical allergy quirk (#76067)

## About The Pull Request

Fixes https://github.com/tgstation/tgstation/issues/76063. The whole
mechanic of having HMS https://github.com/tgstation/tgstation/pull/75035
is that you have 6 pills to live. If you spawn allergic to those pills
that's going to be a quick end for you.

## Changelog

🆑 LT3
fix: Sansufentanyl won't roll as a potential extreme allergy for
Hereditary Manifold Sickness
/🆑
This commit is contained in:
lessthanthree
2023-06-16 15:01:31 +02:00
committed by GitHub
parent 251eb67c57
commit 71b7de4daa
+10 -1
View File
@@ -973,7 +973,16 @@
quirk_flags = QUIRK_HUMAN_ONLY|QUIRK_PROCESSES
mail_goodies = list(/obj/item/reagent_containers/hypospray/medipen) // epinephrine medipen stops allergic reactions
var/list/allergies = list()
var/list/blacklist = list(/datum/reagent/medicine/c2,/datum/reagent/medicine/epinephrine,/datum/reagent/medicine/adminordrazine,/datum/reagent/medicine/omnizine/godblood,/datum/reagent/medicine/cordiolis_hepatico,/datum/reagent/medicine/synaphydramine,/datum/reagent/medicine/diphenhydramine)
var/list/blacklist = list(
/datum/reagent/medicine/c2,
/datum/reagent/medicine/epinephrine,
/datum/reagent/medicine/adminordrazine,
/datum/reagent/medicine/omnizine/godblood,
/datum/reagent/medicine/cordiolis_hepatico,
/datum/reagent/medicine/synaphydramine,
/datum/reagent/medicine/diphenhydramine,
/datum/reagent/medicine/sansufentanyl
)
var/allergy_string
/datum/quirk/item_quirk/allergic/add_unique(client/client_source)