mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
12 lines
487 B
Plaintext
12 lines
487 B
Plaintext
/*
|
|
//Silver debuff Code vs Lycans temporarily disabled for for the bane refactor.
|
|
|
|
/datum/material/silver/on_applied(atom/source, mat_amount, multiplier, from_slot)
|
|
. = ..()
|
|
source.AddComponent(/datum/component/bane, affected_biotypes = MOB_VAMPIRIC, damage_multiplier = 0.5)
|
|
|
|
/datum/material/silver/on_removed(atom/source, mat_amount, multiplier, from_slot)
|
|
. = ..()
|
|
source.RemoveComponentSource(/datum/component/bane, affected_biotypes = MOB_VAMPIRIC, damage_multiplier = 0.5)
|
|
*/
|