mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-23 13:18:09 +01:00
VS: Planes shenanigans. Begins 'plane' work, for VS specific things.
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
var/mob/living/L = pulledby
|
||||
UnarmedAttack(L)
|
||||
say("Do not interfere with active law enforcement routines!")
|
||||
broadcast_security_hud_message("[src] was interfered with in <b>[get_area(src)]</b>, activating defense routines.", src)
|
||||
global_announcer.autosay("[src] was interfered with in <b>[get_area(src)]</b>, activating defense routines.", "[src]", "Security")
|
||||
//VOREStation Add End
|
||||
/mob/living/bot/secbot/beepsky
|
||||
name = "Officer Beepsky"
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
var/static/icon/ingame_hud_vr = icon('icons/mob/hud_vr.dmi')
|
||||
var/static/icon/ingame_hud_med_vr = icon('icons/mob/hud_med_vr.dmi')
|
||||
|
||||
/mob/living/carbon/human/make_hud_overlays()
|
||||
. = ..()
|
||||
hud_list[HEALTH_VR_HUD] = gen_hud_image(ingame_hud_med_vr, src, "100", plane = PLANE_CH_HEALTH_VR)
|
||||
hud_list[STATUS_R_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_STATUS_R)
|
||||
hud_list[BACKUP_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_BACKUP)
|
||||
hud_list[VANTAG_HUD] = gen_hud_image(ingame_hud_vr, src, plane = PLANE_CH_VANTAG)
|
||||
@@ -213,7 +213,7 @@
|
||||
last_target_time = world.time
|
||||
return M
|
||||
if(check_threat(M) >= 4)
|
||||
broadcast_security_hud_message("[src] is attempting to 'detain' suspect <b>[target_name(M)]</b> in <b>[get_area(src)]</b>.", src)
|
||||
global_announcer.autosay("[src] is attempting to 'detain' suspect <b>[target_name(M)]</b> in <b>[get_area(src)]</b>.", "[src]", "Security")
|
||||
else if(investigates)
|
||||
spawn(1)
|
||||
WanderTowards(seen)
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
/datum/plane_holder/New(mob/this_guy)
|
||||
..()
|
||||
plane_masters[VIS_CH_STATUS_R] = new /obj/screen/plane_master{plane = PLANE_CH_STATUS_R} //Right-side status icon
|
||||
plane_masters[VIS_CH_HEALTH_VR] = new /obj/screen/plane_master{plane = PLANE_CH_HEALTH_VR} //Health bar but transparent at 100
|
||||
plane_masters[VIS_CH_BACKUP] = new /obj/screen/plane_master{plane = PLANE_CH_BACKUP} //Backup implant status
|
||||
plane_masters[VIS_CH_VANTAG] = new /obj/screen/plane_master{plane = PLANE_CH_VANTAG} //Vore Antags
|
||||
Reference in New Issue
Block a user