ups the prob of anomaly reports, add dust

This commit is contained in:
Poojawa
2018-03-29 15:26:53 -05:00
parent f25757e011
commit 50d9ff9295
7 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
/datum/round_event/anomaly/anomaly_bluespace/announce(fake)
if(prob(50))
if(prob(90))
priority_announce("Unstable bluespace anomaly detected on long range scanners. Expected location: [impact_area.name].", "Anomaly Alert")
else
priority_announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/ai/commandreport.ogg') // CITADEL EDIT metabreak
+1 -1
View File
@@ -11,7 +11,7 @@
announceWhen = 3
/datum/round_event/anomaly/anomaly_flux/announce(fake)
if(prob(50))
if(prob(90))
priority_announce("Localized hyper-energetic flux wave detected on long range scanners. Expected location: [impact_area.name].", "Anomaly Alert")
else
priority_announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/ai/commandreport.ogg') // CITADEL EDIT metabreak
+1 -1
View File
@@ -9,7 +9,7 @@
announceWhen = 20
/datum/round_event/anomaly/anomaly_grav/announce(fake)
if(prob(50))
if(prob(90))
priority_announce("Gravitational anomaly detected on long range scanners. Expected location: [impact_area.name].", "Anomaly Alert")
else
priority_announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/ai/commandreport.ogg') // CITADEL EDIT metabreak
+1 -1
View File
@@ -9,7 +9,7 @@
announceWhen = 10
/datum/round_event/anomaly/anomaly_pyro/announce(fake)
if(prob(50))
if(prob(90))
priority_announce("Pyroclastic anomaly detected on long range scanners. Expected location: [impact_area.name].", "Anomaly Alert")
else
priority_announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/ai/commandreport.ogg') // CITADEL EDIT metabreak
+1 -1
View File
@@ -11,7 +11,7 @@
announceWhen = 3
/datum/round_event/anomaly/anomaly_vortex/announce(fake)
if(prob(50))
if(prob(90))
priority_announce("Localized high-intensity vortex anomaly detected on long range scanners. Expected location: [impact_area.name]", "Anomaly Alert")
else
priority_announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/ai/commandreport.ogg') // CITADEL EDIT metabreak
+1 -1
View File
@@ -14,7 +14,7 @@
fakeable = TRUE
/datum/round_event/ghost_role/blob/announce(fake)
if(prob(50))
if(prob(75))
priority_announce("Confirmed outbreak of level 5 biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", 'sound/ai/outbreak5.ogg')
else
priority_announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/ai/commandreport.ogg') // CITADEL EDIT metabreak
+10 -1
View File
@@ -16,4 +16,13 @@
some mild debris is expected.",
"A neighbouring station is throwing rocks at you. (Perhaps they've \
grown tired of your messages.)")
priority_announce(pick(reason), "Collision Alert")
if(prob(50))
priority_announce(pick(reason), "Collision Alert")
else
priority_announce("A report has been downloaded and printed out at all communications consoles.", "Incoming Classified Message", 'sound/ai/commandreport.ogg') // CITADEL EDIT metabreak
for(var/obj/machinery/computer/communications/C in GLOB.machines)
if(!(C.stat & (BROKEN|NOPOWER)) && is_station_level(C.z))
var/obj/item/paper/P = new(C.loc)
P.name = "Collision Alert"
P.info = "[pick(reason)]"
P.update_icon()