diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm index 6609a37f487..fa7d5bc4367 100644 --- a/code/game/gamemodes/blob/blob.dm +++ b/code/game/gamemodes/blob/blob.dm @@ -57,16 +57,16 @@ var/list/blob_nodes = list() /datum/game_mode/blob/announce() world << {"The current game mode is - Blob!
- A dangerous alien organism is rapidly spreading throughout the station!
- You must kill it all while minimizing the damage to the station."} +A dangerous alien organism is rapidly spreading throughout the station!
+You must kill it all while minimizing the damage to the station."} /datum/game_mode/blob/proc/greet_blob(var/datum/mind/blob) blob.current << {"\red You are infected by the Blob!
- Your body is ready to give spawn to a new blob core which will eat this station.
- Find a good location to spawn the core and then take control and overwhelm the station!
- When you have found a location, wait until you spawn; this will happen automatically and you cannot speed up the process.
- If you go outside of the station level, or in space, then you will die; make sure your location has lots of ground to cover."} +Your body is ready to give spawn to a new blob core which will eat this station.
+Find a good location to spawn the core and then take control and overwhelm the station!
+When you have found a location, wait until you spawn; this will happen automatically and you cannot speed up the process.
+If you go outside of the station level, or in space, then you will die; make sure your location has lots of ground to cover."} return /datum/game_mode/blob/proc/show_message(var/message) diff --git a/code/game/gamemodes/blob/blob_finish.dm b/code/game/gamemodes/blob/blob_finish.dm index 9050023d970..0f4ce37fa94 100644 --- a/code/game/gamemodes/blob/blob_finish.dm +++ b/code/game/gamemodes/blob/blob_finish.dm @@ -13,19 +13,19 @@ /datum/game_mode/blob/declare_completion() if(blobwincount <= blobs.len) feedback_set_details("round_end_result","loss - blob took over") - world << {"The blob has taken over the station!
- The entire station was eaten by the Blob"} + world << {"The blob has taken over the station! +The entire station was eaten by the Blob"} check_quarantine() else if(station_was_nuked) feedback_set_details("round_end_result","halfwin - nuke") - world << {"Partial Win: The station has been destroyed!
- Directive 7-12 has been successfully carried out, preventing the Blob from spreading."} + world << {"Partial Win: The station has been destroyed! +Directive 7-12 has been successfully carried out, preventing the Blob from spreading."} else if(!blob_cores.len) feedback_set_details("round_end_result","win - blob eliminated") - world << {"The staff has won!
- The alien organism has been eradicated from the station"} + world << {"The staff has won! +The alien organism has been eradicated from the station"} var/datum/station_state/end_state = new /datum/station_state() end_state.count() @@ -67,12 +67,12 @@ datum/game_mode/proc/auto_declare_completion_blob() else numAlive += 1 if (numSpace==0 && numOffStation==0) - world << {"The AI has won!
- The AI successfully maintained the quarantine - no players were in space or were off-station (as far as we can tell)."} + world << {"The AI has won! +The AI successfully maintained the quarantine - no players were in space or were off-station (as far as we can tell)."} log_game("AI won at Blob mode despite overall loss.") else - world << {"The AI has lost!
- The AI failed to maintain the quarantine - [numSpace] were in space and [numOffStation] were off-station (as far as we can tell)."} + world << {"The AI has lost! +The AI failed to maintain the quarantine - [numSpace] were in space and [numOffStation] were off-station (as far as we can tell)."} log_game("AI lost at Blob mode.") log_game("Blob mode was lost.") return 1 diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm index 23d0de00e0d..0588250b458 100644 --- a/code/game/gamemodes/blob/blob_report.dm +++ b/code/game/gamemodes/blob/blob_report.dm @@ -10,18 +10,18 @@ if(1) interceptname = "Biohazard Alert" intercepttext = {"NanoTrasen Update: Biohazard Alert.
- Reports indicate the probable transfer of a biohazardous agent onto [station_name()] during the last crew deployment cycle.
- Preliminary analysis of the organism classifies it as a level 5 biohazard. Its origin is unknown.
- NanoTrasen has issued a directive 7-10 for [station_name()]. The station is to be considered quarantined.
- Orders for all [station_name()] personnel follows:
-
    -
  1. Do not leave the quarantine area.
  2. -
  3. Locate any outbreaks of the organism on the station.
  4. -
  5. If found, use any neccesary means to contain the organism.
  6. -
  7. Avoid damage to the capital infrastructure of the station.
  8. -
-
Note in the event of a quarantine breach or uncontrolled spread of the biohazard, the directive 7-10 may be upgraded to a directive 7-12.
- Message ends."} +Reports indicate the probable transfer of a biohazardous agent onto [station_name()] during the last crew deployment cycle. +Preliminary analysis of the organism classifies it as a level 5 biohazard. Its origin is unknown. +NanoTrasen has issued a directive 7-10 for [station_name()]. The station is to be considered quarantined. +Orders for all [station_name()] personnel follows: +
    +
  1. Do not leave the quarantine area.
  2. +
  3. Locate any outbreaks of the organism on the station.
  4. +
  5. If found, use any neccesary means to contain the organism.
  6. +
  7. Avoid damage to the capital infrastructure of the station.
  8. +
+Note in the event of a quarantine breach or uncontrolled spread of the biohazard, the directive 7-10 may be upgraded to a directive 7-12. +Message ends."} if(2) var/nukecode = "ERROR" for(var/obj/machinery/nuclearbomb/bomb in world) @@ -30,14 +30,14 @@ nukecode = bomb.r_code interceptname = "Directive 7-12" intercepttext = {"NanoTrasen Update: Biohazard Alert.
- Directive 7-12 has been issued for [station_name()].
- The biohazard has grown out of control and will soon reach critical mass.
+ Directive 7-12 has been issued for [station_name()]. + The biohazard has grown out of control and will soon reach critical mass. Your orders are as follows:
  1. Secure the Nuclear Authentication Disk.
  2. Detonate the Nuke located in the Station's Vault.
- Nuclear Authentication Code: [nukecode]
+ Nuclear Authentication Code: [nukecode] Message ends."} for (var/mob/living/silicon/ai/aiPlayer in player_list)