mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-06 23:42:56 +00:00
adds serkii's dress and a meson engineering HUD
This commit is contained in:
@@ -122,6 +122,44 @@
|
||||
icon_override = null
|
||||
icon_state = "purple"
|
||||
|
||||
/obj/item/clothing/glasses/omnihud/eng/meson
|
||||
name = "Meson scanner HUD"
|
||||
desc = "A headset equipped with a scanning lens and mounted retinal projector. They don't provide any eye protection, but they're less obtrusive than goggles."
|
||||
icon = 'icons/vore/custom_items_vr.dmi'
|
||||
icon_override = 'icons/vore/custom_clothes_vr.dmi'
|
||||
icon_state = "projector"
|
||||
off_state = "projector-off"
|
||||
body_parts_covered = 0
|
||||
flash_prot = 0 //No welding protection for these.
|
||||
toggleable = 1
|
||||
vision_flags = SEE_TURFS //but they can spot breaches. Due to the way HUDs work, they don't provide darkvision up-close the way mesons do.
|
||||
|
||||
/obj/item/clothing/glasses/omnihud/eng/meson/attack_self(mob/user)
|
||||
if(!active)
|
||||
toggleprojector()
|
||||
..()
|
||||
|
||||
/obj/item/clothing/glasses/omnihud/eng/meson/verb/toggleprojector()
|
||||
set name = "Toggle projector"
|
||||
set category = "Object"
|
||||
set src in usr
|
||||
if(!istype(usr, /mob/living)) return
|
||||
if(usr.stat) return
|
||||
if(toggleable)
|
||||
if(active)
|
||||
active = 0
|
||||
icon_state = off_state
|
||||
item_state = "[initial(item_state)]-off"
|
||||
usr.update_inv_glasses()
|
||||
usr << "You deactivate the retinal projector on the [src]."
|
||||
else
|
||||
active = 1
|
||||
icon_state = initial(icon_state)
|
||||
item_state = initial(item_state)
|
||||
usr.update_inv_glasses()
|
||||
usr << "You activate the retinal projector on the [src]."
|
||||
usr.update_action_buttons()
|
||||
|
||||
/obj/item/clothing/glasses/omnihud/all
|
||||
name = "AR-B glasses"
|
||||
desc = "The KHI-62-B AR glasses are a design from Kitsuhana Heavy Industries. \
|
||||
|
||||
@@ -82,6 +82,17 @@
|
||||
icon_override = 'icons/vore/custom_clothes_vr.dmi'
|
||||
item_state = "joanasuna"
|
||||
|
||||
//eekasqueak:Serkii Miishy
|
||||
/obj/item/clothing/under/skirt/fluff/serkii
|
||||
name = "stylish blue skirt"
|
||||
desc = "A simple black shirt tops this skirt, made of a down soft blue fabric and pleated."
|
||||
|
||||
icon = 'icons/vore/custom_clothes_vr.dmi'
|
||||
icon_state = "serkiskirt"
|
||||
|
||||
icon_override = 'icons/vore/custom_clothes_vr.dmi'
|
||||
item_state = "serkiskirt"
|
||||
|
||||
//Unknown. Please check records from the forums.
|
||||
/obj/item/clothing/under/suit_jacket/female/fluff/miqote
|
||||
name = "Miqo'te Seperates"
|
||||
|
||||
@@ -194,6 +194,20 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie
|
||||
to_helmet = /obj/item/clothing/head/helmet/space/void/engineering/hazmat/fluff/screehelm
|
||||
to_suit = /obj/item/clothing/suit/space/void/engineering/hazmat/fluff/screespess
|
||||
|
||||
/obj/item/clothing/glasses/omnihud/eng/meson/fluff/scree
|
||||
name = "OCR headset"
|
||||
desc = "A meson-scanning headset with retinal projector and ultrasonic earpiece. This one is set up to read text to the wearer."
|
||||
description_info = "The device appears to be configured as an aid to reading, with an OCR system that highlights text for the wearer and \
|
||||
reads it out through the earpiece, while rendering the meson scan data as high-frequency sound. It's like a HUD for bats."
|
||||
|
||||
mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
|
||||
if(..())
|
||||
if(H.ckey != "scree")
|
||||
H << "<span class='warning'>This thing isn't set up for your visual spectrum OR your audio range.</span>"
|
||||
return 0
|
||||
else
|
||||
return 1
|
||||
|
||||
//General Use
|
||||
/obj/item/weapon/flag
|
||||
name = "Nanotrasen Banner"
|
||||
|
||||
Reference in New Issue
Block a user