[feat] Custom name for clown, mime and borgs

This commit is contained in:
rhailrake
2023-05-04 13:44:24 +06:00
committed by Aviu00
parent f04400926e
commit 68e52f60c9
18 changed files with 3124 additions and 43 deletions

View File

@@ -72,5 +72,20 @@ namespace Content.Shared.Humanoid
}
// WD-EDIT
}
public string GetBorgName()
{
return _random.Pick(_prototypeManager.Index<DatasetPrototype>("names_autoborg").Values); //Реди
}
public string GetMimeName()
{
return _random.Pick(_prototypeManager.Index<DatasetPrototype>("names_mime").Values); //Реди
}
public string GetClownName()
{
return _random.Pick(_prototypeManager.Index<DatasetPrototype>("names_clown").Values); //Реди
}
}
}