This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
forked from new-frontiers-14/frontier-station-14
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from Corvax-Frontier/CorvaxFrontierRu
Ужас, страшно
- Loading branch information
Showing
5,907 changed files
with
22,586 additions
and
9,132 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
|
||
- name: Diff changed RSIs | ||
id: diff | ||
uses: space-wizards/[email protected] | ||
uses: mirrorcult/[email protected] | ||
with: | ||
modified: ${{ steps.files.outputs.modified }} | ||
removed: ${{ steps.files.outputs.removed }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
Content.Server/Corvax/Speech/Components/GrowlingAccentComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace Content.Server.Corvax.Speech.Components; | ||
|
||
/// <summary> | ||
/// Rrrr! | ||
/// </summary> | ||
[RegisterComponent] | ||
public sealed partial class GrowlingAccentComponent : Component | ||
{ | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
Content.Server/Corvax/Speech/EntitySystems/GrowlingAccentSystem.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
using System.Text.RegularExpressions; | ||
using Content.Server.Corvax.Speech.Components; | ||
using Content.Server.Speech; | ||
using Robust.Shared.Random; | ||
|
||
namespace Content.Server.Corvax.Speech.EntitySystems; | ||
|
||
public sealed class GrowlingAccentSystem : EntitySystem | ||
{ | ||
[Dependency] private readonly IRobustRandom _random = default!; | ||
|
||
public override void Initialize() | ||
{ | ||
base.Initialize(); | ||
SubscribeLocalEvent<GrowlingAccentComponent, AccentGetEvent>(OnAccent); | ||
} | ||
|
||
private void OnAccent(EntityUid uid, GrowlingAccentComponent component, AccentGetEvent args) | ||
{ | ||
var message = args.Message; | ||
|
||
// r => rrr | ||
message = Regex.Replace( | ||
message, | ||
"r+", | ||
_random.Pick(new List<string> { "rr", "rrr" }) | ||
); | ||
// R => RRR | ||
message = Regex.Replace( | ||
message, | ||
"R+", | ||
_random.Pick(new List<string> { "RR", "RRR" }) | ||
); | ||
|
||
// р => ррр | ||
message = Regex.Replace( | ||
message, | ||
"р+", | ||
_random.Pick(new List<string> { "рр", "ррр" }) | ||
); | ||
// Р => РРР | ||
message = Regex.Replace( | ||
message, | ||
"Р+", | ||
_random.Pick(new List<string> { "РР", "РРР" }) | ||
); | ||
|
||
args.Message = message; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
marking-OniHornAngular = marking-OniHornAngular | ||
marking-OniHornCurled = marking-OniHornCurled | ||
marking-OniHornDoubleCurved = marking-OniHornDoubleCurved | ||
marking-OniHornDoubleCurvedOutwards = marking-OniHornDoubleCurvedOutwards | ||
marking-OniHornDoubleLeftBrokeCurved = marking-OniHornDoubleLeftBrokeCurved | ||
marking-OniHornDoubleRightBrokeCurved = marking-OniHornDoubleRightBrokeCurved | ||
marking-OniHornRam = marking-OniHornRam | ||
marking-OniHornShort = marking-OniHornShort | ||
marking-OniHornSimple = marking-OniHornSimple | ||
marking-OniHornSingleCurved = marking-OniHornSingleCurved | ||
marking-OniHornSingleLeftCurved = marking-OniHornSingleLeftCurved | ||
marking-OniHornSingleRightCurved = marking-OniHornSingleRightCurved | ||
marking-OniTail = marking-OniTail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
Resources/Locale/en-US/ss14-ru/prototypes/_nf/catalog/fills/items/belt.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
ent-ClothingBeltPilotFilled = { ent-ClothingBeltPilot } | ||
.suffix = Filled | ||
.desc = { ent-ClothingBeltPilot.desc } | ||
ent-ClothingBeltNfsdFilled = { ent-ClothingBeltNfsd } | ||
.desc = { ent-ClothingBeltNfsd.desc } | ||
ent-ClothingBeltNfsdWebbingFilledBrigmedic = { ent-ClothingBeltNfsdWebbing } | ||
.suffix = Filled, Brigmedic | ||
.desc = { ent-ClothingBeltNfsdWebbing.desc } | ||
ent-ClothingBeltNfsdWebbingFilled = { ent-ClothingBeltNfsdWebbing } | ||
.suffix = Filled | ||
.desc = { ent-ClothingBeltNfsdWebbing.desc } |
3 changes: 3 additions & 0 deletions
3
Resources/Locale/en-US/ss14-ru/prototypes/_nf/catalog/fills/items/gas_tanks.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ent-DoubleEmergencyAirTankFilled = { ent-DoubleEmergencyAirTank } | ||
.suffix = Filled | ||
.desc = { ent-DoubleEmergencyAirTank.desc } |
13 changes: 6 additions & 7 deletions
13
Resources/Locale/en-US/ss14-ru/prototypes/_nf/catalog/fills/items/misc.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
ent-ClothingShoesBootsMagCombatFilled = { ent-ClothingShoesBootsMagCombat } | ||
.suffix = Filled | ||
.desc = { ent-ClothingShoesBootsMagCombat.desc } | ||
ent-ClothingShoesBootsMagMercenaryFilled = { ent-ClothingShoesBootsMagMercenary } | ||
.suffix = Filled | ||
.desc = { ent-ClothingShoesBootsMagMercenary.desc } | ||
.desc = { ent-lothingShoesBootsMagCombat.desc } | ||
ent-ClothingShoesBootsMagNfsdFilled = { ent-ClothingShoesBootsMagNfsd } | ||
.desc = { ent-ClothingShoesBootsMagNfsd.desc } | ||
ent-ClothingShoesBootsMagPirateFilled = { ent-ClothingShoesBootsMagPirate } | ||
.suffix = Filled | ||
.desc = { ent-ClothingShoesBootsMagPirate.desc } | ||
.desc = { ent-ClothingShoesBootsMagPirate.desc } | ||
ent-ClothingShoesBootsMagMercenaryFilled = { ent-ClothingShoesBootsMagMercenary } | ||
.desc = { ent-ClothingShoesBootsMagMercenary.desc } |
3 changes: 3 additions & 0 deletions
3
Resources/Locale/en-US/ss14-ru/prototypes/_nf/catalog/fills/lockers/mail.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ent-LockerMailCarrierFilled = { ent-LockerMailCarrier } | ||
.suffix = Filled | ||
.desc = { ent-LockerMailCarrier.desc } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
Resources/Locale/en-US/ss14-ru/prototypes/_nf/entities/clothing/ears/headsets.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
ent-ClothingHeadsetSecuritySafe = { ent-ClothingHeadsetSecurity } | ||
.suffix = Safe | ||
.desc = { ent-ClothingHeadsetSecurity.desc } | ||
ent-ClothingHeadsetMailCarrier = mail carrier headset | ||
.desc = A headset used by mail carrier employees. | ||
ent-ClothingHeadsetNFSDgreen = nfsd headset | ||
.desc = A headset for deputy sheriff's. | ||
ent-ClothingHeadsetNFSDbrown = nfsd headset | ||
.desc = A headset for deputy sheriff's. | ||
ent-ClothingHeadsetNFSDcb = nfsd headset | ||
.desc = A headset for deputy sheriff's. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
Resources/Locale/en-US/ss14-ru/prototypes/_nf/entities/clothing/eyes/hud.ftl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
ent-ClothingEyesHudNfsd = nfsd hud | ||
.desc = A heads-up display that scans the humanoids in view and provides accurate data about their ID status and security records. | ||
ent-ClothingEyesHudMail = mail hud | ||
.desc = A heads-up display that scans mail in view and provides accurate mail data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.