mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 02:13:06 +00:00
* nitrile gloves buff (#58594) * nitrile gloves buff Co-authored-by: manofpepsi <71612753+manofpepsi@users.noreply.github.com>
4 lines
252 B
Plaintext
4 lines
252 B
Plaintext
#define NITRILE_GLOVES_MULTIPLIER 0.5
|
|
///multiplies the time of do_mob by NITRILE_GLOVES_MULTIPLIER if the user has the TRAIT_FASTMED
|
|
#define CHEM_INTERACT_DELAY(delay, user) HAS_TRAIT(user, TRAIT_FASTMED) ? (delay * NITRILE_GLOVES_MULTIPLIER) : delay
|