mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 19:17:50 +01:00
Traitor Gear and Balance
This commit is contained in:
@@ -2276,6 +2276,21 @@ datum
|
||||
..()
|
||||
return
|
||||
|
||||
Spores
|
||||
name = "Spores"
|
||||
id = "spores"
|
||||
description = "A toxic spore cloud which blocks vision when ingested."
|
||||
reagent_state = LIQUID
|
||||
color = "#9ACD32" // rgb: 0, 51, 51
|
||||
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if(!M) M = holder.my_atom
|
||||
M.adjustToxLoss(0.5*REM)
|
||||
..()
|
||||
M.damageoverlaytemp = 60
|
||||
M.eye_blurry = max(M.eye_blurry, 3)
|
||||
return
|
||||
|
||||
chloralhydrate //Otherwise known as a "Mickey Finn"
|
||||
name = "Chloral Hydrate"
|
||||
id = "chloralhydrate"
|
||||
@@ -2288,10 +2303,10 @@ datum
|
||||
if(!data) data = 1
|
||||
data++
|
||||
switch(data)
|
||||
if(1)
|
||||
if(1 to 10)
|
||||
M.confused += 2
|
||||
M.drowsyness += 2
|
||||
if(2 to 50)
|
||||
if(10 to 50)
|
||||
M.sleeping += 1
|
||||
if(51 to INFINITY)
|
||||
M.sleeping += 1
|
||||
|
||||
@@ -236,6 +236,14 @@
|
||||
log_game("[key_name(user)] fired Space lube from a chem sprayer.")
|
||||
return
|
||||
|
||||
/obj/item/weapon/reagent_containers/spray/chemsprayer/bioterror/New()
|
||||
..()
|
||||
reagents.add_reagent("spores", 150)
|
||||
reagents.add_reagent("cryptobiolin", 150)
|
||||
reagents.add_reagent("mutagen", 150)
|
||||
reagents.add_reagent("chloralhydrate", 150)
|
||||
|
||||
|
||||
// Plant-B-Gone
|
||||
/obj/item/weapon/reagent_containers/spray/plantbgone // -- Skie
|
||||
name = "Plant-B-Gone"
|
||||
|
||||
Reference in New Issue
Block a user