[tweak] ru names, datasets

# Conflicts:
#	Content.IntegrationTests/Tests/Preferences/ServerDbSqliteTests.cs
#	Content.Server/GameTicking/GameTicker.Spawning.cs
#	Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs
#	Resources/Prototypes/Datasets/Names/cargo_shuttle.yml
#	Resources/Prototypes/Datasets/Names/military.yml
#	Resources/Prototypes/Datasets/Names/regalrat.yml
#	Resources/Prototypes/Datasets/Names/skeleton_first.yml
#	Resources/Prototypes/Datasets/tips.yml
#	Resources/Prototypes/Datasets/verbs.yml
This commit is contained in:
rhailrake
2023-04-23 21:45:19 +06:00
committed by Remuchi
parent c4f378b4a8
commit ca64b5ee5d
30 changed files with 7370 additions and 4949 deletions

View File

@@ -87,8 +87,13 @@ public sealed partial class SpeciesPrototype : IPrototype
[DataField("femaleFirstNames")]
public string FemaleFirstNames { get; private set; } = "names_first_female";
[DataField("lastNames")]
public string LastNames { get; private set; } = "names_last";
// WD-EDIT
[DataField("maleLastNames")]
public string MaleLastNames { get; } = "names_last_male";
[DataField("femaleLastNames")]
public string FemaleLastNames { get; } = "names_last_female";
// WD-EDIT
[DataField("naming")]
public SpeciesNaming Naming { get; private set; } = SpeciesNaming.FirstLast;