mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 04:26:03 +01:00
OPFOR PART ONE (#10084)
This commit is contained in:
@@ -94,10 +94,6 @@ GLOBAL_VAR(antag_prototypes)
|
||||
out += "Mind currently owned by key: [key] [active?"(synced)":"(not synced)"]<br>"
|
||||
out += "Assigned role: [assigned_role.title]. <a href='?src=[REF(src)];role_edit=1'>Edit</a><br>"
|
||||
out += "Faction and special role: <b><font color='red'>[special_role]</font></b><br>"
|
||||
//SKYRAT EDIT ADDITION BEGIN - AMBITIONS
|
||||
if(my_ambitions)
|
||||
out += "<b>Ambitions:</b> <a href='?src=[REF(src)];ambitions=1'>View</a><br>"
|
||||
//SKYRAT EDIT ADDITION END
|
||||
|
||||
var/special_statuses = get_special_statuses()
|
||||
if(length(special_statuses))
|
||||
|
||||
@@ -34,24 +34,6 @@
|
||||
else
|
||||
parts += ""
|
||||
parts += "<a href='?_src_=holder;[HrefToken()];traitor=[REF(owner)]'>Show Objective</a>"
|
||||
//SKYRAT EDIT ADDITION BEGIN - AMBITIONS
|
||||
if(uses_ambitions && owner.current && owner.current.mind && owner.current.mind.my_ambitions)
|
||||
var/datum/ambitions/ambs = owner.current.mind.my_ambitions
|
||||
var/string = "NOT SUBMITTED"
|
||||
if(ambs.submitted)
|
||||
switch(ambs.intensity)
|
||||
if(AMBITION_INTENSITY_STEALTH)
|
||||
string = "Stealth"
|
||||
if(AMBITION_INTENSITY_MILD)
|
||||
string = "Mild"
|
||||
if(AMBITION_INTENSITY_MEDIUM)
|
||||
string = "Medium"
|
||||
if(AMBITION_INTENSITY_SEVERE)
|
||||
string = "Severe"
|
||||
if(AMBITION_INTENSITY_EXTREME)
|
||||
string = "Extreme"
|
||||
parts += "<a href='?src=[REF(ambs)];admin_pref=show_ambitions'>Ambitions</a>-[string]"
|
||||
//SKYRAT EDIT ADDITION END
|
||||
return parts //Better as one cell or two/three
|
||||
|
||||
//Builds table row for the antag
|
||||
|
||||
@@ -112,13 +112,6 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
|
||||
L[++L.len] = list("Closed Tickets:", "[cstatclick.update("[closed_tickets.len]")]", null, REF(cstatclick))
|
||||
L[++L.len] = list("Resolved Tickets:", "[rstatclick.update("[resolved_tickets.len]")]", null, REF(rstatclick))
|
||||
|
||||
//SKYRAT EDIT ADDITION BEGIN - AMBITIONS
|
||||
for(var/key in GLOB.ambitions_to_review)
|
||||
var/datum/ambitions/AMBI = key
|
||||
var/reviewer = GLOB.ambitions_to_review[key]
|
||||
L[++L.len] = list("[reviewer ? "H-[reviewer]. " : ""]AMB: [AMBI.owner_name]:", "[AMBI.narrative]", REF(AMBI))
|
||||
L[++L.len] = list("Ambitions intensity:", "STL:[GLOB.intensity_counts["[AMBITION_INTENSITY_STEALTH]"]] MLD:[GLOB.intensity_counts["[AMBITION_INTENSITY_MILD]"]] MED:[GLOB.intensity_counts["[AMBITION_INTENSITY_MEDIUM]"]] SEV:[GLOB.intensity_counts["[AMBITION_INTENSITY_SEVERE]"]] EXT:[GLOB.intensity_counts["[AMBITION_INTENSITY_EXTREME]"]] (HAVOC: [GLOB.total_intensity])", null)
|
||||
//SKYRAT EDIT ADDITION END
|
||||
return L
|
||||
|
||||
//Reassociate still open ticket if one exists
|
||||
|
||||
Reference in New Issue
Block a user