mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-10 23:47:16 +01:00
more changes
This commit is contained in:
@@ -293,7 +293,7 @@ GLOBAL_LIST_INIT(hallucination_list, list(
|
||||
target.client.images |= fakerune
|
||||
target.playsound_local(wall,'sound/effects/meteorimpact.ogg', 150, 1)
|
||||
bubblegum = new(wall, target)
|
||||
addtimer(CALLBACK(src, .proc/bubble_attack, landing), 10)
|
||||
addtimer(CALLBACK(src,PROC_REF(bubble_attack), landing), 10)
|
||||
|
||||
/datum/hallucination/oh_yeah/proc/bubble_attack(turf/landing)
|
||||
var/charged = FALSE //only get hit once
|
||||
@@ -1099,7 +1099,7 @@ GLOBAL_LIST_INIT(hallucination_list, list(
|
||||
return
|
||||
to_chat(target, "<span class='userdanger'>You fall into the chasm!</span>")
|
||||
target.Knockdown(40)
|
||||
addtimer(CALLBACK(GLOBAL_PROC, .proc/to_chat, target, "<span class='notice'>It's surprisingly shallow.</span>"), 15)
|
||||
addtimer(CALLBACK(GLOBAL_PROC,PROC_REF(to_chat), target, "<span class='notice'>It's surprisingly shallow.</span>"), 15)
|
||||
QDEL_IN(src, 30)
|
||||
|
||||
/obj/effect/hallucination/danger/anomaly
|
||||
@@ -1222,13 +1222,13 @@ GLOBAL_LIST_INIT(hallucination_list, list(
|
||||
if(target.client)
|
||||
target.client.images |= shock_image
|
||||
target.client.images |= electrocution_skeleton_anim
|
||||
addtimer(CALLBACK(src, .proc/reset_shock_animation), 40)
|
||||
addtimer(CALLBACK(src,PROC_REF(reset_shock_animation)), 40)
|
||||
target.playsound_local(get_turf(src), "sparks", 100, 1)
|
||||
target.staminaloss += 50
|
||||
target.Stun(40)
|
||||
target.jitteriness += 1000
|
||||
target.do_jitter_animation(target.jitteriness)
|
||||
addtimer(CALLBACK(src, .proc/shock_drop), 20)
|
||||
addtimer(CALLBACK(src,PROC_REF(shock_drop)), 20)
|
||||
|
||||
/datum/hallucination/shock/proc/reset_shock_animation()
|
||||
if(target.client)
|
||||
|
||||
Reference in New Issue
Block a user