mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-27 14:32:13 -05:00
parent
475acfaeac
commit
1db5161a59
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user