mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-31 00:49:06 +01:00
Adds borer as its own gamemode. Switches some psionics around. (#7976)
This commit is contained in:
@@ -169,7 +169,7 @@
|
||||
var/new_latencies = rand(2,4)
|
||||
var/list/faculties = list(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS)
|
||||
for(var/i = 1 to new_latencies)
|
||||
to_chat(src, span("danger", "<font size = 3>[pick(psi_operancy_messages)]</font>"))
|
||||
custom_pain(span("danger", "<font size = 3>[pick(psi_operancy_messages)]</font>"), 25)
|
||||
set_psi_rank(pick_n_take(faculties), 1)
|
||||
sleep(30)
|
||||
psi.update()
|
||||
|
||||
@@ -403,7 +403,7 @@
|
||||
|
||||
/mob/living/simple_animal/borer/verb/awaken_psionics()
|
||||
set category = "Abilities"
|
||||
set name = "Awaken Host Psionics (100)"
|
||||
set name = "Awaken Host Psionics (150)"
|
||||
set desc = "Probe into your host an unlock their psionic potential."
|
||||
|
||||
if(!host)
|
||||
@@ -415,13 +415,13 @@
|
||||
if(stat)
|
||||
to_chat(src, span("notice", "You cannot do that in your current state."))
|
||||
return
|
||||
if(chemicals < 100)
|
||||
if(chemicals < 150)
|
||||
to_chat(src, span("warning", "You don't have enough chemicals!"))
|
||||
return
|
||||
|
||||
chemicals -= 100
|
||||
chemicals -= 150
|
||||
to_chat(src, span("notice", "You probe your tendrils deep within your host's zona bovinae, seeking to unleash their potential."))
|
||||
to_chat(host, span("warning", "You feel a burning tingling sensation at the back of your head."))
|
||||
to_chat(host, span("danger", "You feel some tendrils probe at the back of your head..."))
|
||||
addtimer(CALLBACK(src, .proc/jumpstart_psi), 100)
|
||||
|
||||
/mob/living/simple_animal/borer/proc/jumpstart_psi()
|
||||
|
||||
@@ -45,4 +45,4 @@
|
||||
if(istype(M, /mob/abstract/new_player))
|
||||
continue
|
||||
else if(M.stat == DEAD && M.client.prefs.toggles & CHAT_GHOSTEARS)
|
||||
to_chat(M, "[src.truename] whispers to [host], \"[message]\"")
|
||||
to_chat(M, "<b>[src.truename]</b> whispers to <b>[host]</b>, \"[message]\"")
|
||||
|
||||
Reference in New Issue
Block a user