Add Gas Leak & Meteor Swarm events locale files (#6552)

This commit is contained in:
Morbo
2022-02-08 11:43:24 +03:00
committed by GitHub
parent 425712adea
commit 16be41dc48
4 changed files with 8 additions and 5 deletions

View File

@@ -19,13 +19,12 @@ namespace Content.Server.StationEvents.Events
public override string Name => "GasLeak";
public override string StartAnnouncement =>
"Attention crew, there is a gas leak on the station. We advise you to avoid the area and wear suit internals in the meantime.";
public override string StartAnnouncement => Loc.GetString("station-event-gas-leak-start-announcement");
// Sourced from https://github.com/vgstation-coders/vgstation13/blob/2c5a491446ab824a8fbbf39bcf656b590e0228df/sound/misc/bloblarm.ogg
public override string StartAudio => "/Audio/Announcements/bloblarm.ogg";
protected override string EndAnnouncement => "The source of the gas leak has been fixed. Please be cautious around areas with gas remaining.";
protected override string EndAnnouncement => Loc.GetString("station-event-gas-leak-end-announcement");
private static readonly Gas[] LeakableGases = {
Gas.Plasma,

View File

@@ -24,8 +24,8 @@ namespace Content.Server.StationEvents.Events
public override int? MaxOccurrences => 2;
public override int MinimumPlayers => 20;
public override string StartAnnouncement => "Meteors are on a collision course with the station. Brace for impact.";
protected override string EndAnnouncement => "The meteor swarm has passed. Please return to your stations.";
public override string StartAnnouncement => Loc.GetString("station-event-meteor-swarm-start-announcement");
protected override string EndAnnouncement => Loc.GetString("station-event-meteor-swarm-ebd-announcement");
public override string? StartAudio => "/Audio/Announcements/bloblarm.ogg";

View File

@@ -0,0 +1,2 @@
station-event-gas-leak-start-announcement = Attention crew, there is a gas leak on the station. We advise you to avoid the area and wear suit internals in the meantime.
station-event-gas-leak-end-announcement = The source of the gas leak has been fixed. Please be cautious around areas with gas remaining.

View File

@@ -0,0 +1,2 @@
station-event-meteor-swarm-start-announcement = Meteors are on a collision course with the station. Brace for impact.
station-event-meteor-swarm-ebd-announcement = The meteor swarm has passed. Please return to your stations.