Adding some sprites I've had sitting around unfinished (#7419)

Co-authored-by: Raeschen <rycoop29@gmail.com>
This commit is contained in:
BlackMajor
2024-02-09 12:29:18 +01:00
committed by GitHub
co-authored by Raeschen
parent 2ec2899f22
commit 95c9852fbb
15 changed files with 5283 additions and 4993 deletions
@@ -0,0 +1,13 @@
var/global_vantag_hud = 0
/client/proc/toggle_vantag_hud_global(var/mob/target as mob)
set category = "Fun"
set name = "Toggle Global Event HUD"
set desc = "Give everyone the Event HUD."
global_vantag_hud = !global_vantag_hud
if(global_vantag_hud)
for(var/mob/living/L in living_mob_list)
if(L.ckey)
L.vantag_hud = TRUE
L.recalculate_vis()