mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
finalize petnames & performance service
This commit is contained in:
parent
0522224f21
commit
62474147b8
11 changed files with 241 additions and 162 deletions
|
|
@ -8,13 +8,12 @@ public class CharacterData
|
|||
{
|
||||
public Dictionary<ObjectKind, string> CustomizePlusScale { get; set; } = [];
|
||||
public Dictionary<ObjectKind, HashSet<FileReplacement>> FileReplacements { get; set; } = [];
|
||||
|
||||
public Dictionary<ObjectKind, string> GlamourerString { get; set; } = [];
|
||||
|
||||
public string HeelsData { get; set; } = string.Empty;
|
||||
public string HonorificData { get; set; } = string.Empty;
|
||||
public string ManipulationString { get; set; } = string.Empty;
|
||||
public string MoodlesData { get; set; } = string.Empty;
|
||||
public string PetNamesData { get; set; } = string.Empty;
|
||||
|
||||
public API.Data.CharacterData ToAPI()
|
||||
{
|
||||
|
|
@ -44,7 +43,8 @@ public class CharacterData
|
|||
HeelsData = HeelsData,
|
||||
CustomizePlusData = CustomizePlusScale.ToDictionary(d => d.Key, d => d.Value),
|
||||
HonorificData = HonorificData,
|
||||
MoodlesData = MoodlesData
|
||||
MoodlesData = MoodlesData,
|
||||
PetNamesData = PetNamesData
|
||||
};
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue