mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-01 00:09:14 +00:00
parent
67667f9778
commit
6003c2b71a
2 changed files with 11 additions and 3 deletions
|
@ -2611,7 +2611,8 @@ namespace PKHeX
|
||||||
pkm.setShinyPID();
|
pkm.setShinyPID();
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
TB_ATKIV.Text = "15";
|
int[] atkIVs = {2, 3, 6, 7, 10, 11, 14, 15};
|
||||||
|
TB_ATKIV.Text = atkIVs[Util.rnd32()%atkIVs.Length].ToString();
|
||||||
TB_DEFIV.Text = "10";
|
TB_DEFIV.Text = "10";
|
||||||
TB_SPEIV.Text = "10";
|
TB_SPEIV.Text = "10";
|
||||||
TB_SPAIV.Text = "10";
|
TB_SPAIV.Text = "10";
|
||||||
|
|
|
@ -23,8 +23,15 @@ namespace PKHeX
|
||||||
public override int Format => 2;
|
public override int Format => 2;
|
||||||
|
|
||||||
public bool Japanese => otname.Length == STRLEN_J;
|
public bool Japanese => otname.Length == STRLEN_J;
|
||||||
|
public override string FileName
|
||||||
public override string FileName => $"{Species:000} - {Nickname} - {SaveUtil.ccitt16(Encrypt()):X4}.{Extension}";
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
string form = AltForm > 0 ? $"-{AltForm:00)}" : "";
|
||||||
|
string star = IsShiny ? " ★" : "";
|
||||||
|
return $"{Species:000}{form}{star} - {Nickname} - {SaveUtil.ccitt16(Encrypt()):X4}.{Extension}";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public PK2(byte[] decryptedData = null, string ident = null, bool jp = false)
|
public PK2(byte[] decryptedData = null, string ident = null, bool jp = false)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue