mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Cameron Lennox <killer65311@gmail.com>
26 lines
980 B
Plaintext
26 lines
980 B
Plaintext
//////////////////////Scrying orb//////////////////////
|
|
|
|
/obj/item/scrying
|
|
name = "scrying orb"
|
|
desc = "An incandescent orb of otherworldly energy, staring into it gives you vision beyond mortal means."
|
|
icon = 'icons/obj/projectiles.dmi'
|
|
icon_state = "bluespace"
|
|
throw_speed = 3
|
|
throw_range = 7
|
|
throwforce = 10
|
|
damtype = BURN
|
|
force = 10
|
|
hitsound = 'sound/items/welder2.ogg'
|
|
|
|
/obj/item/scrying/attack_self(mob/user as mob)
|
|
if((user.mind && !wizards.is_antagonist(user.mind)))
|
|
to_chat(user, span_warning("You stare into the orb and see nothing but your own reflection."))
|
|
return
|
|
|
|
to_chat(user, span_info("You can see... everything!"))
|
|
visible_message(span_danger("[user] stares into [src], [user.p_their()] eyes glazing over."))
|
|
|
|
user.teleop = user.ghostize(1)
|
|
announce_ghost_joinleave(user.teleop, 1, "You feel that they used a powerful artifact to [pick("invade","disturb","disrupt","infest","taint","spoil","blight")] this place with their presence.")
|
|
return
|