mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-12 21:52:37 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using System;
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// XY specific features for <see cref="MyStatus6"/>
|
|
/// </summary>
|
|
/// <remarks>These properties are technically included in OR/AS but they are unused; assumed backwards compatibility for communications with XY</remarks>
|
|
public sealed class MyStatus6XY : MyStatus6
|
|
{
|
|
public MyStatus6XY(SAV6XY sav, int offset) : base(sav, offset) { }
|
|
|
|
public TrainerFashion6 Fashion
|
|
{
|
|
get => TrainerFashion6.GetFashion(SAV.Data, Offset + 0x30, SAV.Gender);
|
|
set => value.Write(Data, Offset + 0x30);
|
|
}
|
|
|
|
private Span<byte> Nickname_Trash => Data.AsSpan(Offset + 0x62, SAV6.ShortStringLength);
|
|
|
|
public string OT_Nick
|
|
{
|
|
get => SAV.GetString(Nickname_Trash);
|
|
set => SAV.SetString(Nickname_Trash, value.AsSpan(), 12, StringConverterOption.ClearZero);
|
|
}
|
|
|
|
public short EyeColor
|
|
{
|
|
get => ReadInt16LittleEndian(Data.AsSpan(Offset + 0x148));
|
|
set => WriteInt16LittleEndian(Data.AsSpan(Offset + 0x148), value);
|
|
}
|
|
}
|