From 436d6cc5ee1000bc1a6a6722c801a602bddc0517 Mon Sep 17 00:00:00 2001 From: cuberound <122645057+cuberound@users.noreply.github.com> Date: Fri, 29 Nov 2024 09:07:51 +0100 Subject: [PATCH] HvH roundstart AI announcments (#7675) # About the pull request adds framework for AIs to get both factions updated on start of round # Explain why it's good for the game steel does not have to write it manualy # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: qol: HvH roundstart AI announcements /:cl: --------- Co-authored-by: vincibrv Co-authored-by: Blundir <100090741+Blundir@users.noreply.github.com> --- code/game/gamemodes/extended/cm_vs_upp.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/gamemodes/extended/cm_vs_upp.dm b/code/game/gamemodes/extended/cm_vs_upp.dm index db274492ac21..305e59399ee7 100644 --- a/code/game/gamemodes/extended/cm_vs_upp.dm +++ b/code/game/gamemodes/extended/cm_vs_upp.dm @@ -14,3 +14,8 @@ for(var/area/area in GLOB.all_areas) area.base_lighting_alpha = 150 area.update_base_lighting() + +/datum/game_mode/extended/faction_clash/cm_vs_upp/announce() + . = ..() + marine_announcement("An automated distress call has been received from the local colony.\n\nAlert! Sensors have detected a Union of Progressive People's warship in orbit of colony. Enemy Vessel has refused automated hails and is entering lower-planetary orbit. High likelihood enemy vessel is preparing to deploy dropships to local colony. Authorization to interdict and repel hostile force from allied territory has been granted. Automated thawing of cryostasis marine reserves in progress.", "ARES 3.2", 'sound/AI/commandreport.ogg', FACTION_MARINE) + marine_announcement("Alert! Sensors have detected encroaching USCM vessel on an intercept course with local colony.\n\nIntelligence suggests this is the [MAIN_SHIP_NAME]. Confidence is high that USCM force is acting counter to Union interests in this area. Authorization to deploy ground forces to disrupt foreign power attempt to encroach on Union interests has been granted. Emergency awakening of cryostasis troop reserves in progress.", "1VAN/3", 'sound/AI/commandreport.ogg', FACTION_UPP)