mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 06:29:23 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user