* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
65 lines
1.8 KiB
Plaintext
65 lines
1.8 KiB
Plaintext
//TODO
|
|
// Admin button to override with your own
|
|
// Sabotage objective for tators
|
|
// Multiple goals with less impact but more department focused
|
|
|
|
/datum/station_goal
|
|
var/name = "Generic Goal"
|
|
var/weight = 1 //In case of multiple goals later.
|
|
var/required_crew = 10
|
|
var/list/gamemode_blacklist = list()
|
|
var/completed = FALSE
|
|
var/report_message = "Complete this goal."
|
|
|
|
/datum/station_goal/proc/send_report()
|
|
priority_announce("Priority Nanotrasen directive received. Project \"[name]\" details inbound.", "Incoming Priority Message", 'sound/AI/commandreport.ogg')
|
|
print_command_report(get_report(),"Nanotrasen Directive [pick(GLOB.phonetic_alphabet)] \Roman[rand(1,50)]", announce=FALSE)
|
|
on_report()
|
|
|
|
/datum/station_goal/proc/on_report()
|
|
//Additional unlocks/changes go here
|
|
return
|
|
|
|
/datum/station_goal/proc/get_report()
|
|
return report_message
|
|
|
|
/datum/station_goal/proc/check_completion()
|
|
return completed
|
|
|
|
/datum/station_goal/proc/print_result()
|
|
if(check_completion())
|
|
to_chat(world, "<b>Station Goal</b> : [name] : <span class='greenannounce'>Completed!</span>")
|
|
else
|
|
to_chat(world, "<b>Station Goal</b> : [name] : <span class='boldannounce'>Failed!</span>")
|
|
|
|
/datum/station_goal/Destroy()
|
|
SSticker.mode.station_goals -= src
|
|
. = ..()
|
|
|
|
/datum/station_goal/Topic(href, href_list)
|
|
..()
|
|
|
|
if(!check_rights(R_ADMIN))
|
|
return
|
|
|
|
if(href_list["announce"])
|
|
on_report()
|
|
send_report()
|
|
else if(href_list["remove"])
|
|
qdel(src)
|
|
|
|
/*
|
|
//Crew has to create alien intelligence detector
|
|
// Requires a lot of minerals
|
|
// Dish requires a lot of power
|
|
// Needs five? AI's for decoding purposes
|
|
/datum/station_goal/seti
|
|
name = "SETI Project"
|
|
|
|
//Crew Sweep
|
|
//Blood samples and special scans of amount of people on roundstart manifest.
|
|
//Should keep sec busy.
|
|
//Maybe after completion you'll get some ling detecting gear or some station wide DNA scan ?
|
|
|
|
*/
|