diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm index 8049a742994..0ed63563011 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/chem.dm @@ -31,16 +31,3 @@ M.EyeBlurry(6) M.Paralyse(5) ..() - -// Terror Spider, Queen Toxin - -/datum/reagent/terror_queen_toxin - name = "Terror Queen venom" - id = "terror_queen_toxin" - description = "A royally potent venom." - color = "#CF3600" - metabolization_rate = 2 - -/datum/reagent/terror_queen_toxin/on_mob_life(mob/living/M) - // make them hallucinate a lot, like a changeling sting - M.AdjustHallucinate(50, bound_upper = 400) \ No newline at end of file diff --git a/code/modules/mob/living/simple_animal/hostile/terror_spiders/queen.dm b/code/modules/mob/living/simple_animal/hostile/terror_spiders/queen.dm index b84008a08d9..1a9b925d689 100644 --- a/code/modules/mob/living/simple_animal/hostile/terror_spiders/queen.dm +++ b/code/modules/mob/living/simple_animal/hostile/terror_spiders/queen.dm @@ -353,6 +353,6 @@ var/mob/living/L = target if(L.reagents) if(L.can_inject(null, 0, "chest", 0)) - L.reagents.add_reagent("terror_queen_toxin", 15) + L.Hallucinate(400) if(!isterrorspider(L)) L.adjustToxLoss(bonus_tox) \ No newline at end of file