[MIRROR] some more spans (#9170)

Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
CHOMPStation2
2024-10-05 21:59:27 -07:00
committed by GitHub
parent 77e8c6a7f2
commit 14f0302bef
87 changed files with 496 additions and 444 deletions

View File

@@ -28,17 +28,20 @@
if(!location) continue
switch(location.loc.type)
if( /area/shuttle/escape/centcom )
text += "<br><b><font size=2>[player.real_name] escaped on the emergency shuttle</font></b>"
text += "<br>"
text += span_bold(span_normal("[player.real_name] escaped on the emergency shuttle"))
if( /area/shuttle/escape_pod1/centcom, /area/shuttle/escape_pod2/centcom, /area/shuttle/escape_pod3/centcom, /area/shuttle/escape_pod5/centcom )
text += "<br><font size=2>[player.real_name] escaped in a life pod.</font>"
text += "<br>"
text += span_normal("[player.real_name] escaped in a life pod.")
else
text += "<br><font size=1>[player.real_name] survived but is stranded without any hope of rescue.</font>"
text += "<br>"
text += span_small("[player.real_name] survived but is stranded without any hope of rescue.")
survivors++
if(survivors)
to_world("<span class='notice'><B>The following survived the meteor storm</B></span>:[text]")
to_world(span_notice(span_bold("The following survived the meteor storm")) + ":[text]")
else
to_world(span_notice("<B>Nobody survived the meteor storm!</B>"))
to_world(span_notice(span_bold("Nobody survived the meteor storm!")))
feedback_set_details("round_end_result","end - evacuation")
feedback_set("round_end_result",survivors)