-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Unknown Methamphetamine Isomer is now actually safe (#2214)
* works * lol i suck --------- Co-authored-by: RikuTheKiller <[email protected]>
- Loading branch information
1 parent
d3f00bf
commit 6b23634
Showing
2 changed files
with
8 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 6 additions & 18 deletions
24
monkestation/code/modules/antagonists/borers/code/cortical_borer_chems.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,9 @@ | ||
// Double the OD treshold, no brain damage | ||
/datum/reagent/drug/methamphetamine | ||
var/safe = FALSE | ||
|
||
// Double the OD treshold, no brain damage or addiction | ||
/datum/reagent/drug/methamphetamine/borer_version | ||
name = "Unknown Methamphetamine Isomer" | ||
overdose_threshold = 40 | ||
|
||
/datum/reagent/drug/methamphetamine/borer_version/on_mob_life(mob/living/carbon/affected_mob, seconds_per_tick, times_fired) | ||
var/high_message = pick("You feel hyper.", "You feel like you need to go faster.", "You feel like you can run the world.") | ||
if(SPT_PROB(2.5, seconds_per_tick)) | ||
to_chat(affected_mob, span_notice("[high_message]")) | ||
affected_mob.add_mood_event("tweaking", /datum/mood_event/stimulant_medium, name) | ||
affected_mob.AdjustStun(-40 * REM * seconds_per_tick) | ||
affected_mob.AdjustKnockdown(-40 * REM * seconds_per_tick) | ||
affected_mob.AdjustUnconscious(-40 * REM * seconds_per_tick) | ||
affected_mob.AdjustParalyzed(-40 * REM * seconds_per_tick) | ||
affected_mob.AdjustImmobilized(-40 * REM * seconds_per_tick) | ||
affected_mob.stamina.adjust(2 * REM * seconds_per_tick, TRUE) | ||
affected_mob.set_jitter_if_lower(4 SECONDS * REM * seconds_per_tick) | ||
if(SPT_PROB(2.5, seconds_per_tick)) | ||
affected_mob.emote(pick("twitch", "shiver")) | ||
..() | ||
. = TRUE | ||
addiction_types = null | ||
safe = TRUE |