ID Icons redux lets fucking go this took too long

This commit is contained in:
Chloe Carver-Brown
2021-05-21 22:57:23 +01:00
parent eadb218d72
commit 659695ea75
6 changed files with 156 additions and 47 deletions
+7 -1
View File
@@ -366,7 +366,11 @@
return get_all_jobs() + list("Prisoner")
/proc/get_all_centcom_jobs()
return list("VIP Guest","Custodian","Thunderdome Overseer","CentCom Official","Medical Officer","Death Commando","Research Officer","Special Ops Officer","Admiral","CentCom Commander","Emergency Response Team Commander","Security Response Officer","Engineer Response Officer", "Medical Response Officer","CentCom Bartender","Nuclear Waste Expert")
return list("VIP Guest","Custodian", "Jannie","Thunderdome Overseer","CentCom Official","Medical Officer","Death Commando","Research Officer","Special Ops Officer","Admiral","CentCom Commander","Emergency Response Team Commander","Security Response Officer","Engineer Response Officer", "Medical Response Officer","CentCom Bartender","Nuclear Waste Expert")
/proc/get_all_syndie_jobs()
return list("Syndicate", "Syndicate Overlord", "Lone Operative", "Nuclear Operative")
/obj/item/proc/GetJobName() //Used in secHUD icon generation
var/obj/item/card/id/I = GetID()
@@ -377,4 +381,6 @@
return jobName
if(jobName in get_all_centcom_jobs()) //Return with the NT logo if it is a CentCom job
return "CentCom"
if(jobName in get_all_syndie_jobs()) //Return with syndie logo if syndie job)
return "Syndicate"
return "Unknown" //Return unknown if none of the above apply