mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-24 13:16:47 +01:00
17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
// Add incompatible quirks.
|
|
// Inspired from LeDrascol's code. Thank you.
|
|
/datum/controller/subsystem/processing/quirks/Initialize(timeofday)
|
|
. = ..()
|
|
|
|
// Prevent incompatible quirks.
|
|
LAZYADD(quirk_blacklist, list(
|
|
// BLOCKED: Thematic, mechanic.
|
|
// Hallowed is a direct foil to Cursed Blood.
|
|
// Causes a conflict with Holy Water effects.
|
|
list("Hallowed","Cursed Blood"),
|
|
|
|
// BLOCKED: Thematic, mechanic, game lore.
|
|
// Bloodsuckers cannot interact with Hallowed users.
|
|
list("Hallowed","Bloodsucker Fledgling"),
|
|
))
|