mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-25 17:42:26 +00:00
62 lines
2.2 KiB
Plaintext
62 lines
2.2 KiB
Plaintext
//Brain slug proc for voluntary removal of control.
|
|
/mob/living/carbon/proc/release_control()
|
|
|
|
set category = "Abilities"
|
|
set name = "Release Control"
|
|
set desc = "Release control of your host's body."
|
|
|
|
var/mob/living/simple_mob/animal/borer/B = has_brain_worms()
|
|
|
|
if(B && B.host_brain)
|
|
to_chat(src, "<span class='danger'>You withdraw your probosci, releasing control of [B.host_brain]</span>")
|
|
|
|
B.detatch()
|
|
|
|
verbs -= /mob/living/carbon/proc/release_control
|
|
verbs -= /mob/living/carbon/proc/punish_host
|
|
verbs -= /mob/living/carbon/proc/spawn_larvae
|
|
|
|
else
|
|
to_chat(src, "<span class='danger'>ERROR NO BORER OR BRAINMOB DETECTED IN THIS MOB, THIS IS A BUG !</span>")
|
|
|
|
//Brain slug proc for tormenting the host.
|
|
/mob/living/carbon/proc/punish_host()
|
|
set category = "Abilities"
|
|
set name = "Torment host"
|
|
set desc = "Punish your host with agony."
|
|
|
|
var/mob/living/simple_mob/animal/borer/B = has_brain_worms()
|
|
|
|
if(!B)
|
|
return
|
|
|
|
if(B.host_brain.ckey)
|
|
to_chat(src, "<span class='danger'>You send a punishing spike of psychic agony lancing into your host's brain.</span>")
|
|
if (!can_feel_pain())
|
|
to_chat(B.host_brain, "<span class='warning'>You feel a strange sensation as a foreign influence prods your mind.</span>")
|
|
to_chat(src, "<span class='danger'>It doesn't seem to be as effective as you hoped.</span>")
|
|
else
|
|
to_chat(B.host_brain, "<span class='danger'><FONT size=3>Horrific, burning agony lances through you, ripping a soundless scream from your trapped mind!</FONT></span>")
|
|
|
|
/mob/living/carbon/proc/spawn_larvae()
|
|
set category = "Abilities"
|
|
set name = "Reproduce"
|
|
set desc = "Spawn several young."
|
|
|
|
var/mob/living/simple_mob/animal/borer/B = has_brain_worms()
|
|
|
|
if(!B)
|
|
return
|
|
|
|
if(B.chemicals >= 100)
|
|
to_chat(src, "<span class='danger'>Your host twitches and quivers as you rapidly excrete a larva from your sluglike body.</span>")
|
|
visible_message("<span class='danger'>\The [src] heaves violently, expelling a rush of vomit and a wriggling, sluglike creature!</span>")
|
|
B.chemicals -= 100
|
|
B.has_reproduced = 1
|
|
|
|
vomit(1)
|
|
new /mob/living/simple_mob/animal/borer(get_turf(src))
|
|
|
|
else
|
|
to_chat(src, "<span class='warning'>You do not have enough chemicals stored to reproduce.</span>")
|
|
return |