mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-28 04:15:54 -05:00
@@ -34,7 +34,14 @@ public sealed class PK1 : PKM
|
||||
public override bool Japanese => otname.Length == STRLEN_J;
|
||||
public override bool Korean => false;
|
||||
|
||||
public override string FileName => $"{Species:000} - {Nickname} - {SaveUtil.CRC16_CCITT(Encrypt()):X4}.{Extension}";
|
||||
public override string FileName
|
||||
{
|
||||
get
|
||||
{
|
||||
string star = IsShiny ? " ★" : "";
|
||||
return $"{Species:000}{star} - {Nickname} - {SaveUtil.CRC16_CCITT(Encrypt()):X4}.{Extension}";
|
||||
}
|
||||
}
|
||||
|
||||
public PK1(byte[] decryptedData = null, string ident = null, bool jp = false)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user