mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 12:02:31 +01:00
The Lii'dra update (#12366)
This commit is contained in:
@@ -138,9 +138,9 @@
|
||||
|
||||
if(prob(10) && (owner.can_feel_pain()))
|
||||
if(stage < 3)
|
||||
to_chat(owner, "<span class='warning'>You feel a stinging pain in your abdomen!</span>")
|
||||
else
|
||||
to_chat(owner, "<span class='warning'>You feel a stinging pain in your head!</span>")
|
||||
else
|
||||
to_chat(owner, "A part of you tries to fight back, but the taste of the black k'ois puts you at ease.")
|
||||
owner.visible_message("<b>[owner]</b> winces slightly.")
|
||||
owner.adjustHalLoss(5)
|
||||
|
||||
@@ -159,6 +159,9 @@
|
||||
to_chat(owner, "<span class='warning'>You feel something squirming inside of you!</span>")
|
||||
owner.reagents.add_reagent(/decl/reagent/kois/black, 4)
|
||||
|
||||
else if(prob(5))
|
||||
to_chat(owner, "In your struggle, a part of you wishes for the spread to continue.")
|
||||
|
||||
else if(prob(10))
|
||||
to_chat(owner, "<span class='warning'>You feel disorientated!</span>")
|
||||
switch(rand(1,3))
|
||||
@@ -193,14 +196,13 @@
|
||||
owner.emote("scream")
|
||||
owner.adjustBrainLoss(1, 55)
|
||||
|
||||
else if(prob(10))
|
||||
else if(prob(0.5))
|
||||
to_chat(owner, "<span class='danger'>You feel something alien coming up your throat!</span>")
|
||||
|
||||
var/turf/T = get_turf(owner)
|
||||
|
||||
var/datum/reagents/R = new/datum/reagents(100)
|
||||
R.add_reagent(/decl/reagent/kois/black,10)
|
||||
R.add_reagent(/decl/reagent/toxin/phoron,5)
|
||||
var/datum/reagents/R = new/datum/reagents(20)
|
||||
R.add_reagent(/decl/reagent/kois/black,5)
|
||||
var/datum/effect/effect/system/smoke_spread/chem/spores/S = new("blackkois")
|
||||
|
||||
S.attach(T)
|
||||
@@ -209,8 +211,8 @@
|
||||
|
||||
if(owner.can_feel_pain())
|
||||
owner.emote("scream")
|
||||
owner.adjustHalLoss(15)
|
||||
owner.drip(15)
|
||||
owner.adjustHalLoss(5)
|
||||
owner.drip(5)
|
||||
owner.delayed_vomit()
|
||||
|
||||
/obj/item/organ/internal/parasite/blackkois/removed(var/mob/living/carbon/human/target)
|
||||
|
||||
Reference in New Issue
Block a user