mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-13 08:04:22 +01:00
981aaee9fa
* bustin makes me feel good * Update vorestation.dme * Update trap.dm * more * Edits * Make this work on incorp entities * Update entrepreneur_items.dm * Ghost Capture! * awwa * Update entrepreneur_items.dm * Update entrepreneur_items.dm * vore * Other ways to spawn it * Spectral shot * ammo * yeh * get these * Update ammo.dm * AAAA * Update weapons.dm * Update weapons.dm * beeem * better * Update weapons.dm * more stuffs * make sure this is unticked * Update supplypack.dm * spooky * yeh * mob sprites * aaa * Update research_nodes.dm * Remove RND_CATEGORY_INITIAL from ammunition designs * ?. * subtype
29 lines
1.5 KiB
Plaintext
29 lines
1.5 KiB
Plaintext
/obj/item/clothing/glasses/ghost
|
|
name = "spectral field analysis goggles"
|
|
desc = "A pair of goggles claiming to let you see into the beyond!"
|
|
description_fluff = "A pair of goggles created by K.E's Spectral-Division, a popular item among ghost hunters and paranormal investigators. \
|
|
Due to their extremely poor visual clarity and the extreme static coming from the display, users often claim to see 'specters' and 'spirits' \
|
|
while wearing them with no physcial proof to back up these claims, as any attempt to take a photo or record through the goggles results in \
|
|
results in a blurry, static-filled mess."
|
|
icon_state = "proton_goggles"
|
|
item_state_slots = list(slot_r_hand_str = "glasses", slot_l_hand_str = "glasses")
|
|
darkness_view = 7 //So you can really see those ghosts~
|
|
see_invisible = SEE_INVISIBLE_CULT
|
|
toggleable = 1
|
|
actions_types = list(/datum/action/item_action/toggle_goggles)
|
|
off_state = "denight"
|
|
flash_protection = FLASH_PROTECTION_VULNERABLE
|
|
enables_planes = list(VIS_GHOSTS)
|
|
///If we can see without static or not.
|
|
var/static_vision = TRUE
|
|
|
|
/obj/item/clothing/glasses/ghost/Initialize(mapload)
|
|
. = ..()
|
|
if(static_vision)
|
|
overlay = GLOB.global_hud.heavy_whitense //obscures your vision of the real realm AND makes actually seeing ghosts difficult.
|
|
|
|
/obj/item/clothing/glasses/ghost/advanced
|
|
name = "improved spectral field analysis goggles"
|
|
desc = "A pair of goggles claiming to let you see into the beyond! This one allows for extra clarity."
|
|
static_vision = FALSE
|