mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
I lied
This commit is contained in:
@@ -52,7 +52,6 @@
|
||||
.(currentz, currentx, currenty, ligths)
|
||||
else
|
||||
to_chat(usr, "End of map, capture is done.")
|
||||
sound_to(usr, 'sound/AI/done.ogg')
|
||||
|
||||
/datum/admins/proc/capture_map(tz as null|num)
|
||||
set category = "Server"
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
)
|
||||
|
||||
ic_name = "biological entities"
|
||||
var/deploy_drones = TRUE
|
||||
var/deploy_drones = FALSE
|
||||
|
||||
/datum/event/carp_migration/setup()
|
||||
announceWhen = rand(40, 60)
|
||||
@@ -25,7 +25,7 @@
|
||||
var/announcement = ""
|
||||
var/soundfile = 'sound/AI/carp_migration.ogg'
|
||||
if(severity == EVENT_LEVEL_MAJOR && deploy_drones)
|
||||
announcement = "Massive migration of unknown biological entities has been detected near [location_name()], please stand-by. The NDV Icarus has dispatched combat drones to assist."
|
||||
announcement = "A massive migration of unknown biological entities has been detected near [location_name()], please stand-by. The NDV Icarus has dispatched combat drones to assist."
|
||||
soundfile = 'sound/AI/massivespacecarp.ogg'
|
||||
else
|
||||
announcement = "Unknown biological [length(spawned_carp) == 1 ? "entity has" : "entities have"] been detected near [location_name()], please stand-by.[severity == EVENT_LEVEL_MODERATE ? " The NDV Icarus has dispatched combat drones to assist." : ""]"
|
||||
@@ -107,7 +107,7 @@
|
||||
/datum/event/carp_migration/cozmo/announce()
|
||||
for (var/zlevel in affecting_z)
|
||||
if(zlevel in current_map.station_levels)
|
||||
command_announcement.Announce("A migration of non-hostile entities has been detected outside.", "Lifesign Alert", 'sound/AI/cozmo_migration.ogg')
|
||||
command_announcement.Announce("A migration of non-hostile entities has been detected near the ship.", "Lifesign Alert", 'sound/AI/cozmo_migration.ogg')
|
||||
break
|
||||
|
||||
/datum/event/carp_migration/cozmo/spawn_fish(var/num_groups, var/group_size_min = 3, var/group_size_max = 5, var/spawn_drones = FALSE)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
ic_name = "a viral biohazard"
|
||||
|
||||
/datum/event/disease_outbreak/announce()
|
||||
command_announcement.Announce("Confirmed outbreak of level 7 viral biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", new_sound = 'sound/AI/outbreak7.ogg')
|
||||
command_announcement.Announce("Confirmed outbreak of level 7 viral biohazard aboard [station_name()]. All personnel must contain the outbreak.", "Biohazard Alert", new_sound = 'sound/AI/level_7_biohazard.ogg')
|
||||
|
||||
/datum/event/disease_outbreak/setup()
|
||||
announceWhen = rand(15, 30)
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
/datum/event/meteor_wave/announce()
|
||||
for (var/zlevel in affecting_z)
|
||||
if(zlevel in current_map.station_levels)
|
||||
command_announcement.Announce(current_map.meteors_detected_message, "Meteor Alert", new_sound = 'sound/AI/meteors.ogg')
|
||||
command_announcement.Announce(current_map.meteors_detected_message, "Meteor Alert", new_sound = 'sound/AI/meteors_detected_message.ogg')
|
||||
break
|
||||
|
||||
/datum/event/meteor_wave/start()
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
/datum/event/supply_drop/announce()
|
||||
if (prob(65))//Announce the location
|
||||
command_announcement.Announce("Transport signature of unknown origin detected in [location_name], an object appears to have been beamed aboard [station_name()].", "Unknown Object", new_sound = 'sound/AI/strangeobject.ogg')
|
||||
command_announcement.Announce("A transport signature of unknown origin detected in [location_name], an object appears to have been beamed aboard [station_name()].", "Unknown Object", new_sound = 'sound/AI/strangeobject.ogg')
|
||||
else if (prob(25))//Announce the transport, but not the location
|
||||
command_announcement.Announce("External transport signature of unknown origin detected aboard [station_name()], precise destination point cannot be determined, please investigate.", "Unknown Object", new_sound = 'sound/AI/strangeobject.ogg')
|
||||
//Otherwise, no announcement at all.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
endWhen = announceWhen + 1
|
||||
|
||||
/datum/event/wallrot/announce()
|
||||
command_announcement.Announce("Harmful fungi detected at coordinates ([origin_turf.x], [origin_turf.y], [origin_turf.z]). The structure may be contaminated.", "Biohazard Alert", new_sound = pick('sound/AI/fungi.ogg', 'sound/AI/funguy.ogg', 'sound/AI/fun_guy.ogg', 'sound/AI/fun_gi.ogg'))
|
||||
command_announcement.Announce("Harmful fungi detected at coordinates ([origin_turf.x], [origin_turf.y], [origin_turf.z]). The structure may be contaminated.", "Biohazard Alert", new_sound = 'sound/AI/fungi.ogg')
|
||||
|
||||
/datum/event/wallrot/start()
|
||||
set waitfor = FALSE
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
hal_sender += H
|
||||
switch(rand(1,15))
|
||||
if(1)
|
||||
sound_to(holder, 'sound/AI/radiation.ogg')
|
||||
sound_to(holder, 'sound/AI/radiation_detected_message.ogg')
|
||||
to_chat(holder, "<h2 class='alert'>Anomaly Break</h2>")
|
||||
to_chat(holder, SPAN_ALERT("Comfortable levels of radiation detected near the station. [pick(SShallucinations.hallucinated_phrases)] Please cower among the shielded maintenance burrows.")) //hallucinated phrases contains the punctuation
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
to_chat(holder, SPAN_ALERT("The scrubbers network is expecting \an [pick(adjectives)] surge. Some ejection of [pick(adjectives)] contents will occur."))
|
||||
|
||||
if(4)
|
||||
sound_to(holder, 'sound/AI/emergencyshuttlecalled.ogg')
|
||||
sound_to(holder, 'sound/AI/emergency_shuttle_leaving_dock.ogg')
|
||||
to_chat(holder, "<h2 class='alert'>Emergency Departure</h2>")
|
||||
to_chat(holder, SPAN_ALERT("The emergency evacuation shuttle has arrived. It will depart in approximately two minutes. Please do not allow [holder] to board."))
|
||||
|
||||
@@ -35,17 +35,17 @@
|
||||
to_chat(holder, SPAN_ALERT("We indicate that [pick("rats", "lizards", "hivebots", "children")] have nested nearby. Free them before this starts to affect longetivity."))
|
||||
|
||||
if(6)
|
||||
sound_to(holder, 'sound/AI/outbreak7.ogg')
|
||||
sound_to(holder, 'sound/AI/level_7_biohazard.ogg')
|
||||
to_chat(holder, "<h2 class='alert'>What have you done?</h2>")
|
||||
to_chat(holder, SPAN_ALERT("Confirmed outbreak of help level 17 viral biohazard aboard [holder]. Help me. All personnel must destroy the outbreak. What have you helpME done?"))
|
||||
to_chat(holder, SPAN_ALERT("-[pick(hal_sender)]"))
|
||||
if(7)
|
||||
sound_to(holder, 'sound/AI/meteors.ogg')
|
||||
sound_to(holder, 'sound/AI/meteors_detected_message.ogg')
|
||||
to_chat(holder, "<h2 class='alert'>Meteor Alarm</h2>")
|
||||
to_chat(holder, SPAN_ALERT("A [pick(adjectives)] meteor storm has been authorized for a destruction course with your station. Less than three minutes until impact, shields cannot help you; seek shelter in the upper level."))
|
||||
|
||||
if(8)
|
||||
sound_to(holder, pick('sound/AI/fungi.ogg', 'sound/AI/funguy.ogg', 'sound/AI/fun_guy.ogg', 'sound/AI/fun_gi.ogg'))
|
||||
sound_to(holder,'sound/AI/fungi.ogg')
|
||||
to_chat(holder, "<h2 class='alert'>Biohealth Notice</h2>")
|
||||
to_chat(holder, SPAN_ALERT("Healthy fungi detected on station. Your bodies may be contaminated. This is mandatory, [holder]."))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user