mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
[MIRROR] Rebalanced spider security events (#10939)
Co-authored-by: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
committed by
GitHub
parent
2fba42c706
commit
64e25f1d06
@@ -139,6 +139,21 @@
|
||||
color = "#2CE893"
|
||||
strength = 5
|
||||
|
||||
/datum/reagent/toxin/warningtoxin
|
||||
name = REAGENT_WARNINGTOXIN
|
||||
id = REAGENT_ID_WARNINGTOXIN
|
||||
description = "A weaker toxin produced by giant spiders applied only in warning bites, known to slow a people down a lot."
|
||||
color = "#2CE893"
|
||||
strength = 1
|
||||
|
||||
/datum/reagent/toxin/warningtoxin/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
var/poison_strength = strength * M.species.chem_strength_tox
|
||||
if(strength && alien != IS_DIONA)
|
||||
M.adjustToxLoss(poison_strength * removed)
|
||||
M.druggy = max(M.druggy, 10)
|
||||
M.make_jittery(5)
|
||||
M.add_chemical_effect(CE_SLOWDOWN, 5)
|
||||
|
||||
/datum/reagent/toxin/phoron
|
||||
name = REAGENT_PHORON
|
||||
id = REAGENT_ID_PHORON
|
||||
|
||||
Reference in New Issue
Block a user