mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-03 04:24:12 -05:00
parent
f10a7400a6
commit
ae8280bb22
|
|
@ -294,7 +294,16 @@ public int GenNumber
|
|||
public Image Sprite => PKX.getSprite(this);
|
||||
public string ShowdownText => ShowdownSet.getShowdownText(this);
|
||||
public string[] QRText => PKX.getQRText(this);
|
||||
public virtual string FileName => $"{Species.ToString("000")}{(IsShiny ? " ★" : "")} - {Nickname} - {Checksum.ToString("X4")}{EncryptionConstant.ToString("X8")}.{Extension}";
|
||||
|
||||
public virtual string FileName
|
||||
{
|
||||
get
|
||||
{
|
||||
string form = AltForm > 0 ? $"-{AltForm.ToString("00")}" : "";
|
||||
string star = IsShiny ? " ★" : "";
|
||||
return $"{Species.ToString("000")}{form}{star} - {Nickname} - {Checksum.ToString("X4")}{EncryptionConstant.ToString("X8")}.{Extension}";
|
||||
}
|
||||
}
|
||||
public int[] IVs
|
||||
{
|
||||
get { return new[] { IV_HP, IV_ATK, IV_DEF, IV_SPE, IV_SPA, IV_SPD }; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user