|
|
@ -10,8 +10,8 @@ public partial class LegalityAnalysis
|
|||
private object EncounterMatch;
|
||||
private List<WC6> CardMatch;
|
||||
private Type EncounterType;
|
||||
private LegalityCheck ECPID, Nickname, IDs, IVs, EVs, Encounter, Level, Ribbons, Ability, Ball, History, OTMemory, HTMemory, Region, Form, Misc;
|
||||
private LegalityCheck[] Checks => new[] { Encounter, Level, Form, Ball, Ability, Ribbons, ECPID, Nickname, IVs, EVs, IDs, History, OTMemory, HTMemory, Region, Misc };
|
||||
private LegalityCheck ECPID, Nickname, IDs, IVs, EVs, Encounter, Level, Ribbons, Ability, Ball, History, OTMemory, HTMemory, Region, Form, Misc, Gender;
|
||||
private LegalityCheck[] Checks => new[] { Encounter, Level, Form, Ball, Ability, Ribbons, ECPID, Nickname, IVs, EVs, IDs, History, OTMemory, HTMemory, Region, Misc, Gender };
|
||||
|
||||
public bool Valid = true;
|
||||
public bool SecondaryChecked;
|
||||
|
|
@ -25,7 +25,7 @@ public LegalityAnalysis(PKM pk)
|
|||
{
|
||||
if (!(pk is PK6))
|
||||
return;
|
||||
pk6 = pk as PK6;
|
||||
pk6 = (PK6) pk;
|
||||
try
|
||||
{
|
||||
updateRelearnLegality();
|
||||
|
|
@ -68,6 +68,7 @@ private void updateChecks()
|
|||
Region = verifyRegion();
|
||||
Form = verifyForm();
|
||||
Misc = verifyMisc();
|
||||
Gender = verifyGender();
|
||||
SecondaryChecked = true;
|
||||
}
|
||||
private string getLegalityReport()
|
||||
|
|
|
|||
|
|
@ -28,14 +28,22 @@ public LegalityCheck(Severity s, string c)
|
|||
}
|
||||
public partial class LegalityAnalysis
|
||||
{
|
||||
private LegalityCheck verifyGender()
|
||||
{
|
||||
if (PersonalTable.AO[pk6.Species].Gender == 255 && pk6.Gender != 2)
|
||||
return new LegalityCheck(Severity.Invalid, "Genderless Pokémon should not have a gender.");
|
||||
|
||||
return new LegalityCheck();
|
||||
}
|
||||
private LegalityCheck verifyECPID()
|
||||
{
|
||||
// Secondary Checks
|
||||
LegalityCheck c = new LegalityCheck();
|
||||
if (pk6.EncryptionConstant == 0)
|
||||
return new LegalityCheck(Severity.Fishy, "Encryption Constant is not set.");
|
||||
c = new LegalityCheck(Severity.Fishy, "Encryption Constant is not set.");
|
||||
|
||||
if (pk6.PID == 0)
|
||||
return new LegalityCheck(Severity.Fishy, "PID is not set.");
|
||||
c = new LegalityCheck(Severity.Fishy, "PID is not set.");
|
||||
|
||||
if (EncounterType == typeof (EncounterStatic))
|
||||
{
|
||||
|
|
@ -66,7 +74,7 @@ private LegalityCheck verifyECPID()
|
|||
if (xor < 16 && xor >= 8 && (pk6.PID ^ 0x80000000) == pk6.EncryptionConstant)
|
||||
return new LegalityCheck(Severity.Fishy, "Encryption Constant matches shinyxored PID.");
|
||||
|
||||
return special != "" ? new LegalityCheck(Severity.Valid, special) : new LegalityCheck();
|
||||
return special != "" ? new LegalityCheck(Severity.Valid, special) : c;
|
||||
}
|
||||
|
||||
// When transferred to Generation 6, the Encryption Constant is copied from the PID.
|
||||
|
|
@ -85,7 +93,7 @@ private LegalityCheck verifyECPID()
|
|||
else
|
||||
return new LegalityCheck(Severity.Invalid, "PID should be equal to EC!");
|
||||
|
||||
return new LegalityCheck();
|
||||
return c;
|
||||
}
|
||||
private LegalityCheck verifyNickname()
|
||||
{
|
||||
|
|
@ -156,8 +164,8 @@ private LegalityCheck verifyNickname()
|
|||
}
|
||||
// else
|
||||
{
|
||||
// Can't have another language name if it hasn't evolved.
|
||||
return Legal.getHasEvolved(pk6) && PKX.SpeciesLang.Any(lang => lang[pk6.Species] == nickname)
|
||||
// Can't have another language name if it hasn't evolved or wasn't a language-traded egg.
|
||||
return (pk6.WasTradedEgg || Legal.getHasEvolved(pk6)) && PKX.SpeciesLang.Any(lang => lang[pk6.Species] == nickname)
|
||||
|| PKX.SpeciesLang[pk6.Language][pk6.Species] == nickname
|
||||
? new LegalityCheck(Severity.Valid, "Nickname matches species name.")
|
||||
: new LegalityCheck(Severity.Invalid, "Nickname does not match species name.");
|
||||
|
|
@ -361,18 +369,18 @@ private LegalityCheck verifyRibbons()
|
|||
// Check Event Ribbons
|
||||
bool[] EventRib =
|
||||
{
|
||||
pk6.RIB2_6, pk6.RIB2_7, pk6.RIB3_0, pk6.RIB3_1, pk6.RIB3_2,
|
||||
pk6.RIB3_3, pk6.RIB3_4, pk6.RIB3_5, pk6.RIB3_6, pk6.RIB3_7,
|
||||
pk6.RIB4_0, pk6.RIB4_1, pk6.RIB4_2, pk6.RIB4_3, pk6.RIB4_4
|
||||
pk6.RibbonCountry, pk6.RibbonNational, pk6.RibbonEarth, pk6.RibbonWorld, pk6.RibbonClassic,
|
||||
pk6.RibbonPremier, pk6.RibbonEvent, pk6.RibbonBirthday, pk6.RibbonSpecial, pk6.RibbonSouvenir,
|
||||
pk6.RibbonWishing, pk6.RibbonChampionBattle, pk6.RibbonChampionRegional, pk6.RibbonChampionNational, pk6.RibbonChampionWorld
|
||||
};
|
||||
WC6 MatchedWC6 = EncounterMatch as WC6;
|
||||
if (MatchedWC6 != null) // Wonder Card
|
||||
{
|
||||
bool[] wc6rib =
|
||||
{
|
||||
MatchedWC6.RIB0_3, MatchedWC6.RIB0_4, MatchedWC6.RIB0_5, MatchedWC6.RIB0_6, MatchedWC6.RIB1_5,
|
||||
MatchedWC6.RIB1_6, MatchedWC6.RIB0_7, MatchedWC6.RIB1_1, MatchedWC6.RIB1_2, MatchedWC6.RIB1_3,
|
||||
MatchedWC6.RIB1_4, MatchedWC6.RIB0_0, MatchedWC6.RIB0_1, MatchedWC6.RIB0_2, MatchedWC6.RIB1_0
|
||||
MatchedWC6.RibbonCountry, MatchedWC6.RibbonNational, MatchedWC6.RibbonEarth, MatchedWC6.RibbonWorld, MatchedWC6.RibbonClassic,
|
||||
MatchedWC6.RibbonPremier, MatchedWC6.RibbonEvent, MatchedWC6.RibbonBirthday, MatchedWC6.RibbonSpecial, MatchedWC6.RibbonSouvenir,
|
||||
MatchedWC6.RibbonWishing, MatchedWC6.RibbonChampionBattle, MatchedWC6.RibbonChampionRegional, MatchedWC6.RibbonChampionNational, MatchedWC6.RibbonChampionWorld
|
||||
};
|
||||
for (int i = 0; i < EventRib.Length; i++)
|
||||
if (EventRib[i] ^ wc6rib[i]) // Mismatch
|
||||
|
|
@ -396,19 +404,19 @@ private LegalityCheck verifyRibbons()
|
|||
}
|
||||
|
||||
// Unobtainable ribbons for Gen6 Origin
|
||||
if (pk6.RIB0_1)
|
||||
if (pk6.RibbonChampionG3Hoenn)
|
||||
invalidRibbons.Add("GBA Champion"); // RSE HoF
|
||||
if (pk6.RIB0_2)
|
||||
if (pk6.RibbonChampionSinnoh)
|
||||
invalidRibbons.Add("Sinnoh Champ"); // DPPt HoF
|
||||
if (pk6.RIB2_2)
|
||||
if (pk6.RibbonArtist)
|
||||
invalidRibbons.Add("Artist"); // RSE Master Rank Portrait
|
||||
if (pk6.RIB2_4)
|
||||
if (pk6.RibbonRecord)
|
||||
invalidRibbons.Add("Record"); // Unobtainable
|
||||
if (pk6.RIB2_5)
|
||||
if (pk6.RibbonLegend)
|
||||
invalidRibbons.Add("Legend"); // HGSS Defeat Red @ Mt.Silver
|
||||
if (pk6.Memory_ContestCount > 0)
|
||||
if (pk6.RibbonCountMemoryContest > 0)
|
||||
invalidRibbons.Add("Contest Memory"); // Gen3/4 Contest
|
||||
if (pk6.Memory_BattleCount > 0)
|
||||
if (pk6.RibbonCountMemoryBattle > 0)
|
||||
invalidRibbons.Add("Battle Memory"); // Gen3/4 Battle
|
||||
|
||||
if (missingRibbons.Count + invalidRibbons.Count == 0)
|
||||
|
|
@ -423,9 +431,8 @@ private LegalityCheck verifyRibbons()
|
|||
}
|
||||
private LegalityCheck verifyAbility()
|
||||
{
|
||||
int index = Legal.PersonalAO[pk6.Species].FormeIndex(pk6.Species, pk6.AltForm);
|
||||
byte[] abilities = Legal.PersonalAO[index].Abilities;
|
||||
int abilval = Array.IndexOf(abilities, (byte)pk6.Ability);
|
||||
int[] abilities = PersonalTable.AO.getAbilities(pk6.Species, pk6.AltForm);
|
||||
int abilval = Array.IndexOf(abilities, pk6.Ability);
|
||||
if (abilval < 0)
|
||||
return new LegalityCheck(Severity.Invalid, "Ability is not valid for species/form.");
|
||||
|
||||
|
|
@ -577,7 +584,7 @@ private LegalityCheck verifyHistory()
|
|||
WC6 MatchedWC6 = EncounterMatch as WC6;
|
||||
if (MatchedWC6?.OT.Length > 0) // Has Event OT -- null propagation yields false if MatchedWC6=null
|
||||
{
|
||||
if (pk6.OT_Friendship != PKX.getBaseFriendship(pk6.Species))
|
||||
if (pk6.OT_Friendship != PersonalTable.AO[pk6.Species].BaseFriendship)
|
||||
return new LegalityCheck(Severity.Invalid, "Event OT Friendship does not match base friendship.");
|
||||
if (pk6.OT_Affection != 0)
|
||||
return new LegalityCheck(Severity.Invalid, "Event OT Affection should be zero.");
|
||||
|
|
@ -703,7 +710,7 @@ private LegalityCheck verifyOTMemory()
|
|||
switch (pk6.OT_Memory)
|
||||
{
|
||||
case 2: // {0} hatched from an Egg and saw {1} for the first time at... {2}. {4} that {3}.
|
||||
if (!pk6.WasEgg)
|
||||
if (!pk6.WasEgg && pk6.Egg_Location != 60004)
|
||||
return new LegalityCheck(Severity.Invalid, "OT Memory: OT did not hatch this.");
|
||||
return new LegalityCheck(Severity.Valid, "OT Memory is valid.");
|
||||
case 4: // {0} became {1}’s friend when it arrived via Link Trade at... {2}. {4} that {3}.
|
||||
|
|
@ -857,8 +864,12 @@ private LegalityCheck[] verifyMoves()
|
|||
else
|
||||
res[i] = new LegalityCheck(Severity.Invalid, "Invalid Move.");
|
||||
}
|
||||
if (res.All(r => r.Valid)) // Card matched
|
||||
{ EncounterMatch = wc; RelearnBase = wc.RelearnMoves; }
|
||||
if (res.Any(r => !r.Valid))
|
||||
continue;
|
||||
|
||||
EncounterMatch = wc;
|
||||
RelearnBase = wc.RelearnMoves;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
@ -883,7 +894,6 @@ private LegalityCheck[] verifyMoves()
|
|||
if (Moves[0] == 0)
|
||||
res[0] = new LegalityCheck(Severity.Invalid, "Invalid Move.");
|
||||
|
||||
|
||||
if (pk6.Species == 647) // Keldeo
|
||||
if (pk6.AltForm == 1 ^ pk6.Moves.Contains(548))
|
||||
res[0] = new LegalityCheck(Severity.Invalid, "Secret Sword / Resolute Keldeo Mismatch.");
|
||||
|
|
@ -1044,7 +1054,7 @@ private LegalityCheck[] verifyRelearn()
|
|||
return res;
|
||||
}
|
||||
|
||||
internal static string[] movelist = Util.getStringList("moves", "en");
|
||||
internal static string[] movelist = Util.getMovesList("en");
|
||||
private static readonly string[] EventRibName =
|
||||
{
|
||||
"Country", "National", "Earth", "World", "Classic",
|
||||
|
|
|
|||
|
|
@ -8,8 +8,7 @@ public static partial class Legal
|
|||
// PKHeX master Wonder Card Database
|
||||
internal static WC6[] WC6DB;
|
||||
// PKHeX master personal.dat
|
||||
internal static readonly PersonalInfo[] PersonalAO = PersonalInfo.getArray(Properties.Resources.personal_ao, PersonalInfo.SizeAO);
|
||||
internal static readonly PersonalInfo[] PersonalXY = PersonalInfo.getArray(Properties.Resources.personal_xy, PersonalInfo.SizeXY);
|
||||
|
||||
private static readonly EggMoves[] EggMoveXY = EggMoves.getArray(Data.unpackMini(Properties.Resources.eggmove_xy, "xy"));
|
||||
private static readonly Learnset[] LevelUpXY = Learnset.getArray(Data.unpackMini(Properties.Resources.lvlmove_xy, "xy"));
|
||||
private static readonly EggMoves[] EggMoveAO = EggMoves.getArray(Data.unpackMini(Properties.Resources.eggmove_ao, "ao"));
|
||||
|
|
@ -406,8 +405,8 @@ private static IEnumerable<EncounterArea> getDexNavAreas(PK6 pk6)
|
|||
}
|
||||
private static IEnumerable<int> getLVLMoves(int species, int lvl, int formnum)
|
||||
{
|
||||
int ind_XY = PersonalXY[species].FormeIndex(species, formnum);
|
||||
int ind_AO = PersonalAO[species].FormeIndex(species, formnum);
|
||||
int ind_XY = PersonalTable.XY.getFormeIndex(species, formnum);
|
||||
int ind_AO = PersonalTable.AO.getFormeIndex(species, formnum);
|
||||
return LevelUpXY[ind_XY].getMoves(lvl).Concat(LevelUpAO[ind_AO].getMoves(lvl));
|
||||
}
|
||||
private static IEnumerable<EncounterArea> getEncounterSlots(PK6 pk6)
|
||||
|
|
@ -544,7 +543,7 @@ private static IEnumerable<int> getValidMoves(PK6 pk6, int Version, bool LVL = f
|
|||
bool ORASTutors = Version == -1 || pk6.AO || !pk6.IsUntraded;
|
||||
if (FormChangeMoves.Contains(species)) // Deoxys & Shaymin & Giratina (others don't have extra but whatever)
|
||||
{
|
||||
int formcount = PersonalAO[species].FormeCount;
|
||||
int formcount = PersonalTable.AO[species].FormeCount;
|
||||
for (int i = 0; i < formcount; i++)
|
||||
r.AddRange(getMoves(species, lvl, i, ORASTutors, Version, LVL, Tutor, Machine));
|
||||
if (Relearn) r.AddRange(pk6.RelearnMoves);
|
||||
|
|
@ -569,8 +568,8 @@ private static IEnumerable<int> getMoves(int species, int lvl, int form, bool OR
|
|||
List<int> r = new List<int> { 0 };
|
||||
if (Version < 0 || Version == 0)
|
||||
{
|
||||
int index = PersonalXY[species].FormeIndex(species, form);
|
||||
PersonalInfo pi = PersonalXY[index];
|
||||
int index = PersonalTable.XY.getFormeIndex(species, form);
|
||||
PersonalInfo pi = PersonalTable.XY.getFormeEntry(species, form);
|
||||
|
||||
if (LVL) r.AddRange(LevelUpXY[index].getMoves(lvl));
|
||||
if (Tutor) r.AddRange(getTutorMoves(species, form, ORASTutors));
|
||||
|
|
@ -578,8 +577,8 @@ private static IEnumerable<int> getMoves(int species, int lvl, int form, bool OR
|
|||
}
|
||||
if (Version < 0 || Version == 1)
|
||||
{
|
||||
int index = PersonalAO[species].FormeIndex(species, form);
|
||||
PersonalInfo pi = PersonalAO[index];
|
||||
int index = PersonalTable.AO.getFormeIndex(species, form);
|
||||
PersonalInfo pi = PersonalTable.AO.getFormeEntry(species, form);
|
||||
|
||||
if (LVL) r.AddRange(LevelUpAO[index].getMoves(lvl));
|
||||
if (Tutor) r.AddRange(getTutorMoves(species, form, ORASTutors));
|
||||
|
|
@ -589,22 +588,22 @@ private static IEnumerable<int> getMoves(int species, int lvl, int form, bool OR
|
|||
}
|
||||
private static IEnumerable<int> getEggMoves(int species, int formnum)
|
||||
{
|
||||
int ind_XY = PersonalXY[species].FormeIndex(species, formnum);
|
||||
int ind_AO = PersonalAO[species].FormeIndex(species, formnum);
|
||||
int ind_XY = PersonalTable.XY.getFormeIndex(species, formnum);
|
||||
int ind_AO = PersonalTable.AO.getFormeIndex(species, formnum);
|
||||
return EggMoveAO[ind_AO].Moves.Concat(EggMoveXY[ind_XY].Moves);
|
||||
}
|
||||
private static IEnumerable<int> getTutorMoves(int species, int formnum, bool ORASTutors)
|
||||
{
|
||||
PersonalInfo pkAO = PersonalAO[PersonalAO[species].FormeIndex(species, formnum)];
|
||||
PersonalInfo pkAO = PersonalTable.AO.getFormeEntry(species, formnum);
|
||||
|
||||
// Type Tutor
|
||||
List<int> moves = TypeTutor.Where((t, i) => pkAO.Tutors[i]).ToList();
|
||||
List<int> moves = TypeTutor.Where((t, i) => pkAO.TypeTutors[i]).ToList();
|
||||
|
||||
// Varied Tutors
|
||||
if (ORASTutors)
|
||||
for (int i = 0; i < Tutors_AO.Length; i++)
|
||||
for (int b = 0; b < Tutors_AO[i].Length; b++)
|
||||
if (pkAO.ORASTutors[i][b])
|
||||
if (pkAO.SpecialTutors[i][b])
|
||||
moves.Add(Tutors_AO[i][b]);
|
||||
|
||||
// Keldeo - Secret Sword
|
||||
|
|
|
|||
123
Legality/Data.cs
|
|
@ -223,7 +223,7 @@ public class EncounterLink
|
|||
public bool XY = true;
|
||||
public bool ORAS = true;
|
||||
public bool? Shiny = false;
|
||||
public bool OT = false;
|
||||
public bool OT = true; // Receiver is OT?
|
||||
}
|
||||
public enum Nature
|
||||
{
|
||||
|
|
@ -234,127 +234,6 @@ public enum Nature
|
|||
Bashful, Rash, Calm, Gentle, Sassy, Careful,
|
||||
Quirky,
|
||||
}
|
||||
public class PersonalInfo
|
||||
{
|
||||
internal static int SizeAO = 0x50;
|
||||
internal static int SizeXY = 0x40;
|
||||
public byte HP, ATK, DEF, SPE, SPA, SPD;
|
||||
public int BST;
|
||||
public int EV_HP, EV_ATK, EV_DEF, EV_SPE, EV_SPA, EV_SPD;
|
||||
public byte[] Types = new byte[2];
|
||||
public byte CatchRate, EvoStage;
|
||||
public ushort[] Items = new ushort[3];
|
||||
public byte Gender, HatchCycles, BaseFriendship, EXPGrowth;
|
||||
public byte[] EggGroups = new byte[2];
|
||||
public byte[] Abilities = new byte[3];
|
||||
public ushort FormStats, FormeSprite, BaseEXP;
|
||||
public byte FormeCount, Color;
|
||||
public float Height, Weight;
|
||||
public bool[] TMHM;
|
||||
public bool[] Tutors;
|
||||
public bool[][] ORASTutors = new bool[4][];
|
||||
public byte EscapeRate;
|
||||
|
||||
public PersonalInfo(byte[] data)
|
||||
{
|
||||
using (BinaryReader br = new BinaryReader(new MemoryStream(data)))
|
||||
{
|
||||
HP = br.ReadByte(); ATK = br.ReadByte(); DEF = br.ReadByte();
|
||||
SPE = br.ReadByte(); SPA = br.ReadByte(); SPD = br.ReadByte();
|
||||
BST = HP + ATK + DEF + SPE + SPA + SPD;
|
||||
|
||||
Types = new[] { br.ReadByte(), br.ReadByte() };
|
||||
CatchRate = br.ReadByte();
|
||||
EvoStage = br.ReadByte();
|
||||
|
||||
ushort EVs = br.ReadUInt16();
|
||||
EV_HP = EVs >> 0 & 0x3;
|
||||
EV_ATK = EVs >> 2 & 0x3;
|
||||
EV_DEF = EVs >> 4 & 0x3;
|
||||
EV_SPE = EVs >> 6 & 0x3;
|
||||
EV_SPA = EVs >> 8 & 0x3;
|
||||
EV_SPD = EVs >> 10 & 0x3;
|
||||
|
||||
Items = new[] { br.ReadUInt16(), br.ReadUInt16(), br.ReadUInt16() };
|
||||
Gender = br.ReadByte();
|
||||
HatchCycles = br.ReadByte();
|
||||
BaseFriendship = br.ReadByte();
|
||||
|
||||
EXPGrowth = br.ReadByte();
|
||||
EggGroups = new[] { br.ReadByte(), br.ReadByte() };
|
||||
Abilities = new[] { br.ReadByte(), br.ReadByte(), br.ReadByte() };
|
||||
EscapeRate = br.ReadByte();
|
||||
FormStats = br.ReadUInt16();
|
||||
|
||||
FormeSprite = br.ReadUInt16();
|
||||
FormeCount = br.ReadByte();
|
||||
Color = br.ReadByte();
|
||||
BaseEXP = br.ReadUInt16();
|
||||
|
||||
Height = br.ReadUInt16();
|
||||
Weight = br.ReadUInt16();
|
||||
|
||||
byte[] TMHMData = br.ReadBytes(0x10);
|
||||
TMHM = new bool[8 * TMHMData.Length];
|
||||
for (int j = 0; j < TMHM.Length; j++)
|
||||
TMHM[j] = (TMHMData[j / 8] >> (j % 8) & 0x1) == 1; //Bitflags for TMHM
|
||||
|
||||
byte[] TutorData = br.ReadBytes(8);
|
||||
Tutors = new bool[8 * TutorData.Length];
|
||||
for (int j = 0; j < Tutors.Length; j++)
|
||||
Tutors[j] = (TutorData[j / 8] >> (j % 8) & 0x1) == 1; //Bitflags for Tutors
|
||||
|
||||
if (br.BaseStream.Length - br.BaseStream.Position == 0x10) // ORAS
|
||||
{
|
||||
byte[][] ORASTutorData =
|
||||
{
|
||||
br.ReadBytes(4), // 15
|
||||
br.ReadBytes(4), // 17
|
||||
br.ReadBytes(4), // 16
|
||||
br.ReadBytes(4), // 15
|
||||
};
|
||||
for (int i = 0; i < 4; i++)
|
||||
{
|
||||
ORASTutors[i] = new bool[8 * ORASTutorData[i].Length];
|
||||
for (int b = 0; b < 8 * ORASTutorData[i].Length; b++)
|
||||
ORASTutors[i][b] = (ORASTutorData[i][b / 8] >> b % 8 & 0x1) == 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Data Manipulation
|
||||
public int FormeIndex(int species, int forme)
|
||||
{
|
||||
return forme == 0 || FormStats == 0 ? species : FormStats + forme - 1;
|
||||
}
|
||||
public int RandomGender
|
||||
{
|
||||
get
|
||||
{
|
||||
switch (Gender)
|
||||
{
|
||||
case 255: // Genderless
|
||||
return 2;
|
||||
case 254: // Female
|
||||
return 1;
|
||||
case 0: // Male
|
||||
return 0;
|
||||
default:
|
||||
return (int)(Util.rnd32() % 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
public bool HasFormes => FormeCount > 1;
|
||||
|
||||
internal static PersonalInfo[] getArray(byte[] data, int size)
|
||||
{
|
||||
PersonalInfo[] d = new PersonalInfo[data.Length / size];
|
||||
for (int i = 0; i < d.Length; i++)
|
||||
d[i] = new PersonalInfo(data.Skip(i * size).Take(size).ToArray());
|
||||
return d;
|
||||
}
|
||||
}
|
||||
|
||||
internal static class Data
|
||||
{
|
||||
|
|
|
|||
|
|
@ -444,6 +444,7 @@ public static partial class Legal
|
|||
486, // Regigigas
|
||||
487, // Giratina
|
||||
488, // Cresselia
|
||||
490, // Manaphy
|
||||
491, // Darkrai
|
||||
492, // Shaymin
|
||||
493, // Arceus
|
||||
|
|
@ -762,8 +763,8 @@ public static partial class Legal
|
|||
new EncounterLink { Species = 378, Level = 50, RelearnMoves = new[] {85, 133, 58, 258 }, Ability = 4 }, // Regice
|
||||
new EncounterLink { Species = 379, Level = 50, RelearnMoves = new[] {442, 157, 356, 334 }, Ability = 4 }, // Registeel
|
||||
|
||||
new EncounterLink { Species = 208, Level = 40, Classic = false, Ability = 1, XY = false }, // Steelix
|
||||
new EncounterLink { Species = 362, Level = 40, Classic = false, Ability = 1, XY = false }, // Glalie
|
||||
new EncounterLink { Species = 208, Level = 40, Classic = false, Ability = 1, XY = false, OT = false }, // Steelix
|
||||
new EncounterLink { Species = 362, Level = 40, Classic = false, Ability = 1, XY = false, OT = false }, // Glalie
|
||||
};
|
||||
|
||||
#endregion
|
||||
|
|
@ -929,5 +930,23 @@ public static partial class Legal
|
|||
new[] {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, // Region matching
|
||||
};
|
||||
#endregion
|
||||
|
||||
internal static readonly int[] MovePP_XY =
|
||||
{
|
||||
00,
|
||||
35, 25, 10, 15, 20, 20, 15, 15, 15, 35, 30, 05, 10, 20, 30, 35, 35, 20, 15, 20, 20, 25, 20, 30, 05, 10, 15, 15, 15, 25, 20, 05, 35, 15, 20, 20, 10, 15, 30, 35, 20, 20, 30, 25, 40, 20, 15, 20, 20, 20,
|
||||
30, 25, 15, 30, 25, 05, 15, 10, 05, 20, 20, 20, 05, 35, 20, 25, 20, 20, 20, 15, 25, 15, 10, 20, 25, 10, 35, 30, 15, 10, 40, 10, 15, 30, 15, 20, 10, 15, 10, 05, 10, 10, 25, 10, 20, 40, 30, 30, 20, 20,
|
||||
15, 10, 40, 15, 10, 30, 10, 20, 10, 40, 40, 20, 30, 30, 20, 30, 10, 10, 20, 05, 10, 30, 20, 20, 20, 05, 15, 15, 20, 10, 15, 35, 20, 15, 10, 10, 30, 15, 40, 20, 15, 10, 05, 10, 30, 10, 15, 20, 15, 40,
|
||||
20, 10, 05, 15, 10, 10, 10, 15, 30, 30, 10, 10, 20, 10, 01, 01, 10, 25, 10, 05, 15, 25, 15, 10, 15, 30, 05, 40, 15, 10, 25, 10, 30, 10, 20, 10, 10, 10, 10, 10, 20, 05, 40, 05, 05, 15, 05, 10, 05, 10,
|
||||
10, 10, 10, 20, 20, 40, 15, 10, 20, 20, 25, 05, 15, 10, 05, 20, 15, 20, 25, 20, 05, 30, 05, 10, 20, 40, 05, 20, 40, 20, 15, 35, 10, 05, 05, 05, 15, 05, 20, 05, 05, 15, 20, 10, 05, 05, 15, 10, 15, 15,
|
||||
10, 10, 10, 20, 10, 10, 10, 10, 15, 15, 15, 10, 20, 20, 10, 20, 20, 20, 20, 20, 10, 10, 10, 20, 20, 05, 15, 10, 10, 15, 10, 20, 05, 05, 10, 10, 20, 05, 10, 20, 10, 20, 20, 20, 05, 05, 15, 20, 10, 15,
|
||||
20, 15, 10, 10, 15, 10, 05, 05, 10, 15, 10, 05, 20, 25, 05, 40, 15, 05, 40, 15, 20, 20, 05, 15, 20, 20, 15, 15, 05, 10, 30, 20, 30, 15, 05, 40, 15, 05, 20, 05, 15, 25, 25, 15, 20, 15, 20, 15, 20, 10,
|
||||
20, 20, 05, 05, 10, 05, 40, 10, 10, 05, 10, 10, 15, 10, 20, 15, 30, 10, 20, 05, 10, 10, 15, 10, 10, 05, 15, 05, 10, 10, 30, 20, 20, 10, 10, 05, 05, 10, 05, 20, 10, 20, 10, 15, 10, 20, 20, 20, 15, 15,
|
||||
10, 15, 15, 15, 10, 10, 10, 20, 10, 30, 05, 10, 15, 10, 10, 05, 20, 30, 10, 30, 15, 15, 15, 15, 30, 10, 20, 15, 10, 10, 20, 15, 05, 05, 15, 15, 05, 10, 05, 20, 05, 15, 20, 05, 20, 20, 20, 20, 10, 20,
|
||||
10, 15, 20, 15, 10, 10, 05, 10, 05, 05, 10, 05, 05, 10, 05, 05, 05, 15, 10, 10, 10, 10, 10, 10, 15, 20, 15, 10, 15, 10, 15, 10, 20, 10, 15, 10, 20, 20, 20, 20, 20, 15, 15, 15, 15, 15, 15, 20, 15, 10,
|
||||
15, 15, 15, 15, 10, 10, 10, 10, 10, 15, 15, 15, 15, 05, 05, 15, 05, 10, 10, 10, 20, 20, 20, 10, 10, 30, 15, 15, 10, 15, 25, 10, 15, 10, 10, 10, 20, 10, 10, 10, 10, 10, 15, 15, 05, 05, 10, 10, 10, 05,
|
||||
05, 10, 05, 05, 15, 10, 05, 05, 05, 10, 10, 10, 10, 20, 25, 10, 20, 30, 25, 20, 20, 15, 20, 15, 20, 20, 10, 10, 10, 10, 10, 20, 10, 30, 15, 10, 10, 10, 20, 20, 05, 05, 05, 20, 10, 10, 20, 15, 20, 20,
|
||||
10, 20, 30, 10, 10, 40, 40, 30, 20, 40, 20, 20, 10, 10, 10, 10, 05, 10, 10, 05, 05,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ namespace PKHeX
|
|||
public static partial class Legal
|
||||
{
|
||||
// PKHeX Valid Array Storage
|
||||
#region DP
|
||||
#region RS
|
||||
internal static readonly ushort[] Pouch_Items_RS = {
|
||||
12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 93, 94, 95, 96, 97, 98, 103, 104, 106, 107, 108, 109, 110, 111, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 254, 255, 256, 257, 258
|
||||
};
|
||||
|
|
@ -24,13 +24,24 @@ public static partial class Legal
|
|||
internal static readonly ushort[] Pouch_Ball_RS = {
|
||||
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12
|
||||
};
|
||||
internal static readonly ushort[] Pouch_Key_E = Pouch_Key_RS.Concat(new ushort[] { 375, 376 }).ToArray();
|
||||
internal static readonly ushort[] Pouch_Key_FRLG = Pouch_Key_RS.Concat(new ushort[] { 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374 }).ToArray();
|
||||
|
||||
internal static readonly ushort[] Pouch_Key_E = Pouch_Key_FRLG.Concat(new ushort[] { 375, 376 }).ToArray();
|
||||
|
||||
internal static readonly ushort[] Pouch_TMHM_RS = Pouch_TM_RS.Concat(Pouch_HM_RS).ToArray();
|
||||
internal static readonly ushort[] HeldItems_RS = new ushort[1].Concat(Pouch_Items_RS).Concat(Pouch_Ball_RS).Concat(Pouch_Berries_RS).Concat(Pouch_TM_RS).ToArray();
|
||||
#endregion
|
||||
|
||||
|
||||
internal static readonly int[] MovePP_RS =
|
||||
{
|
||||
00,
|
||||
35, 25, 10, 15, 20, 20, 15, 15, 15, 35, 30, 05, 10, 30, 30, 35, 35, 20, 15, 20, 20, 10, 20, 30, 05, 25, 15, 15, 15, 25, 20, 05, 35, 15, 20, 20, 20, 15, 30, 35, 20, 20, 30, 25, 40, 20, 15, 20, 20, 20,
|
||||
30, 25, 15, 30, 25, 05, 15, 10, 05, 20, 20, 20, 05, 35, 20, 25, 20, 20, 20, 15, 20, 10, 10, 40, 25, 10, 35, 30, 15, 20, 40, 10, 15, 30, 15, 20, 10, 15, 10, 05, 10, 10, 25, 10, 20, 40, 30, 30, 20, 20,
|
||||
15, 10, 40, 15, 20, 30, 20, 20, 10, 40, 40, 30, 30, 30, 20, 30, 10, 10, 20, 05, 10, 30, 20, 20, 20, 05, 15, 10, 20, 15, 15, 35, 20, 15, 10, 20, 30, 15, 40, 20, 15, 10, 05, 10, 30, 10, 15, 20, 15, 40,
|
||||
40, 10, 05, 15, 10, 10, 10, 15, 30, 30, 10, 10, 20, 10, 01, 01, 10, 10, 10, 05, 15, 25, 15, 10, 15, 30, 05, 40, 15, 10, 25, 10, 30, 10, 20, 10, 10, 10, 10, 10, 20, 05, 40, 05, 05, 15, 05, 10, 05, 15,
|
||||
10, 05, 10, 20, 20, 40, 15, 10, 20, 20, 25, 05, 15, 10, 05, 20, 15, 20, 25, 20, 05, 30, 05, 10, 20, 40, 05, 20, 40, 20, 15, 35, 10, 05, 05, 05, 15, 05, 20, 05, 05, 15, 20, 10, 05, 05, 15, 15, 15, 15,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 15, 15, 15, 10, 20, 20, 10, 20, 20, 20, 20, 20, 10, 10, 10, 20, 20, 05, 15, 10, 10, 15, 10, 20, 05, 05, 10, 10, 20, 05, 10, 20, 10, 20, 20, 20, 05, 05, 15, 20, 10, 15,
|
||||
20, 15, 10, 10, 15, 10, 05, 05, 10, 15, 10, 05, 20, 25, 05, 40, 10, 05, 40, 15, 20, 20, 05, 15, 20, 30, 15, 15, 05, 10, 30, 20, 30, 15, 05, 40, 15, 05, 20, 05, 15, 25, 40, 15, 20, 15, 20, 15, 20, 10,
|
||||
20, 20, 05, 05,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public static partial class Legal
|
|||
internal static readonly ushort[] Pouch_Battle_DP = {
|
||||
55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67
|
||||
};
|
||||
internal static readonly ushort[] HeldItems_DP = new ushort[1].Concat(Pouch_Items_DP).Concat(Pouch_Mail_DP).Concat(Pouch_Medicine_DP).Concat(Pouch_Berries_DP).Concat(Pouch_Ball_DP).ToArray();
|
||||
internal static readonly ushort[] HeldItems_DP = new ushort[1].Concat(Pouch_Items_DP).Concat(Pouch_Mail_DP).Concat(Pouch_Medicine_DP).Concat(Pouch_Berries_DP).Concat(Pouch_Ball_DP).Concat(Pouch_TMHM_DP.Take(Pouch_TMHM_DP.Length - 8)).ToArray();
|
||||
#endregion
|
||||
|
||||
#region Pt
|
||||
|
|
@ -47,7 +47,7 @@ public static partial class Legal
|
|||
internal static readonly ushort[] Pouch_Ball_Pt = Pouch_Ball_DP;
|
||||
internal static readonly ushort[] Pouch_Battle_Pt = Pouch_Battle_DP;
|
||||
|
||||
internal static readonly ushort[] HeldItems_Pt = new ushort[1].Concat(Pouch_Items_Pt).Concat(Pouch_Mail_Pt).Concat(Pouch_Medicine_Pt).Concat(Pouch_Berries_Pt).Concat(Pouch_Ball_Pt).ToArray();
|
||||
internal static readonly ushort[] HeldItems_Pt = new ushort[1].Concat(Pouch_Items_Pt).Concat(Pouch_Mail_Pt).Concat(Pouch_Medicine_Pt).Concat(Pouch_Berries_Pt).Concat(Pouch_Ball_Pt).Concat(Pouch_TMHM_Pt.Take(Pouch_TMHM_Pt.Length - 8)).ToArray();
|
||||
#endregion
|
||||
|
||||
#region HGSS
|
||||
|
|
@ -64,7 +64,22 @@ public static partial class Legal
|
|||
};
|
||||
internal static readonly ushort[] Pouch_Battle_HGSS = Pouch_Battle_DP;
|
||||
|
||||
internal static readonly ushort[] HeldItems_HGSS = new ushort[1].Concat(Pouch_Items_HGSS).Concat(Pouch_Mail_HGSS).Concat(Pouch_Medicine_HGSS).Concat(Pouch_Berries_HGSS).Concat(Pouch_Ball_Pt).ToArray();
|
||||
internal static readonly ushort[] HeldItems_HGSS = new ushort[1].Concat(Pouch_Items_HGSS).Concat(Pouch_Mail_HGSS).Concat(Pouch_Medicine_HGSS).Concat(Pouch_Berries_HGSS).Concat(Pouch_Ball_Pt).Concat(Pouch_TMHM_HGSS.Take(Pouch_TMHM_HGSS.Length - 8)).ToArray();
|
||||
#endregion
|
||||
|
||||
internal static readonly int[] MovePP_DP =
|
||||
{
|
||||
00,
|
||||
35, 25, 10, 15, 20, 20, 15, 15, 15, 35, 30, 05, 10, 30, 30, 35, 35, 20, 15, 20, 20, 15, 20, 30, 05, 25, 15, 15, 15, 25, 20, 05, 35, 15, 20, 20, 20, 15, 30, 35, 20, 20, 30, 25, 40, 20, 15, 20, 20, 20,
|
||||
30, 25, 15, 30, 25, 05, 15, 10, 05, 20, 20, 20, 05, 35, 20, 25, 20, 20, 20, 15, 25, 15, 10, 40, 25, 10, 35, 30, 15, 20, 40, 10, 15, 30, 15, 20, 10, 15, 10, 05, 10, 10, 25, 10, 20, 40, 30, 30, 20, 20,
|
||||
15, 10, 40, 15, 10, 30, 20, 20, 10, 40, 40, 30, 30, 30, 20, 30, 10, 10, 20, 05, 10, 30, 20, 20, 20, 05, 15, 10, 20, 15, 15, 35, 20, 15, 10, 20, 30, 15, 40, 20, 15, 10, 05, 10, 30, 10, 15, 20, 15, 40,
|
||||
40, 10, 05, 15, 10, 10, 10, 15, 30, 30, 10, 10, 20, 10, 01, 01, 10, 10, 10, 05, 15, 25, 15, 10, 15, 30, 05, 40, 15, 10, 25, 10, 30, 10, 20, 10, 10, 10, 10, 10, 20, 05, 40, 05, 05, 15, 05, 10, 05, 15,
|
||||
10, 10, 10, 20, 20, 40, 15, 10, 20, 20, 25, 05, 15, 10, 05, 20, 15, 20, 25, 20, 05, 30, 05, 10, 20, 40, 05, 20, 40, 20, 15, 35, 10, 05, 05, 05, 15, 05, 20, 05, 05, 15, 20, 10, 05, 05, 15, 15, 15, 15,
|
||||
10, 10, 10, 20, 10, 10, 10, 10, 15, 15, 15, 10, 20, 20, 10, 20, 20, 20, 20, 20, 10, 10, 10, 20, 20, 05, 15, 10, 10, 15, 10, 20, 05, 05, 10, 10, 20, 05, 10, 20, 10, 20, 20, 20, 05, 05, 15, 20, 10, 15,
|
||||
20, 15, 10, 10, 15, 10, 05, 05, 10, 15, 10, 05, 20, 25, 05, 40, 10, 05, 40, 15, 20, 20, 05, 15, 20, 30, 15, 15, 05, 10, 30, 20, 30, 15, 05, 40, 15, 05, 20, 05, 15, 25, 40, 15, 20, 15, 20, 15, 20, 10,
|
||||
20, 20, 05, 05, 10, 05, 40, 10, 10, 05, 10, 10, 15, 10, 20, 30, 30, 10, 20, 05, 10, 10, 15, 10, 10, 05, 15, 05, 10, 10, 30, 20, 20, 10, 10, 05, 05, 10, 05, 20, 10, 20, 10, 15, 10, 20, 20, 20, 15, 15,
|
||||
10, 15, 20, 15, 10, 10, 10, 20, 05, 30, 05, 10, 15, 10, 10, 05, 20, 30, 10, 30, 15, 15, 15, 15, 30, 10, 20, 15, 10, 10, 20, 15, 05, 05, 15, 15, 05, 10, 05, 20, 05, 15, 20, 05, 20, 20, 20, 20, 10, 20,
|
||||
10, 15, 20, 15, 10, 10, 05, 10, 05, 05, 10, 05, 05, 10, 05, 05, 05,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,5 +25,22 @@ public static partial class Legal
|
|||
internal static readonly ushort[] Pouch_Key_B2W2 = {
|
||||
437, 442, 447, 450, 453, 458, 465, 466, 471, 504, 578, 616, 617, 621, 626, 627, 628, 630, 631, 632, 633, 634, 635, 636, 637, 638,
|
||||
};
|
||||
|
||||
internal static readonly int[] MovePP_BW =
|
||||
{
|
||||
00,
|
||||
35, 25, 10, 15, 20, 20, 15, 15, 15, 35, 30, 05, 10, 30, 30, 35, 35, 20, 15, 20, 20, 15, 20, 30, 05, 25, 15, 15, 15, 25, 20, 05, 35, 15, 20, 20, 10, 15, 30, 35, 20, 20, 30, 25, 40, 20, 15, 20, 20, 20,
|
||||
30, 25, 15, 30, 25, 05, 15, 10, 05, 20, 20, 20, 05, 35, 20, 25, 20, 20, 20, 15, 25, 15, 10, 40, 25, 10, 35, 30, 15, 10, 40, 10, 15, 30, 15, 20, 10, 15, 10, 05, 10, 10, 25, 10, 20, 40, 30, 30, 20, 20,
|
||||
15, 10, 40, 15, 10, 30, 20, 20, 10, 40, 40, 30, 30, 30, 20, 30, 10, 10, 20, 05, 10, 30, 20, 20, 20, 05, 15, 15, 20, 15, 15, 35, 20, 15, 10, 10, 30, 15, 40, 20, 15, 10, 05, 10, 30, 10, 15, 20, 15, 40,
|
||||
40, 10, 05, 15, 10, 10, 10, 15, 30, 30, 10, 10, 20, 10, 01, 01, 10, 10, 10, 05, 15, 25, 15, 10, 15, 30, 05, 40, 15, 10, 25, 10, 30, 10, 20, 10, 10, 10, 10, 10, 20, 05, 40, 05, 05, 15, 05, 10, 05, 10,
|
||||
10, 10, 10, 20, 20, 40, 15, 10, 20, 20, 25, 05, 15, 10, 05, 20, 15, 20, 25, 20, 05, 30, 05, 10, 20, 40, 05, 20, 40, 20, 15, 35, 10, 05, 05, 05, 15, 05, 20, 05, 05, 15, 20, 10, 05, 05, 15, 10, 15, 15,
|
||||
10, 10, 10, 20, 10, 10, 10, 10, 15, 15, 15, 10, 20, 20, 10, 20, 20, 20, 20, 20, 10, 10, 10, 20, 20, 05, 15, 10, 10, 15, 10, 20, 05, 05, 10, 10, 20, 05, 10, 20, 10, 20, 20, 20, 05, 05, 15, 20, 10, 15,
|
||||
20, 15, 10, 10, 15, 10, 05, 05, 10, 15, 10, 05, 20, 25, 05, 40, 10, 05, 40, 15, 20, 20, 05, 15, 20, 30, 15, 15, 05, 10, 30, 20, 30, 15, 05, 40, 15, 05, 20, 05, 15, 25, 40, 15, 20, 15, 20, 15, 20, 10,
|
||||
20, 20, 05, 05, 10, 05, 40, 10, 10, 05, 10, 10, 15, 10, 20, 30, 30, 10, 20, 05, 10, 10, 15, 10, 10, 05, 15, 05, 10, 10, 30, 20, 20, 10, 10, 05, 05, 10, 05, 20, 10, 20, 10, 15, 10, 20, 20, 20, 15, 15,
|
||||
10, 15, 20, 15, 10, 10, 10, 20, 10, 30, 05, 10, 15, 10, 10, 05, 20, 30, 10, 30, 15, 15, 15, 15, 30, 10, 20, 15, 10, 10, 20, 15, 05, 05, 15, 15, 05, 10, 05, 20, 05, 15, 20, 05, 20, 20, 20, 20, 10, 20,
|
||||
10, 15, 20, 15, 10, 10, 05, 10, 05, 05, 10, 05, 05, 10, 05, 05, 05, 15, 10, 10, 10, 10, 10, 10, 15, 20, 15, 10, 15, 10, 15, 10, 20, 10, 15, 10, 20, 20, 20, 20, 20, 15, 15, 15, 15, 15, 15, 20, 15, 10,
|
||||
15, 15, 15, 15, 10, 10, 10, 10, 10, 15, 15, 15, 15, 05, 05, 15, 05, 10, 10, 10, 20, 20, 20, 10, 10, 30, 15, 15, 10, 15, 25, 10, 20, 10, 10, 10, 20, 10, 10, 10, 10, 10, 15, 15, 05, 05, 10, 10, 10, 05,
|
||||
05, 10, 05, 05, 15, 10, 05, 05, 05,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
422
PKX/f1-Main.Designer.cs → MainWindow/Main.Designer.cs
generated
|
|
@ -179,14 +179,16 @@ public void InitializeComponent()
|
|||
this.CB_Move2 = new System.Windows.Forms.ComboBox();
|
||||
this.CB_Move1 = new System.Windows.Forms.ComboBox();
|
||||
this.Tab_OTMisc = new System.Windows.Forms.TabPage();
|
||||
this.FLP_PKMEditors = new System.Windows.Forms.FlowLayoutPanel();
|
||||
this.BTN_Ribbons = new System.Windows.Forms.Button();
|
||||
this.BTN_Medals = new System.Windows.Forms.Button();
|
||||
this.BTN_History = new System.Windows.Forms.Button();
|
||||
this.TB_EC = new System.Windows.Forms.TextBox();
|
||||
this.GB_nOT = new System.Windows.Forms.GroupBox();
|
||||
this.Label_CTGender = new System.Windows.Forms.Label();
|
||||
this.TB_OTt2 = new System.Windows.Forms.TextBox();
|
||||
this.Label_PrevOT = new System.Windows.Forms.Label();
|
||||
this.BTN_RerollEC = new System.Windows.Forms.Button();
|
||||
this.BTN_History = new System.Windows.Forms.Button();
|
||||
this.BTN_Ribbons = new System.Windows.Forms.Button();
|
||||
this.GB_Markings = new System.Windows.Forms.GroupBox();
|
||||
this.PB_Mark6 = new System.Windows.Forms.PictureBox();
|
||||
this.PB_MarkPentagon = new System.Windows.Forms.PictureBox();
|
||||
|
|
@ -219,8 +221,8 @@ public void InitializeComponent()
|
|||
this.Menu_Exit = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_Tools = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_Showdown = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ShowdownImportPK6 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ShowdownExportPK6 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ShowdownImportPKM = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ShowdownExportPKM = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ShowdownExportParty = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ShowdownExportBattleBox = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_CyberGadget = new System.Windows.Forms.ToolStripMenuItem();
|
||||
|
|
@ -231,6 +233,7 @@ public void InitializeComponent()
|
|||
this.Menu_DumpBoxes = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_Report = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_Database = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_BatchEditor = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_Other = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_OpenSDF = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_OpenSDB = new System.Windows.Forms.ToolStripMenuItem();
|
||||
|
|
@ -239,7 +242,7 @@ public void InitializeComponent()
|
|||
this.CB_MainLanguage = new System.Windows.Forms.ToolStripComboBox();
|
||||
this.Menu_Modify = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ModifyDex = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ModifyPK6 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_ModifyPKM = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_Unicode = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.Menu_About = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.L_Save = new System.Windows.Forms.Label();
|
||||
|
|
@ -352,6 +355,8 @@ public void InitializeComponent()
|
|||
this.B_OpenBerryField = new System.Windows.Forms.Button();
|
||||
this.B_OpenSecretBase = new System.Windows.Forms.Button();
|
||||
this.B_Pokeblocks = new System.Windows.Forms.Button();
|
||||
this.B_LinkInfo = new System.Windows.Forms.Button();
|
||||
this.B_CGearSkin = new System.Windows.Forms.Button();
|
||||
this.dragout = new System.Windows.Forms.PictureBox();
|
||||
this.mnuL = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.mnuLLegality = new System.Windows.Forms.ToolStripMenuItem();
|
||||
|
|
@ -376,6 +381,7 @@ public void InitializeComponent()
|
|||
((System.ComponentModel.ISupportInitialize)(this.PB_WarnRelearn1)).BeginInit();
|
||||
this.GB_CurrentMoves.SuspendLayout();
|
||||
this.Tab_OTMisc.SuspendLayout();
|
||||
this.FLP_PKMEditors.SuspendLayout();
|
||||
this.GB_nOT.SuspendLayout();
|
||||
this.GB_Markings.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.PB_Mark6)).BeginInit();
|
||||
|
|
@ -846,7 +852,7 @@ public void InitializeComponent()
|
|||
// CHK_IsEgg
|
||||
//
|
||||
this.CHK_IsEgg.AutoSize = true;
|
||||
this.CHK_IsEgg.Location = new System.Drawing.Point(43, 196);
|
||||
this.CHK_IsEgg.Location = new System.Drawing.Point(35, 196);
|
||||
this.CHK_IsEgg.Name = "CHK_IsEgg";
|
||||
this.CHK_IsEgg.Size = new System.Drawing.Size(56, 17);
|
||||
this.CHK_IsEgg.TabIndex = 16;
|
||||
|
|
@ -867,7 +873,7 @@ public void InitializeComponent()
|
|||
// Label_Form
|
||||
//
|
||||
this.Label_Form.AutoSize = true;
|
||||
this.Label_Form.Location = new System.Drawing.Point(128, 136);
|
||||
this.Label_Form.Location = new System.Drawing.Point(125, 136);
|
||||
this.Label_Form.Name = "Label_Form";
|
||||
this.Label_Form.Size = new System.Drawing.Size(33, 13);
|
||||
this.Label_Form.TabIndex = 11;
|
||||
|
|
@ -2239,11 +2245,10 @@ public void InitializeComponent()
|
|||
// Tab_OTMisc
|
||||
//
|
||||
this.Tab_OTMisc.AllowDrop = true;
|
||||
this.Tab_OTMisc.Controls.Add(this.FLP_PKMEditors);
|
||||
this.Tab_OTMisc.Controls.Add(this.TB_EC);
|
||||
this.Tab_OTMisc.Controls.Add(this.GB_nOT);
|
||||
this.Tab_OTMisc.Controls.Add(this.BTN_RerollEC);
|
||||
this.Tab_OTMisc.Controls.Add(this.BTN_History);
|
||||
this.Tab_OTMisc.Controls.Add(this.BTN_Ribbons);
|
||||
this.Tab_OTMisc.Controls.Add(this.GB_Markings);
|
||||
this.Tab_OTMisc.Controls.Add(this.GB_ExtraBytes);
|
||||
this.Tab_OTMisc.Controls.Add(this.GB_OT);
|
||||
|
|
@ -2256,6 +2261,68 @@ public void InitializeComponent()
|
|||
this.Tab_OTMisc.Text = "OT/Misc";
|
||||
this.Tab_OTMisc.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// FLP_PKMEditors
|
||||
//
|
||||
this.FLP_PKMEditors.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.FLP_PKMEditors.AutoSize = true;
|
||||
this.FLP_PKMEditors.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.FLP_PKMEditors.Controls.Add(this.BTN_Ribbons);
|
||||
this.FLP_PKMEditors.Controls.Add(this.BTN_Medals);
|
||||
this.FLP_PKMEditors.Controls.Add(this.BTN_History);
|
||||
this.FLP_PKMEditors.Location = new System.Drawing.Point(49, 245);
|
||||
this.FLP_PKMEditors.Name = "FLP_PKMEditors";
|
||||
this.FLP_PKMEditors.Size = new System.Drawing.Size(175, 25);
|
||||
this.FLP_PKMEditors.TabIndex = 9;
|
||||
this.FLP_PKMEditors.WrapContents = false;
|
||||
//
|
||||
// BTN_Ribbons
|
||||
//
|
||||
this.BTN_Ribbons.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.BTN_Ribbons.AutoSize = true;
|
||||
this.BTN_Ribbons.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.BTN_Ribbons.Location = new System.Drawing.Point(1, 1);
|
||||
this.BTN_Ribbons.Margin = new System.Windows.Forms.Padding(1);
|
||||
this.BTN_Ribbons.Name = "BTN_Ribbons";
|
||||
this.BTN_Ribbons.Size = new System.Drawing.Size(56, 23);
|
||||
this.BTN_Ribbons.TabIndex = 5;
|
||||
this.BTN_Ribbons.Text = "Ribbons";
|
||||
this.BTN_Ribbons.UseVisualStyleBackColor = true;
|
||||
this.BTN_Ribbons.Click += new System.EventHandler(this.openRibbons);
|
||||
//
|
||||
// BTN_Medals
|
||||
//
|
||||
this.BTN_Medals.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.BTN_Medals.AutoSize = true;
|
||||
this.BTN_Medals.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.BTN_Medals.Location = new System.Drawing.Point(59, 1);
|
||||
this.BTN_Medals.Margin = new System.Windows.Forms.Padding(1);
|
||||
this.BTN_Medals.Name = "BTN_Medals";
|
||||
this.BTN_Medals.Size = new System.Drawing.Size(51, 23);
|
||||
this.BTN_Medals.TabIndex = 7;
|
||||
this.BTN_Medals.Text = "Medals";
|
||||
this.BTN_Medals.UseVisualStyleBackColor = true;
|
||||
this.BTN_Medals.Click += new System.EventHandler(this.openMedals);
|
||||
//
|
||||
// BTN_History
|
||||
//
|
||||
this.BTN_History.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.BTN_History.AutoSize = true;
|
||||
this.BTN_History.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||||
this.BTN_History.Location = new System.Drawing.Point(112, 1);
|
||||
this.BTN_History.Margin = new System.Windows.Forms.Padding(1);
|
||||
this.BTN_History.Name = "BTN_History";
|
||||
this.BTN_History.Size = new System.Drawing.Size(62, 23);
|
||||
this.BTN_History.TabIndex = 6;
|
||||
this.BTN_History.Text = "Memories";
|
||||
this.BTN_History.UseVisualStyleBackColor = true;
|
||||
this.BTN_History.Click += new System.EventHandler(this.openHistory);
|
||||
//
|
||||
// TB_EC
|
||||
//
|
||||
this.TB_EC.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
|
|
@ -2273,7 +2340,7 @@ public void InitializeComponent()
|
|||
this.GB_nOT.Controls.Add(this.Label_CTGender);
|
||||
this.GB_nOT.Controls.Add(this.TB_OTt2);
|
||||
this.GB_nOT.Controls.Add(this.Label_PrevOT);
|
||||
this.GB_nOT.Location = new System.Drawing.Point(40, 90);
|
||||
this.GB_nOT.Location = new System.Drawing.Point(40, 85);
|
||||
this.GB_nOT.Name = "GB_nOT";
|
||||
this.GB_nOT.Size = new System.Drawing.Size(190, 50);
|
||||
this.GB_nOT.TabIndex = 2;
|
||||
|
|
@ -2325,26 +2392,6 @@ public void InitializeComponent()
|
|||
this.BTN_RerollEC.UseVisualStyleBackColor = true;
|
||||
this.BTN_RerollEC.Click += new System.EventHandler(this.updateRandomEC);
|
||||
//
|
||||
// BTN_History
|
||||
//
|
||||
this.BTN_History.Location = new System.Drawing.Point(138, 250);
|
||||
this.BTN_History.Name = "BTN_History";
|
||||
this.BTN_History.Size = new System.Drawing.Size(100, 23);
|
||||
this.BTN_History.TabIndex = 6;
|
||||
this.BTN_History.Text = "Memories/Amie";
|
||||
this.BTN_History.UseVisualStyleBackColor = true;
|
||||
this.BTN_History.Click += new System.EventHandler(this.openHistory);
|
||||
//
|
||||
// BTN_Ribbons
|
||||
//
|
||||
this.BTN_Ribbons.Location = new System.Drawing.Point(32, 250);
|
||||
this.BTN_Ribbons.Name = "BTN_Ribbons";
|
||||
this.BTN_Ribbons.Size = new System.Drawing.Size(100, 23);
|
||||
this.BTN_Ribbons.TabIndex = 5;
|
||||
this.BTN_Ribbons.Text = "Ribbons/Medals";
|
||||
this.BTN_Ribbons.UseVisualStyleBackColor = true;
|
||||
this.BTN_Ribbons.Click += new System.EventHandler(this.openRibbons);
|
||||
//
|
||||
// GB_Markings
|
||||
//
|
||||
this.GB_Markings.Controls.Add(this.PB_Mark6);
|
||||
|
|
@ -2356,7 +2403,7 @@ public void InitializeComponent()
|
|||
this.GB_Markings.Controls.Add(this.PB_MarkShiny);
|
||||
this.GB_Markings.Controls.Add(this.PB_Mark1);
|
||||
this.GB_Markings.Controls.Add(this.PB_Mark4);
|
||||
this.GB_Markings.Location = new System.Drawing.Point(68, 188);
|
||||
this.GB_Markings.Location = new System.Drawing.Point(68, 183);
|
||||
this.GB_Markings.Name = "GB_Markings";
|
||||
this.GB_Markings.Size = new System.Drawing.Size(135, 58);
|
||||
this.GB_Markings.TabIndex = 4;
|
||||
|
|
@ -2478,7 +2525,7 @@ public void InitializeComponent()
|
|||
//
|
||||
this.GB_ExtraBytes.Controls.Add(this.TB_ExtraByte);
|
||||
this.GB_ExtraBytes.Controls.Add(this.CB_ExtraBytes);
|
||||
this.GB_ExtraBytes.Location = new System.Drawing.Point(68, 140);
|
||||
this.GB_ExtraBytes.Location = new System.Drawing.Point(68, 135);
|
||||
this.GB_ExtraBytes.Name = "GB_ExtraBytes";
|
||||
this.GB_ExtraBytes.Size = new System.Drawing.Size(135, 48);
|
||||
this.GB_ExtraBytes.TabIndex = 3;
|
||||
|
|
@ -2516,7 +2563,7 @@ public void InitializeComponent()
|
|||
this.GB_OT.Controls.Add(this.Label_OT);
|
||||
this.GB_OT.Controls.Add(this.Label_SID);
|
||||
this.GB_OT.Controls.Add(this.Label_TID);
|
||||
this.GB_OT.Location = new System.Drawing.Point(40, 13);
|
||||
this.GB_OT.Location = new System.Drawing.Point(40, 8);
|
||||
this.GB_OT.Name = "GB_OT";
|
||||
this.GB_OT.Size = new System.Drawing.Size(190, 75);
|
||||
this.GB_OT.TabIndex = 1;
|
||||
|
|
@ -2598,9 +2645,9 @@ public void InitializeComponent()
|
|||
//
|
||||
// Label_EncryptionConstant
|
||||
//
|
||||
this.Label_EncryptionConstant.Location = new System.Drawing.Point(29, 279);
|
||||
this.Label_EncryptionConstant.Location = new System.Drawing.Point(20, 279);
|
||||
this.Label_EncryptionConstant.Name = "Label_EncryptionConstant";
|
||||
this.Label_EncryptionConstant.Size = new System.Drawing.Size(105, 13);
|
||||
this.Label_EncryptionConstant.Size = new System.Drawing.Size(120, 13);
|
||||
this.Label_EncryptionConstant.TabIndex = 1;
|
||||
this.Label_EncryptionConstant.Text = "Encryption Constant:";
|
||||
this.Label_EncryptionConstant.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
||||
|
|
@ -2635,7 +2682,7 @@ public void InitializeComponent()
|
|||
this.Menu_Open.Name = "Menu_Open";
|
||||
this.Menu_Open.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
|
||||
this.Menu_Open.ShowShortcutKeys = false;
|
||||
this.Menu_Open.Size = new System.Drawing.Size(152, 22);
|
||||
this.Menu_Open.Size = new System.Drawing.Size(139, 22);
|
||||
this.Menu_Open.Text = "&Open...";
|
||||
this.Menu_Open.Click += new System.EventHandler(this.mainMenuOpen);
|
||||
//
|
||||
|
|
@ -2645,7 +2692,7 @@ public void InitializeComponent()
|
|||
this.Menu_Save.Name = "Menu_Save";
|
||||
this.Menu_Save.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
|
||||
this.Menu_Save.ShowShortcutKeys = false;
|
||||
this.Menu_Save.Size = new System.Drawing.Size(152, 22);
|
||||
this.Menu_Save.Size = new System.Drawing.Size(139, 22);
|
||||
this.Menu_Save.Text = "&Save PK6...";
|
||||
this.Menu_Save.Click += new System.EventHandler(this.mainMenuSave);
|
||||
//
|
||||
|
|
@ -2657,7 +2704,7 @@ public void InitializeComponent()
|
|||
this.Menu_ExportSAV.Enabled = false;
|
||||
this.Menu_ExportSAV.Image = global::PKHeX.Properties.Resources.saveSAV;
|
||||
this.Menu_ExportSAV.Name = "Menu_ExportSAV";
|
||||
this.Menu_ExportSAV.Size = new System.Drawing.Size(152, 22);
|
||||
this.Menu_ExportSAV.Size = new System.Drawing.Size(139, 22);
|
||||
this.Menu_ExportSAV.Text = "&Export SAV...";
|
||||
//
|
||||
// Menu_ExportMAIN
|
||||
|
|
@ -2666,7 +2713,7 @@ public void InitializeComponent()
|
|||
this.Menu_ExportMAIN.Name = "Menu_ExportMAIN";
|
||||
this.Menu_ExportMAIN.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
|
||||
this.Menu_ExportMAIN.ShowShortcutKeys = false;
|
||||
this.Menu_ExportMAIN.Size = new System.Drawing.Size(152, 22);
|
||||
this.Menu_ExportMAIN.Size = new System.Drawing.Size(130, 22);
|
||||
this.Menu_ExportMAIN.Text = "&Export main";
|
||||
this.Menu_ExportMAIN.Click += new System.EventHandler(this.clickExportSAV);
|
||||
//
|
||||
|
|
@ -2676,7 +2723,7 @@ public void InitializeComponent()
|
|||
this.Menu_ExportBAK.Name = "Menu_ExportBAK";
|
||||
this.Menu_ExportBAK.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B)));
|
||||
this.Menu_ExportBAK.ShowShortcutKeys = false;
|
||||
this.Menu_ExportBAK.Size = new System.Drawing.Size(152, 22);
|
||||
this.Menu_ExportBAK.Size = new System.Drawing.Size(130, 22);
|
||||
this.Menu_ExportBAK.Text = "Export &BAK";
|
||||
this.Menu_ExportBAK.Click += new System.EventHandler(this.clickExportSAVBAK);
|
||||
//
|
||||
|
|
@ -2686,7 +2733,7 @@ public void InitializeComponent()
|
|||
this.Menu_Exit.Name = "Menu_Exit";
|
||||
this.Menu_Exit.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
|
||||
this.Menu_Exit.ShowShortcutKeys = false;
|
||||
this.Menu_Exit.Size = new System.Drawing.Size(152, 22);
|
||||
this.Menu_Exit.Size = new System.Drawing.Size(139, 22);
|
||||
this.Menu_Exit.Text = "&Quit";
|
||||
this.Menu_Exit.Click += new System.EventHandler(this.mainMenuExit);
|
||||
//
|
||||
|
|
@ -2704,8 +2751,8 @@ public void InitializeComponent()
|
|||
// Menu_Showdown
|
||||
//
|
||||
this.Menu_Showdown.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.Menu_ShowdownImportPK6,
|
||||
this.Menu_ShowdownExportPK6,
|
||||
this.Menu_ShowdownImportPKM,
|
||||
this.Menu_ShowdownExportPKM,
|
||||
this.Menu_ShowdownExportParty,
|
||||
this.Menu_ShowdownExportBattleBox});
|
||||
this.Menu_Showdown.Image = global::PKHeX.Properties.Resources.showdown;
|
||||
|
|
@ -2713,26 +2760,26 @@ public void InitializeComponent()
|
|||
this.Menu_Showdown.Size = new System.Drawing.Size(143, 22);
|
||||
this.Menu_Showdown.Text = "Showdown";
|
||||
//
|
||||
// Menu_ShowdownImportPK6
|
||||
// Menu_ShowdownImportPKM
|
||||
//
|
||||
this.Menu_ShowdownImportPK6.Image = global::PKHeX.Properties.Resources.import;
|
||||
this.Menu_ShowdownImportPK6.Name = "Menu_ShowdownImportPK6";
|
||||
this.Menu_ShowdownImportPK6.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
|
||||
this.Menu_ShowdownImportPK6.ShowShortcutKeys = false;
|
||||
this.Menu_ShowdownImportPK6.Size = new System.Drawing.Size(231, 22);
|
||||
this.Menu_ShowdownImportPK6.Text = "Import Set from Clipboard";
|
||||
this.Menu_ShowdownImportPK6.Click += new System.EventHandler(this.clickShowdownImportPK6);
|
||||
this.Menu_ShowdownImportPKM.Image = global::PKHeX.Properties.Resources.import;
|
||||
this.Menu_ShowdownImportPKM.Name = "Menu_ShowdownImportPKM";
|
||||
this.Menu_ShowdownImportPKM.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
|
||||
this.Menu_ShowdownImportPKM.ShowShortcutKeys = false;
|
||||
this.Menu_ShowdownImportPKM.Size = new System.Drawing.Size(231, 22);
|
||||
this.Menu_ShowdownImportPKM.Text = "Import Set from Clipboard";
|
||||
this.Menu_ShowdownImportPKM.Click += new System.EventHandler(this.clickShowdownImportPK6);
|
||||
//
|
||||
// Menu_ShowdownExportPK6
|
||||
// Menu_ShowdownExportPKM
|
||||
//
|
||||
this.Menu_ShowdownExportPK6.Image = global::PKHeX.Properties.Resources.export;
|
||||
this.Menu_ShowdownExportPK6.Name = "Menu_ShowdownExportPK6";
|
||||
this.Menu_ShowdownExportPK6.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
|
||||
this.Menu_ShowdownExportPKM.Image = global::PKHeX.Properties.Resources.export;
|
||||
this.Menu_ShowdownExportPKM.Name = "Menu_ShowdownExportPKM";
|
||||
this.Menu_ShowdownExportPKM.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
|
||||
| System.Windows.Forms.Keys.T)));
|
||||
this.Menu_ShowdownExportPK6.ShowShortcutKeys = false;
|
||||
this.Menu_ShowdownExportPK6.Size = new System.Drawing.Size(231, 22);
|
||||
this.Menu_ShowdownExportPK6.Text = "Export Set to Clipboard";
|
||||
this.Menu_ShowdownExportPK6.Click += new System.EventHandler(this.clickShowdownExportPK6);
|
||||
this.Menu_ShowdownExportPKM.ShowShortcutKeys = false;
|
||||
this.Menu_ShowdownExportPKM.Size = new System.Drawing.Size(231, 22);
|
||||
this.Menu_ShowdownExportPKM.Text = "Export Set to Clipboard";
|
||||
this.Menu_ShowdownExportPKM.Click += new System.EventHandler(this.clickShowdownExportPK6);
|
||||
//
|
||||
// Menu_ShowdownExportParty
|
||||
//
|
||||
|
|
@ -2782,7 +2829,8 @@ public void InitializeComponent()
|
|||
this.Menu_LoadBoxes,
|
||||
this.Menu_DumpBoxes,
|
||||
this.Menu_Report,
|
||||
this.Menu_Database});
|
||||
this.Menu_Database,
|
||||
this.Menu_BatchEditor});
|
||||
this.Menu_Data.Image = global::PKHeX.Properties.Resources.data;
|
||||
this.Menu_Data.Name = "Menu_Data";
|
||||
this.Menu_Data.Size = new System.Drawing.Size(143, 22);
|
||||
|
|
@ -2824,6 +2872,16 @@ public void InitializeComponent()
|
|||
this.Menu_Database.Text = "PK6 &Database";
|
||||
this.Menu_Database.Click += new System.EventHandler(this.mainMenuDatabase);
|
||||
//
|
||||
// Menu_BatchEditor
|
||||
//
|
||||
this.Menu_BatchEditor.Image = global::PKHeX.Properties.Resources.settings;
|
||||
this.Menu_BatchEditor.Name = "Menu_BatchEditor";
|
||||
this.Menu_BatchEditor.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.M)));
|
||||
this.Menu_BatchEditor.ShowShortcutKeys = false;
|
||||
this.Menu_BatchEditor.Size = new System.Drawing.Size(151, 22);
|
||||
this.Menu_BatchEditor.Text = "Batch Editor";
|
||||
this.Menu_BatchEditor.Click += new System.EventHandler(this.manMenuBatchEditor);
|
||||
//
|
||||
// Menu_Other
|
||||
//
|
||||
this.Menu_Other.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
|
|
@ -2881,7 +2939,7 @@ public void InitializeComponent()
|
|||
//
|
||||
this.Menu_Modify.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.Menu_ModifyDex,
|
||||
this.Menu_ModifyPK6});
|
||||
this.Menu_ModifyPKM});
|
||||
this.Menu_Modify.Image = global::PKHeX.Properties.Resources.settings;
|
||||
this.Menu_Modify.Name = "Menu_Modify";
|
||||
this.Menu_Modify.Size = new System.Drawing.Size(139, 22);
|
||||
|
|
@ -2893,19 +2951,19 @@ public void InitializeComponent()
|
|||
this.Menu_ModifyDex.CheckOnClick = true;
|
||||
this.Menu_ModifyDex.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.Menu_ModifyDex.Name = "Menu_ModifyDex";
|
||||
this.Menu_ModifyDex.Size = new System.Drawing.Size(159, 22);
|
||||
this.Menu_ModifyDex.Size = new System.Drawing.Size(164, 22);
|
||||
this.Menu_ModifyDex.Text = "Modify Pokédex";
|
||||
this.Menu_ModifyDex.Click += new System.EventHandler(this.mainMenuModifyDex);
|
||||
//
|
||||
// Menu_ModifyPK6
|
||||
// Menu_ModifyPKM
|
||||
//
|
||||
this.Menu_ModifyPK6.Checked = true;
|
||||
this.Menu_ModifyPK6.CheckOnClick = true;
|
||||
this.Menu_ModifyPK6.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.Menu_ModifyPK6.Name = "Menu_ModifyPK6";
|
||||
this.Menu_ModifyPK6.Size = new System.Drawing.Size(159, 22);
|
||||
this.Menu_ModifyPK6.Text = "Modify PK6 Info";
|
||||
this.Menu_ModifyPK6.Click += new System.EventHandler(this.mainMenuModifyPKM);
|
||||
this.Menu_ModifyPKM.Checked = true;
|
||||
this.Menu_ModifyPKM.CheckOnClick = true;
|
||||
this.Menu_ModifyPKM.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.Menu_ModifyPKM.Name = "Menu_ModifyPKM";
|
||||
this.Menu_ModifyPKM.Size = new System.Drawing.Size(164, 22);
|
||||
this.Menu_ModifyPKM.Text = "Modify PKM Info";
|
||||
this.Menu_ModifyPKM.Click += new System.EventHandler(this.mainMenuModifyPKM);
|
||||
//
|
||||
// Menu_Unicode
|
||||
//
|
||||
|
|
@ -2966,6 +3024,7 @@ public void InitializeComponent()
|
|||
//
|
||||
// PAN_Box
|
||||
//
|
||||
this.PAN_Box.BackgroundImage = global::PKHeX.Properties.Resources.box_wp16xy;
|
||||
this.PAN_Box.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||
this.PAN_Box.Controls.Add(this.bpkx30);
|
||||
this.PAN_Box.Controls.Add(this.bpkx29);
|
||||
|
|
@ -3014,7 +3073,11 @@ public void InitializeComponent()
|
|||
this.bpkx30.TabStop = false;
|
||||
this.bpkx30.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx30.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx30.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx30.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx30.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx30.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx30.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// mnuVSD
|
||||
//
|
||||
|
|
@ -3058,7 +3121,11 @@ public void InitializeComponent()
|
|||
this.bpkx29.TabStop = false;
|
||||
this.bpkx29.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx29.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx29.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx29.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx29.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx29.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx29.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx28
|
||||
//
|
||||
|
|
@ -3072,7 +3139,11 @@ public void InitializeComponent()
|
|||
this.bpkx28.TabStop = false;
|
||||
this.bpkx28.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx28.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx28.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx28.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx28.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx28.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx28.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx27
|
||||
//
|
||||
|
|
@ -3086,7 +3157,11 @@ public void InitializeComponent()
|
|||
this.bpkx27.TabStop = false;
|
||||
this.bpkx27.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx27.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx27.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx27.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx27.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx27.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx27.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx26
|
||||
//
|
||||
|
|
@ -3100,7 +3175,11 @@ public void InitializeComponent()
|
|||
this.bpkx26.TabStop = false;
|
||||
this.bpkx26.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx26.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx26.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx26.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx26.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx26.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx26.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx25
|
||||
//
|
||||
|
|
@ -3114,7 +3193,11 @@ public void InitializeComponent()
|
|||
this.bpkx25.TabStop = false;
|
||||
this.bpkx25.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx25.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx25.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx25.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx25.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx25.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx25.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx24
|
||||
//
|
||||
|
|
@ -3128,7 +3211,11 @@ public void InitializeComponent()
|
|||
this.bpkx24.TabStop = false;
|
||||
this.bpkx24.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx24.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx24.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx24.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx24.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx24.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx24.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx23
|
||||
//
|
||||
|
|
@ -3142,7 +3229,11 @@ public void InitializeComponent()
|
|||
this.bpkx23.TabStop = false;
|
||||
this.bpkx23.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx23.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx23.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx23.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx23.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx23.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx23.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx22
|
||||
//
|
||||
|
|
@ -3156,7 +3247,11 @@ public void InitializeComponent()
|
|||
this.bpkx22.TabStop = false;
|
||||
this.bpkx22.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx22.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx22.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx22.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx22.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx22.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx22.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx21
|
||||
//
|
||||
|
|
@ -3170,7 +3265,11 @@ public void InitializeComponent()
|
|||
this.bpkx21.TabStop = false;
|
||||
this.bpkx21.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx21.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx21.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx21.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx21.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx21.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx21.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx20
|
||||
//
|
||||
|
|
@ -3184,7 +3283,11 @@ public void InitializeComponent()
|
|||
this.bpkx20.TabStop = false;
|
||||
this.bpkx20.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx20.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx20.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx20.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx20.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx20.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx20.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx19
|
||||
//
|
||||
|
|
@ -3198,7 +3301,11 @@ public void InitializeComponent()
|
|||
this.bpkx19.TabStop = false;
|
||||
this.bpkx19.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx19.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx19.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx19.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx19.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx19.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx19.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx18
|
||||
//
|
||||
|
|
@ -3212,7 +3319,11 @@ public void InitializeComponent()
|
|||
this.bpkx18.TabStop = false;
|
||||
this.bpkx18.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx18.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx18.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx18.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx18.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx18.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx18.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx17
|
||||
//
|
||||
|
|
@ -3226,7 +3337,11 @@ public void InitializeComponent()
|
|||
this.bpkx17.TabStop = false;
|
||||
this.bpkx17.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx17.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx17.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx17.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx17.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx17.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx17.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx16
|
||||
//
|
||||
|
|
@ -3240,7 +3355,11 @@ public void InitializeComponent()
|
|||
this.bpkx16.TabStop = false;
|
||||
this.bpkx16.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx16.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx16.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx16.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx16.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx16.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx16.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx15
|
||||
//
|
||||
|
|
@ -3254,7 +3373,11 @@ public void InitializeComponent()
|
|||
this.bpkx15.TabStop = false;
|
||||
this.bpkx15.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx15.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx15.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx15.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx15.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx15.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx15.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx14
|
||||
//
|
||||
|
|
@ -3268,7 +3391,11 @@ public void InitializeComponent()
|
|||
this.bpkx14.TabStop = false;
|
||||
this.bpkx14.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx14.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx14.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx14.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx14.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx14.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx14.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx13
|
||||
//
|
||||
|
|
@ -3282,7 +3409,11 @@ public void InitializeComponent()
|
|||
this.bpkx13.TabStop = false;
|
||||
this.bpkx13.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx13.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx13.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx13.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx13.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx13.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx13.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx12
|
||||
//
|
||||
|
|
@ -3296,7 +3427,11 @@ public void InitializeComponent()
|
|||
this.bpkx12.TabStop = false;
|
||||
this.bpkx12.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx12.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx12.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx12.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx12.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx12.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx12.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx11
|
||||
//
|
||||
|
|
@ -3310,7 +3445,11 @@ public void InitializeComponent()
|
|||
this.bpkx11.TabStop = false;
|
||||
this.bpkx11.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx11.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx11.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx11.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx11.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx11.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx11.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx10
|
||||
//
|
||||
|
|
@ -3324,7 +3463,11 @@ public void InitializeComponent()
|
|||
this.bpkx10.TabStop = false;
|
||||
this.bpkx10.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx10.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx10.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx10.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx10.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx10.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx10.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx9
|
||||
//
|
||||
|
|
@ -3338,7 +3481,11 @@ public void InitializeComponent()
|
|||
this.bpkx9.TabStop = false;
|
||||
this.bpkx9.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx9.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx9.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx9.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx9.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx9.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx9.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx8
|
||||
//
|
||||
|
|
@ -3352,7 +3499,11 @@ public void InitializeComponent()
|
|||
this.bpkx8.TabStop = false;
|
||||
this.bpkx8.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx8.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx8.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx8.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx8.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx8.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx8.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx7
|
||||
//
|
||||
|
|
@ -3366,7 +3517,11 @@ public void InitializeComponent()
|
|||
this.bpkx7.TabStop = false;
|
||||
this.bpkx7.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx7.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx7.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx7.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx7.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx7.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx7.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx6
|
||||
//
|
||||
|
|
@ -3380,7 +3535,11 @@ public void InitializeComponent()
|
|||
this.bpkx6.TabStop = false;
|
||||
this.bpkx6.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx6.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx6.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx6.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx6.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx6.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx5
|
||||
//
|
||||
|
|
@ -3394,7 +3553,11 @@ public void InitializeComponent()
|
|||
this.bpkx5.TabStop = false;
|
||||
this.bpkx5.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx5.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx5.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx5.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx5.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx5.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx4
|
||||
//
|
||||
|
|
@ -3408,7 +3571,11 @@ public void InitializeComponent()
|
|||
this.bpkx4.TabStop = false;
|
||||
this.bpkx4.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx4.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx4.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx4.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx4.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx3
|
||||
//
|
||||
|
|
@ -3422,7 +3589,11 @@ public void InitializeComponent()
|
|||
this.bpkx3.TabStop = false;
|
||||
this.bpkx3.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx3.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx3.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx3.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx2
|
||||
//
|
||||
|
|
@ -3436,7 +3607,11 @@ public void InitializeComponent()
|
|||
this.bpkx2.TabStop = false;
|
||||
this.bpkx2.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx2.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx2.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bpkx1
|
||||
//
|
||||
|
|
@ -3450,7 +3625,11 @@ public void InitializeComponent()
|
|||
this.bpkx1.TabStop = false;
|
||||
this.bpkx1.DragDrop += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragDrop);
|
||||
this.bpkx1.DragEnter += new System.Windows.Forms.DragEventHandler(this.pbBoxSlot_DragEnter);
|
||||
this.bpkx1.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bpkx1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bpkx1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bpkx1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bpkx1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// B_BoxRight
|
||||
//
|
||||
|
|
@ -3566,7 +3745,11 @@ public void InitializeComponent()
|
|||
this.bbpkx1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.bbpkx1.TabIndex = 8;
|
||||
this.bbpkx1.TabStop = false;
|
||||
this.bbpkx1.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bbpkx1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bbpkx1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bbpkx1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bbpkx1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// mnuV
|
||||
//
|
||||
|
|
@ -3591,7 +3774,11 @@ public void InitializeComponent()
|
|||
this.bbpkx2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.bbpkx2.TabIndex = 9;
|
||||
this.bbpkx2.TabStop = false;
|
||||
this.bbpkx2.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bbpkx2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bbpkx2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bbpkx2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bbpkx2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bbpkx3
|
||||
//
|
||||
|
|
@ -3602,7 +3789,11 @@ public void InitializeComponent()
|
|||
this.bbpkx3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.bbpkx3.TabIndex = 10;
|
||||
this.bbpkx3.TabStop = false;
|
||||
this.bbpkx3.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bbpkx3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bbpkx3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bbpkx3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bbpkx3.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bbpkx4
|
||||
//
|
||||
|
|
@ -3613,7 +3804,11 @@ public void InitializeComponent()
|
|||
this.bbpkx4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.bbpkx4.TabIndex = 11;
|
||||
this.bbpkx4.TabStop = false;
|
||||
this.bbpkx4.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bbpkx4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bbpkx4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bbpkx4.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bbpkx4.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bbpkx5
|
||||
//
|
||||
|
|
@ -3624,7 +3819,11 @@ public void InitializeComponent()
|
|||
this.bbpkx5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.bbpkx5.TabIndex = 12;
|
||||
this.bbpkx5.TabStop = false;
|
||||
this.bbpkx5.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bbpkx5.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bbpkx5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bbpkx5.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bbpkx5.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// bbpkx6
|
||||
//
|
||||
|
|
@ -3635,7 +3834,11 @@ public void InitializeComponent()
|
|||
this.bbpkx6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.bbpkx6.TabIndex = 13;
|
||||
this.bbpkx6.TabStop = false;
|
||||
this.bbpkx6.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.bbpkx6.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.bbpkx6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.bbpkx6.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.bbpkx6.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// L_ReadOnlyPBB
|
||||
//
|
||||
|
|
@ -3691,7 +3894,11 @@ public void InitializeComponent()
|
|||
this.ppkx1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.ppkx1.TabIndex = 2;
|
||||
this.ppkx1.TabStop = false;
|
||||
this.ppkx1.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.ppkx1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.ppkx1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.ppkx1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.ppkx1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// ppkx2
|
||||
//
|
||||
|
|
@ -3702,7 +3909,11 @@ public void InitializeComponent()
|
|||
this.ppkx2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.ppkx2.TabIndex = 3;
|
||||
this.ppkx2.TabStop = false;
|
||||
this.ppkx2.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.ppkx2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.ppkx2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.ppkx2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.ppkx2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// ppkx3
|
||||
//
|
||||
|
|
@ -3713,7 +3924,11 @@ public void InitializeComponent()
|
|||
this.ppkx3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.ppkx3.TabIndex = 4;
|
||||
this.ppkx3.TabStop = false;
|
||||
this.ppkx3.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.ppkx3.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.ppkx3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.ppkx3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.ppkx3.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// ppkx4
|
||||
//
|
||||
|
|
@ -3724,7 +3939,11 @@ public void InitializeComponent()
|
|||
this.ppkx4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.ppkx4.TabIndex = 5;
|
||||
this.ppkx4.TabStop = false;
|
||||
this.ppkx4.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.ppkx4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.ppkx4.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.ppkx4.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.ppkx4.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// ppkx5
|
||||
//
|
||||
|
|
@ -3735,7 +3954,11 @@ public void InitializeComponent()
|
|||
this.ppkx5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.ppkx5.TabIndex = 6;
|
||||
this.ppkx5.TabStop = false;
|
||||
this.ppkx5.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.ppkx5.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.ppkx5.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.ppkx5.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.ppkx5.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// ppkx6
|
||||
//
|
||||
|
|
@ -3746,7 +3969,11 @@ public void InitializeComponent()
|
|||
this.ppkx6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.ppkx6.TabIndex = 7;
|
||||
this.ppkx6.TabStop = false;
|
||||
this.ppkx6.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.ppkx6.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.ppkx6.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.ppkx6.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.ppkx6.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// Tab_Other
|
||||
//
|
||||
|
|
@ -3864,7 +4091,11 @@ public void InitializeComponent()
|
|||
this.dcpkx2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.dcpkx2.TabIndex = 11;
|
||||
this.dcpkx2.TabStop = false;
|
||||
this.dcpkx2.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.dcpkx2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.dcpkx2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.dcpkx2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.dcpkx2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// dcpkx1
|
||||
//
|
||||
|
|
@ -3876,7 +4107,11 @@ public void InitializeComponent()
|
|||
this.dcpkx1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.dcpkx1.TabIndex = 10;
|
||||
this.dcpkx1.TabStop = false;
|
||||
this.dcpkx1.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.dcpkx1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.dcpkx1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.dcpkx1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.dcpkx1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// DayCare_HasEgg
|
||||
//
|
||||
|
|
@ -3909,7 +4144,11 @@ public void InitializeComponent()
|
|||
this.gtspkx.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.gtspkx.TabIndex = 23;
|
||||
this.gtspkx.TabStop = false;
|
||||
this.gtspkx.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.gtspkx.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.gtspkx.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.gtspkx.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.gtspkx.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// GB_Fused
|
||||
//
|
||||
|
|
@ -3931,7 +4170,11 @@ public void InitializeComponent()
|
|||
this.fusedpkx.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.fusedpkx.TabIndex = 24;
|
||||
this.fusedpkx.TabStop = false;
|
||||
this.fusedpkx.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.fusedpkx.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.fusedpkx.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.fusedpkx.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.fusedpkx.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// L_ReadOnlyOther
|
||||
//
|
||||
|
|
@ -3965,7 +4208,11 @@ public void InitializeComponent()
|
|||
this.subepkx1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
|
||||
this.subepkx1.TabIndex = 18;
|
||||
this.subepkx1.TabStop = false;
|
||||
this.subepkx1.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.pbBoxSlot_QueryContinueDrag);
|
||||
this.subepkx1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseClick);
|
||||
this.subepkx1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseDown);
|
||||
this.subepkx1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseMove);
|
||||
this.subepkx1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pbBoxSlot_MouseUp);
|
||||
//
|
||||
// subepkx2
|
||||
//
|
||||
|
|
@ -4130,6 +4377,8 @@ public void InitializeComponent()
|
|||
this.FLP_SAVtools.Controls.Add(this.B_OpenBerryField);
|
||||
this.FLP_SAVtools.Controls.Add(this.B_OpenSecretBase);
|
||||
this.FLP_SAVtools.Controls.Add(this.B_Pokeblocks);
|
||||
this.FLP_SAVtools.Controls.Add(this.B_LinkInfo);
|
||||
this.FLP_SAVtools.Controls.Add(this.B_CGearSkin);
|
||||
this.FLP_SAVtools.Location = new System.Drawing.Point(6, 10);
|
||||
this.FLP_SAVtools.Name = "FLP_SAVtools";
|
||||
this.FLP_SAVtools.Size = new System.Drawing.Size(297, 87);
|
||||
|
|
@ -4278,6 +4527,26 @@ public void InitializeComponent()
|
|||
this.B_Pokeblocks.Visible = false;
|
||||
this.B_Pokeblocks.Click += new System.EventHandler(this.B_OpenPokeblocks_Click);
|
||||
//
|
||||
// B_LinkInfo
|
||||
//
|
||||
this.B_LinkInfo.Location = new System.Drawing.Point(189, 119);
|
||||
this.B_LinkInfo.Name = "B_LinkInfo";
|
||||
this.B_LinkInfo.Size = new System.Drawing.Size(87, 23);
|
||||
this.B_LinkInfo.TabIndex = 23;
|
||||
this.B_LinkInfo.Text = "Link Data";
|
||||
this.B_LinkInfo.UseVisualStyleBackColor = true;
|
||||
this.B_LinkInfo.Click += new System.EventHandler(this.B_LinkInfo_Click);
|
||||
//
|
||||
// B_CGearSkin
|
||||
//
|
||||
this.B_CGearSkin.Location = new System.Drawing.Point(3, 148);
|
||||
this.B_CGearSkin.Name = "B_CGearSkin";
|
||||
this.B_CGearSkin.Size = new System.Drawing.Size(87, 23);
|
||||
this.B_CGearSkin.TabIndex = 24;
|
||||
this.B_CGearSkin.Text = "C-Gear Skin";
|
||||
this.B_CGearSkin.UseVisualStyleBackColor = true;
|
||||
this.B_CGearSkin.Click += new System.EventHandler(this.B_CGearSkin_Click);
|
||||
//
|
||||
// dragout
|
||||
//
|
||||
this.dragout.BackColor = System.Drawing.Color.Transparent;
|
||||
|
|
@ -4379,6 +4648,8 @@ public void InitializeComponent()
|
|||
this.GB_CurrentMoves.PerformLayout();
|
||||
this.Tab_OTMisc.ResumeLayout(false);
|
||||
this.Tab_OTMisc.PerformLayout();
|
||||
this.FLP_PKMEditors.ResumeLayout(false);
|
||||
this.FLP_PKMEditors.PerformLayout();
|
||||
this.GB_nOT.ResumeLayout(false);
|
||||
this.GB_nOT.PerformLayout();
|
||||
this.GB_Markings.ResumeLayout(false);
|
||||
|
|
@ -4747,7 +5018,7 @@ public void InitializeComponent()
|
|||
private System.Windows.Forms.ComboBox CB_GameOrigin;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_Modify;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ModifyDex;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ModifyPK6;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ModifyPKM;
|
||||
private System.Windows.Forms.ContextMenuStrip mnuVSD;
|
||||
private System.Windows.Forms.ToolStripMenuItem mnuView;
|
||||
private System.Windows.Forms.ToolStripMenuItem mnuSet;
|
||||
|
|
@ -4764,8 +5035,8 @@ public void InitializeComponent()
|
|||
private System.Windows.Forms.TextBox TB_Secure1;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ExportSAV;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_Showdown;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ShowdownExportPK6;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ShowdownImportPK6;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ShowdownExportPKM;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ShowdownImportPKM;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ShowdownExportParty;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_ShowdownExportBattleBox;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_CyberGadget;
|
||||
|
|
@ -4808,6 +5079,11 @@ public void InitializeComponent()
|
|||
private System.Windows.Forms.GroupBox GB_SAVtools;
|
||||
private System.Windows.Forms.PictureBox PB_Mark1;
|
||||
private System.Windows.Forms.Button B_Pokeblocks;
|
||||
private System.Windows.Forms.ToolStripMenuItem Menu_BatchEditor;
|
||||
private System.Windows.Forms.Button BTN_Medals;
|
||||
private System.Windows.Forms.FlowLayoutPanel FLP_PKMEditors;
|
||||
private System.Windows.Forms.Button B_LinkInfo;
|
||||
private System.Windows.Forms.Button B_CGearSkin;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -237,378 +237,6 @@
|
|||
<metadata name="Label_IsShiny.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_Shinytize.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_PID.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_AbilityNumber.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="MT_Level.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="DEV_Ability.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_AsEgg.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_Fateful.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_EggConditions.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_EncounterType.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_MetDate.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_MetLevel.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Ball.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_MetLocation.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_OriginGame.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_GameOrigin.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_MetLocation.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Ball.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_MetLevel.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CAL_MetDate.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_EncounterType.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Stat_SPE.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Stat_SPD.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Stat_SPA.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Stat_DEF.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Stat_ATK.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Stat_HP.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_HPType.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_HackedStats.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_CharacteristicPrefix.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Potential.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_IVTotal.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Characteristic.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Sheen.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Tough.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Smart.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Cute.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Beauty.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Cool.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_SPEIV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_SPDIV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_SPAIV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_DEFIV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_ATKIV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_HPIV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_ATKEV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_DEFEV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_SPEEV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_SPDEV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_SPAEV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_HPEV.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Sheen.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Tough.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Smart.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Cute.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Beauty.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Cool.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_ContestStats.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_RandomEVs.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_RandomIVs.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_HiddenPowerPrefix.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Stats.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_EVs.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_IVs.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Total.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_SPE.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_SPD.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_SPA.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_DEF.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_ATK.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_HP.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_EVTotal.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnMove4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnMove3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnMove2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnMove1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_RelearnMoves.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_CurrentMoves.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_EC.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_nOT.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_RerollEC.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_History.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_Ribbons.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_ExtraBytes.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_OT.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_EncryptionConstant.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Language.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="MT_Form.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Ability.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_PID.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_Nicknamed.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Gender.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Form.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_Cured.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_Infected.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_HeldItem.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_HeldItem.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Friendship.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Level.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_EXP.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_RerollPID.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_3DSReg.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_SubRegion.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Country.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_PKRSDays.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_PKRSStrain.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Nature.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_3DSRegion.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_SubRegion.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Country.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_PKRSdays.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_PKRS.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_IsEgg.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Language.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Form.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Ability.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Friendship.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Nature.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_CurLevel.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Nickname.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Species.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_EXP.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_Species.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_HatchCounter.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_IsShiny.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="Label_IsShiny.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
|
|
@ -662,18 +290,6 @@
|
|||
<metadata name="Label_EggLocation.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_EggLocation.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CAL_EggDate.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_EggDate.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_EggLocation.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_EncounterType.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -937,30 +553,6 @@
|
|||
<metadata name="PB_WarnRelearn4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnRelearn3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnRelearn2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnRelearn1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_RelearnMove4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_RelearnMove3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_RelearnMove2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_RelearnMove1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_WarnRelearn4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="PB_WarnRelearn4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAeZJREFUOE+1
|
||||
|
|
@ -1083,63 +675,9 @@
|
|||
<metadata name="CB_Move1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_PP4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_PP3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_PP2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_PP1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_CurPP.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_PPups.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_PPu4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_PPu3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_PPu2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Move4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_PPu1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Move3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Move2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_Move1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_EC.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_nOT.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_CTGender.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_OTt2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_PrevOT.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_CTGender.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -1152,21 +690,6 @@
|
|||
<metadata name="BTN_RerollEC.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_History.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="BTN_Ribbons.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_MarkPentagon.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_MarkCured.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_MarkShiny.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="PB_Mark6.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
|
|
@ -1318,45 +841,12 @@
|
|||
N5EOGBgAEVY/pv9ltCoAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="GB_ExtraBytes.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_ExtraByte.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_ExtraBytes.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_ExtraByte.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_ExtraBytes.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_OT.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_OTGender.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_OT.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_SID.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_TID.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_OT.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_SID.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_TID.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Label_OTGender.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -1396,108 +886,6 @@
|
|||
<metadata name="PAN_Box.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_BoxRight.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_BoxLeft.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CB_BoxSelect.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PAN_Box.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx30.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx29.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx28.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx27.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx26.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx25.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx24.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx23.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx22.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx21.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx20.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx19.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx18.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx17.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx16.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx15.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx14.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx13.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx12.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx11.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx10.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx9.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx8.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bpkx30.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -1603,42 +991,6 @@
|
|||
<metadata name="PAN_BattleBox.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_ReadOnlyPBB.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_BattleBox.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Party.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PAN_Party.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PAN_BattleBox.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_Locked.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bbpkx1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bbpkx2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bbpkx3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bbpkx4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bbpkx5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="bbpkx6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="PAN_BattleBox.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAAG8AAACgCAYAAAACezIBAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
|
|
@ -1752,24 +1104,6 @@
|
|||
<metadata name="PAN_Party.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="ppkx1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="ppkx2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="ppkx3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="ppkx4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="ppkx5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="ppkx6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="PAN_Party.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAAG8AAACgCAYAAAACezIBAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
|
|
@ -1840,54 +1174,6 @@
|
|||
<metadata name="GB_Daycare.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_GTS.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Fused.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_ReadOnlyOther.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_SUBE.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Daycare.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_XP2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_XP1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Daycare2XP.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Daycare1XP.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_DC2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_DC1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_DaycareSeed.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_RNGSeed.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="dcpkx2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="dcpkx1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="DayCare_HasEgg.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_XP2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -1927,18 +1213,12 @@
|
|||
<metadata name="gtspkx.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="gtspkx.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Fused.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="fusedpkx.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="fusedpkx.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_ReadOnlyOther.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -1948,36 +1228,6 @@
|
|||
<metadata name="subepkx1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="subepkx1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Secure2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Secure2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Secure1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_Secure1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_JPEG.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_GameSync.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TB_GameSync.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_SaveBoxBin.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_VerifyCHK.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Secure2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -2011,9 +1261,6 @@
|
|||
<metadata name="FLP_SAVtools.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="FLP_SAVtools.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenPokepuffs.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
@ -2056,46 +1303,10 @@
|
|||
<metadata name="B_Pokeblocks.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenPokepuffs.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<metadata name="B_LinkInfo.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenItemPouch.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenTrainerInfo.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OUTPasserby.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenBoxLayout.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenWondercards.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenSuperTraining.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenHallofFame.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenOPowers.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenEventFlags.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenPokedex.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenBerryField.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_OpenSecretBase.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="B_Pokeblocks.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<metadata name="B_CGearSkin.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="dragout.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
194
MainWindow/MainPK3.cs
Normal file
|
|
@ -0,0 +1,194 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public partial class Main
|
||||
{
|
||||
private void populateFieldsPK3()
|
||||
{
|
||||
PK3 pk3 = pkm as PK3;
|
||||
if (pk3 == null)
|
||||
return;
|
||||
|
||||
// Do first
|
||||
pk3.Stat_Level = PKX.getLevel(pk3.Species, pk3.EXP);
|
||||
if (pk3.Stat_Level == 100)
|
||||
pk3.EXP = PKX.getEXP(pk3.Stat_Level, pk3.Species);
|
||||
|
||||
CB_Species.SelectedValue = pk3.Species;
|
||||
TB_Level.Text = pk3.Stat_Level.ToString();
|
||||
TB_EXP.Text = pk3.EXP.ToString();
|
||||
|
||||
// Load rest
|
||||
CHK_Fateful.Checked = pk3.FatefulEncounter;
|
||||
CHK_IsEgg.Checked = pk3.IsEgg;
|
||||
CHK_Nicknamed.Checked = pk3.IsNicknamed;
|
||||
Label_OTGender.Text = gendersymbols[pk3.OT_Gender];
|
||||
Label_OTGender.ForeColor = pk3.OT_Gender == 1 ? Color.Red : Color.Blue;
|
||||
TB_PID.Text = pk3.PID.ToString("X8");
|
||||
CB_HeldItem.SelectedValue = pk3.G3Item;
|
||||
setAbilityList();
|
||||
CB_Ability.SelectedIndex = pk3.AbilityNumber > CB_Ability.Items.Count ? 0 : pk3.AbilityNumber;
|
||||
CB_Nature.SelectedValue = pk3.Nature;
|
||||
TB_TID.Text = pk3.TID.ToString("00000");
|
||||
TB_SID.Text = pk3.SID.ToString("00000");
|
||||
TB_Nickname.Text = pk3.Nickname;
|
||||
TB_OT.Text = pk3.OT_Name;
|
||||
TB_Friendship.Text = pk3.CurrentFriendship.ToString();
|
||||
GB_OT.BackgroundImage = null;
|
||||
CB_Language.SelectedValue = pk3.Language;
|
||||
CB_GameOrigin.SelectedValue = pk3.Version;
|
||||
CB_EncounterType.SelectedValue = pk3.Gen4 ? pk3.EncounterType : 0;
|
||||
CB_Ball.SelectedValue = pk3.Ball;
|
||||
|
||||
CB_MetLocation.SelectedValue = pk3.Met_Location;
|
||||
|
||||
TB_MetLevel.Text = pk3.Met_Level.ToString();
|
||||
|
||||
// Reset Label and ComboBox visibility, as well as non-data checked status.
|
||||
Label_PKRS.Visible = CB_PKRSStrain.Visible = CHK_Infected.Checked = pk3.PKRS_Strain != 0;
|
||||
Label_PKRSdays.Visible = CB_PKRSDays.Visible = pk3.PKRS_Days != 0;
|
||||
|
||||
// Set SelectedIndexes for PKRS
|
||||
CB_PKRSStrain.SelectedIndex = pk3.PKRS_Strain;
|
||||
CHK_Cured.Checked = pk3.PKRS_Strain > 0 && pk3.PKRS_Days == 0;
|
||||
CB_PKRSDays.SelectedIndex = Math.Min(CB_PKRSDays.Items.Count - 1, pk3.PKRS_Days); // to strip out bad hacked 'rus
|
||||
|
||||
TB_Cool.Text = pk3.CNT_Cool.ToString();
|
||||
TB_Beauty.Text = pk3.CNT_Beauty.ToString();
|
||||
TB_Cute.Text = pk3.CNT_Cute.ToString();
|
||||
TB_Smart.Text = pk3.CNT_Smart.ToString();
|
||||
TB_Tough.Text = pk3.CNT_Tough.ToString();
|
||||
TB_Sheen.Text = pk3.CNT_Sheen.ToString();
|
||||
|
||||
TB_HPIV.Text = pk3.IV_HP.ToString();
|
||||
TB_ATKIV.Text = pk3.IV_ATK.ToString();
|
||||
TB_DEFIV.Text = pk3.IV_DEF.ToString();
|
||||
TB_SPEIV.Text = pk3.IV_SPE.ToString();
|
||||
TB_SPAIV.Text = pk3.IV_SPA.ToString();
|
||||
TB_SPDIV.Text = pk3.IV_SPD.ToString();
|
||||
CB_HPType.SelectedValue = pk3.HPType;
|
||||
|
||||
TB_HPEV.Text = pk3.EV_HP.ToString();
|
||||
TB_ATKEV.Text = pk3.EV_ATK.ToString();
|
||||
TB_DEFEV.Text = pk3.EV_DEF.ToString();
|
||||
TB_SPEEV.Text = pk3.EV_SPE.ToString();
|
||||
TB_SPAEV.Text = pk3.EV_SPA.ToString();
|
||||
TB_SPDEV.Text = pk3.EV_SPD.ToString();
|
||||
|
||||
CB_Move1.SelectedValue = pk3.Move1;
|
||||
CB_Move2.SelectedValue = pk3.Move2;
|
||||
CB_Move3.SelectedValue = pk3.Move3;
|
||||
CB_Move4.SelectedValue = pk3.Move4;
|
||||
CB_PPu1.SelectedIndex = pk3.Move1_PPUps;
|
||||
CB_PPu2.SelectedIndex = pk3.Move2_PPUps;
|
||||
CB_PPu3.SelectedIndex = pk3.Move3_PPUps;
|
||||
CB_PPu4.SelectedIndex = pk3.Move4_PPUps;
|
||||
TB_PP1.Text = pk3.Move1_PP.ToString();
|
||||
TB_PP2.Text = pk3.Move2_PP.ToString();
|
||||
TB_PP3.Text = pk3.Move3_PP.ToString();
|
||||
TB_PP4.Text = pk3.Move4_PP.ToString();
|
||||
|
||||
// Set Form if count is enough, else cap.
|
||||
CB_Form.SelectedIndex = CB_Form.Items.Count > pk3.AltForm ? pk3.AltForm : CB_Form.Items.Count - 1;
|
||||
|
||||
// Load Extrabyte Value
|
||||
TB_ExtraByte.Text = pk3.Data[Convert.ToInt32(CB_ExtraBytes.Text, 16)].ToString();
|
||||
|
||||
updateStats();
|
||||
|
||||
TB_EXP.Text = pk3.EXP.ToString();
|
||||
Label_Gender.Text = gendersymbols[pk3.Gender];
|
||||
Label_Gender.ForeColor = pk3.Gender == 2 ? Label_Species.ForeColor : (pk3.Gender == 1 ? Color.Red : Color.Blue);
|
||||
}
|
||||
private PKM preparePK3()
|
||||
{
|
||||
PK3 pk3 = pkm as PK3;
|
||||
if (pk3 == null)
|
||||
return null;
|
||||
|
||||
pk3.Species = Util.getIndex(CB_Species);
|
||||
pk3.G3Item = Util.getIndex(CB_HeldItem);
|
||||
pk3.TID = Util.ToInt32(TB_TID.Text);
|
||||
pk3.SID = Util.ToInt32(TB_SID.Text);
|
||||
pk3.EXP = Util.ToUInt32(TB_EXP.Text);
|
||||
pk3.PID = Util.getHEXval(TB_PID.Text);
|
||||
pk3.AbilityNumber = CB_Ability.SelectedIndex; // 0/1 (stored in IVbits)
|
||||
|
||||
pk3.FatefulEncounter = CHK_Fateful.Checked;
|
||||
pk3.Gender = PKX.getGender(Label_Gender.Text);
|
||||
pk3.EV_HP = Util.ToInt32(TB_HPEV.Text);
|
||||
pk3.EV_ATK = Util.ToInt32(TB_ATKEV.Text);
|
||||
pk3.EV_DEF = Util.ToInt32(TB_DEFEV.Text);
|
||||
pk3.EV_SPE = Util.ToInt32(TB_SPEEV.Text);
|
||||
pk3.EV_SPA = Util.ToInt32(TB_SPAEV.Text);
|
||||
pk3.EV_SPD = Util.ToInt32(TB_SPDEV.Text);
|
||||
|
||||
pk3.CNT_Cool = Util.ToInt32(TB_Cool.Text);
|
||||
pk3.CNT_Beauty = Util.ToInt32(TB_Beauty.Text);
|
||||
pk3.CNT_Cute = Util.ToInt32(TB_Cute.Text);
|
||||
pk3.CNT_Smart = Util.ToInt32(TB_Smart.Text);
|
||||
pk3.CNT_Tough = Util.ToInt32(TB_Tough.Text);
|
||||
pk3.CNT_Sheen = Util.ToInt32(TB_Sheen.Text);
|
||||
|
||||
pk3.PKRS_Days = CB_PKRSDays.SelectedIndex;
|
||||
pk3.PKRS_Strain = CB_PKRSStrain.SelectedIndex;
|
||||
pk3.Nickname = TB_Nickname.Text;
|
||||
pk3.Move1 = Util.getIndex(CB_Move1);
|
||||
pk3.Move2 = Util.getIndex(CB_Move2);
|
||||
pk3.Move3 = Util.getIndex(CB_Move3);
|
||||
pk3.Move4 = Util.getIndex(CB_Move4);
|
||||
pk3.Move1_PP = Util.getIndex(CB_Move1) > 0 ? Util.ToInt32(TB_PP1.Text) : 0;
|
||||
pk3.Move2_PP = Util.getIndex(CB_Move2) > 0 ? Util.ToInt32(TB_PP2.Text) : 0;
|
||||
pk3.Move3_PP = Util.getIndex(CB_Move3) > 0 ? Util.ToInt32(TB_PP3.Text) : 0;
|
||||
pk3.Move4_PP = Util.getIndex(CB_Move4) > 0 ? Util.ToInt32(TB_PP4.Text) : 0;
|
||||
pk3.Move1_PPUps = Util.getIndex(CB_Move1) > 0 ? CB_PPu1.SelectedIndex : 0;
|
||||
pk3.Move2_PPUps = Util.getIndex(CB_Move2) > 0 ? CB_PPu2.SelectedIndex : 0;
|
||||
pk3.Move3_PPUps = Util.getIndex(CB_Move3) > 0 ? CB_PPu3.SelectedIndex : 0;
|
||||
pk3.Move4_PPUps = Util.getIndex(CB_Move4) > 0 ? CB_PPu4.SelectedIndex : 0;
|
||||
|
||||
pk3.IV_HP = Util.ToInt32(TB_HPIV.Text);
|
||||
pk3.IV_ATK = Util.ToInt32(TB_ATKIV.Text);
|
||||
pk3.IV_DEF = Util.ToInt32(TB_DEFIV.Text);
|
||||
pk3.IV_SPE = Util.ToInt32(TB_SPEIV.Text);
|
||||
pk3.IV_SPA = Util.ToInt32(TB_SPAIV.Text);
|
||||
pk3.IV_SPD = Util.ToInt32(TB_SPDIV.Text);
|
||||
pk3.IsEgg = CHK_IsEgg.Checked;
|
||||
pk3.IsNicknamed = CHK_Nicknamed.Checked;
|
||||
|
||||
pk3.OT_Name = TB_OT.Text;
|
||||
pk3.CurrentFriendship = Util.ToInt32(TB_Friendship.Text);
|
||||
|
||||
pk3.Ball = Util.getIndex(CB_Ball);
|
||||
pk3.Met_Level = Util.ToInt32(TB_MetLevel.Text);
|
||||
pk3.OT_Gender = PKX.getGender(Label_OTGender.Text);
|
||||
pk3.Version = Util.getIndex(CB_GameOrigin);
|
||||
pk3.Language = Util.getIndex(CB_Language);
|
||||
|
||||
pk3.Met_Location = Util.getIndex(CB_MetLocation);
|
||||
|
||||
// Toss in Party Stats
|
||||
Array.Resize(ref pk3.Data, pk3.SIZE_PARTY);
|
||||
pk3.Stat_Level = Util.ToInt32(TB_Level.Text);
|
||||
pk3.Stat_HPCurrent = Util.ToInt32(Stat_HP.Text);
|
||||
pk3.Stat_HPMax = Util.ToInt32(Stat_HP.Text);
|
||||
pk3.Stat_ATK = Util.ToInt32(Stat_ATK.Text);
|
||||
pk3.Stat_DEF = Util.ToInt32(Stat_DEF.Text);
|
||||
pk3.Stat_SPE = Util.ToInt32(Stat_SPE.Text);
|
||||
pk3.Stat_SPA = Util.ToInt32(Stat_SPA.Text);
|
||||
pk3.Stat_SPD = Util.ToInt32(Stat_SPD.Text);
|
||||
|
||||
if (HaX)
|
||||
{
|
||||
pk3.Stat_Level = (byte)Math.Min(Convert.ToInt32(MT_Level.Text), byte.MaxValue);
|
||||
}
|
||||
|
||||
// Fix Moves if a slot is empty
|
||||
pk3.FixMoves();
|
||||
|
||||
pk3.RefreshChecksum();
|
||||
return pk3;
|
||||
}
|
||||
}
|
||||
}
|
||||
246
MainWindow/MainPK4.cs
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public partial class Main
|
||||
{
|
||||
private void populateFieldsPK4()
|
||||
{
|
||||
PK4 pk4 = pkm as PK4;
|
||||
if (pk4 == null)
|
||||
return;
|
||||
|
||||
// Do first
|
||||
pk4.Stat_Level = PKX.getLevel(pk4.Species, pk4.EXP);
|
||||
if (pk4.Stat_Level == 100)
|
||||
pk4.EXP = PKX.getEXP(pk4.Stat_Level, pk4.Species);
|
||||
|
||||
CB_Species.SelectedValue = pk4.Species;
|
||||
TB_Level.Text = pk4.Stat_Level.ToString();
|
||||
TB_EXP.Text = pk4.EXP.ToString();
|
||||
|
||||
// Load rest
|
||||
CHK_Fateful.Checked = pk4.FatefulEncounter;
|
||||
CHK_IsEgg.Checked = pk4.IsEgg;
|
||||
CHK_Nicknamed.Checked = pk4.IsNicknamed;
|
||||
Label_OTGender.Text = gendersymbols[pk4.OT_Gender];
|
||||
Label_OTGender.ForeColor = pk4.OT_Gender == 1 ? Color.Red : Color.Blue;
|
||||
TB_PID.Text = pk4.PID.ToString("X8");
|
||||
CB_HeldItem.SelectedValue = pk4.HeldItem;
|
||||
setAbilityList();
|
||||
CB_Nature.SelectedValue = pk4.Nature;
|
||||
TB_TID.Text = pk4.TID.ToString("00000");
|
||||
TB_SID.Text = pk4.SID.ToString("00000");
|
||||
TB_Nickname.Text = pk4.Nickname;
|
||||
TB_OT.Text = pk4.OT_Name;
|
||||
TB_Friendship.Text = pk4.CurrentFriendship.ToString();
|
||||
GB_OT.BackgroundImage = null;
|
||||
CB_Language.SelectedValue = pk4.Language;
|
||||
CB_GameOrigin.SelectedValue = pk4.Version;
|
||||
CB_EncounterType.SelectedValue = pk4.Gen4 ? pk4.EncounterType : 0;
|
||||
CB_Ball.SelectedValue = pk4.Ball;
|
||||
|
||||
if (pk4.Met_Month == 0) { pk4.Met_Month = 1; }
|
||||
if (pk4.Met_Day == 0) { pk4.Met_Day = 1; }
|
||||
try { CAL_MetDate.Value = new DateTime(pk4.Met_Year + 2000, pk4.Met_Month, pk4.Met_Day); }
|
||||
catch { CAL_MetDate.Value = new DateTime(2000, 1, 1); }
|
||||
|
||||
if (pk4.Egg_Location != 0)
|
||||
{
|
||||
// Was obtained initially as an egg.
|
||||
CHK_AsEgg.Checked = true;
|
||||
GB_EggConditions.Enabled = true;
|
||||
|
||||
CB_EggLocation.SelectedValue = pk4.Egg_Location;
|
||||
try { CAL_EggDate.Value = new DateTime(pk4.Egg_Year + 2000, pk4.Egg_Month, pk4.Egg_Day); }
|
||||
catch { CAL_MetDate.Value = new DateTime(2000, 1, 1); }
|
||||
}
|
||||
else { CAL_EggDate.Value = new DateTime(2000, 01, 01); CHK_AsEgg.Checked = GB_EggConditions.Enabled = false; CB_EggLocation.SelectedValue = 0; }
|
||||
|
||||
CB_MetLocation.SelectedValue = pk4.Met_Location;
|
||||
|
||||
TB_MetLevel.Text = pk4.Met_Level.ToString();
|
||||
|
||||
// Reset Label and ComboBox visibility, as well as non-data checked status.
|
||||
Label_PKRS.Visible = CB_PKRSStrain.Visible = CHK_Infected.Checked = pk4.PKRS_Strain != 0;
|
||||
Label_PKRSdays.Visible = CB_PKRSDays.Visible = pk4.PKRS_Days != 0;
|
||||
|
||||
// Set SelectedIndexes for PKRS
|
||||
CB_PKRSStrain.SelectedIndex = pk4.PKRS_Strain;
|
||||
CHK_Cured.Checked = pk4.PKRS_Strain > 0 && pk4.PKRS_Days == 0;
|
||||
CB_PKRSDays.SelectedIndex = Math.Min(CB_PKRSDays.Items.Count - 1, pk4.PKRS_Days); // to strip out bad hacked 'rus
|
||||
|
||||
TB_Cool.Text = pk4.CNT_Cool.ToString();
|
||||
TB_Beauty.Text = pk4.CNT_Beauty.ToString();
|
||||
TB_Cute.Text = pk4.CNT_Cute.ToString();
|
||||
TB_Smart.Text = pk4.CNT_Smart.ToString();
|
||||
TB_Tough.Text = pk4.CNT_Tough.ToString();
|
||||
TB_Sheen.Text = pk4.CNT_Sheen.ToString();
|
||||
|
||||
TB_HPIV.Text = pk4.IV_HP.ToString();
|
||||
TB_ATKIV.Text = pk4.IV_ATK.ToString();
|
||||
TB_DEFIV.Text = pk4.IV_DEF.ToString();
|
||||
TB_SPEIV.Text = pk4.IV_SPE.ToString();
|
||||
TB_SPAIV.Text = pk4.IV_SPA.ToString();
|
||||
TB_SPDIV.Text = pk4.IV_SPD.ToString();
|
||||
CB_HPType.SelectedValue = pk4.HPType;
|
||||
|
||||
TB_HPEV.Text = pk4.EV_HP.ToString();
|
||||
TB_ATKEV.Text = pk4.EV_ATK.ToString();
|
||||
TB_DEFEV.Text = pk4.EV_DEF.ToString();
|
||||
TB_SPEEV.Text = pk4.EV_SPE.ToString();
|
||||
TB_SPAEV.Text = pk4.EV_SPA.ToString();
|
||||
TB_SPDEV.Text = pk4.EV_SPD.ToString();
|
||||
|
||||
CB_Move1.SelectedValue = pk4.Move1;
|
||||
CB_Move2.SelectedValue = pk4.Move2;
|
||||
CB_Move3.SelectedValue = pk4.Move3;
|
||||
CB_Move4.SelectedValue = pk4.Move4;
|
||||
CB_PPu1.SelectedIndex = pk4.Move1_PPUps;
|
||||
CB_PPu2.SelectedIndex = pk4.Move2_PPUps;
|
||||
CB_PPu3.SelectedIndex = pk4.Move3_PPUps;
|
||||
CB_PPu4.SelectedIndex = pk4.Move4_PPUps;
|
||||
TB_PP1.Text = pk4.Move1_PP.ToString();
|
||||
TB_PP2.Text = pk4.Move2_PP.ToString();
|
||||
TB_PP3.Text = pk4.Move3_PP.ToString();
|
||||
TB_PP4.Text = pk4.Move4_PP.ToString();
|
||||
|
||||
// Set Form if count is enough, else cap.
|
||||
CB_Form.SelectedIndex = CB_Form.Items.Count > pk4.AltForm ? pk4.AltForm : CB_Form.Items.Count - 1;
|
||||
|
||||
// Load Extrabyte Value
|
||||
TB_ExtraByte.Text = pk4.Data[Convert.ToInt32(CB_ExtraBytes.Text, 16)].ToString();
|
||||
|
||||
updateStats();
|
||||
|
||||
TB_EXP.Text = pk4.EXP.ToString();
|
||||
Label_Gender.Text = gendersymbols[pk4.Gender];
|
||||
Label_Gender.ForeColor = pk4.Gender == 2 ? Label_Species.ForeColor : (pk4.Gender == 1 ? Color.Red : Color.Blue);
|
||||
|
||||
if (HaX)
|
||||
DEV_Ability.SelectedValue = pk4.Ability;
|
||||
else
|
||||
{
|
||||
int[] abils = SAV.Personal.getAbilities(pk4.Species, pk4.AltForm);
|
||||
int abil = Array.IndexOf(abils, pk4.Ability);
|
||||
CB_Ability.SelectedIndex = abil < 0 || abil >= CB_Ability.Items.Count ? 0 : abil;
|
||||
}
|
||||
}
|
||||
private PKM preparePK4()
|
||||
{
|
||||
PK4 pk4 = pkm as PK4;
|
||||
if (pk4 == null)
|
||||
return null;
|
||||
|
||||
pk4.Species = Util.getIndex(CB_Species);
|
||||
pk4.HeldItem = Util.getIndex(CB_HeldItem);
|
||||
pk4.TID = Util.ToInt32(TB_TID.Text);
|
||||
pk4.SID = Util.ToInt32(TB_SID.Text);
|
||||
pk4.EXP = Util.ToUInt32(TB_EXP.Text);
|
||||
pk4.PID = Util.getHEXval(TB_PID.Text);
|
||||
pk4.Ability = (byte)Array.IndexOf(abilitylist, CB_Ability.Text.Remove(CB_Ability.Text.Length - 4));
|
||||
|
||||
pk4.FatefulEncounter = CHK_Fateful.Checked;
|
||||
pk4.Gender = PKX.getGender(Label_Gender.Text);
|
||||
pk4.AltForm = (MT_Form.Enabled ? Convert.ToInt32(MT_Form.Text) : CB_Form.Enabled ? CB_Form.SelectedIndex : 0) & 0x1F;
|
||||
pk4.EV_HP = Util.ToInt32(TB_HPEV.Text);
|
||||
pk4.EV_ATK = Util.ToInt32(TB_ATKEV.Text);
|
||||
pk4.EV_DEF = Util.ToInt32(TB_DEFEV.Text);
|
||||
pk4.EV_SPE = Util.ToInt32(TB_SPEEV.Text);
|
||||
pk4.EV_SPA = Util.ToInt32(TB_SPAEV.Text);
|
||||
pk4.EV_SPD = Util.ToInt32(TB_SPDEV.Text);
|
||||
|
||||
pk4.CNT_Cool = Util.ToInt32(TB_Cool.Text);
|
||||
pk4.CNT_Beauty = Util.ToInt32(TB_Beauty.Text);
|
||||
pk4.CNT_Cute = Util.ToInt32(TB_Cute.Text);
|
||||
pk4.CNT_Smart = Util.ToInt32(TB_Smart.Text);
|
||||
pk4.CNT_Tough = Util.ToInt32(TB_Tough.Text);
|
||||
pk4.CNT_Sheen = Util.ToInt32(TB_Sheen.Text);
|
||||
|
||||
pk4.PKRS_Days = CB_PKRSDays.SelectedIndex;
|
||||
pk4.PKRS_Strain = CB_PKRSStrain.SelectedIndex;
|
||||
pk4.Nickname = TB_Nickname.Text;
|
||||
pk4.Move1 = Util.getIndex(CB_Move1);
|
||||
pk4.Move2 = Util.getIndex(CB_Move2);
|
||||
pk4.Move3 = Util.getIndex(CB_Move3);
|
||||
pk4.Move4 = Util.getIndex(CB_Move4);
|
||||
pk4.Move1_PP = Util.getIndex(CB_Move1) > 0 ? Util.ToInt32(TB_PP1.Text) : 0;
|
||||
pk4.Move2_PP = Util.getIndex(CB_Move2) > 0 ? Util.ToInt32(TB_PP2.Text) : 0;
|
||||
pk4.Move3_PP = Util.getIndex(CB_Move3) > 0 ? Util.ToInt32(TB_PP3.Text) : 0;
|
||||
pk4.Move4_PP = Util.getIndex(CB_Move4) > 0 ? Util.ToInt32(TB_PP4.Text) : 0;
|
||||
pk4.Move1_PPUps = Util.getIndex(CB_Move1) > 0 ? CB_PPu1.SelectedIndex : 0;
|
||||
pk4.Move2_PPUps = Util.getIndex(CB_Move2) > 0 ? CB_PPu2.SelectedIndex : 0;
|
||||
pk4.Move3_PPUps = Util.getIndex(CB_Move3) > 0 ? CB_PPu3.SelectedIndex : 0;
|
||||
pk4.Move4_PPUps = Util.getIndex(CB_Move4) > 0 ? CB_PPu4.SelectedIndex : 0;
|
||||
|
||||
pk4.IV_HP = Util.ToInt32(TB_HPIV.Text);
|
||||
pk4.IV_ATK = Util.ToInt32(TB_ATKIV.Text);
|
||||
pk4.IV_DEF = Util.ToInt32(TB_DEFIV.Text);
|
||||
pk4.IV_SPE = Util.ToInt32(TB_SPEIV.Text);
|
||||
pk4.IV_SPA = Util.ToInt32(TB_SPAIV.Text);
|
||||
pk4.IV_SPD = Util.ToInt32(TB_SPDIV.Text);
|
||||
pk4.IsEgg = CHK_IsEgg.Checked;
|
||||
pk4.IsNicknamed = CHK_Nicknamed.Checked;
|
||||
|
||||
pk4.OT_Name = TB_OT.Text;
|
||||
pk4.CurrentFriendship = Util.ToInt32(TB_Friendship.Text);
|
||||
|
||||
pk4.Ball = Util.getIndex(CB_Ball);
|
||||
pk4.Met_Level = Util.ToInt32(TB_MetLevel.Text);
|
||||
pk4.OT_Gender = PKX.getGender(Label_OTGender.Text);
|
||||
pk4.EncounterType = Util.getIndex(CB_EncounterType);
|
||||
pk4.Version = Util.getIndex(CB_GameOrigin);
|
||||
pk4.Language = Util.getIndex(CB_Language);
|
||||
|
||||
// Default Dates
|
||||
int egg_year = 2000;
|
||||
int egg_month = 0;
|
||||
int egg_day = 0;
|
||||
int egg_location = 0;
|
||||
if (CHK_AsEgg.Checked) // If encountered as an egg, load the Egg Met data from fields.
|
||||
{
|
||||
egg_year = CAL_EggDate.Value.Year;
|
||||
egg_month = CAL_EggDate.Value.Month;
|
||||
egg_day = CAL_EggDate.Value.Day;
|
||||
egg_location = Util.getIndex(CB_EggLocation);
|
||||
}
|
||||
// Egg Met Data
|
||||
pk4.Egg_Year = egg_year - 2000;
|
||||
pk4.Egg_Month = egg_month;
|
||||
pk4.Egg_Day = egg_day;
|
||||
pk4.Egg_Location = egg_location;
|
||||
// Met Data
|
||||
pk4.Met_Year = CAL_MetDate.Value.Year - 2000;
|
||||
pk4.Met_Month = CAL_MetDate.Value.Month;
|
||||
pk4.Met_Day = CAL_MetDate.Value.Day;
|
||||
pk4.Met_Location = Util.getIndex(CB_MetLocation);
|
||||
|
||||
if (pk4.IsEgg && pk4.Met_Location == 0) // If still an egg, it has no hatch location/date. Zero it!
|
||||
pk4.Met_Year = pk4.Met_Month = pk4.Met_Day = 0;
|
||||
|
||||
// Toss in Party Stats
|
||||
Array.Resize(ref pk4.Data, pk4.SIZE_PARTY);
|
||||
pk4.Stat_Level = Util.ToInt32(TB_Level.Text);
|
||||
pk4.Stat_HPCurrent = Util.ToInt32(Stat_HP.Text);
|
||||
pk4.Stat_HPMax = Util.ToInt32(Stat_HP.Text);
|
||||
pk4.Stat_ATK = Util.ToInt32(Stat_ATK.Text);
|
||||
pk4.Stat_DEF = Util.ToInt32(Stat_DEF.Text);
|
||||
pk4.Stat_SPE = Util.ToInt32(Stat_SPE.Text);
|
||||
pk4.Stat_SPA = Util.ToInt32(Stat_SPA.Text);
|
||||
pk4.Stat_SPD = Util.ToInt32(Stat_SPD.Text);
|
||||
|
||||
if (HaX)
|
||||
{
|
||||
pk4.Ability = (byte)Util.getIndex(DEV_Ability);
|
||||
pk4.Stat_Level = (byte)Math.Min(Convert.ToInt32(MT_Level.Text), byte.MaxValue);
|
||||
}
|
||||
|
||||
// Fix Moves if a slot is empty
|
||||
pk4.FixMoves();
|
||||
|
||||
pk4.RefreshChecksum();
|
||||
return pk4;
|
||||
}
|
||||
}
|
||||
}
|
||||
259
MainWindow/MainPK5.cs
Normal file
|
|
@ -0,0 +1,259 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public partial class Main
|
||||
{
|
||||
private void populateFieldsPK5()
|
||||
{
|
||||
PK5 pk5 = pkm as PK5;
|
||||
if (pk5 == null)
|
||||
return;
|
||||
|
||||
// Do first
|
||||
pk5.Stat_Level = PKX.getLevel(pk5.Species, pk5.EXP);
|
||||
if (pk5.Stat_Level == 100)
|
||||
pk5.EXP = PKX.getEXP(pk5.Stat_Level, pk5.Species);
|
||||
|
||||
CB_Species.SelectedValue = pk5.Species;
|
||||
TB_Level.Text = pk5.Stat_Level.ToString();
|
||||
TB_EXP.Text = pk5.EXP.ToString();
|
||||
|
||||
// Load rest
|
||||
CHK_Fateful.Checked = pk5.FatefulEncounter;
|
||||
CHK_IsEgg.Checked = pk5.IsEgg;
|
||||
CHK_Nicknamed.Checked = pk5.IsNicknamed;
|
||||
Label_OTGender.Text = gendersymbols[pk5.OT_Gender];
|
||||
Label_OTGender.ForeColor = pk5.OT_Gender == 1 ? Color.Red : Color.Blue;
|
||||
TB_PID.Text = pk5.PID.ToString("X8");
|
||||
CB_HeldItem.SelectedValue = pk5.HeldItem;
|
||||
setAbilityList();
|
||||
CB_Nature.SelectedValue = pk5.Nature;
|
||||
TB_TID.Text = pk5.TID.ToString("00000");
|
||||
TB_SID.Text = pk5.SID.ToString("00000");
|
||||
TB_Nickname.Text = pk5.Nickname;
|
||||
TB_OT.Text = pk5.OT_Name;
|
||||
TB_Friendship.Text = pk5.CurrentFriendship.ToString();
|
||||
if (pk5.CurrentHandler == 1) // HT
|
||||
{
|
||||
GB_nOT.BackgroundImage = mixedHighlight;
|
||||
GB_OT.BackgroundImage = null;
|
||||
}
|
||||
else // = 0
|
||||
{
|
||||
GB_OT.BackgroundImage = mixedHighlight;
|
||||
GB_nOT.BackgroundImage = null;
|
||||
}
|
||||
CB_Language.SelectedValue = pk5.Language;
|
||||
CB_GameOrigin.SelectedValue = pk5.Version;
|
||||
CB_EncounterType.SelectedValue = pk5.Gen4 ? pk5.EncounterType : 0;
|
||||
CB_Ball.SelectedValue = pk5.Ball;
|
||||
|
||||
if (pk5.Met_Month == 0) { pk5.Met_Month = 1; }
|
||||
if (pk5.Met_Day == 0) { pk5.Met_Day = 1; }
|
||||
try { CAL_MetDate.Value = new DateTime(pk5.Met_Year + 2000, pk5.Met_Month, pk5.Met_Day); }
|
||||
catch { CAL_MetDate.Value = new DateTime(2000, 1, 1); }
|
||||
|
||||
if (pk5.Egg_Location != 0)
|
||||
{
|
||||
// Was obtained initially as an egg.
|
||||
CHK_AsEgg.Checked = true;
|
||||
GB_EggConditions.Enabled = true;
|
||||
|
||||
CB_EggLocation.SelectedValue = pk5.Egg_Location;
|
||||
try { CAL_EggDate.Value = new DateTime(pk5.Egg_Year + 2000, pk5.Egg_Month, pk5.Egg_Day); }
|
||||
catch { CAL_MetDate.Value = new DateTime(2000, 1, 1); }
|
||||
}
|
||||
else { CAL_EggDate.Value = new DateTime(2000, 01, 01); CHK_AsEgg.Checked = GB_EggConditions.Enabled = false; CB_EggLocation.SelectedValue = 0; }
|
||||
|
||||
CB_MetLocation.SelectedValue = pk5.Met_Location;
|
||||
|
||||
TB_MetLevel.Text = pk5.Met_Level.ToString();
|
||||
|
||||
// Reset Label and ComboBox visibility, as well as non-data checked status.
|
||||
Label_PKRS.Visible = CB_PKRSStrain.Visible = CHK_Infected.Checked = pk5.PKRS_Strain != 0;
|
||||
Label_PKRSdays.Visible = CB_PKRSDays.Visible = pk5.PKRS_Days != 0;
|
||||
|
||||
// Set SelectedIndexes for PKRS
|
||||
CB_PKRSStrain.SelectedIndex = pk5.PKRS_Strain;
|
||||
CHK_Cured.Checked = pk5.PKRS_Strain > 0 && pk5.PKRS_Days == 0;
|
||||
CB_PKRSDays.SelectedIndex = Math.Min(CB_PKRSDays.Items.Count - 1, pk5.PKRS_Days); // to strip out bad hacked 'rus
|
||||
|
||||
TB_Cool.Text = pk5.CNT_Cool.ToString();
|
||||
TB_Beauty.Text = pk5.CNT_Beauty.ToString();
|
||||
TB_Cute.Text = pk5.CNT_Cute.ToString();
|
||||
TB_Smart.Text = pk5.CNT_Smart.ToString();
|
||||
TB_Tough.Text = pk5.CNT_Tough.ToString();
|
||||
TB_Sheen.Text = pk5.CNT_Sheen.ToString();
|
||||
|
||||
TB_HPIV.Text = pk5.IV_HP.ToString();
|
||||
TB_ATKIV.Text = pk5.IV_ATK.ToString();
|
||||
TB_DEFIV.Text = pk5.IV_DEF.ToString();
|
||||
TB_SPEIV.Text = pk5.IV_SPE.ToString();
|
||||
TB_SPAIV.Text = pk5.IV_SPA.ToString();
|
||||
TB_SPDIV.Text = pk5.IV_SPD.ToString();
|
||||
CB_HPType.SelectedValue = pk5.HPType;
|
||||
|
||||
TB_HPEV.Text = pk5.EV_HP.ToString();
|
||||
TB_ATKEV.Text = pk5.EV_ATK.ToString();
|
||||
TB_DEFEV.Text = pk5.EV_DEF.ToString();
|
||||
TB_SPEEV.Text = pk5.EV_SPE.ToString();
|
||||
TB_SPAEV.Text = pk5.EV_SPA.ToString();
|
||||
TB_SPDEV.Text = pk5.EV_SPD.ToString();
|
||||
|
||||
CB_Move1.SelectedValue = pk5.Move1;
|
||||
CB_Move2.SelectedValue = pk5.Move2;
|
||||
CB_Move3.SelectedValue = pk5.Move3;
|
||||
CB_Move4.SelectedValue = pk5.Move4;
|
||||
CB_PPu1.SelectedIndex = pk5.Move1_PPUps;
|
||||
CB_PPu2.SelectedIndex = pk5.Move2_PPUps;
|
||||
CB_PPu3.SelectedIndex = pk5.Move3_PPUps;
|
||||
CB_PPu4.SelectedIndex = pk5.Move4_PPUps;
|
||||
TB_PP1.Text = pk5.Move1_PP.ToString();
|
||||
TB_PP2.Text = pk5.Move2_PP.ToString();
|
||||
TB_PP3.Text = pk5.Move3_PP.ToString();
|
||||
TB_PP4.Text = pk5.Move4_PP.ToString();
|
||||
|
||||
// Set Form if count is enough, else cap.
|
||||
CB_Form.SelectedIndex = CB_Form.Items.Count > pk5.AltForm ? pk5.AltForm : CB_Form.Items.Count - 1;
|
||||
|
||||
// Load Extrabyte Value
|
||||
TB_ExtraByte.Text = pk5.Data[Convert.ToInt32(CB_ExtraBytes.Text, 16)].ToString();
|
||||
|
||||
updateStats();
|
||||
|
||||
TB_EXP.Text = pk5.EXP.ToString();
|
||||
Label_Gender.Text = gendersymbols[pk5.Gender];
|
||||
Label_Gender.ForeColor = pk5.Gender == 2 ? Label_Species.ForeColor : (pk5.Gender == 1 ? Color.Red : Color.Blue);
|
||||
|
||||
if (HaX)
|
||||
DEV_Ability.SelectedValue = pk5.Ability;
|
||||
else if (pk5.HiddenAbility)
|
||||
CB_Ability.SelectedIndex = CB_Ability.Items.Count - 1;
|
||||
else
|
||||
{
|
||||
int[] abils = SAV.Personal.getAbilities(pk5.Species, pk5.AltForm);
|
||||
int abil = Array.IndexOf(abils, pk5.Ability);
|
||||
CB_Ability.SelectedIndex = abil < 0 || abil >= CB_Ability.Items.Count ? 0 : abil;
|
||||
}
|
||||
}
|
||||
private PKM preparePK5()
|
||||
{
|
||||
PK5 pk5 = pkm as PK5;
|
||||
if (pk5 == null)
|
||||
return null;
|
||||
|
||||
pk5.Species = Util.getIndex(CB_Species);
|
||||
pk5.HeldItem = Util.getIndex(CB_HeldItem);
|
||||
pk5.TID = Util.ToInt32(TB_TID.Text);
|
||||
pk5.SID = Util.ToInt32(TB_SID.Text);
|
||||
pk5.EXP = Util.ToUInt32(TB_EXP.Text);
|
||||
pk5.PID = Util.getHEXval(TB_PID.Text);
|
||||
pk5.Ability = (byte)Util.getIndex(DEV_Ability);
|
||||
pk5.Ability = (byte)Array.IndexOf(abilitylist, CB_Ability.Text.Remove(CB_Ability.Text.Length - 4));
|
||||
|
||||
pk5.Nature = (byte)Util.getIndex(CB_Nature);
|
||||
pk5.FatefulEncounter = CHK_Fateful.Checked;
|
||||
pk5.Gender = PKX.getGender(Label_Gender.Text);
|
||||
pk5.AltForm = (MT_Form.Enabled ? Convert.ToInt32(MT_Form.Text) : CB_Form.Enabled ? CB_Form.SelectedIndex : 0) & 0x1F;
|
||||
pk5.EV_HP = Util.ToInt32(TB_HPEV.Text);
|
||||
pk5.EV_ATK = Util.ToInt32(TB_ATKEV.Text);
|
||||
pk5.EV_DEF = Util.ToInt32(TB_DEFEV.Text);
|
||||
pk5.EV_SPE = Util.ToInt32(TB_SPEEV.Text);
|
||||
pk5.EV_SPA = Util.ToInt32(TB_SPAEV.Text);
|
||||
pk5.EV_SPD = Util.ToInt32(TB_SPDEV.Text);
|
||||
|
||||
pk5.CNT_Cool = Util.ToInt32(TB_Cool.Text);
|
||||
pk5.CNT_Beauty = Util.ToInt32(TB_Beauty.Text);
|
||||
pk5.CNT_Cute = Util.ToInt32(TB_Cute.Text);
|
||||
pk5.CNT_Smart = Util.ToInt32(TB_Smart.Text);
|
||||
pk5.CNT_Tough = Util.ToInt32(TB_Tough.Text);
|
||||
pk5.CNT_Sheen = Util.ToInt32(TB_Sheen.Text);
|
||||
|
||||
pk5.PKRS_Days = CB_PKRSDays.SelectedIndex;
|
||||
pk5.PKRS_Strain = CB_PKRSStrain.SelectedIndex;
|
||||
pk5.Nickname = TB_Nickname.Text;
|
||||
pk5.Move1 = Util.getIndex(CB_Move1);
|
||||
pk5.Move2 = Util.getIndex(CB_Move2);
|
||||
pk5.Move3 = Util.getIndex(CB_Move3);
|
||||
pk5.Move4 = Util.getIndex(CB_Move4);
|
||||
pk5.Move1_PP = Util.getIndex(CB_Move1) > 0 ? Util.ToInt32(TB_PP1.Text) : 0;
|
||||
pk5.Move2_PP = Util.getIndex(CB_Move2) > 0 ? Util.ToInt32(TB_PP2.Text) : 0;
|
||||
pk5.Move3_PP = Util.getIndex(CB_Move3) > 0 ? Util.ToInt32(TB_PP3.Text) : 0;
|
||||
pk5.Move4_PP = Util.getIndex(CB_Move4) > 0 ? Util.ToInt32(TB_PP4.Text) : 0;
|
||||
pk5.Move1_PPUps = Util.getIndex(CB_Move1) > 0 ? CB_PPu1.SelectedIndex : 0;
|
||||
pk5.Move2_PPUps = Util.getIndex(CB_Move2) > 0 ? CB_PPu2.SelectedIndex : 0;
|
||||
pk5.Move3_PPUps = Util.getIndex(CB_Move3) > 0 ? CB_PPu3.SelectedIndex : 0;
|
||||
pk5.Move4_PPUps = Util.getIndex(CB_Move4) > 0 ? CB_PPu4.SelectedIndex : 0;
|
||||
|
||||
pk5.IV_HP = Util.ToInt32(TB_HPIV.Text);
|
||||
pk5.IV_ATK = Util.ToInt32(TB_ATKIV.Text);
|
||||
pk5.IV_DEF = Util.ToInt32(TB_DEFIV.Text);
|
||||
pk5.IV_SPE = Util.ToInt32(TB_SPEIV.Text);
|
||||
pk5.IV_SPA = Util.ToInt32(TB_SPAIV.Text);
|
||||
pk5.IV_SPD = Util.ToInt32(TB_SPDIV.Text);
|
||||
pk5.IsEgg = CHK_IsEgg.Checked;
|
||||
pk5.IsNicknamed = CHK_Nicknamed.Checked;
|
||||
|
||||
pk5.OT_Name = TB_OT.Text;
|
||||
pk5.CurrentFriendship = Util.ToInt32(TB_Friendship.Text);
|
||||
|
||||
// Default Dates
|
||||
int egg_year = 2000;
|
||||
int egg_month = 0;
|
||||
int egg_day = 0;
|
||||
int egg_location = 0;
|
||||
if (CHK_AsEgg.Checked) // If encountered as an egg, load the Egg Met data from fields.
|
||||
{
|
||||
egg_year = CAL_EggDate.Value.Year;
|
||||
egg_month = CAL_EggDate.Value.Month;
|
||||
egg_day = CAL_EggDate.Value.Day;
|
||||
egg_location = Util.getIndex(CB_EggLocation);
|
||||
}
|
||||
// Egg Met Data
|
||||
pk5.Egg_Year = egg_year - 2000;
|
||||
pk5.Egg_Month = egg_month;
|
||||
pk5.Egg_Day = egg_day;
|
||||
pk5.Egg_Location = egg_location;
|
||||
// Met Data
|
||||
pk5.Met_Year = CAL_MetDate.Value.Year - 2000;
|
||||
pk5.Met_Month = CAL_MetDate.Value.Month;
|
||||
pk5.Met_Day = CAL_MetDate.Value.Day;
|
||||
pk5.Met_Location = Util.getIndex(CB_MetLocation);
|
||||
|
||||
if (pk5.IsEgg && pk5.Met_Location == 0) // If still an egg, it has no hatch location/date. Zero it!
|
||||
pk5.Met_Year = pk5.Met_Month = pk5.Met_Day = 0;
|
||||
|
||||
pk5.Ball = Util.getIndex(CB_Ball);
|
||||
pk5.Met_Level = Util.ToInt32(TB_MetLevel.Text);
|
||||
pk5.OT_Gender = PKX.getGender(Label_OTGender.Text);
|
||||
pk5.EncounterType = Util.getIndex(CB_EncounterType);
|
||||
pk5.Version = Util.getIndex(CB_GameOrigin);
|
||||
pk5.Language = Util.getIndex(CB_Language);
|
||||
|
||||
// Toss in Party Stats
|
||||
Array.Resize(ref pk5.Data, pk5.SIZE_PARTY);
|
||||
pk5.Stat_Level = Util.ToInt32(TB_Level.Text);
|
||||
pk5.Stat_HPCurrent = Util.ToInt32(Stat_HP.Text);
|
||||
pk5.Stat_HPMax = Util.ToInt32(Stat_HP.Text);
|
||||
pk5.Stat_ATK = Util.ToInt32(Stat_ATK.Text);
|
||||
pk5.Stat_DEF = Util.ToInt32(Stat_DEF.Text);
|
||||
pk5.Stat_SPE = Util.ToInt32(Stat_SPE.Text);
|
||||
pk5.Stat_SPA = Util.ToInt32(Stat_SPA.Text);
|
||||
pk5.Stat_SPD = Util.ToInt32(Stat_SPD.Text);
|
||||
|
||||
if (HaX)
|
||||
{
|
||||
pk5.Ability = (byte)Util.getIndex(DEV_Ability);
|
||||
pk5.Stat_Level = (byte)Math.Min(Convert.ToInt32(MT_Level.Text), byte.MaxValue);
|
||||
}
|
||||
|
||||
// Fix Moves if a slot is empty
|
||||
pk5.FixMoves();
|
||||
|
||||
pk5.RefreshChecksum();
|
||||
return pk5;
|
||||
}
|
||||
}
|
||||
}
|
||||
341
MainWindow/MainPK6.cs
Normal file
|
|
@ -0,0 +1,341 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public partial class Main
|
||||
{
|
||||
private void populateFieldsPK6()
|
||||
{
|
||||
PK6 pk6 = pkm as PK6;
|
||||
if (pk6 == null)
|
||||
return;
|
||||
|
||||
// Do first
|
||||
pk6.Stat_Level = PKX.getLevel(pk6.Species, pk6.EXP);
|
||||
if (pk6.Stat_Level == 100)
|
||||
pk6.EXP = PKX.getEXP(pk6.Stat_Level, pk6.Species);
|
||||
|
||||
CB_Species.SelectedValue = pk6.Species;
|
||||
TB_Level.Text = pk6.Stat_Level.ToString();
|
||||
TB_EXP.Text = pk6.EXP.ToString();
|
||||
|
||||
// Load rest
|
||||
TB_EC.Text = pk6.EncryptionConstant.ToString("X8");
|
||||
CHK_Fateful.Checked = pk6.FatefulEncounter;
|
||||
CHK_IsEgg.Checked = pk6.IsEgg;
|
||||
CHK_Nicknamed.Checked = pk6.IsNicknamed;
|
||||
Label_OTGender.Text = gendersymbols[pk6.OT_Gender];
|
||||
Label_OTGender.ForeColor = pk6.OT_Gender == 1 ? Color.Red : Color.Blue;
|
||||
TB_PID.Text = pk6.PID.ToString("X8");
|
||||
CB_HeldItem.SelectedValue = pk6.HeldItem;
|
||||
setAbilityList();
|
||||
TB_AbilityNumber.Text = pk6.AbilityNumber.ToString();
|
||||
CB_Ability.SelectedIndex = pk6.AbilityNumber < 6 ? pk6.AbilityNumber >> 1 : 0; // with some simple error handling
|
||||
CB_Nature.SelectedValue = pk6.Nature;
|
||||
TB_TID.Text = pk6.TID.ToString("00000");
|
||||
TB_SID.Text = pk6.SID.ToString("00000");
|
||||
TB_Nickname.Text = pk6.Nickname;
|
||||
TB_OT.Text = pk6.OT_Name;
|
||||
TB_OTt2.Text = pk6.HT_Name;
|
||||
TB_Friendship.Text = pk6.CurrentFriendship.ToString();
|
||||
if (pk6.CurrentHandler == 1) // HT
|
||||
{
|
||||
GB_nOT.BackgroundImage = mixedHighlight;
|
||||
GB_OT.BackgroundImage = null;
|
||||
}
|
||||
else // = 0
|
||||
{
|
||||
GB_OT.BackgroundImage = mixedHighlight;
|
||||
GB_nOT.BackgroundImage = null;
|
||||
}
|
||||
CB_Language.SelectedValue = pk6.Language;
|
||||
CB_Country.SelectedValue = pk6.Country;
|
||||
CB_SubRegion.SelectedValue = pk6.Region;
|
||||
CB_3DSReg.SelectedValue = pk6.ConsoleRegion;
|
||||
CB_GameOrigin.SelectedValue = pk6.Version;
|
||||
CB_EncounterType.SelectedValue = pk6.Gen4 ? pk6.EncounterType : 0;
|
||||
CB_Ball.SelectedValue = pk6.Ball;
|
||||
|
||||
if (pk6.Met_Month == 0) { pk6.Met_Month = 1; }
|
||||
if (pk6.Met_Day == 0) { pk6.Met_Day = 1; }
|
||||
try { CAL_MetDate.Value = new DateTime(pk6.Met_Year + 2000, pk6.Met_Month, pk6.Met_Day); }
|
||||
catch { CAL_MetDate.Value = new DateTime(2000, 1, 1); }
|
||||
|
||||
if (pk6.Egg_Location != 0)
|
||||
{
|
||||
// Was obtained initially as an egg.
|
||||
CHK_AsEgg.Checked = true;
|
||||
GB_EggConditions.Enabled = true;
|
||||
|
||||
CB_EggLocation.SelectedValue = pk6.Egg_Location;
|
||||
try { CAL_EggDate.Value = new DateTime(pk6.Egg_Year + 2000, pk6.Egg_Month, pk6.Egg_Day); }
|
||||
catch { CAL_MetDate.Value = new DateTime(2000, 1, 1); }
|
||||
}
|
||||
else { CAL_EggDate.Value = new DateTime(2000, 01, 01); CHK_AsEgg.Checked = GB_EggConditions.Enabled = false; CB_EggLocation.SelectedValue = 0; }
|
||||
|
||||
CB_MetLocation.SelectedValue = pk6.Met_Location;
|
||||
|
||||
// Set CT Gender to None if no CT, else set to gender symbol.
|
||||
Label_CTGender.Text = pk6.HT_Name == "" ? "" : gendersymbols[pk6.HT_Gender % 2];
|
||||
Label_CTGender.ForeColor = pk6.HT_Gender == 1 ? Color.Red : Color.Blue;
|
||||
|
||||
TB_MetLevel.Text = pk6.Met_Level.ToString();
|
||||
|
||||
// Reset Label and ComboBox visibility, as well as non-data checked status.
|
||||
Label_PKRS.Visible = CB_PKRSStrain.Visible = CHK_Infected.Checked = pk6.PKRS_Strain != 0;
|
||||
Label_PKRSdays.Visible = CB_PKRSDays.Visible = pk6.PKRS_Days != 0;
|
||||
|
||||
// Set SelectedIndexes for PKRS
|
||||
CB_PKRSStrain.SelectedIndex = pk6.PKRS_Strain;
|
||||
CHK_Cured.Checked = pk6.PKRS_Strain > 0 && pk6.PKRS_Days == 0;
|
||||
CB_PKRSDays.SelectedIndex = Math.Min(CB_PKRSDays.Items.Count - 1, pk6.PKRS_Days); // to strip out bad hacked 'rus
|
||||
|
||||
TB_Cool.Text = pk6.CNT_Cool.ToString();
|
||||
TB_Beauty.Text = pk6.CNT_Beauty.ToString();
|
||||
TB_Cute.Text = pk6.CNT_Cute.ToString();
|
||||
TB_Smart.Text = pk6.CNT_Smart.ToString();
|
||||
TB_Tough.Text = pk6.CNT_Tough.ToString();
|
||||
TB_Sheen.Text = pk6.CNT_Sheen.ToString();
|
||||
|
||||
TB_HPIV.Text = pk6.IV_HP.ToString();
|
||||
TB_ATKIV.Text = pk6.IV_ATK.ToString();
|
||||
TB_DEFIV.Text = pk6.IV_DEF.ToString();
|
||||
TB_SPEIV.Text = pk6.IV_SPE.ToString();
|
||||
TB_SPAIV.Text = pk6.IV_SPA.ToString();
|
||||
TB_SPDIV.Text = pk6.IV_SPD.ToString();
|
||||
CB_HPType.SelectedValue = pk6.HPType;
|
||||
|
||||
TB_HPEV.Text = pk6.EV_HP.ToString();
|
||||
TB_ATKEV.Text = pk6.EV_ATK.ToString();
|
||||
TB_DEFEV.Text = pk6.EV_DEF.ToString();
|
||||
TB_SPEEV.Text = pk6.EV_SPE.ToString();
|
||||
TB_SPAEV.Text = pk6.EV_SPA.ToString();
|
||||
TB_SPDEV.Text = pk6.EV_SPD.ToString();
|
||||
|
||||
CB_Move1.SelectedValue = pk6.Move1;
|
||||
CB_Move2.SelectedValue = pk6.Move2;
|
||||
CB_Move3.SelectedValue = pk6.Move3;
|
||||
CB_Move4.SelectedValue = pk6.Move4;
|
||||
CB_RelearnMove1.SelectedValue = pk6.RelearnMove1;
|
||||
CB_RelearnMove2.SelectedValue = pk6.RelearnMove2;
|
||||
CB_RelearnMove3.SelectedValue = pk6.RelearnMove3;
|
||||
CB_RelearnMove4.SelectedValue = pk6.RelearnMove4;
|
||||
CB_PPu1.SelectedIndex = pk6.Move1_PPUps;
|
||||
CB_PPu2.SelectedIndex = pk6.Move2_PPUps;
|
||||
CB_PPu3.SelectedIndex = pk6.Move3_PPUps;
|
||||
CB_PPu4.SelectedIndex = pk6.Move4_PPUps;
|
||||
TB_PP1.Text = pk6.Move1_PP.ToString();
|
||||
TB_PP2.Text = pk6.Move2_PP.ToString();
|
||||
TB_PP3.Text = pk6.Move3_PP.ToString();
|
||||
TB_PP4.Text = pk6.Move4_PP.ToString();
|
||||
|
||||
// Set Form if count is enough, else cap.
|
||||
CB_Form.SelectedIndex = CB_Form.Items.Count > pk6.AltForm ? pk6.AltForm : CB_Form.Items.Count - 1;
|
||||
|
||||
// Load Extrabyte Value
|
||||
TB_ExtraByte.Text = pk6.Data[Convert.ToInt32(CB_ExtraBytes.Text, 16)].ToString();
|
||||
|
||||
updateStats();
|
||||
|
||||
TB_EXP.Text = pk6.EXP.ToString();
|
||||
Label_Gender.Text = gendersymbols[pk6.Gender];
|
||||
Label_Gender.ForeColor = pk6.Gender == 2 ? Label_Species.ForeColor : (pk6.Gender == 1 ? Color.Red : Color.Blue);
|
||||
|
||||
// Highlight the Current Handler
|
||||
clickGT(pk6.CurrentHandler == 1 ? GB_nOT : GB_OT, null);
|
||||
|
||||
if (HaX)
|
||||
DEV_Ability.SelectedValue = pk6.Ability;
|
||||
}
|
||||
private PKM preparePK6()
|
||||
{
|
||||
PK6 pk6 = pkm as PK6;
|
||||
if (pk6 == null)
|
||||
return null;
|
||||
|
||||
// Repopulate PK6 with Edited Stuff
|
||||
if (Util.getIndex(CB_GameOrigin) < 24)
|
||||
{
|
||||
uint EC = Util.getHEXval(TB_EC.Text);
|
||||
uint PID = Util.getHEXval(TB_PID.Text);
|
||||
uint SID = Util.ToUInt32(TB_TID.Text);
|
||||
uint TID = Util.ToUInt32(TB_TID.Text);
|
||||
uint LID = PID & 0xFFFF;
|
||||
uint HID = PID >> 16;
|
||||
uint XOR = TID ^ LID ^ SID ^ HID;
|
||||
|
||||
// Ensure we don't have a shiny.
|
||||
if (XOR >> 3 == 1) // Illegal, fix. (not 16<XOR>=8)
|
||||
{
|
||||
// Keep as shiny, so we have to mod the PID
|
||||
PID ^= XOR;
|
||||
TB_PID.Text = PID.ToString("X8");
|
||||
TB_EC.Text = PID.ToString("X8");
|
||||
}
|
||||
else if ((XOR ^ 0x8000) >> 3 == 1 && PID != EC)
|
||||
TB_EC.Text = (PID ^ 0x80000000).ToString("X8");
|
||||
else // Not Illegal, no fix.
|
||||
TB_EC.Text = PID.ToString("X8");
|
||||
}
|
||||
|
||||
pk6.EncryptionConstant = Util.getHEXval(TB_EC.Text);
|
||||
pk6.Checksum = 0; // 0 CHK for now
|
||||
|
||||
// Block A
|
||||
pk6.Species = Util.getIndex(CB_Species);
|
||||
pk6.HeldItem = Util.getIndex(CB_HeldItem);
|
||||
pk6.TID = Util.ToInt32(TB_TID.Text);
|
||||
pk6.SID = Util.ToInt32(TB_SID.Text);
|
||||
pk6.EXP = Util.ToUInt32(TB_EXP.Text);
|
||||
pk6.Ability = (byte)Array.IndexOf(abilitylist, CB_Ability.Text.Remove(CB_Ability.Text.Length - 4));
|
||||
pk6.AbilityNumber = Util.ToInt32(TB_AbilityNumber.Text); // Number
|
||||
// pkx[0x16], pkx[0x17] are handled by the Medals UI (Hits & Training Bag)
|
||||
pk6.PID = Util.getHEXval(TB_PID.Text);
|
||||
pk6.Nature = (byte)Util.getIndex(CB_Nature);
|
||||
pk6.FatefulEncounter = CHK_Fateful.Checked;
|
||||
pk6.Gender = PKX.getGender(Label_Gender.Text);
|
||||
pk6.AltForm = (MT_Form.Enabled ? Convert.ToInt32(MT_Form.Text) : CB_Form.Enabled ? CB_Form.SelectedIndex : 0) & 0x1F;
|
||||
pk6.EV_HP = Util.ToInt32(TB_HPEV.Text); // EVs
|
||||
pk6.EV_ATK = Util.ToInt32(TB_ATKEV.Text);
|
||||
pk6.EV_DEF = Util.ToInt32(TB_DEFEV.Text);
|
||||
pk6.EV_SPE = Util.ToInt32(TB_SPEEV.Text);
|
||||
pk6.EV_SPA = Util.ToInt32(TB_SPAEV.Text);
|
||||
pk6.EV_SPD = Util.ToInt32(TB_SPDEV.Text);
|
||||
|
||||
pk6.CNT_Cool = Util.ToInt32(TB_Cool.Text); // CNT
|
||||
pk6.CNT_Beauty = Util.ToInt32(TB_Beauty.Text);
|
||||
pk6.CNT_Cute = Util.ToInt32(TB_Cute.Text);
|
||||
pk6.CNT_Smart = Util.ToInt32(TB_Smart.Text);
|
||||
pk6.CNT_Tough = Util.ToInt32(TB_Tough.Text);
|
||||
pk6.CNT_Sheen = Util.ToInt32(TB_Sheen.Text);
|
||||
|
||||
pk6.PKRS_Days = CB_PKRSDays.SelectedIndex;
|
||||
pk6.PKRS_Strain = CB_PKRSStrain.SelectedIndex;
|
||||
// Already in buff (then transferred to new pkx)
|
||||
// 0x2C, 0x2D, 0x2E, 0x2F
|
||||
// 0x30, 0x31, 0x32, 0x33
|
||||
// 0x34, 0x35, 0x36, 0x37
|
||||
// 0x38, 0x39
|
||||
|
||||
// Unused
|
||||
// 0x3A, 0x3B
|
||||
// 0x3C, 0x3D, 0x3E, 0x3F
|
||||
|
||||
// Block B
|
||||
// Convert Nickname field back to bytes
|
||||
pk6.Nickname = TB_Nickname.Text;
|
||||
pk6.Move1 = Util.getIndex(CB_Move1);
|
||||
pk6.Move2 = Util.getIndex(CB_Move2);
|
||||
pk6.Move3 = Util.getIndex(CB_Move3);
|
||||
pk6.Move4 = Util.getIndex(CB_Move4);
|
||||
pk6.Move1_PP = Util.getIndex(CB_Move1) > 0 ? Util.ToInt32(TB_PP1.Text) : 0;
|
||||
pk6.Move2_PP = Util.getIndex(CB_Move2) > 0 ? Util.ToInt32(TB_PP2.Text) : 0;
|
||||
pk6.Move3_PP = Util.getIndex(CB_Move3) > 0 ? Util.ToInt32(TB_PP3.Text) : 0;
|
||||
pk6.Move4_PP = Util.getIndex(CB_Move4) > 0 ? Util.ToInt32(TB_PP4.Text) : 0;
|
||||
pk6.Move1_PPUps = Util.getIndex(CB_Move1) > 0 ? CB_PPu1.SelectedIndex : 0;
|
||||
pk6.Move2_PPUps = Util.getIndex(CB_Move2) > 0 ? CB_PPu2.SelectedIndex : 0;
|
||||
pk6.Move3_PPUps = Util.getIndex(CB_Move3) > 0 ? CB_PPu3.SelectedIndex : 0;
|
||||
pk6.Move4_PPUps = Util.getIndex(CB_Move4) > 0 ? CB_PPu4.SelectedIndex : 0;
|
||||
pk6.RelearnMove1 = Util.getIndex(CB_RelearnMove1);
|
||||
pk6.RelearnMove2 = Util.getIndex(CB_RelearnMove2);
|
||||
pk6.RelearnMove3 = Util.getIndex(CB_RelearnMove3);
|
||||
pk6.RelearnMove4 = Util.getIndex(CB_RelearnMove4);
|
||||
// 0x72 - Ribbon editor sets this flag (Secret Super Training)
|
||||
// 0x73
|
||||
pk6.IV_HP = Util.ToInt32(TB_HPIV.Text);
|
||||
pk6.IV_ATK = Util.ToInt32(TB_ATKIV.Text);
|
||||
pk6.IV_DEF = Util.ToInt32(TB_DEFIV.Text);
|
||||
pk6.IV_SPE = Util.ToInt32(TB_SPEIV.Text);
|
||||
pk6.IV_SPA = Util.ToInt32(TB_SPAIV.Text);
|
||||
pk6.IV_SPD = Util.ToInt32(TB_SPDIV.Text);
|
||||
pk6.IsEgg = CHK_IsEgg.Checked;
|
||||
pk6.IsNicknamed = CHK_Nicknamed.Checked;
|
||||
|
||||
// Block C
|
||||
pk6.HT_Name = TB_OTt2.Text;
|
||||
|
||||
// 0x90-0xAF
|
||||
pk6.HT_Gender = PKX.getGender(Label_CTGender.Text);
|
||||
// Plus more, set by MemoryAmie (already in buff)
|
||||
|
||||
// Block D
|
||||
pk6.OT_Name = TB_OT.Text;
|
||||
pk6.CurrentFriendship = Util.ToInt32(TB_Friendship.Text);
|
||||
|
||||
int egg_year = 2000; // Default Dates
|
||||
int egg_month = 0;
|
||||
int egg_day = 0;
|
||||
int egg_location = 0;
|
||||
if (CHK_AsEgg.Checked) // If encountered as an egg, load the Egg Met data from fields.
|
||||
{
|
||||
egg_year = CAL_EggDate.Value.Year;
|
||||
egg_month = CAL_EggDate.Value.Month;
|
||||
egg_day = CAL_EggDate.Value.Day;
|
||||
egg_location = Util.getIndex(CB_EggLocation);
|
||||
}
|
||||
// Egg Met Data
|
||||
pk6.Egg_Year = egg_year - 2000;
|
||||
pk6.Egg_Month = egg_month;
|
||||
pk6.Egg_Day = egg_day;
|
||||
pk6.Egg_Location = egg_location;
|
||||
// Met Data
|
||||
pk6.Met_Year = CAL_MetDate.Value.Year - 2000;
|
||||
pk6.Met_Month = CAL_MetDate.Value.Month;
|
||||
pk6.Met_Day = CAL_MetDate.Value.Day;
|
||||
pk6.Met_Location = Util.getIndex(CB_MetLocation);
|
||||
|
||||
if (pk6.IsEgg && pk6.Met_Location == 0) // If still an egg, it has no hatch location/date. Zero it!
|
||||
pk6.Met_Year = pk6.Met_Month = pk6.Met_Day = 0;
|
||||
|
||||
// 0xD7 Unknown
|
||||
|
||||
pk6.Ball = Util.getIndex(CB_Ball);
|
||||
pk6.Met_Level = Util.ToInt32(TB_MetLevel.Text);
|
||||
pk6.OT_Gender = PKX.getGender(Label_OTGender.Text);
|
||||
pk6.EncounterType = Util.getIndex(CB_EncounterType);
|
||||
pk6.Version = Util.getIndex(CB_GameOrigin);
|
||||
pk6.Country = Util.getIndex(CB_Country);
|
||||
pk6.Region = Util.getIndex(CB_SubRegion);
|
||||
pk6.ConsoleRegion = Util.getIndex(CB_3DSReg);
|
||||
pk6.Language = Util.getIndex(CB_Language);
|
||||
// 0xE4-0xE7
|
||||
|
||||
// Toss in Party Stats
|
||||
Array.Resize(ref pk6.Data, pk6.SIZE_PARTY);
|
||||
pk6.Stat_Level = Util.ToInt32(TB_Level.Text);
|
||||
pk6.Stat_HPCurrent = Util.ToInt32(Stat_HP.Text);
|
||||
pk6.Stat_HPMax = Util.ToInt32(Stat_HP.Text);
|
||||
pk6.Stat_ATK = Util.ToInt32(Stat_ATK.Text);
|
||||
pk6.Stat_DEF = Util.ToInt32(Stat_DEF.Text);
|
||||
pk6.Stat_SPE = Util.ToInt32(Stat_SPE.Text);
|
||||
pk6.Stat_SPA = Util.ToInt32(Stat_SPA.Text);
|
||||
pk6.Stat_SPD = Util.ToInt32(Stat_SPD.Text);
|
||||
|
||||
// Unneeded Party Stats (Status, Flags, Unused)
|
||||
pk6.Data[0xE8] = pk6.Data[0xE9] = pk6.Data[0xEA] = pk6.Data[0xEB] =
|
||||
pk6.Data[0xED] = pk6.Data[0xEE] = pk6.Data[0xEF] =
|
||||
pk6.Data[0xFE] = pk6.Data[0xFF] = pk6.Data[0x100] =
|
||||
pk6.Data[0x101] = pk6.Data[0x102] = pk6.Data[0x103] = 0;
|
||||
|
||||
// Hax Illegality
|
||||
if (HaX)
|
||||
{
|
||||
pk6.Ability = (byte)Util.getIndex(DEV_Ability);
|
||||
pk6.Stat_Level = (byte)Math.Min(Convert.ToInt32(MT_Level.Text), byte.MaxValue);
|
||||
}
|
||||
|
||||
// Fix Moves if a slot is empty
|
||||
pk6.FixMoves();
|
||||
pk6.FixRelearn();
|
||||
|
||||
// Fix Handler (Memories & OT) -- no foreign memories for Pokemon without a foreign trainer (none for eggs)
|
||||
if (Menu_ModifyPKM.Checked)
|
||||
pk6.FixMemories();
|
||||
|
||||
// PKX is now filled
|
||||
pk6.RefreshChecksum();
|
||||
return pk6;
|
||||
}
|
||||
}
|
||||
}
|
||||
8
Misc/ComboItem.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace PKHeX
|
||||
{
|
||||
public class ComboItem
|
||||
{
|
||||
public string Text { get; set; }
|
||||
public int Value { get; set; }
|
||||
}
|
||||
}
|
||||
489
Misc/Util.cs
|
|
@ -1,489 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.Drawing.Imaging;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class Util
|
||||
{
|
||||
// Image Layering/Blending Utility
|
||||
internal static Bitmap LayerImage(Image baseLayer, Image overLayer, int x, int y, double trans)
|
||||
{
|
||||
Bitmap img = new Bitmap(baseLayer.Width, baseLayer.Height);
|
||||
using (Graphics gr = Graphics.FromImage(img))
|
||||
{
|
||||
gr.DrawImage(baseLayer, new Point(0, 0));
|
||||
Bitmap o = ChangeOpacity(overLayer, trans);
|
||||
gr.DrawImage(o, new Rectangle(x, y, overLayer.Width, overLayer.Height));
|
||||
}
|
||||
return img;
|
||||
}
|
||||
internal static Bitmap ChangeOpacity(Image img, double trans)
|
||||
{
|
||||
if (img == null)
|
||||
return null;
|
||||
if (img.PixelFormat.HasFlag(PixelFormat.Indexed))
|
||||
return (Bitmap)img;
|
||||
|
||||
Bitmap bmp = (Bitmap)img.Clone();
|
||||
BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb);
|
||||
IntPtr ptr = bmpData.Scan0;
|
||||
|
||||
int len = bmp.Width*bmp.Height*4;
|
||||
byte[] data = new byte[len];
|
||||
|
||||
Marshal.Copy(ptr, data, 0, len);
|
||||
|
||||
for (int i = 0; i < data.Length; i += 4)
|
||||
data[i + 3] = (byte)(data[i + 3] * trans);
|
||||
|
||||
Marshal.Copy(data, 0, ptr, len);
|
||||
bmp.UnlockBits(bmpData);
|
||||
|
||||
return bmp;
|
||||
}
|
||||
|
||||
// Strings and Paths
|
||||
internal static string NormalizePath(string path)
|
||||
{
|
||||
return Path.GetFullPath(new Uri(path).LocalPath)
|
||||
.TrimEnd(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar);
|
||||
}
|
||||
internal static string GetTempFolder()
|
||||
{
|
||||
return Path.Combine(Path.GetTempPath(), "3DSSE");
|
||||
}
|
||||
internal static string GetCacheFolder()
|
||||
{
|
||||
return Path.Combine(GetBackupLocation(), "cache");
|
||||
}
|
||||
internal static string GetRegistryValue(string key)
|
||||
{
|
||||
Microsoft.Win32.RegistryKey currentUser = Microsoft.Win32.Registry.CurrentUser;
|
||||
Microsoft.Win32.RegistryKey key3 = currentUser.OpenSubKey(GetRegistryBase());
|
||||
if (key3 == null)
|
||||
return null;
|
||||
|
||||
string str = key3.GetValue(key) as string;
|
||||
key3.Close();
|
||||
currentUser.Close();
|
||||
return str;
|
||||
}
|
||||
internal static string GetRegistryBase()
|
||||
{
|
||||
return @"SOFTWARE\CYBER Gadget\3DSSaveEditor";
|
||||
}
|
||||
internal static string GetBackupLocation()
|
||||
{
|
||||
string registryValue = GetRegistryValue("Location");
|
||||
if (!string.IsNullOrEmpty(registryValue))
|
||||
{
|
||||
Directory.CreateDirectory(registryValue);
|
||||
return registryValue;
|
||||
}
|
||||
string path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "3DSSaveBank");
|
||||
Directory.CreateDirectory(path);
|
||||
return path;
|
||||
}
|
||||
internal static string get3DSLocation()
|
||||
{
|
||||
try
|
||||
{
|
||||
string[] DriveList = Environment.GetLogicalDrives();
|
||||
for (int i = 1; i < DriveList.Length; i++) // Skip first drive (some users still have floppy drives and would chew up time!)
|
||||
{
|
||||
string potentialPath = Path.Combine(DriveList[i], "Nintendo 3DS");
|
||||
if (Directory.Exists(potentialPath))
|
||||
return potentialPath;
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
return null;
|
||||
}
|
||||
internal static string GetSDFLocation()
|
||||
{
|
||||
try
|
||||
{
|
||||
// Start by checking if the 3DS file path exists or not.
|
||||
string path_SDF = null;
|
||||
string[] DriveList = Environment.GetLogicalDrives();
|
||||
for (int i = 1; i < DriveList.Length; i++) // Skip first drive (some users still have floppy drives and would chew up time!)
|
||||
{
|
||||
string potentialPath_SDF = NormalizePath(Path.Combine(DriveList[i], "filer", "UserSaveData"));
|
||||
if (!Directory.Exists(potentialPath_SDF)) continue;
|
||||
|
||||
path_SDF = potentialPath_SDF; break;
|
||||
}
|
||||
if (path_SDF == null)
|
||||
return null;
|
||||
// 3DS data found in SD card reader. Let's get the title folder location!
|
||||
string[] folders = Directory.GetDirectories(path_SDF, "*", SearchOption.TopDirectoryOnly);
|
||||
Array.Sort(folders); // Don't need Modified Date, sort by path names just in case.
|
||||
|
||||
// Loop through all the folders in the Nintendo 3DS folder to see if any of them contain 'title'.
|
||||
for (int i = folders.Length - 1; i >= 0; i--)
|
||||
{
|
||||
if (File.Exists(Path.Combine(folders[i], "000011c4", "main"))) return Path.Combine(folders[i], "000011c4"); // OR
|
||||
if (File.Exists(Path.Combine(folders[i], "000011c5", "main"))) return Path.Combine(folders[i], "000011c5"); // AS
|
||||
if (File.Exists(Path.Combine(folders[i], "0000055d", "main"))) return Path.Combine(folders[i], "0000055d"); // X
|
||||
if (File.Exists(Path.Combine(folders[i], "0000055e", "main"))) return Path.Combine(folders[i], "0000055e"); // Y
|
||||
}
|
||||
return null; // Fallthrough
|
||||
}
|
||||
catch { return null; }
|
||||
}
|
||||
internal static string CleanFileName(string fileName)
|
||||
{
|
||||
return Path.GetInvalidFileNameChars().Aggregate(fileName, (current, c) => current.Replace(c.ToString(), string.Empty));
|
||||
}
|
||||
internal static string TrimFromZero(string input)
|
||||
{
|
||||
int index = input.IndexOf('\0');
|
||||
return index < 0 ? input : input.Substring(0, index);
|
||||
}
|
||||
internal static string[] getStringList(string f)
|
||||
{
|
||||
object txt = Properties.Resources.ResourceManager.GetObject(f); // Fetch File, \n to list.
|
||||
if (txt == null) return new string[0];
|
||||
string[] rawlist = ((string)txt).Split('\n');
|
||||
for (int i = 0; i < rawlist.Length; i++)
|
||||
rawlist[i] = rawlist[i].Trim();
|
||||
return rawlist;
|
||||
}
|
||||
internal static string[] getStringList(string f, string l)
|
||||
{
|
||||
object txt = Properties.Resources.ResourceManager.GetObject("text_" + f + "_" + l); // Fetch File, \n to list.
|
||||
if (txt == null) return new string[0];
|
||||
string[] rawlist = ((string)txt).Split('\n');
|
||||
for (int i = 0; i < rawlist.Length; i++)
|
||||
rawlist[i] = rawlist[i].Trim();
|
||||
return rawlist;
|
||||
}
|
||||
internal static string[] getNulledStringArray(string[] SimpleStringList)
|
||||
{
|
||||
try
|
||||
{
|
||||
string[] newlist = new string[ToInt32(SimpleStringList[SimpleStringList.Length - 1].Split(',')[0]) + 1];
|
||||
for (int i = 1; i < SimpleStringList.Length; i++)
|
||||
newlist[ToInt32(SimpleStringList[i].Split(',')[0])] = SimpleStringList[i].Split(',')[1];
|
||||
return newlist;
|
||||
}
|
||||
catch { return null; }
|
||||
}
|
||||
|
||||
// Randomization
|
||||
internal static readonly Random rand = new Random();
|
||||
internal static uint rnd32()
|
||||
{
|
||||
return (uint)rand.Next(1 << 30) << 2 | (uint)rand.Next(1 << 2);
|
||||
}
|
||||
|
||||
// Data Retrieval
|
||||
internal static int ToInt32(string value)
|
||||
{
|
||||
string val = value?.Replace(" ", "").Replace("_", "").Trim();
|
||||
return string.IsNullOrWhiteSpace(val) ? 0 : int.Parse(val);
|
||||
}
|
||||
internal static uint ToUInt32(string value)
|
||||
{
|
||||
string val = value?.Replace(" ", "").Replace("_", "").Trim();
|
||||
return string.IsNullOrWhiteSpace(val) ? 0 : uint.Parse(val);
|
||||
}
|
||||
internal static uint getHEXval(string s)
|
||||
{
|
||||
string str = getOnlyHex(s);
|
||||
return string.IsNullOrWhiteSpace(str) ? 0 : Convert.ToUInt32(str, 16);
|
||||
}
|
||||
internal static int getIndex(ComboBox cb)
|
||||
{
|
||||
return (int)(cb?.SelectedValue ?? 0);
|
||||
}
|
||||
internal static string getOnlyHex(string s)
|
||||
{
|
||||
return string.IsNullOrWhiteSpace(s) ? "0" : s.Select(char.ToUpper).Where("0123456789ABCDEF".Contains).Aggregate("", (str, c) => str + c);
|
||||
}
|
||||
|
||||
// Data Manipulation
|
||||
internal static void Shuffle<T>(T[] array)
|
||||
{
|
||||
int n = array.Length;
|
||||
for (int i = 0; i < n; i++)
|
||||
{
|
||||
int r = i + (int)(rand.NextDouble() * (n - i));
|
||||
T t = array[r];
|
||||
array[r] = array[i];
|
||||
array[i] = t;
|
||||
}
|
||||
}
|
||||
|
||||
// Form Translation
|
||||
internal static void TranslateInterface(Control form, string lang)
|
||||
{
|
||||
// Check to see if a the translation file exists in the same folder as the executable
|
||||
string externalLangPath = "lang_" + lang + ".txt";
|
||||
string[] rawlist;
|
||||
if (File.Exists(externalLangPath))
|
||||
rawlist = File.ReadAllLines(externalLangPath);
|
||||
else
|
||||
{
|
||||
object txt = Properties.Resources.ResourceManager.GetObject("lang_" + lang);
|
||||
if (txt == null) return; // Translation file does not exist as a resource; abort this function and don't translate UI.
|
||||
rawlist = ((string)txt).Split(new[] { "\n" }, StringSplitOptions.None);
|
||||
rawlist = rawlist.Select(i => i.Trim()).ToArray(); // Remove trailing spaces
|
||||
}
|
||||
|
||||
List<string> stringdata = new List<string>();
|
||||
int start = -1;
|
||||
for (int i = 0; i < rawlist.Length; i++)
|
||||
{
|
||||
// Find our starting point
|
||||
if (!rawlist[i].Contains("! " + form.Name)) continue;
|
||||
start = i;
|
||||
break;
|
||||
}
|
||||
if (start < 0)
|
||||
return;
|
||||
|
||||
// Rename Window Title
|
||||
string[] WindowName = rawlist[start].Split(new[] {" = "}, StringSplitOptions.None);
|
||||
if (WindowName.Length > 1) form.Text = WindowName[1];
|
||||
|
||||
// Fetch controls to rename
|
||||
for (int i = start + 1; i < rawlist.Length; i++)
|
||||
{
|
||||
if (rawlist[i].Length == 0) continue; // Skip Over Empty Lines, errhandled
|
||||
if (rawlist[i][0] == '-') continue; // Keep translating if line is a comment line
|
||||
if (rawlist[i][0] == '!') // Stop if we have reached the end of translation
|
||||
break;
|
||||
stringdata.Add(rawlist[i]); // Add the entry to process later.
|
||||
}
|
||||
|
||||
if (stringdata.Count == 0)
|
||||
return;
|
||||
|
||||
// Find control then change display Text.
|
||||
foreach (string str in stringdata)
|
||||
{
|
||||
string[] SplitString = str.Split(new[] {" = "}, StringSplitOptions.None);
|
||||
if (SplitString.Length < 2)
|
||||
continue;
|
||||
|
||||
object c = FindControl(SplitString[0], form.Controls); // Find control within Form's controls
|
||||
if (c == null) // Not found
|
||||
continue;
|
||||
|
||||
string text = SplitString[1]; // Text to set Control.Text to...
|
||||
|
||||
if (c is Control)
|
||||
(c as Control).Text = text;
|
||||
else if (c is ToolStripItem)
|
||||
(c as ToolStripItem).Text = text;
|
||||
}
|
||||
}
|
||||
private static object FindControl(string name, Control.ControlCollection c)
|
||||
{
|
||||
Control control = c.Find(name, true).FirstOrDefault();
|
||||
if (control != null)
|
||||
return control;
|
||||
foreach (MenuStrip menu in c.OfType<MenuStrip>())
|
||||
{
|
||||
var item = menu.Items.Find(name, true).FirstOrDefault();
|
||||
if (item != null)
|
||||
return item;
|
||||
}
|
||||
foreach (ContextMenuStrip strip in FindContextMenuStrips(c.OfType<Control>()))
|
||||
{
|
||||
var item = strip.Items.Find(name, true).FirstOrDefault();
|
||||
if (item != null)
|
||||
return item;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
private static List<ContextMenuStrip> FindContextMenuStrips(IEnumerable<Control> c)
|
||||
{
|
||||
List<ContextMenuStrip> cs = new List<ContextMenuStrip>();
|
||||
foreach (Control control in c)
|
||||
{
|
||||
if (control.ContextMenuStrip != null)
|
||||
cs.Add(control.ContextMenuStrip);
|
||||
|
||||
else if (control.Controls.Count > 0)
|
||||
cs.AddRange(FindContextMenuStrips(control.Controls.OfType<Control>()));
|
||||
}
|
||||
return cs;
|
||||
}
|
||||
internal static void CenterToForm(Control child, Control parent)
|
||||
{
|
||||
int x = parent.Location.X + (parent.Width - child.Width) / 2;
|
||||
int y = parent.Location.Y + (parent.Height - child.Height) / 2;
|
||||
child.Location = new Point(Math.Max(x, 0), Math.Max(y, 0));
|
||||
}
|
||||
|
||||
// Message Displays
|
||||
internal static DialogResult Error(params string[] lines)
|
||||
{
|
||||
System.Media.SystemSounds.Exclamation.Play();
|
||||
string msg = string.Join(Environment.NewLine + Environment.NewLine, lines);
|
||||
return MessageBox.Show(msg, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
internal static DialogResult Alert(params string[] lines)
|
||||
{
|
||||
System.Media.SystemSounds.Asterisk.Play();
|
||||
string msg = string.Join(Environment.NewLine + Environment.NewLine, lines);
|
||||
return MessageBox.Show(msg, "Alert", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
}
|
||||
internal static DialogResult Prompt(MessageBoxButtons btn, params string[] lines)
|
||||
{
|
||||
System.Media.SystemSounds.Question.Play();
|
||||
string msg = string.Join(Environment.NewLine + Environment.NewLine, lines);
|
||||
return MessageBox.Show(msg, "Prompt", btn, MessageBoxIcon.Asterisk);
|
||||
}
|
||||
|
||||
// DataSource Providing
|
||||
public class cbItem
|
||||
{
|
||||
public string Text { get; set; }
|
||||
public int Value { get; set; }
|
||||
}
|
||||
internal static List<cbItem> getCBList(string textfile, string lang)
|
||||
{
|
||||
// Set up
|
||||
string[] inputCSV = getStringList(textfile);
|
||||
|
||||
// Get Language we're fetching for
|
||||
int index = Array.IndexOf(new[] { "ja", "en", "fr", "de", "it", "es", "ko", "zh", }, lang);
|
||||
|
||||
// Set up our Temporary Storage
|
||||
string[] unsortedList = new string[inputCSV.Length - 1];
|
||||
int[] indexes = new int[inputCSV.Length - 1];
|
||||
|
||||
// Gather our data from the input file
|
||||
for (int i = 1; i < inputCSV.Length; i++)
|
||||
{
|
||||
string[] countryData = inputCSV[i].Split(',');
|
||||
indexes[i - 1] = Convert.ToInt32(countryData[0]);
|
||||
unsortedList[i - 1] = countryData[index + 1];
|
||||
}
|
||||
|
||||
// Sort our input data
|
||||
string[] sortedList = new string[inputCSV.Length - 1];
|
||||
Array.Copy(unsortedList, sortedList, unsortedList.Length);
|
||||
Array.Sort(sortedList);
|
||||
|
||||
// Arrange the input data based on original number
|
||||
return sortedList.Select(s => new cbItem
|
||||
{
|
||||
Text = s,
|
||||
Value = indexes[Array.IndexOf(unsortedList, s)]
|
||||
}).ToList();
|
||||
}
|
||||
internal static List<cbItem> getCBList(string[] inStrings, params int[][] allowed)
|
||||
{
|
||||
List<cbItem> cbList = new List<cbItem>();
|
||||
if (allowed?.First() == null)
|
||||
allowed = new[] { Enumerable.Range(0, inStrings.Length).ToArray() };
|
||||
|
||||
foreach (int[] list in allowed)
|
||||
{
|
||||
// Sort the Rest based on String Name
|
||||
string[] unsortedChoices = new string[list.Length];
|
||||
for (int i = 0; i < list.Length; i++)
|
||||
unsortedChoices[i] = inStrings[list[i]];
|
||||
|
||||
string[] sortedChoices = new string[unsortedChoices.Length];
|
||||
Array.Copy(unsortedChoices, sortedChoices, unsortedChoices.Length);
|
||||
Array.Sort(sortedChoices);
|
||||
|
||||
// Add the rest of the items
|
||||
cbList.AddRange(sortedChoices.Select(s => new cbItem
|
||||
{
|
||||
Text = s,
|
||||
Value = list[Array.IndexOf(unsortedChoices, s)]
|
||||
}));
|
||||
}
|
||||
return cbList;
|
||||
}
|
||||
internal static List<cbItem> getOffsetCBList(List<cbItem> cbList, string[] inStrings, int offset, int[] allowed)
|
||||
{
|
||||
if (allowed == null)
|
||||
allowed = Enumerable.Range(0, inStrings.Length).ToArray();
|
||||
|
||||
int[] list = (int[])allowed.Clone();
|
||||
for (int i = 0; i < list.Length; i++)
|
||||
list[i] -= offset;
|
||||
|
||||
// Sort the Rest based on String Name
|
||||
string[] unsortedChoices = new string[allowed.Length];
|
||||
for (int i = 0; i < allowed.Length; i++)
|
||||
unsortedChoices[i] = inStrings[list[i]];
|
||||
|
||||
string[] sortedChoices = new string[unsortedChoices.Length];
|
||||
Array.Copy(unsortedChoices, sortedChoices, unsortedChoices.Length);
|
||||
Array.Sort(sortedChoices);
|
||||
|
||||
// Add the rest of the items
|
||||
cbList.AddRange(sortedChoices.Select(s => new cbItem
|
||||
{
|
||||
Text = s, Value = allowed[Array.IndexOf(unsortedChoices, s)]
|
||||
}));
|
||||
return cbList;
|
||||
}
|
||||
internal static List<cbItem> getVariedCBList(string[] inStrings, int[] stringNum, int[] stringVal)
|
||||
{
|
||||
// Set up
|
||||
List<cbItem> newlist = new List<cbItem>();
|
||||
|
||||
for (int i = 4; i > 1; i--) // add 4,3,2
|
||||
{
|
||||
// First 3 Balls are always first
|
||||
cbItem ncbi = new cbItem
|
||||
{
|
||||
Text = inStrings[i],
|
||||
Value = i
|
||||
};
|
||||
newlist.Add(ncbi);
|
||||
}
|
||||
|
||||
// Sort the Rest based on String Name
|
||||
string[] ballnames = new string[stringNum.Length];
|
||||
for (int i = 0; i < stringNum.Length; i++)
|
||||
ballnames[i] = inStrings[stringNum[i]];
|
||||
|
||||
string[] sortedballs = new string[stringNum.Length];
|
||||
Array.Copy(ballnames, sortedballs, ballnames.Length);
|
||||
Array.Sort(sortedballs);
|
||||
|
||||
// Add the rest of the balls
|
||||
newlist.AddRange(sortedballs.Select(s => new cbItem
|
||||
{
|
||||
Text = s,
|
||||
Value = stringVal[Array.IndexOf(ballnames, s)]
|
||||
}));
|
||||
return newlist;
|
||||
}
|
||||
internal static List<cbItem> getUnsortedCBList(string textfile)
|
||||
{
|
||||
// Set up
|
||||
List<cbItem> cbList = new List<cbItem>();
|
||||
string[] inputCSV = getStringList(textfile);
|
||||
|
||||
// Gather our data from the input file
|
||||
for (int i = 1; i < inputCSV.Length; i++)
|
||||
{
|
||||
string[] inputData = inputCSV[i].Split(',');
|
||||
cbItem ncbi = new cbItem
|
||||
{
|
||||
Text = inputData[1],
|
||||
Value = Convert.ToInt32(inputData[0])
|
||||
};
|
||||
cbList.Add(ncbi);
|
||||
}
|
||||
return cbList;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -5,6 +5,10 @@ namespace PKHeX
|
|||
{
|
||||
public abstract class MysteryGift
|
||||
{
|
||||
internal static bool getIsMysteryGift(long len)
|
||||
{
|
||||
return new[] { WC6.SizeFull, WC6.Size, PGF.Size, PGT.Size, PCD.Size }.Contains((int)len);
|
||||
}
|
||||
internal static MysteryGift getMysteryGift(byte[] data, string ext)
|
||||
{
|
||||
if (data.Length == WC6.SizeFull && ext == ".wc6full")
|
||||
|
|
@ -19,6 +23,23 @@ internal static MysteryGift getMysteryGift(byte[] data, string ext)
|
|||
return new PCD(data);
|
||||
return null;
|
||||
}
|
||||
internal static MysteryGift getMysteryGift(byte[] data)
|
||||
{
|
||||
switch (data.Length)
|
||||
{
|
||||
case WC6.SizeFull:
|
||||
case WC6.Size:
|
||||
return new WC6(data);
|
||||
case PGF.Size:
|
||||
return new PGF(data);
|
||||
case PGT.Size:
|
||||
return new PGT(data);
|
||||
case PCD.Size:
|
||||
return new PCD(data);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public abstract string Extension { get; }
|
||||
public virtual byte[] Data { get; set; }
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PGF : MysteryGift
|
||||
public sealed class PGF : MysteryGift
|
||||
{
|
||||
internal const int Size = 0xCC;
|
||||
public override string Extension => ".pgf";
|
||||
|
|
@ -22,22 +22,22 @@ public PGF(byte[] data = null)
|
|||
public uint PID { get { return BitConverter.ToUInt32(Data, 0x08); } set { BitConverter.GetBytes(value).CopyTo(Data, 0x08); } }
|
||||
|
||||
private byte RIB0 { get { return Data[0x0C]; } set { Data[0x0C] = value; } }
|
||||
public bool RIB0_0 { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Country Ribbon
|
||||
public bool RIB0_1 { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // National Ribbon
|
||||
public bool RIB0_2 { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Earth Ribbon
|
||||
public bool RIB0_3 { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // World Ribbon
|
||||
public bool RIB0_4 { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Classic Ribbon
|
||||
public bool RIB0_5 { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Premier Ribbon
|
||||
public bool RIB0_6 { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Event Ribbon
|
||||
public bool RIB0_7 { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Birthday Ribbon
|
||||
public bool RibbonCountry { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Country Ribbon
|
||||
public bool RibbonNational { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // National Ribbon
|
||||
public bool RibbonEarth { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Earth Ribbon
|
||||
public bool RibbonWorld { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // World Ribbon
|
||||
public bool RibbonClassic { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Classic Ribbon
|
||||
public bool RibbonPremier { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Premier Ribbon
|
||||
public bool RibbonEvent { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Event Ribbon
|
||||
public bool RibbonBirthday { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Birthday Ribbon
|
||||
private byte RIB1 { get { return Data[0x0D]; } set { Data[0x0D] = value; } }
|
||||
public bool RIB1_0 { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Special Ribbon
|
||||
public bool RIB1_1 { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Souvenir Ribbon
|
||||
public bool RIB1_2 { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Wishing Ribbon
|
||||
public bool RIB1_3 { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Battle Champ Ribbon
|
||||
public bool RIB1_4 { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Regional Champ Ribbon
|
||||
public bool RIB1_5 { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // National Champ Ribbon
|
||||
public bool RIB1_6 { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // World Champ Ribbon
|
||||
public bool RibbonSpecial { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Special Ribbon
|
||||
public bool RibbonSouvenir { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Souvenir Ribbon
|
||||
public bool RibbonWishing { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Wishing Ribbon
|
||||
public bool RibbonChampionBattle { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Battle Champ Ribbon
|
||||
public bool RibbonChampionRegional { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Regional Champ Ribbon
|
||||
public bool RibbonChampionNational { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // National Champ Ribbon
|
||||
public bool RibbonChampionWorld { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // World Champ Ribbon
|
||||
public bool RIB1_7 { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Empty
|
||||
|
||||
public int Pokéball { get { return Data[0x0E]; } set { Data[0x0E] = (byte)value; } }
|
||||
|
|
@ -141,7 +141,7 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
HeldItem = HeldItem,
|
||||
Met_Level = currentLevel,
|
||||
Nature = Nature != 0xFF ? Nature : (int)(Util.rnd32() % 25),
|
||||
Gender = PKX.Personal[Species].Gender == 255 ? 2 : (Gender != 2 ? Gender : PKX.Personal[Species].RandomGender),
|
||||
Gender = PersonalTable.B2W2[Species].Gender == 255 ? 2 : (Gender != 2 ? Gender : PersonalTable.B2W2[Species].RandomGender),
|
||||
AltForm = Form,
|
||||
Version = OriginGame == 0 ? new[] {20, 21, 22, 23}[Util.rnd32() & 0x3] : OriginGame,
|
||||
Language = Language == 0 ? SAV.Language : Language,
|
||||
|
|
@ -150,10 +150,6 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
Move2 = Move2,
|
||||
Move3 = Move3,
|
||||
Move4 = Move4,
|
||||
Move1_PP = PKX.getBasePP(Move1),
|
||||
Move2_PP = PKX.getBasePP(Move2),
|
||||
Move3_PP = PKX.getBasePP(Move3),
|
||||
Move4_PP = PKX.getBasePP(Move4),
|
||||
Met_Location = MetLocation,
|
||||
Met_Day = Day,
|
||||
Met_Month = Month,
|
||||
|
|
@ -169,26 +165,30 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
EXP = PKX.getEXP(Level, Species),
|
||||
|
||||
// Ribbons
|
||||
RIB7_4 = RIB0_0, // Country Ribbon
|
||||
RIB7_5 = RIB0_1, // National Ribbon
|
||||
RIB7_6 = RIB0_2, // Earth Ribbon
|
||||
RIB7_7 = RIB0_3, // World Ribbon
|
||||
RIB3_2 = RIB0_4, // Classic Ribbon
|
||||
RIB3_3 = RIB0_5, // Premier Ribbon
|
||||
RIB2_3 = RIB0_6, // Event Ribbon
|
||||
RIB2_6 = RIB0_7, // Birthday Ribbon
|
||||
RibbonCountry = RibbonCountry,
|
||||
RibbonNational = RibbonNational,
|
||||
RibbonEarth = RibbonEarth,
|
||||
RibbonWorld = RibbonWorld,
|
||||
RibbonClassic = RibbonClassic,
|
||||
RibbonPremier = RibbonPremier,
|
||||
RibbonEvent = RibbonEvent,
|
||||
RibbonBirthday = RibbonBirthday,
|
||||
|
||||
RIB2_7 = RIB1_0, // Special Ribbon
|
||||
RIB3_0 = RIB1_1, // Souvenir Ribbon
|
||||
RIB3_1 = RIB1_2, // Wishing Ribbon
|
||||
RIB7_1 = RIB1_3, // Battle Champ Ribbon
|
||||
RIB7_2 = RIB1_4, // Regional Champ Ribbon
|
||||
RIB7_3 = RIB1_5, // National Champ Ribbon
|
||||
RIB2_5 = RIB1_6, // World Champ Ribbon
|
||||
RibbonSpecial = RibbonSpecial,
|
||||
RibbonSouvenir = RibbonSouvenir,
|
||||
RibbonWishing = RibbonWishing,
|
||||
RibbonChampionBattle = RibbonChampionBattle,
|
||||
RibbonChampionRegional = RibbonChampionRegional,
|
||||
RibbonChampionNational = RibbonChampionNational,
|
||||
RibbonChampionWorld = RibbonChampionWorld,
|
||||
|
||||
OT_Friendship = PKX.getBaseFriendship(Species),
|
||||
OT_Friendship = PersonalTable.B2W2[Species].BaseFriendship,
|
||||
FatefulEncounter = true,
|
||||
};
|
||||
pk.Move1_PP = pk.getMovePP(Move1, 0);
|
||||
pk.Move2_PP = pk.getMovePP(Move2, 0);
|
||||
pk.Move3_PP = pk.getMovePP(Move3, 0);
|
||||
pk.Move4_PP = pk.getMovePP(Move4, 0);
|
||||
if (OTGender == 3) // User's
|
||||
{
|
||||
pk.TID = SAV.TID;
|
||||
|
|
@ -228,7 +228,7 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
break;
|
||||
}
|
||||
pk.HiddenAbility = av == 2;
|
||||
pk.Ability = PKX.Personal[PKX.Personal[Species].FormeIndex(Species, pk.AltForm)].Abilities[av];
|
||||
pk.Ability = PersonalTable.B2W2.getAbilities(Species, pk.AltForm)[av];
|
||||
|
||||
if (PID != 0)
|
||||
pk.PID = PID;
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ namespace PKHeX
|
|||
* http://projectpokemon.org/forums/showthread.php?6524
|
||||
* See also: http://tccphreak.shiny-clique.net/debugger/pcdfiles.htm
|
||||
*/
|
||||
public class PCD : MysteryGift
|
||||
public sealed class PCD : MysteryGift
|
||||
{
|
||||
internal const int Size = 0x358; // 856
|
||||
public override string Extension => ".pcd";
|
||||
|
|
@ -85,7 +85,8 @@ public PGT(byte[] data = null)
|
|||
{
|
||||
refreshData((byte[])(data?.Clone() ?? new byte[Size]));
|
||||
}
|
||||
public void refreshData(byte[] data)
|
||||
|
||||
private void refreshData(byte[] data)
|
||||
{
|
||||
byte[] ekdata = new byte[PKX.SIZE_4PARTY];
|
||||
Array.Copy(data, 8, ekdata, 0, ekdata.Length);
|
||||
|
|
@ -203,6 +204,8 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
pk4.AltForm = PKX.getUnownForm(pk4.PID);
|
||||
if (IsEgg || IsManaphyEgg)
|
||||
pk4.IsEgg = true;
|
||||
|
||||
pk4.RefreshChecksum();
|
||||
return pk4;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
333
MysteryGifts/PL6.cs
Normal file
|
|
@ -0,0 +1,333 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PL6 //: PokemonLink
|
||||
{
|
||||
internal const int Size = 0xA47;
|
||||
internal const string Filter = "Pokémon Link Data|*.bin|All Files (*.*)|*.*";
|
||||
internal const string Extension = ".bin";
|
||||
|
||||
public byte[] Data;
|
||||
public PL6(byte[] data = null)
|
||||
{
|
||||
Data = (byte[])(data?.Clone() ?? new byte[Size]);
|
||||
}
|
||||
// Pokémon Link Flag
|
||||
public byte PL_Flag {
|
||||
get { return Data[0x00]; }
|
||||
set { Data[0x00] = value; } }
|
||||
public bool PL_enabled { get { return PL_Flag != 0; } set { PL_Flag = (byte)(value ? 1 << 7 : 0); } }
|
||||
|
||||
//Name of data source
|
||||
public string Origin_app {
|
||||
get { return Util.TrimFromZero(Encoding.Unicode.GetString(Data, 0x01, 0x6E)); }
|
||||
set { Encoding.Unicode.GetBytes(value.PadRight(54 + 1, '\0')).CopyTo(Data, 0x01); } }
|
||||
|
||||
//Pokemon transfer flags?
|
||||
public uint PKM1_flags {
|
||||
get { return BitConverter.ToUInt32(Data, 0x99); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x99); } }
|
||||
public uint PKM2_flags {
|
||||
get { return BitConverter.ToUInt32(Data, 0x141); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x141); } }
|
||||
public uint PKM3_flags {
|
||||
get { return BitConverter.ToUInt32(Data, 0x1E9); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x1E9); } }
|
||||
public uint PKM4_flags {
|
||||
get { return BitConverter.ToUInt32(Data, 0x291); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x291); } }
|
||||
public uint PKM5_flags {
|
||||
get { return BitConverter.ToUInt32(Data, 0x339); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x339); } }
|
||||
public uint PKM6_flags {
|
||||
get { return BitConverter.ToUInt32(Data, 0x3E1); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x3E1); } }
|
||||
|
||||
public uint[] Flags
|
||||
{
|
||||
get { return new[] {PKM1_flags, PKM2_flags, PKM3_flags, PKM4_flags, PKM5_flags, PKM6_flags}; }
|
||||
set
|
||||
{
|
||||
if (value.Length > 0) PKM1_flags = value[0];
|
||||
if (value.Length > 1) PKM2_flags = value[1];
|
||||
if (value.Length > 2) PKM3_flags = value[2];
|
||||
if (value.Length > 3) PKM4_flags = value[3];
|
||||
if (value.Length > 4) PKM5_flags = value[4];
|
||||
if (value.Length > 5) PKM6_flags = value[5];
|
||||
}
|
||||
}
|
||||
|
||||
//Pokémon
|
||||
|
||||
public PL6_PKM poke1 {
|
||||
get { return new PL6_PKM(Data.Skip(0x9D).Take(PL6_PKM.Size).ToArray()); }
|
||||
set { value.Data.CopyTo(Data, 0x9D); } }
|
||||
public PL6_PKM poke2 {
|
||||
get { return new PL6_PKM(Data.Skip(0x145).Take(PL6_PKM.Size).ToArray()); }
|
||||
set { value.Data.CopyTo(Data, 0x145); } }
|
||||
public PL6_PKM poke3 {
|
||||
get { return new PL6_PKM(Data.Skip(0x1ED).Take(PL6_PKM.Size).ToArray()); }
|
||||
set { value.Data.CopyTo(Data, 0x1ED); } }
|
||||
public PL6_PKM poke4 {
|
||||
get { return new PL6_PKM(Data.Skip(0x295).Take(PL6_PKM.Size).ToArray()); }
|
||||
set { value.Data.CopyTo(Data, 0x295); } }
|
||||
public PL6_PKM poke5 {
|
||||
get { return new PL6_PKM(Data.Skip(0x33D).Take(PL6_PKM.Size).ToArray()); }
|
||||
set { value.Data.CopyTo(Data, 0x33D); } }
|
||||
public PL6_PKM poke6 {
|
||||
get { return new PL6_PKM(Data.Skip(0x3E5).Take(PL6_PKM.Size).ToArray()); }
|
||||
set { value.Data.CopyTo(Data, 0x3E5); } }
|
||||
|
||||
public PL6_PKM[] Pokes
|
||||
{
|
||||
get { return new[] {poke1, poke2, poke3, poke4, poke5, poke6}; }
|
||||
set
|
||||
{
|
||||
if (value.Length > 0) poke1 = value[0];
|
||||
if (value.Length > 1) poke2 = value[1];
|
||||
if (value.Length > 2) poke3 = value[2];
|
||||
if (value.Length > 3) poke4 = value[3];
|
||||
if (value.Length > 4) poke5 = value[4];
|
||||
if (value.Length > 5) poke6 = value[5];
|
||||
}
|
||||
}
|
||||
|
||||
// Item Properties
|
||||
public int Item_1 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x489); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x489); } }
|
||||
public int Quantity_1 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x48B); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x48B); } }
|
||||
public int Item_2 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x48D); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x48D); } }
|
||||
public int Quantity_2 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x48F); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x48F); } }
|
||||
public int Item_3 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x491); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x491); } }
|
||||
public int Quantity_3 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x493); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x493); } }
|
||||
public int Item_4 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x495); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x495); } }
|
||||
public int Quantity_4 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x497); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x497); } }
|
||||
public int Item_5 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x499); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x499); } }
|
||||
public int Quantity_5 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x49B); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x49B); } }
|
||||
public int Item_6 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x49D); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x49D); } }
|
||||
public int Quantity_6 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x49F); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x49F); } }
|
||||
|
||||
public int[] Items
|
||||
{
|
||||
get { return new[] {Item_1, Item_2, Item_3, Item_4, Item_5, Item_6}; }
|
||||
set
|
||||
{
|
||||
if (value.Length > 0) Item_1 = value[0];
|
||||
if (value.Length > 1) Item_2 = value[1];
|
||||
if (value.Length > 2) Item_3 = value[2];
|
||||
if (value.Length > 3) Item_4 = value[3];
|
||||
if (value.Length > 4) Item_5 = value[4];
|
||||
if (value.Length > 5) Item_6 = value[5];
|
||||
}
|
||||
}
|
||||
|
||||
public int[] Quantities
|
||||
{
|
||||
get { return new[] {Quantity_1, Quantity_2, Quantity_3, Quantity_4, Quantity_5, Quantity_6}; }
|
||||
set
|
||||
{
|
||||
if (value.Length > 0) Quantity_1 = value[0];
|
||||
if (value.Length > 1) Quantity_2 = value[1];
|
||||
if (value.Length > 2) Quantity_3 = value[2];
|
||||
if (value.Length > 3) Quantity_4 = value[3];
|
||||
if (value.Length > 4) Quantity_5 = value[4];
|
||||
if (value.Length > 5) Quantity_6 = value[5];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//Battle Points
|
||||
public int BattlePoints {
|
||||
get { return BitConverter.ToUInt16(Data, 0x4A1); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x4A1); } }
|
||||
//PokéMiles
|
||||
public int Pokemiles {
|
||||
get { return BitConverter.ToUInt16(Data, 0x4A3); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x4A3); } }
|
||||
}
|
||||
|
||||
public class PL6_PKM //: PokemonLink
|
||||
{
|
||||
|
||||
internal const int Size = 0xA0;
|
||||
|
||||
public readonly byte[] Data;
|
||||
public PL6_PKM(byte[] data = null)
|
||||
{
|
||||
Data = (byte[])(data?.Clone() ?? new byte[Size]);
|
||||
}
|
||||
|
||||
public int TID {
|
||||
get { return BitConverter.ToUInt16(Data, 0x00); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x00); } }
|
||||
public int SID {
|
||||
get { return BitConverter.ToUInt16(Data, 0x02); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x02); } }
|
||||
public int OriginGame {
|
||||
get { return Data[0x04]; }
|
||||
set { Data[0x04] = (byte)value; } }
|
||||
public uint EncryptionConstant {
|
||||
get { return BitConverter.ToUInt32(Data, 0x08); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x08); } }
|
||||
public int Pokéball {
|
||||
get { return Data[0xE]; }
|
||||
set { Data[0xE] = (byte)value; } }
|
||||
public int HeldItem {
|
||||
get { return BitConverter.ToUInt16(Data, 0x10); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x10); } }
|
||||
public int Move1 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x12); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x12); } }
|
||||
public int Move2 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x14); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x14); } }
|
||||
public int Move3 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x16); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x16); } }
|
||||
public int Move4 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x18); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x18); } }
|
||||
public int Species {
|
||||
get { return BitConverter.ToUInt16(Data, 0x1A); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x1A); } }
|
||||
public int Form {
|
||||
get { return Data[0x1C]; }
|
||||
set { Data[0x1C] = (byte)value; } }
|
||||
public int Language {
|
||||
get { return Data[0x1D]; }
|
||||
set { Data[0x1D] = (byte)value; } }
|
||||
public string Nickname {
|
||||
get { return Util.TrimFromZero(Encoding.Unicode.GetString(Data, 0x1E, 0x1A)); }
|
||||
set { Encoding.Unicode.GetBytes(value.PadRight(12 + 1, '\0')).CopyTo(Data, 0x1E); } }
|
||||
public int Nature {
|
||||
get { return Data[0x38]; }
|
||||
set { Data[0x38] = (byte)value; } }
|
||||
public int Gender {
|
||||
get { return Data[0x39]; }
|
||||
set { Data[0x39] = (byte)value; } }
|
||||
public int AbilityType {
|
||||
get { return Data[0x3A]; }
|
||||
set { Data[0x3A] = (byte)value; } }
|
||||
public int PIDType {
|
||||
get { return Data[0x3B]; }
|
||||
set { Data[0x3B] = (byte)value; } }
|
||||
public int EggLocation {
|
||||
get { return BitConverter.ToUInt16(Data, 0x3C); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x3C); } }
|
||||
public int MetLocation {
|
||||
get { return BitConverter.ToUInt16(Data, 0x3E); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x3F); } }
|
||||
public int MetLevel {
|
||||
get { return Data[0x40]; }
|
||||
set { Data[0x40] = (byte)value; } }
|
||||
|
||||
public int CNT_Cool { get { return Data[0x41]; } set { Data[0x41] = (byte)value; } }
|
||||
public int CNT_Beauty { get { return Data[0x42]; } set { Data[0x42] = (byte)value; } }
|
||||
public int CNT_Cute { get { return Data[0x43]; } set { Data[0x43] = (byte)value; } }
|
||||
public int CNT_Smart { get { return Data[0x44]; } set { Data[0x44] = (byte)value; } }
|
||||
public int CNT_Tough { get { return Data[0x45]; } set { Data[0x45] = (byte)value; } }
|
||||
public int CNT_Sheen { get { return Data[0x46]; } set { Data[0x46] = (byte)value; } }
|
||||
|
||||
public int IV_HP { get { return Data[0x47]; } set { Data[0x47] = (byte)value; } }
|
||||
public int IV_ATK { get { return Data[0x48]; } set { Data[0x48] = (byte)value; } }
|
||||
public int IV_DEF { get { return Data[0x49]; } set { Data[0x49] = (byte)value; } }
|
||||
public int IV_SPE { get { return Data[0x4A]; } set { Data[0x4A] = (byte)value; } }
|
||||
public int IV_SPA { get { return Data[0x4B]; } set { Data[0x4B] = (byte)value; } }
|
||||
public int IV_SPD { get { return Data[0x4C]; } set { Data[0x4C] = (byte)value; } }
|
||||
|
||||
public int OTGender { get { return Data[0x4D]; } set { Data[0x4D] = (byte)value; } }
|
||||
public string OT {
|
||||
get { return Util.TrimFromZero(Encoding.Unicode.GetString(Data, 0x4E, 0x1A)); }
|
||||
set { Encoding.Unicode.GetBytes(value.PadRight(value.Length + 1, '\0')).CopyTo(Data, 0x4E); } }
|
||||
public int Level { get { return Data[0x68]; } set { Data[0x68] = (byte)value; } }
|
||||
public bool IsEgg { get { return Data[0x69] == 1; } set { Data[0x69] = (byte)(value ? 1 : 0); } }
|
||||
public uint PID {
|
||||
get { return BitConverter.ToUInt32(Data, 0x6C); }
|
||||
set { BitConverter.GetBytes(value).CopyTo(Data, 0x6C); } }
|
||||
public int RelearnMove1 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x70); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x70); } }
|
||||
public int RelearnMove2 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x72); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x72); } }
|
||||
public int RelearnMove3 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x74); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x74); } }
|
||||
public int RelearnMove4 {
|
||||
get { return BitConverter.ToUInt16(Data, 0x76); }
|
||||
set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x76); } }
|
||||
public int OT_Intensity { get { return Data[0x78]; } set { Data[0x78] = (byte)value; } }
|
||||
public int OT_Memory { get { return Data[0x79]; } set { Data[0x79] = (byte)value; } }
|
||||
public int OT_TextVar { get { return BitConverter.ToUInt16(Data, 0x7A); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x7A); } }
|
||||
public int OT_Feeling { get { return Data[0x7C]; } set { Data[0x7C] = (byte)value; } }
|
||||
|
||||
private byte RIB0 { get { return Data[0x0C]; } set { Data[0x0C] = value; } }
|
||||
public bool RIB0_0 { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Battle Champ Ribbon
|
||||
public bool RIB0_1 { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Regional Champ Ribbon
|
||||
public bool RIB0_2 { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // National Champ Ribbon
|
||||
public bool RIB0_3 { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Country Ribbon
|
||||
public bool RIB0_4 { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // National Ribbon
|
||||
public bool RIB0_5 { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Earth Ribbon
|
||||
public bool RIB0_6 { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // World Ribbon
|
||||
public bool RIB0_7 { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Event Ribbon
|
||||
private byte RIB1 { get { return Data[0x0D]; } set { Data[0x0D] = value; } }
|
||||
public bool RIB1_0 { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // World Champ Ribbon
|
||||
public bool RIB1_1 { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Birthday Ribbon
|
||||
public bool RIB1_2 { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Special Ribbon
|
||||
public bool RIB1_3 { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Souvenir Ribbon
|
||||
public bool RIB1_4 { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Wishing Ribbon
|
||||
public bool RIB1_5 { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Classic Ribbon
|
||||
public bool RIB1_6 { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Premier Ribbon
|
||||
public bool RIB1_7 { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Empty
|
||||
|
||||
public int[] Moves
|
||||
{
|
||||
get { return new[] {Move1, Move2, Move3, Move4}; }
|
||||
set
|
||||
{
|
||||
if (value.Length > 0) Move1 = value[0];
|
||||
if (value.Length > 1) Move2 = value[1];
|
||||
if (value.Length > 2) Move3 = value[2];
|
||||
if (value.Length > 3) Move4 = value[3];
|
||||
}
|
||||
}
|
||||
public int[] RelearnMoves
|
||||
{
|
||||
get { return new[] { RelearnMove1, RelearnMove2, RelearnMove3, RelearnMove4 }; }
|
||||
set
|
||||
{
|
||||
if (value.Length > 0) RelearnMove1 = value[0];
|
||||
if (value.Length > 1) RelearnMove2 = value[1];
|
||||
if (value.Length > 2) RelearnMove3 = value[2];
|
||||
if (value.Length > 3) RelearnMove4 = value[3];
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class WC6 : MysteryGift
|
||||
public sealed class WC6 : MysteryGift
|
||||
{
|
||||
internal const int Size = 0x108;
|
||||
internal const int SizeFull = 0x310;
|
||||
|
|
@ -18,7 +18,7 @@ public WC6(byte[] data = null)
|
|||
{
|
||||
Data = Data.Skip(SizeFull - Size).ToArray();
|
||||
DateTime now = DateTime.Now;
|
||||
Year = (uint)(now.Year - 2000);
|
||||
Year = (uint)now.Year;
|
||||
Month = (uint)now.Month;
|
||||
Day = (uint)now.Day;
|
||||
}
|
||||
|
|
@ -162,22 +162,22 @@ public WC6(byte[] data = null)
|
|||
public int OT_Feeling { get { return Data[0xE4]; } set { Data[0xE4] = (byte)value; } }
|
||||
|
||||
private byte RIB0 { get { return Data[0x74]; } set { Data[0x74] = value; } }
|
||||
public bool RIB0_0 { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Battle Champ Ribbon
|
||||
public bool RIB0_1 { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Regional Champ Ribbon
|
||||
public bool RIB0_2 { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // National Champ Ribbon
|
||||
public bool RIB0_3 { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Country Ribbon
|
||||
public bool RIB0_4 { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // National Ribbon
|
||||
public bool RIB0_5 { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Earth Ribbon
|
||||
public bool RIB0_6 { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // World Ribbon
|
||||
public bool RIB0_7 { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Event Ribbon
|
||||
public bool RibbonChampionBattle { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Battle Champ Ribbon
|
||||
public bool RibbonChampionRegional { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Regional Champ Ribbon
|
||||
public bool RibbonChampionNational { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // National Champ Ribbon
|
||||
public bool RibbonCountry { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Country Ribbon
|
||||
public bool RibbonNational { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // National Ribbon
|
||||
public bool RibbonEarth { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Earth Ribbon
|
||||
public bool RibbonWorld { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // World Ribbon
|
||||
public bool RibbonEvent { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Event Ribbon
|
||||
private byte RIB1 { get { return Data[0x75]; } set { Data[0x75] = value; } }
|
||||
public bool RIB1_0 { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // World Champ Ribbon
|
||||
public bool RIB1_1 { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Birthday Ribbon
|
||||
public bool RIB1_2 { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Special Ribbon
|
||||
public bool RIB1_3 { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Souvenir Ribbon
|
||||
public bool RIB1_4 { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Wishing Ribbon
|
||||
public bool RIB1_5 { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Classic Ribbon
|
||||
public bool RIB1_6 { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Premier Ribbon
|
||||
public bool RibbonChampionWorld { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // World Champ Ribbon
|
||||
public bool RibbonBirthday { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Birthday Ribbon
|
||||
public bool RibbonSpecial { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Special Ribbon
|
||||
public bool RibbonSouvenir { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Souvenir Ribbon
|
||||
public bool RibbonWishing { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Wishing Ribbon
|
||||
public bool RibbonClassic { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Classic Ribbon
|
||||
public bool RibbonPremier { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Premier Ribbon
|
||||
public bool RIB1_7 { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Empty
|
||||
|
||||
// Meta Accessible Properties
|
||||
|
|
@ -221,7 +221,7 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
SID = SID,
|
||||
Met_Level = currentLevel,
|
||||
Nature = Nature != 0xFF ? Nature : (int)(Util.rnd32() % 25),
|
||||
Gender = PKX.Personal[Species].Gender == 255 ? 2 : (Gender != 3 ? Gender : PKX.Personal[Species].RandomGender),
|
||||
Gender = PersonalTable.AO[Species].Gender == 255 ? 2 : (Gender != 3 ? Gender : PersonalTable.AO[Species].RandomGender),
|
||||
AltForm = Form,
|
||||
EncryptionConstant = EncryptionConstant == 0 ? Util.rnd32() : EncryptionConstant,
|
||||
Version = OriginGame == 0 ? SAV.Game : OriginGame,
|
||||
|
|
@ -231,10 +231,6 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
Region = SAV.SubRegion,
|
||||
ConsoleRegion = SAV.ConsoleRegion,
|
||||
Move1 = Move1, Move2 = Move2, Move3 = Move3, Move4 = Move4,
|
||||
Move1_PP = PKX.getBasePP(Move1),
|
||||
Move2_PP = PKX.getBasePP(Move2),
|
||||
Move3_PP = PKX.getBasePP(Move3),
|
||||
Move4_PP = PKX.getBasePP(Move4),
|
||||
RelearnMove1 = RelearnMove1, RelearnMove2 = RelearnMove2,
|
||||
RelearnMove3 = RelearnMove3, RelearnMove4 = RelearnMove4,
|
||||
Met_Location = MetLocation,
|
||||
|
|
@ -255,31 +251,35 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
EXP = PKX.getEXP(Level, Species),
|
||||
|
||||
// Ribbons
|
||||
RIB2_6 = RIB0_3, // Country Ribbon
|
||||
RIB2_7 = RIB0_4, // National Ribbon
|
||||
RibbonCountry = RibbonCountry,
|
||||
RibbonNational = RibbonNational,
|
||||
|
||||
RIB3_0 = RIB0_5, // Earth Ribbon
|
||||
RIB3_1 = RIB0_6, // World Ribbon
|
||||
RIB3_2 = RIB1_5, // Classic Ribbon
|
||||
RIB3_3 = RIB1_6, // Premier Ribbon
|
||||
RIB3_4 = RIB0_7, // Event Ribbon
|
||||
RIB3_5 = RIB1_1, // Birthday Ribbon
|
||||
RIB3_6 = RIB1_2, // Special Ribbon
|
||||
RIB3_7 = RIB1_3, // Souvenir Ribbon
|
||||
RibbonEarth = RibbonEarth,
|
||||
RibbonWorld = RibbonWorld,
|
||||
RibbonClassic = RibbonClassic,
|
||||
RibbonPremier = RibbonPremier,
|
||||
RibbonEvent = RibbonEvent,
|
||||
RibbonBirthday = RibbonBirthday,
|
||||
RibbonSpecial = RibbonSpecial,
|
||||
RibbonSouvenir = RibbonSouvenir,
|
||||
|
||||
RIB4_0 = RIB1_4, // Wishing Ribbon
|
||||
RIB4_1 = RIB0_0, // Battle Champ Ribbon
|
||||
RIB4_2 = RIB0_1, // Regional Champ Ribbon
|
||||
RIB4_3 = RIB0_2, // National Champ Ribbon
|
||||
RIB4_4 = RIB1_0, // World Champ Ribbon
|
||||
RibbonWishing = RibbonWishing,
|
||||
RibbonChampionBattle = RibbonChampionBattle,
|
||||
RibbonChampionRegional = RibbonChampionRegional,
|
||||
RibbonChampionNational = RibbonChampionNational,
|
||||
RibbonChampionWorld = RibbonChampionWorld,
|
||||
|
||||
OT_Friendship = PKX.getBaseFriendship(Species),
|
||||
OT_Friendship = PersonalTable.AO[Species].BaseFriendship,
|
||||
OT_Intensity = OT_Intensity,
|
||||
OT_Memory = OT_Memory,
|
||||
OT_TextVar = OT_TextVar,
|
||||
OT_Feeling = OT_Feeling,
|
||||
FatefulEncounter = true,
|
||||
};
|
||||
pk.Move1_PP = pk.getMovePP(Move1, 0);
|
||||
pk.Move2_PP = pk.getMovePP(Move2, 0);
|
||||
pk.Move3_PP = pk.getMovePP(Move3, 0);
|
||||
pk.Move4_PP = pk.getMovePP(Move4, 0);
|
||||
|
||||
if (Day + Month + Year == 0) // No datetime set, typical for wc6full
|
||||
{
|
||||
|
|
@ -352,7 +352,7 @@ public override PKM convertToPKM(SaveFile SAV)
|
|||
av = (int)(Util.rnd32()%(AbilityType - 1));
|
||||
break;
|
||||
}
|
||||
pk.Ability = PKX.Personal[PKX.Personal[Species].FormeIndex(Species, pk.AltForm)].Abilities[av];
|
||||
pk.Ability = PersonalTable.AO.getAbilities(Species, pk.AltForm)[av];
|
||||
pk.AbilityNumber = 1 << av;
|
||||
|
||||
switch (PIDType)
|
||||
|
|
|
|||
491
PKHeX.csproj
|
|
@ -61,6 +61,8 @@
|
|||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Web" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
|
|
@ -74,7 +76,28 @@
|
|||
<Compile Include="Legality\Tables3.cs" />
|
||||
<Compile Include="Legality\Tables5.cs" />
|
||||
<Compile Include="Legality\Tables4.cs" />
|
||||
<Compile Include="MainWindow\MainPK6.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MainWindow\MainPK5.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MainWindow\MainPK4.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MainWindow\MainPK3.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MysteryGifts\MysteryGift.cs" />
|
||||
<Compile Include="MysteryGifts\PL6.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalInfo.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalInfoB2W2.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalInfoBW.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalInfoG3.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalInfoG4.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalInfoORAS.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalInfoXY.cs" />
|
||||
<Compile Include="PersonalInfo\PersonalTable.cs" />
|
||||
<Compile Include="PKM\PKM.cs" />
|
||||
<Compile Include="PKM\PKMConverter.cs" />
|
||||
<Compile Include="PKM\ShowdownSet.cs" />
|
||||
|
|
@ -92,6 +115,7 @@
|
|||
<DependentUpon>QR.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Saves\BlockInfo.cs" />
|
||||
<Compile Include="Saves\BoxWallpaper.cs" />
|
||||
<Compile Include="Saves\Inventory.cs" />
|
||||
<Compile Include="Saves\SAV3.cs" />
|
||||
<Compile Include="Saves\SAV4.cs" />
|
||||
|
|
@ -99,11 +123,29 @@
|
|||
<Compile Include="Saves\SAV6.cs" />
|
||||
<Compile Include="Saves\SaveFile.cs" />
|
||||
<Compile Include="MysteryGifts\WC6.cs" />
|
||||
<Compile Include="PKX\f2-Text.cs">
|
||||
<Compile Include="Subforms\PKM Editors\BatchEditor.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="PKX\f2-Text.Designer.cs">
|
||||
<DependentUpon>f2-Text.cs</DependentUpon>
|
||||
<Compile Include="Subforms\PKM Editors\BatchEditor.Designer.cs">
|
||||
<DependentUpon>BatchEditor.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\PKM Editors\SuperTrainingEditor.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\PKM Editors\SuperTrainingEditor.Designer.cs">
|
||||
<DependentUpon>SuperTrainingEditor.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\PKM Editors\RibbonEditor.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\PKM Editors\RibbonEditor.Designer.cs">
|
||||
<DependentUpon>RibbonEditor.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\PKM Editors\Text.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\PKM Editors\Text.Designer.cs">
|
||||
<DependentUpon>Text.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Misc\About.cs">
|
||||
<SubType>Form</SubType>
|
||||
|
|
@ -112,23 +154,17 @@
|
|||
<DependentUpon>About.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PKM\PKX.cs" />
|
||||
<Compile Include="PKX\f1-Main.cs">
|
||||
<Compile Include="MainWindow\Main.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="PKX\f1-Main.Designer.cs">
|
||||
<DependentUpon>f1-Main.cs</DependentUpon>
|
||||
<Compile Include="MainWindow\Main.Designer.cs">
|
||||
<DependentUpon>Main.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PKX\f4-RibbMedal.cs">
|
||||
<Compile Include="Subforms\PKM Editors\MemoryAmie.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="PKX\f4-RibbMedal.Designer.cs">
|
||||
<DependentUpon>f4-RibbMedal.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="PKX\f3-MemoryAmie.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="PKX\f3-MemoryAmie.Designer.cs">
|
||||
<DependentUpon>f3-MemoryAmie.cs</DependentUpon>
|
||||
<Compile Include="Subforms\PKM Editors\MemoryAmie.Designer.cs">
|
||||
<DependentUpon>MemoryAmie.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
|
|
@ -137,108 +173,121 @@
|
|||
</Compile>
|
||||
<Compile Include="Saves\SaveObjects.cs" />
|
||||
<Compile Include="Saves\SaveUtil.cs" />
|
||||
<Compile Include="SAV\SAV_PokeBlockORAS.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen5\CGearBackground.cs" />
|
||||
<Compile Include="Subforms\Save Editors\Gen5\SAV_CGearSkin.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_PokeBlockORAS.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen5\SAV_CGearSkin.Designer.cs">
|
||||
<DependentUpon>SAV_CGearSkin.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_Link6.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_Link6.Designer.cs">
|
||||
<DependentUpon>SAV_Link6.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_PokeBlockORAS.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_PokeBlockORAS.Designer.cs">
|
||||
<DependentUpon>SAV_PokeBlockORAS.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Database.cs">
|
||||
<Compile Include="Subforms\SAV_Database.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Database.Designer.cs">
|
||||
<Compile Include="Subforms\SAV_Database.Designer.cs">
|
||||
<DependentUpon>SAV_Database.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_PokedexORAS.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_PokedexORAS.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_PokedexORAS.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_PokedexORAS.Designer.cs">
|
||||
<DependentUpon>SAV_PokedexORAS.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_SecretBase.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_SecretBase.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_SecretBase.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_SecretBase.Designer.cs">
|
||||
<DependentUpon>SAV_SecretBase.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_EventFlags.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_EventFlags.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_EventFlags.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_EventFlags.Designer.cs">
|
||||
<DependentUpon>SAV_EventFlags.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\frmReport.cs">
|
||||
<Compile Include="Subforms\frmReport.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\frmReport.Designer.cs">
|
||||
<Compile Include="Subforms\frmReport.Designer.cs">
|
||||
<DependentUpon>frmReport.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="SAV\SAV_BerryFieldXY.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_BerryFieldXY.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_BerryFieldXY.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_BerryFieldXY.Designer.cs">
|
||||
<DependentUpon>SAV_BerryFieldXY.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_BoxLayout.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_BoxLayout.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_BoxLayout.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_BoxLayout.Designer.cs">
|
||||
<DependentUpon>SAV_BoxLayout.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_HallOfFame.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_HallOfFame.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_HallOfFame.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_HallOfFame.Designer.cs">
|
||||
<DependentUpon>SAV_HallOfFame.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Inventory.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_Inventory.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Inventory.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_Inventory.Designer.cs">
|
||||
<DependentUpon>SAV_Inventory.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_OPower.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_OPower.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_OPower.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_OPower.Designer.cs">
|
||||
<DependentUpon>SAV_OPower.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_PokedexXY.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_PokedexXY.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_PokedexXY.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_PokedexXY.Designer.cs">
|
||||
<DependentUpon>SAV_PokedexXY.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Pokepuff.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_Pokepuff.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Pokepuff.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_Pokepuff.Designer.cs">
|
||||
<DependentUpon>SAV_Pokepuff.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_SimpleTrainer.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_SimpleTrainer.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_SimpleTrainer.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_SimpleTrainer.Designer.cs">
|
||||
<DependentUpon>SAV_SimpleTrainer.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_SuperTrain.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_SuperTrain.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_SuperTrain.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_SuperTrain.Designer.cs">
|
||||
<DependentUpon>SAV_SuperTrain.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Trainer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_Trainer.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Trainer.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\Gen6\SAV_Trainer.Designer.cs">
|
||||
<DependentUpon>SAV_Trainer.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Wondercard.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_Wondercard.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="SAV\SAV_Wondercard.Designer.cs">
|
||||
<Compile Include="Subforms\Save Editors\SAV_Wondercard.Designer.cs">
|
||||
<DependentUpon>SAV_Wondercard.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Misc\SplashScreen.cs">
|
||||
|
|
@ -247,44 +296,63 @@
|
|||
<Compile Include="Misc\SplashScreen.Designer.cs">
|
||||
<DependentUpon>SplashScreen.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Misc\Util.cs" />
|
||||
<Compile Include="Misc\ComboItem.cs" />
|
||||
<Compile Include="Util\DataUtil.cs" />
|
||||
<Compile Include="Util\FormUtil.cs" />
|
||||
<Compile Include="Util\ImageUtil.cs" />
|
||||
<Compile Include="Util\PathUtil.cs" />
|
||||
<Compile Include="Util\RandUtil.cs" />
|
||||
<Compile Include="Util\ReflectUtil.cs" />
|
||||
<Compile Include="Util\StringUtil.cs" />
|
||||
<EmbeddedResource Include="Misc\QR.resx">
|
||||
<DependentUpon>QR.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="PKX\f2-Text.resx">
|
||||
<DependentUpon>f2-Text.cs</DependentUpon>
|
||||
<EmbeddedResource Include="Subforms\PKM Editors\BatchEditor.resx">
|
||||
<DependentUpon>BatchEditor.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Subforms\PKM Editors\SuperTrainingEditor.resx">
|
||||
<DependentUpon>SuperTrainingEditor.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Subforms\PKM Editors\RibbonEditor.resx">
|
||||
<DependentUpon>RibbonEditor.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Subforms\PKM Editors\Text.resx">
|
||||
<DependentUpon>Text.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Misc\About.resx">
|
||||
<DependentUpon>About.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="PKX\f1-Main.resx">
|
||||
<DependentUpon>f1-Main.cs</DependentUpon>
|
||||
<EmbeddedResource Include="MainWindow\Main.resx">
|
||||
<DependentUpon>Main.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="PKX\f4-RibbMedal.resx">
|
||||
<DependentUpon>f4-RibbMedal.cs</DependentUpon>
|
||||
<EmbeddedResource Include="Subforms\PKM Editors\MemoryAmie.resx">
|
||||
<DependentUpon>MemoryAmie.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="PKX\f3-MemoryAmie.resx">
|
||||
<DependentUpon>f3-MemoryAmie.cs</DependentUpon>
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen5\SAV_CGearSkin.resx">
|
||||
<DependentUpon>SAV_CGearSkin.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_PokeBlockORAS.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_Link6.resx">
|
||||
<DependentUpon>SAV_Link6.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_PokeBlockORAS.resx">
|
||||
<DependentUpon>SAV_PokeBlockORAS.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_Database.resx">
|
||||
<EmbeddedResource Include="Subforms\SAV_Database.resx">
|
||||
<DependentUpon>SAV_Database.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_PokedexORAS.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_PokedexORAS.resx">
|
||||
<DependentUpon>SAV_PokedexORAS.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_SecretBase.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_SecretBase.resx">
|
||||
<DependentUpon>SAV_SecretBase.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_EventFlags.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\SAV_EventFlags.resx">
|
||||
<DependentUpon>SAV_EventFlags.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\frmReport.resx">
|
||||
<EmbeddedResource Include="Subforms\frmReport.resx">
|
||||
<DependentUpon>frmReport.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
|
|
@ -292,37 +360,37 @@
|
|||
<SubType>Designer</SubType>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_BerryFieldXY.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_BerryFieldXY.resx">
|
||||
<DependentUpon>SAV_BerryFieldXY.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_BoxLayout.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_BoxLayout.resx">
|
||||
<DependentUpon>SAV_BoxLayout.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_HallOfFame.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_HallOfFame.resx">
|
||||
<DependentUpon>SAV_HallOfFame.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_Inventory.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\SAV_Inventory.resx">
|
||||
<DependentUpon>SAV_Inventory.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_OPower.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_OPower.resx">
|
||||
<DependentUpon>SAV_OPower.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_PokedexXY.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_PokedexXY.resx">
|
||||
<DependentUpon>SAV_PokedexXY.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_Pokepuff.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_Pokepuff.resx">
|
||||
<DependentUpon>SAV_Pokepuff.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_SimpleTrainer.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\SAV_SimpleTrainer.resx">
|
||||
<DependentUpon>SAV_SimpleTrainer.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_SuperTrain.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_SuperTrain.resx">
|
||||
<DependentUpon>SAV_SuperTrain.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_Trainer.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\Gen6\SAV_Trainer.resx">
|
||||
<DependentUpon>SAV_Trainer.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="SAV\SAV_Wondercard.resx">
|
||||
<EmbeddedResource Include="Subforms\Save Editors\SAV_Wondercard.resx">
|
||||
<DependentUpon>SAV_Wondercard.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Misc\SplashScreen.resx">
|
||||
|
|
@ -368,18 +436,24 @@
|
|||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\byte\dexnav_ao.pkl" />
|
||||
<None Include="Resources\byte\eggmove_ao.pkl" />
|
||||
<None Include="Resources\byte\eggmove_xy.pkl" />
|
||||
<None Include="Resources\byte\encounter_a.pkl" />
|
||||
<None Include="Resources\byte\encounter_ao.pkl" />
|
||||
<None Include="Resources\byte\encounter_o.pkl" />
|
||||
<None Include="Resources\byte\encounter_x.pkl" />
|
||||
<None Include="Resources\byte\encounter_xy.pkl" />
|
||||
<None Include="Resources\byte\encounter_y.pkl" />
|
||||
<None Include="Resources\byte\evos_ao.pkl" />
|
||||
<None Include="Resources\byte\lvlmove_ao.pkl" />
|
||||
<None Include="Resources\byte\lvlmove_xy.pkl" />
|
||||
<None Include="Resources\byte\personal_b2w2" />
|
||||
<None Include="Resources\byte\personal_bw" />
|
||||
<None Include="Resources\byte\personal_dp" />
|
||||
<None Include="Resources\byte\personal_e" />
|
||||
<None Include="Resources\byte\personal_fr" />
|
||||
<None Include="Resources\byte\personal_hgss" />
|
||||
<None Include="Resources\byte\personal_lg" />
|
||||
<None Include="Resources\byte\personal_pt" />
|
||||
<None Include="Resources\byte\personal_rs" />
|
||||
<None Include="Resources\byte\personal_xy" />
|
||||
<None Include="Resources\byte\wc6.pkl" />
|
||||
<None Include="Resources\byte\wc6full.pkl" />
|
||||
|
|
@ -406,31 +480,272 @@
|
|||
<None Include="Resources\img\Program\showdown.png" />
|
||||
<None Include="Resources\img\Program\folder.png" />
|
||||
<None Include="Resources\img\Program\main.png" />
|
||||
<Content Include="Resources\text\de\text_Pokeblock_de.txt" />
|
||||
<None Include="Resources\img\ribbons\ribbonalert.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonartist.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonbattlechamp.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonbattlerexpert.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonbattlerskillfull.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonbestfriends.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonbirthday.png" />
|
||||
<None Include="Resources\img\ribbons\ribboncareless.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampiong3hoenn.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampiong6hoenn.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampionkalos.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampionnational.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampionregional.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampionsinnoh.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampionworld.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonclassic.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonconteststar.png" />
|
||||
<None Include="Resources\img\ribbons\ribboncountmemorybattle.png" />
|
||||
<None Include="Resources\img\ribbons\ribboncountmemorybattle2.png" />
|
||||
<None Include="Resources\img\ribbons\ribboncountmemorycontest.png" />
|
||||
<None Include="Resources\img\ribbons\ribboncountmemorycontest2.png" />
|
||||
<None Include="Resources\img\ribbons\ribboncountry.png" />
|
||||
<None Include="Resources\img\ribbons\ribbondowncast.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonearth.png" />
|
||||
<None Include="Resources\img\ribbons\ribboneffort.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonevent.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonfootprint.png" />
|
||||
<None Include="Resources\img\ribbons\ribbongorgeous.png" />
|
||||
<None Include="Resources\img\ribbons\ribbongorgeousroyal.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonlegend.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonmasterbeauty.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonmastercleverness.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonmastercoolness.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonmastercuteness.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonmastertoughness.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonnational.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonpremier.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonrecord.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonrelax.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonroyal.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonshock.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonsmile.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonsnooze.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonsouvenir.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonspecial.png" />
|
||||
<None Include="Resources\img\ribbons\ribbontraining.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonwishing.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonworld.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonchampionbattle.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonbattlerskillful.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonability.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonabilitydouble.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonabilitygreat.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonabilitymulti.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonabilitypair.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonabilityworld.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3beauty.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3beautyhyper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3beautymaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3beautysuper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3cool.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3coolhyper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3coolmaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3coolsuper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3cute.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3cutehyper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3cutemaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3cutesuper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3smart.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3smarthyper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3smartmaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3smartsuper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3tough.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3toughhyper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3toughmaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong3toughsuper.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4beauty.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4beautygreat.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4beautymaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4beautyultra.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4cool.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4coolgreat.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4coolmaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4coolultra.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4cute.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4cutegreat.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4cutemaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4cuteultra.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4smart.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4smartgreat.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4smartmaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4smartultra.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4tough.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4toughgreat.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4toughmaster.png" />
|
||||
<None Include="Resources\img\ribbons\ribbong4toughultra.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonvictory.png" />
|
||||
<None Include="Resources\img\ribbons\ribbonwinning.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp24hgss.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp21hgss.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp22hgss.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp23hgss.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp20hgss.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp18hgss.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp19hgss.png" />
|
||||
<None Include="Resources\img\box\hgss\box_wp17hgss.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp23pt.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp24pt.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp22pt.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp20pt.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp21pt.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp17pt.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp18pt.png" />
|
||||
<None Include="Resources\img\box\pt\box_wp19pt.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp24dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp23dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp21dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp22dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp19dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp20dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp17dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp18dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp16dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp13dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp14dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp15dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp11dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp12dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp09dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp10dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp08dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp06dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp07dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp05dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp04dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp03dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp01dp.png" />
|
||||
<None Include="Resources\img\box\dp\box_wp02dp.png" />
|
||||
<None Include="Resources\img\box\e\box_wp16e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp15e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp13e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp14e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp11e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp12e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp09e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp10e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp06e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp07e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp08e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp05e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp02e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp03e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp04e.png" />
|
||||
<None Include="Resources\img\box\e\box_wp01e.png" />
|
||||
<None Include="Resources\img\box\frlg\box_wp15frlg.png" />
|
||||
<None Include="Resources\img\box\frlg\box_wp16frlg.png" />
|
||||
<None Include="Resources\img\box\frlg\box_wp13frlg.png" />
|
||||
<None Include="Resources\img\box\frlg\box_wp14frlg.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp16rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp14rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp15rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp12rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp13rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp10rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp11rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp08rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp09rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp05rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp06rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp07rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp03rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp04rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp01rs.png" />
|
||||
<None Include="Resources\img\box\rs\box_wp02rs.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp02bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp03bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp04bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp06bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp05bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp07bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp08bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp09bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp10bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp11bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp12bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp13bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp14bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp15bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp16bw.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp17b2w2.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp18b2w2.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp22bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp23bw.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp19b2w2.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp21bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp01bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp17bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp18bw.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp19bw.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp20b2w2.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp20bw.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp21b2w2.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp22b2w2.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp23b2w2.png" />
|
||||
<None Include="Resources\img\box\b2w2\box_wp24b2w2.png" />
|
||||
<None Include="Resources\img\box\bw\box_wp24bw.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp24ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp24xy.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp23ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp23xy.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp22ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp22xy.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp21ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp21xy.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp20ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp20xy.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp19ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp19xy.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp18ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp18xy.png" />
|
||||
<None Include="Resources\img\box\ao\box_wp17ao.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp17xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp16xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp15xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp14xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp13xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp12xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp11xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp09xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp10xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp08xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp07xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp06xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp05xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp04xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp03xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp02xy.png" />
|
||||
<None Include="Resources\img\box\xy\box_wp01xy.png" />
|
||||
<None Include="Resources\img\item\item_tm.png" />
|
||||
<None Include="Resources\text\de\text_Pokeblock_de.txt" />
|
||||
<None Include="Resources\text\de\text_tradeao_de.txt" />
|
||||
<None Include="Resources\text\de\text_tradexy_de.txt" />
|
||||
<Content Include="Resources\text\en\text_Pokeblock_en.txt" />
|
||||
<None Include="Resources\text\en\text_Pokeblock_en.txt" />
|
||||
<None Include="Resources\text\en\text_tradeao_en.txt" />
|
||||
<None Include="Resources\text\en\text_tradexy_en.txt" />
|
||||
<Content Include="Resources\text\es\text_Pokeblock_es.txt" />
|
||||
<None Include="Resources\text\es\text_Pokeblock_es.txt" />
|
||||
<None Include="Resources\text\es\text_tradeao_es.txt" />
|
||||
<None Include="Resources\text\es\text_tradexy_es.txt" />
|
||||
<Content Include="Resources\text\fr\text_Pokeblock_fr.txt" />
|
||||
<None Include="Resources\text\fr\text_Pokeblock_fr.txt" />
|
||||
<None Include="Resources\text\fr\text_tradeao_fr.txt" />
|
||||
<None Include="Resources\text\fr\text_tradexy_fr.txt" />
|
||||
<Content Include="Resources\text\it\text_Pokeblock_it.txt" />
|
||||
<None Include="Resources\text\gen3\text_ItemsG3_en.txt" />
|
||||
<None Include="Resources\text\gen3\text_rsefrlg_00000_en.txt" />
|
||||
<None Include="Resources\text\it\text_Pokeblock_it.txt" />
|
||||
<None Include="Resources\text\it\text_tradeao_it.txt" />
|
||||
<None Include="Resources\text\it\text_tradexy_it.txt" />
|
||||
<Content Include="Resources\text\ja\text_Pokeblock_ja.txt" />
|
||||
<None Include="Resources\text\ja\text_Pokeblock_ja.txt" />
|
||||
<None Include="Resources\text\ja\text_tradeao_ja.txt" />
|
||||
<None Include="Resources\text\ja\text_tradexy_ja.txt" />
|
||||
<Content Include="Resources\text\ko\text_Pokeblock_ko.txt" />
|
||||
<None Include="Resources\text\ko\text_Pokeblock_ko.txt" />
|
||||
<None Include="Resources\text\ko\text_tradeao_ko.txt" />
|
||||
<None Include="Resources\text\ko\text_tradexy_ko.txt" />
|
||||
<None Include="Resources\text\other\const_oras.txt" />
|
||||
<None Include="Resources\text\other\flags_oras.txt" />
|
||||
<None Include="Resources\text\other\flags_xy.txt" />
|
||||
<Content Include="Resources\text\zh\text_Pokeblock_zh.txt" />
|
||||
<None Include="Resources\text\zh\text_Pokeblock_zh.txt" />
|
||||
<None Include="Resources\text\it\lang_it.txt" />
|
||||
<None Include="Resources\img\Pokemon Sprites\414-2.png" />
|
||||
<None Include="Resources\img\Pokemon Sprites\414-1.png" />
|
||||
|
|
@ -584,7 +899,6 @@
|
|||
<None Include="Resources\text\locale\sr_ID\sr_008.txt" />
|
||||
<None Include="Resources\text\locale\sr_ID\sr_001.txt" />
|
||||
<None Include="Resources\text\locale\text_country_all.txt" />
|
||||
<None Include="Resources\byte\personal" />
|
||||
<None Include="Resources\byte\PGLDings-NormalRegular.ttf" />
|
||||
<None Include="Resources\img\item\item_650.png" />
|
||||
<None Include="Resources\text\zh\text_xy_60000_zh.txt" />
|
||||
|
|
@ -674,7 +988,7 @@
|
|||
<None Include="Resources\img\Pokemon Sprites\18-1.png" />
|
||||
<None Include="Resources\img\Pokemon Sprites\15-1.png" />
|
||||
<None Include="Resources\img\Pokemon Sprites\720-1.png" />
|
||||
<Content Include="Resources\icon.ico" />
|
||||
<None Include="Resources\icon.ico" />
|
||||
<None Include="Resources\img\ribbons\ribbon_45.png" />
|
||||
<None Include="Resources\img\ribbons\ribbon_44.png" />
|
||||
<None Include="Resources\img\ribbons\ribbon_43.png" />
|
||||
|
|
@ -682,7 +996,6 @@
|
|||
<None Include="Resources\img\ribbons\ribbon_41.png" />
|
||||
<None Include="Resources\img\ribbons\ribbon_40.png" />
|
||||
<None Include="Resources\img\ribbons\ribbon_46.png" />
|
||||
<None Include="Resources\byte\fulldex_XY" />
|
||||
<None Include="Resources\img\Pokemon Sprites\unknown.png" />
|
||||
<None Include="Resources\img\item\item_670.png" />
|
||||
<None Include="Resources\img\item\item_669.png" />
|
||||
|
|
|
|||
154
PKM/PK3.cs
|
|
@ -9,7 +9,7 @@ public class PK3 : PKM // 3rd Generation PKM File
|
|||
{
|
||||
0x2A, 0x2B
|
||||
};
|
||||
public override int SIZE_PARTY => PKX.SIZE_3PARTY;
|
||||
public sealed override int SIZE_PARTY => PKX.SIZE_3PARTY;
|
||||
public override int SIZE_STORED => PKX.SIZE_3STORED;
|
||||
public override int Format => 3;
|
||||
public PK3(byte[] decryptedData = null, string ident = null)
|
||||
|
|
@ -25,16 +25,15 @@ public PK3(byte[] decryptedData = null, string ident = null)
|
|||
// Future Attributes
|
||||
public override uint EncryptionConstant { get { return PID; } set { } }
|
||||
public override int Nature { get { return (int)(PID % 25); } set { } }
|
||||
public override int AltForm { get { return -1; } set { } }
|
||||
public override int AltForm { get { return Species == 201 ? PKX.getUnownForm(PID) : 0; } set { } }
|
||||
|
||||
public override bool IsNicknamed { get { return PKX.getIsNicknamed(Species, Nickname); } set { } }
|
||||
public override int Gender { get { return PKX.getGender(Species, PID); } set { } }
|
||||
public override int Characteristic => -1;
|
||||
public override int CurrentFriendship { get { return OT_Friendship; } set { OT_Friendship = value; } }
|
||||
public override int Ability { get { return PKX.Gen3Abilities[Species][AbilityNumber]; } set { } }
|
||||
public override int Ability { get { int[] abils = PersonalTable.RS.getAbilities(Species, 0); return abils[abils[1] == 0 ? 0 : AbilityNumber]; } set { } }
|
||||
public override int CurrentHandler { get { return 0; } set { } }
|
||||
public override int Egg_Location { get { return 0; } set { } }
|
||||
public override int Met_Level { get { return -1; } set { } }
|
||||
|
||||
// 0x20 Intro
|
||||
public override uint PID { get { return BitConverter.ToUInt32(Data, 0x00); } set { BitConverter.GetBytes(value).CopyTo(Data, 0x00); } }
|
||||
|
|
@ -106,6 +105,7 @@ public PK3(byte[] decryptedData = null, string ident = null)
|
|||
public override int Met_Location { get { return Data[0x45]; } set { Data[0x45] = (byte)value; } }
|
||||
// Origins
|
||||
private ushort Origins { get { return BitConverter.ToUInt16(Data, 0x46); } set { BitConverter.GetBytes(value).CopyTo(Data, 0x46); } }
|
||||
public override int Met_Level { get { return Origins & 0x7F; } set { Origins = (ushort)((Origins & ~0x7F) | value); } }
|
||||
public override int Version { get { return (Origins >> 7) & 0xF; } set { Origins = (ushort)((Origins & ~0x780) | ((value & 0xF) << 7));} }
|
||||
public override int Ball { get { return (Origins >> 11) & 0xF; } set { Origins = (ushort)((Origins & ~0x7800) | ((value & 0xF) << 11)); } }
|
||||
public override int OT_Gender { get { return (Origins >> 15) & 1; } set { Origins = (ushort)(Origins & ~(1 << 15) | ((value & 1) << 15)); } }
|
||||
|
|
@ -121,28 +121,28 @@ public PK3(byte[] decryptedData = null, string ident = null)
|
|||
public int AbilityNumber { get { return (int)((IV32 >> 31) & 1); } set { IV32 = (IV32 & 0x7FFFFFFF) | (value == 1 ? 0x80000000 : 0); } }
|
||||
|
||||
private uint RIB0 { get { return BitConverter.ToUInt32(Data, 0x4C); } set { BitConverter.GetBytes(value).CopyTo(Data, 0x4C); } }
|
||||
public int Cool_Ribbons { get { return (int)(RIB0 >> 00) & 7; } set { RIB0 = (uint)((RIB0 & ~(7 << 00)) | (uint)(value & 7)); } }
|
||||
public int Beauty_Ribbons{ get { return (int)(RIB0 >> 03) & 7; } set { RIB0 = (uint)((RIB0 & ~(7 << 03)) | (uint)(value & 7)); } }
|
||||
public int Cute_Ribbons { get { return (int)(RIB0 >> 06) & 7; } set { RIB0 = (uint)((RIB0 & ~(7 << 06)) | (uint)(value & 7)); } }
|
||||
public int Smart_Ribbons { get { return (int)(RIB0 >> 09) & 3; } set { RIB0 = (uint)((RIB0 & ~(7 << 09)) | (uint)(value & 7)); } }
|
||||
public int Tough_Ribbons { get { return (int)(RIB0 >> 12) & 3; } set { RIB0 = (uint)((RIB0 & ~(7 << 12)) | (uint)(value & 7)); } }
|
||||
public bool Champion { get { return (RIB0 & (1 << 15)) == 1 << 15; } set { RIB0 = (uint)(RIB0 & ~(1 << 15) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Winning { get { return (RIB0 & (1 << 16)) == 1 << 16; } set { RIB0 = (uint)(RIB0 & ~(1 << 16) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Victory { get { return (RIB0 & (1 << 17)) == 1 << 17; } set { RIB0 = (uint)(RIB0 & ~(1 << 17) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Artist { get { return (RIB0 & (1 << 18)) == 1 << 18; } set { RIB0 = (uint)(RIB0 & ~(1 << 18) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Effort { get { return (RIB0 & (1 << 19)) == 1 << 19; } set { RIB0 = (uint)(RIB0 & ~(1 << 19) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Special1 { get { return (RIB0 & (1 << 20)) == 1 << 20; } set { RIB0 = (uint)(RIB0 & ~(1 << 20) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Special2 { get { return (RIB0 & (1 << 21)) == 1 << 21; } set { RIB0 = (uint)(RIB0 & ~(1 << 21) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Special3 { get { return (RIB0 & (1 << 22)) == 1 << 22; } set { RIB0 = (uint)(RIB0 & ~(1 << 22) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Special4 { get { return (RIB0 & (1 << 23)) == 1 << 23; } set { RIB0 = (uint)(RIB0 & ~(1 << 23) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Special5 { get { return (RIB0 & (1 << 24)) == 1 << 24; } set { RIB0 = (uint)(RIB0 & ~(1 << 24) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Special6 { get { return (RIB0 & (1 << 25)) == 1 << 25; } set { RIB0 = (uint)(RIB0 & ~(1 << 25) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Special7 { get { return (RIB0 & (1 << 26)) == 1 << 26; } set { RIB0 = (uint)(RIB0 & ~(1 << 26) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Unused1 { get { return (RIB0 & (1 << 27)) == 1 << 27; } set { RIB0 = (uint)(RIB0 & ~(1 << 27) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Unused2 { get { return (RIB0 & (1 << 28)) == 1 << 28; } set { RIB0 = (uint)(RIB0 & ~(1 << 28) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Unused3 { get { return (RIB0 & (1 << 29)) == 1 << 29; } set { RIB0 = (uint)(RIB0 & ~(1 << 29) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public bool Unused4 { get { return (RIB0 & (1 << 30)) == 1 << 30; } set { RIB0 = (uint)(RIB0 & ~(1 << 30) | (uint)(value ? 1 << 0 : 0)); } }
|
||||
public override bool FatefulEncounter { get { return (RIB0 & (1 << 31)) == 1 << 31; } set { RIB0 = (RIB0 & ~(1 << 31)) | (uint)(value ? 1 << 0 : 0); } }
|
||||
public int RibbonCountG3Cool { get { return (int)(RIB0 >> 00) & 7; } set { RIB0 = (uint)((RIB0 & ~(7 << 00)) | (uint)(value & 7) << 00); } }
|
||||
public int RibbonCountG3Beauty { get { return (int)(RIB0 >> 03) & 7; } set { RIB0 = (uint)((RIB0 & ~(7 << 03)) | (uint)(value & 7) << 03); } }
|
||||
public int RibbonCountG3Cute { get { return (int)(RIB0 >> 06) & 7; } set { RIB0 = (uint)((RIB0 & ~(7 << 06)) | (uint)(value & 7) << 06); } }
|
||||
public int RibbonCountG3Smart { get { return (int)(RIB0 >> 09) & 3; } set { RIB0 = (uint)((RIB0 & ~(7 << 09)) | (uint)(value & 7) << 09); } }
|
||||
public int RibbonCountG3Tough { get { return (int)(RIB0 >> 12) & 3; } set { RIB0 = (uint)((RIB0 & ~(7 << 12)) | (uint)(value & 7) << 12); } }
|
||||
public bool RibbonChampionG3Hoenn { get { return (RIB0 & (1 << 15)) == 1 << 15; } set { RIB0 = (uint)(RIB0 & ~(1 << 15) | (uint)(value ? 1 << 15 : 0)); } }
|
||||
public bool RibbonWinning { get { return (RIB0 & (1 << 16)) == 1 << 16; } set { RIB0 = (uint)(RIB0 & ~(1 << 16) | (uint)(value ? 1 << 16 : 0)); } }
|
||||
public bool RibbonVictory { get { return (RIB0 & (1 << 17)) == 1 << 17; } set { RIB0 = (uint)(RIB0 & ~(1 << 17) | (uint)(value ? 1 << 17 : 0)); } }
|
||||
public bool RibbonArtist { get { return (RIB0 & (1 << 18)) == 1 << 18; } set { RIB0 = (uint)(RIB0 & ~(1 << 18) | (uint)(value ? 1 << 18 : 0)); } }
|
||||
public bool RibbonEffort { get { return (RIB0 & (1 << 19)) == 1 << 19; } set { RIB0 = (uint)(RIB0 & ~(1 << 19) | (uint)(value ? 1 << 19 : 0)); } }
|
||||
public bool RibbonChampionBattle { get { return (RIB0 & (1 << 20)) == 1 << 20; } set { RIB0 = (uint)(RIB0 & ~(1 << 20) | (uint)(value ? 1 << 20 : 0)); } }
|
||||
public bool RibbonChampionRegional { get { return (RIB0 & (1 << 21)) == 1 << 21; } set { RIB0 = (uint)(RIB0 & ~(1 << 21) | (uint)(value ? 1 << 21 : 0)); } }
|
||||
public bool RibbonChampionNational { get { return (RIB0 & (1 << 22)) == 1 << 22; } set { RIB0 = (uint)(RIB0 & ~(1 << 22) | (uint)(value ? 1 << 22 : 0)); } }
|
||||
public bool RibbonCountry { get { return (RIB0 & (1 << 23)) == 1 << 23; } set { RIB0 = (uint)(RIB0 & ~(1 << 23) | (uint)(value ? 1 << 23 : 0)); } }
|
||||
public bool RibbonNational { get { return (RIB0 & (1 << 24)) == 1 << 24; } set { RIB0 = (uint)(RIB0 & ~(1 << 24) | (uint)(value ? 1 << 24 : 0)); } }
|
||||
public bool RibbonEarth { get { return (RIB0 & (1 << 25)) == 1 << 25; } set { RIB0 = (uint)(RIB0 & ~(1 << 25) | (uint)(value ? 1 << 25 : 0)); } }
|
||||
public bool RibbonWorld { get { return (RIB0 & (1 << 26)) == 1 << 26; } set { RIB0 = (uint)(RIB0 & ~(1 << 26) | (uint)(value ? 1 << 26 : 0)); } }
|
||||
public bool Unused1 { get { return (RIB0 & (1 << 27)) == 1 << 27; } set { RIB0 = (uint)(RIB0 & ~(1 << 27) | (uint)(value ? 1 << 27 : 0)); } }
|
||||
public bool Unused2 { get { return (RIB0 & (1 << 28)) == 1 << 28; } set { RIB0 = (uint)(RIB0 & ~(1 << 28) | (uint)(value ? 1 << 28 : 0)); } }
|
||||
public bool Unused3 { get { return (RIB0 & (1 << 29)) == 1 << 29; } set { RIB0 = (uint)(RIB0 & ~(1 << 29) | (uint)(value ? 1 << 29 : 0)); } }
|
||||
public bool Unused4 { get { return (RIB0 & (1 << 30)) == 1 << 30; } set { RIB0 = (uint)(RIB0 & ~(1 << 30) | (uint)(value ? 1 << 30 : 0)); } }
|
||||
public override bool FatefulEncounter { get { return RIB0 >> 31 == 1; } set { RIB0 = (RIB0 & ~(1 << 31)) | (uint)(value ? 1 << 31 : 0); } }
|
||||
#endregion
|
||||
|
||||
public override int Stat_Level { get { return Data[0x54]; } set { Data[0x54] = (byte)value; } }
|
||||
|
|
@ -165,7 +165,7 @@ public override byte[] Encrypt()
|
|||
}
|
||||
public override bool getGenderIsValid()
|
||||
{
|
||||
int gv = PKX.Personal[Species].Gender;
|
||||
int gv = PersonalTable.RS[Species].Gender;
|
||||
|
||||
if (gv == 255)
|
||||
return Gender == 2;
|
||||
|
|
@ -180,6 +180,10 @@ public override bool getGenderIsValid()
|
|||
|
||||
return false;
|
||||
}
|
||||
public override bool CanHoldItem(ushort[] ValidArray)
|
||||
{
|
||||
return ValidArray.Contains((ushort)G3Item);
|
||||
}
|
||||
|
||||
public PK4 convertToPK4()
|
||||
{
|
||||
|
|
@ -192,11 +196,11 @@ public PK4 convertToPK4()
|
|||
SID = SID,
|
||||
EXP = IsEgg ? PKX.getEXP(5, Species) : EXP,
|
||||
IsEgg = false,
|
||||
OT_Friendship = 40,
|
||||
Circle = Circle,
|
||||
Square = Square,
|
||||
Triangle = Triangle,
|
||||
Heart = Heart,
|
||||
OT_Friendship = 70,
|
||||
MarkCircle = MarkCircle,
|
||||
MarkSquare = MarkSquare,
|
||||
MarkTriangle = MarkTriangle,
|
||||
MarkHeart = MarkHeart,
|
||||
Language = Language,
|
||||
EV_HP = EV_HP,
|
||||
EV_ATK = EV_ATK,
|
||||
|
|
@ -210,7 +214,6 @@ public PK4 convertToPK4()
|
|||
CNT_Smart = CNT_Smart,
|
||||
CNT_Tough = CNT_Tough,
|
||||
CNT_Sheen = CNT_Sheen,
|
||||
FatefulEncounter = FatefulEncounter,
|
||||
Move1 = Move1,
|
||||
Move2 = Move2,
|
||||
Move3 = Move3,
|
||||
|
|
@ -219,17 +222,17 @@ public PK4 convertToPK4()
|
|||
Move2_PPUps = Move2_PPUps,
|
||||
Move3_PPUps = Move3_PPUps,
|
||||
Move4_PPUps = Move4_PPUps,
|
||||
Move1_PP = PKX.getMovePP(Move1, Move1_PPUps),
|
||||
Move2_PP = PKX.getMovePP(Move2, Move2_PPUps),
|
||||
Move3_PP = PKX.getMovePP(Move3, Move3_PPUps),
|
||||
Move4_PP = PKX.getMovePP(Move4, Move4_PPUps),
|
||||
Move1_PP = getMovePP(Move1, Move1_PPUps),
|
||||
Move2_PP = getMovePP(Move2, Move2_PPUps),
|
||||
Move3_PP = getMovePP(Move3, Move3_PPUps),
|
||||
Move4_PP = getMovePP(Move4, Move4_PPUps),
|
||||
IV_HP = IV_HP,
|
||||
IV_ATK = IV_ATK,
|
||||
IV_DEF = IV_DEF,
|
||||
IV_SPA = IV_SPA,
|
||||
IV_SPD = IV_SPD,
|
||||
IV_SPE = IV_SPE,
|
||||
Ability = PKX.Gen3Abilities[Species][Ability],
|
||||
Ability = Ability,
|
||||
Version = Version,
|
||||
Ball = Ball,
|
||||
PKRS_Strain = PKRS_Strain,
|
||||
|
|
@ -239,41 +242,45 @@ public PK4 convertToPK4()
|
|||
Met_Month = moment.Month,
|
||||
Met_Day = moment.Day,
|
||||
Met_Location = 0x37, // Pal Park
|
||||
RIB6_4 = Champion,
|
||||
RIB6_5 = Winning,
|
||||
RIB6_6 = Victory,
|
||||
RIB6_7 = Artist,
|
||||
RIB7_0 = Effort,
|
||||
RIB7_1 = Special1, // Battle Champion Ribbon
|
||||
RIB7_2 = Special2, // Regional Champion Ribbon
|
||||
RIB7_3 = Special3, // National Champion Ribbon
|
||||
RIB7_4 = Special4, // Country Ribbon
|
||||
RIB7_5 = Special5, // National Ribbon
|
||||
RIB7_6 = Special6, // Earth Ribbon
|
||||
RIB7_7 = Special7, // World Ribbon
|
||||
|
||||
RibbonChampionG3Hoenn = RibbonChampionG3Hoenn,
|
||||
RibbonWinning = RibbonWinning,
|
||||
RibbonVictory = RibbonVictory,
|
||||
RibbonArtist = RibbonArtist,
|
||||
RibbonEffort = RibbonEffort,
|
||||
RibbonChampionBattle = RibbonChampionBattle,
|
||||
RibbonChampionRegional = RibbonChampionRegional,
|
||||
RibbonChampionNational = RibbonChampionNational,
|
||||
RibbonCountry = RibbonCountry,
|
||||
RibbonNational = RibbonNational,
|
||||
RibbonEarth = RibbonEarth,
|
||||
RibbonWorld = RibbonWorld,
|
||||
};
|
||||
|
||||
if (Met_Location == 0xFF) // Fateful
|
||||
pk4.FatefulEncounter = Met_Location == 0xFF || FatefulEncounter; // obedience flag
|
||||
|
||||
// Remaining Ribbons
|
||||
pk4.RIB4_0 |= Cool_Ribbons > 0;
|
||||
pk4.RIB4_1 |= Cool_Ribbons > 1;
|
||||
pk4.RIB4_2 |= Cool_Ribbons > 2;
|
||||
pk4.RIB4_3 |= Cool_Ribbons > 3;
|
||||
pk4.RIB4_4 |= Beauty_Ribbons > 0;
|
||||
pk4.RIB4_5 |= Beauty_Ribbons > 1;
|
||||
pk4.RIB4_6 |= Beauty_Ribbons > 2;
|
||||
pk4.RIB4_7 |= Beauty_Ribbons > 3;
|
||||
pk4.RIB5_0 |= Cute_Ribbons > 0;
|
||||
pk4.RIB5_1 |= Cute_Ribbons > 1;
|
||||
pk4.RIB5_2 |= Cute_Ribbons > 2;
|
||||
pk4.RIB5_3 |= Cute_Ribbons > 3;
|
||||
pk4.RIB5_4 |= Smart_Ribbons > 0;
|
||||
pk4.RIB5_5 |= Smart_Ribbons > 1;
|
||||
pk4.RIB5_6 |= Smart_Ribbons > 2;
|
||||
pk4.RIB5_7 |= Smart_Ribbons > 3;
|
||||
pk4.RIB6_0 |= Tough_Ribbons > 0;
|
||||
pk4.RIB6_1 |= Tough_Ribbons > 1;
|
||||
pk4.RIB6_2 |= Tough_Ribbons > 2;
|
||||
pk4.RIB6_3 |= Tough_Ribbons > 3;
|
||||
pk4.RibbonG3Cool |= RibbonCountG3Cool > 0;
|
||||
pk4.RibbonG3CoolSuper |= RibbonCountG3Cool > 1;
|
||||
pk4.RibbonG3CoolHyper |= RibbonCountG3Cool > 2;
|
||||
pk4.RibbonG3CoolMaster |= RibbonCountG3Cool > 3;
|
||||
pk4.RibbonG3Beauty |= RibbonCountG3Beauty > 0;
|
||||
pk4.RibbonG3BeautySuper |= RibbonCountG3Beauty > 1;
|
||||
pk4.RibbonG3BeautyHyper |= RibbonCountG3Beauty > 2;
|
||||
pk4.RibbonG3BeautyMaster |= RibbonCountG3Beauty > 3;
|
||||
pk4.RibbonG3Cute |= RibbonCountG3Cute > 0;
|
||||
pk4.RibbonG3CuteSuper |= RibbonCountG3Cute > 1;
|
||||
pk4.RibbonG3CuteHyper |= RibbonCountG3Cute > 2;
|
||||
pk4.RibbonG3CuteMaster |= RibbonCountG3Cute > 3;
|
||||
pk4.RibbonG3Smart |= RibbonCountG3Smart > 0;
|
||||
pk4.RibbonG3SmartSuper |= RibbonCountG3Smart > 1;
|
||||
pk4.RibbonG3SmartHyper |= RibbonCountG3Smart > 2;
|
||||
pk4.RibbonG3SmartMaster |= RibbonCountG3Smart > 3;
|
||||
pk4.RibbonG3Tough |= RibbonCountG3Tough > 0;
|
||||
pk4.RibbonG3ToughSuper |= RibbonCountG3Tough > 1;
|
||||
pk4.RibbonG3ToughHyper |= RibbonCountG3Tough > 2;
|
||||
pk4.RibbonG3ToughMaster |= RibbonCountG3Tough > 3;
|
||||
|
||||
// Yay for reusing string buffers!
|
||||
PKX.G4TransferTrashBytes[pk4.Language].CopyTo(pk4.Data, 0x48 + 4);
|
||||
|
|
@ -287,8 +294,11 @@ public PK4 convertToPK4()
|
|||
pk4.IsNicknamed = IsNicknamed;
|
||||
|
||||
// Unown Form
|
||||
if (Species == 201)
|
||||
pk4.AltForm = PKX.getUnownForm(PID);
|
||||
pk4.AltForm = AltForm;
|
||||
|
||||
int item = HeldItem;
|
||||
if (HeldItem > 0)
|
||||
pk4.HeldItem = item;
|
||||
|
||||
// Remove HM moves
|
||||
int[] banned = { 15, 19, 57, 70, 148, 249, 127, 291 };
|
||||
|
|
|
|||
244
PKM/PK4.cs
|
|
@ -9,7 +9,7 @@ public class PK4 : PKM // 4th Generation PKM File
|
|||
{
|
||||
0x42, 0x43, 0x5E, 0x63, 0x64, 0x65, 0x66, 0x67, 0x87
|
||||
};
|
||||
public override int SIZE_PARTY => PKX.SIZE_4PARTY;
|
||||
public sealed override int SIZE_PARTY => PKX.SIZE_4PARTY;
|
||||
public override int SIZE_STORED => PKX.SIZE_4STORED;
|
||||
public override int Format => 4;
|
||||
public PK4(byte[] decryptedData = null, string ident = null)
|
||||
|
|
@ -57,37 +57,37 @@ public PK4(byte[] decryptedData = null, string ident = null)
|
|||
public override int CNT_Sheen { get { return Data[0x23]; } set { Data[0x23] = (byte)value; } }
|
||||
|
||||
private byte RIB0 { get { return Data[0x24]; } set { Data[0x24] = value; } } // Sinnoh 1
|
||||
public bool RIB0_0 { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Sinnoh Champ Ribbon
|
||||
public bool RIB0_1 { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Ability Ribbon
|
||||
public bool RIB0_2 { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Great Ability Ribbon
|
||||
public bool RIB0_3 { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Double Ability Ribbon
|
||||
public bool RIB0_4 { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Multi Ability Ribbon
|
||||
public bool RIB0_5 { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Pair Ability Ribbon
|
||||
public bool RIB0_6 { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // World Ability Ribbon
|
||||
public bool RIB0_7 { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Alert Ribbon
|
||||
private byte RIB1 { get { return Data[0x25]; } set { Data[0x25] = value; } } // Sinnoh 2
|
||||
public bool RIB1_0 { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Shock Ribbon
|
||||
public bool RIB1_1 { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Downcast Ribbon
|
||||
public bool RIB1_2 { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Careless Ribbon
|
||||
public bool RIB1_3 { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Relax Ribbon
|
||||
public bool RIB1_4 { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Snooze Ribbon
|
||||
public bool RIB1_5 { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Smile Ribbon
|
||||
public bool RIB1_6 { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Gorgeous Ribbon
|
||||
public bool RIB1_7 { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Royal Ribbon
|
||||
private byte RIB1 { get { return Data[0x25]; } set { Data[0x25] = value; } } // Sinnoh 2
|
||||
private byte RIB2 { get { return Data[0x26]; } set { Data[0x26] = value; } } // Unova 1
|
||||
public bool RIB2_0 { get { return (RIB2 & (1 << 0)) == 1 << 0; } set { RIB2 = (byte)(RIB2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Gorgeous Royal Ribbon
|
||||
public bool RIB2_1 { get { return (RIB2 & (1 << 1)) == 1 << 1; } set { RIB2 = (byte)(RIB2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Footprint Ribbon
|
||||
public bool RIB2_2 { get { return (RIB2 & (1 << 2)) == 1 << 2; } set { RIB2 = (byte)(RIB2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Record Ribbon
|
||||
public bool RIB2_3 { get { return (RIB2 & (1 << 3)) == 1 << 3; } set { RIB2 = (byte)(RIB2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Event Ribbon
|
||||
public bool RIB2_4 { get { return (RIB2 & (1 << 4)) == 1 << 4; } set { RIB2 = (byte)(RIB2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Legend Ribbon
|
||||
public bool RIB2_5 { get { return (RIB2 & (1 << 5)) == 1 << 5; } set { RIB2 = (byte)(RIB2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // World Champion Ribbon
|
||||
public bool RIB2_6 { get { return (RIB2 & (1 << 6)) == 1 << 6; } set { RIB2 = (byte)(RIB2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Birthday Ribbon
|
||||
public bool RIB2_7 { get { return (RIB2 & (1 << 7)) == 1 << 7; } set { RIB2 = (byte)(RIB2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Special Ribbon
|
||||
private byte RIB3 { get { return Data[0x27]; } set { Data[0x27] = value; } } // Unova 2
|
||||
public bool RIB3_0 { get { return (RIB3 & (1 << 0)) == 1 << 0; } set { RIB3 = (byte)(RIB3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Souvenir Ribbon
|
||||
public bool RIB3_1 { get { return (RIB3 & (1 << 1)) == 1 << 1; } set { RIB3 = (byte)(RIB3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Wishing Ribbon
|
||||
public bool RIB3_2 { get { return (RIB3 & (1 << 2)) == 1 << 2; } set { RIB3 = (byte)(RIB3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Classic Ribbon
|
||||
public bool RIB3_3 { get { return (RIB3 & (1 << 3)) == 1 << 3; } set { RIB3 = (byte)(RIB3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Premier Ribbon
|
||||
private byte RIB3 { get { return Data[0x27]; } set { Data[0x27] = value; } } // Unova 2
|
||||
public bool RibbonChampionSinnoh { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonAbility { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonAbilityGreat { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonAbilityDouble { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonAbilityMulti { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonAbilityPair { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonAbilityWorld { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonAlert { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonShock { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonDowncast { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonCareless { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonRelax { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonSnooze { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonSmile { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonGorgeous { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonRoyal { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonGorgeousRoyal { get { return (RIB2 & (1 << 0)) == 1 << 0; } set { RIB2 = (byte)(RIB2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonFootprint { get { return (RIB2 & (1 << 1)) == 1 << 1; } set { RIB2 = (byte)(RIB2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonRecord { get { return (RIB2 & (1 << 2)) == 1 << 2; } set { RIB2 = (byte)(RIB2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonEvent { get { return (RIB2 & (1 << 3)) == 1 << 3; } set { RIB2 = (byte)(RIB2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonLegend { get { return (RIB2 & (1 << 4)) == 1 << 4; } set { RIB2 = (byte)(RIB2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonWorldChampion { get { return (RIB2 & (1 << 5)) == 1 << 5; } set { RIB2 = (byte)(RIB2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonBirthday { get { return (RIB2 & (1 << 6)) == 1 << 6; } set { RIB2 = (byte)(RIB2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonSpecial { get { return (RIB2 & (1 << 7)) == 1 << 7; } set { RIB2 = (byte)(RIB2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonSouvenir { get { return (RIB3 & (1 << 0)) == 1 << 0; } set { RIB3 = (byte)(RIB3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonWishing { get { return (RIB3 & (1 << 1)) == 1 << 1; } set { RIB3 = (byte)(RIB3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonClassic { get { return (RIB3 & (1 << 2)) == 1 << 2; } set { RIB3 = (byte)(RIB3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonPremier { get { return (RIB3 & (1 << 3)) == 1 << 3; } set { RIB3 = (byte)(RIB3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB3_4 { get { return (RIB3 & (1 << 4)) == 1 << 4; } set { RIB3 = (byte)(RIB3 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Unused
|
||||
public bool RIB3_5 { get { return (RIB3 & (1 << 5)) == 1 << 5; } set { RIB3 = (byte)(RIB3 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Unused
|
||||
public bool RIB3_6 { get { return (RIB3 & (1 << 6)) == 1 << 6; } set { RIB3 = (byte)(RIB3 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Unused
|
||||
|
|
@ -118,41 +118,41 @@ public PK4(byte[] decryptedData = null, string ident = null)
|
|||
public override bool IsNicknamed { get { return ((IV32 >> 31) & 1) == 1; } set { IV32 = (IV32 & 0x7FFFFFFF) | (value ? 0x80000000 : 0); } }
|
||||
|
||||
private byte RIB4 { get { return Data[0x3C]; } set { Data[0x3C] = value; } } // Hoenn 1a
|
||||
public bool RIB4_0 { get { return (RIB4 & (1 << 0)) == 1 << 0; } set { RIB4 = (byte)(RIB4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cool Ribbon
|
||||
public bool RIB4_1 { get { return (RIB4 & (1 << 1)) == 1 << 1; } set { RIB4 = (byte)(RIB4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cool Ribbon Super
|
||||
public bool RIB4_2 { get { return (RIB4 & (1 << 2)) == 1 << 2; } set { RIB4 = (byte)(RIB4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cool Ribbon Hyper
|
||||
public bool RIB4_3 { get { return (RIB4 & (1 << 3)) == 1 << 3; } set { RIB4 = (byte)(RIB4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cool Ribbon Master
|
||||
public bool RIB4_4 { get { return (RIB4 & (1 << 4)) == 1 << 4; } set { RIB4 = (byte)(RIB4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Beauty Ribbon
|
||||
public bool RIB4_5 { get { return (RIB4 & (1 << 5)) == 1 << 5; } set { RIB4 = (byte)(RIB4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Beauty Ribbon Super
|
||||
public bool RIB4_6 { get { return (RIB4 & (1 << 6)) == 1 << 6; } set { RIB4 = (byte)(RIB4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Beauty Ribbon Hyper
|
||||
public bool RIB4_7 { get { return (RIB4 & (1 << 7)) == 1 << 7; } set { RIB4 = (byte)(RIB4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Beauty Ribbon Master
|
||||
private byte RIB5 { get { return Data[0x3D]; } set { Data[0x3D] = value; } } // Hoenn 1b
|
||||
public bool RIB5_0 { get { return (RIB5 & (1 << 0)) == 1 << 0; } set { RIB5 = (byte)(RIB5 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cute Ribbon
|
||||
public bool RIB5_1 { get { return (RIB5 & (1 << 1)) == 1 << 1; } set { RIB5 = (byte)(RIB5 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cute Ribbon Super
|
||||
public bool RIB5_2 { get { return (RIB5 & (1 << 2)) == 1 << 2; } set { RIB5 = (byte)(RIB5 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cute Ribbon Hyper
|
||||
public bool RIB5_3 { get { return (RIB5 & (1 << 3)) == 1 << 3; } set { RIB5 = (byte)(RIB5 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cute Ribbon Master
|
||||
public bool RIB5_4 { get { return (RIB5 & (1 << 4)) == 1 << 4; } set { RIB5 = (byte)(RIB5 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Smart Ribbon
|
||||
public bool RIB5_5 { get { return (RIB5 & (1 << 5)) == 1 << 5; } set { RIB5 = (byte)(RIB5 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Smart Ribbon Super
|
||||
public bool RIB5_6 { get { return (RIB5 & (1 << 6)) == 1 << 6; } set { RIB5 = (byte)(RIB5 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Smart Ribbon Hyper
|
||||
public bool RIB5_7 { get { return (RIB5 & (1 << 7)) == 1 << 7; } set { RIB5 = (byte)(RIB5 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Smart Ribbon Master
|
||||
private byte RIB5 { get { return Data[0x3D]; } set { Data[0x3D] = value; } } // Hoenn 1b
|
||||
private byte RIB6 { get { return Data[0x3E]; } set { Data[0x3E] = value; } } // Hoenn 2a
|
||||
public bool RIB6_0 { get { return (RIB6 & (1 << 0)) == 1 << 0; } set { RIB6 = (byte)(RIB6 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Tough Ribbon
|
||||
public bool RIB6_1 { get { return (RIB6 & (1 << 1)) == 1 << 1; } set { RIB6 = (byte)(RIB6 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Tough Ribbon Super
|
||||
public bool RIB6_2 { get { return (RIB6 & (1 << 2)) == 1 << 2; } set { RIB6 = (byte)(RIB6 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Tough Ribbon Hyper
|
||||
public bool RIB6_3 { get { return (RIB6 & (1 << 3)) == 1 << 3; } set { RIB6 = (byte)(RIB6 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Tough Ribbon Master
|
||||
public bool RIB6_4 { get { return (RIB6 & (1 << 4)) == 1 << 4; } set { RIB6 = (byte)(RIB6 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Champion Ribbon
|
||||
public bool RIB6_5 { get { return (RIB6 & (1 << 5)) == 1 << 5; } set { RIB6 = (byte)(RIB6 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Winning Ribbon
|
||||
public bool RIB6_6 { get { return (RIB6 & (1 << 6)) == 1 << 6; } set { RIB6 = (byte)(RIB6 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Victory Ribbon
|
||||
public bool RIB6_7 { get { return (RIB6 & (1 << 7)) == 1 << 7; } set { RIB6 = (byte)(RIB6 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Artist Ribbon
|
||||
private byte RIB7 { get { return Data[0x3F]; } set { Data[0x3F] = value; } } // Hoenn 2b
|
||||
public bool RIB7_0 { get { return (RIB7 & (1 << 0)) == 1 << 0; } set { RIB7 = (byte)(RIB7 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Effort Ribbon
|
||||
public bool RIB7_1 { get { return (RIB7 & (1 << 1)) == 1 << 1; } set { RIB7 = (byte)(RIB7 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Battle Champion Ribbon
|
||||
public bool RIB7_2 { get { return (RIB7 & (1 << 2)) == 1 << 2; } set { RIB7 = (byte)(RIB7 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Regional Champion Ribbon
|
||||
public bool RIB7_3 { get { return (RIB7 & (1 << 3)) == 1 << 3; } set { RIB7 = (byte)(RIB7 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // National Champion Ribbon
|
||||
public bool RIB7_4 { get { return (RIB7 & (1 << 4)) == 1 << 4; } set { RIB7 = (byte)(RIB7 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Country Ribbon
|
||||
public bool RIB7_5 { get { return (RIB7 & (1 << 5)) == 1 << 5; } set { RIB7 = (byte)(RIB7 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // National Ribbon
|
||||
public bool RIB7_6 { get { return (RIB7 & (1 << 6)) == 1 << 6; } set { RIB7 = (byte)(RIB7 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Earth Ribbon
|
||||
public bool RIB7_7 { get { return (RIB7 & (1 << 7)) == 1 << 7; } set { RIB7 = (byte)(RIB7 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // World Ribbon
|
||||
private byte RIB7 { get { return Data[0x3F]; } set { Data[0x3F] = value; } } // Hoenn 2b
|
||||
public bool RibbonG3Cool { get { return (RIB4 & (1 << 0)) == 1 << 0; } set { RIB4 = (byte)(RIB4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG3CoolSuper { get { return (RIB4 & (1 << 1)) == 1 << 1; } set { RIB4 = (byte)(RIB4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG3CoolHyper { get { return (RIB4 & (1 << 2)) == 1 << 2; } set { RIB4 = (byte)(RIB4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG3CoolMaster { get { return (RIB4 & (1 << 3)) == 1 << 3; } set { RIB4 = (byte)(RIB4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG3Beauty { get { return (RIB4 & (1 << 4)) == 1 << 4; } set { RIB4 = (byte)(RIB4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG3BeautySuper { get { return (RIB4 & (1 << 5)) == 1 << 5; } set { RIB4 = (byte)(RIB4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG3BeautyHyper { get { return (RIB4 & (1 << 6)) == 1 << 6; } set { RIB4 = (byte)(RIB4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG3BeautyMaster { get { return (RIB4 & (1 << 7)) == 1 << 7; } set { RIB4 = (byte)(RIB4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG3Cute { get { return (RIB5 & (1 << 0)) == 1 << 0; } set { RIB5 = (byte)(RIB5 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG3CuteSuper { get { return (RIB5 & (1 << 1)) == 1 << 1; } set { RIB5 = (byte)(RIB5 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG3CuteHyper { get { return (RIB5 & (1 << 2)) == 1 << 2; } set { RIB5 = (byte)(RIB5 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG3CuteMaster { get { return (RIB5 & (1 << 3)) == 1 << 3; } set { RIB5 = (byte)(RIB5 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG3Smart { get { return (RIB5 & (1 << 4)) == 1 << 4; } set { RIB5 = (byte)(RIB5 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG3SmartSuper { get { return (RIB5 & (1 << 5)) == 1 << 5; } set { RIB5 = (byte)(RIB5 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG3SmartHyper { get { return (RIB5 & (1 << 6)) == 1 << 6; } set { RIB5 = (byte)(RIB5 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG3SmartMaster { get { return (RIB5 & (1 << 7)) == 1 << 7; } set { RIB5 = (byte)(RIB5 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG3Tough { get { return (RIB6 & (1 << 0)) == 1 << 0; } set { RIB6 = (byte)(RIB6 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG3ToughSuper { get { return (RIB6 & (1 << 1)) == 1 << 1; } set { RIB6 = (byte)(RIB6 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG3ToughHyper { get { return (RIB6 & (1 << 2)) == 1 << 2; } set { RIB6 = (byte)(RIB6 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG3ToughMaster { get { return (RIB6 & (1 << 3)) == 1 << 3; } set { RIB6 = (byte)(RIB6 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonChampionG3Hoenn { get { return (RIB6 & (1 << 4)) == 1 << 4; } set { RIB6 = (byte)(RIB6 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonWinning { get { return (RIB6 & (1 << 5)) == 1 << 5; } set { RIB6 = (byte)(RIB6 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonVictory { get { return (RIB6 & (1 << 6)) == 1 << 6; } set { RIB6 = (byte)(RIB6 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonArtist { get { return (RIB6 & (1 << 7)) == 1 << 7; } set { RIB6 = (byte)(RIB6 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonEffort { get { return (RIB7 & (1 << 0)) == 1 << 0; } set { RIB7 = (byte)(RIB7 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonChampionBattle { get { return (RIB7 & (1 << 1)) == 1 << 1; } set { RIB7 = (byte)(RIB7 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonChampionRegional{ get { return (RIB7 & (1 << 2)) == 1 << 2; } set { RIB7 = (byte)(RIB7 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonChampionNational{ get { return (RIB7 & (1 << 3)) == 1 << 3; } set { RIB7 = (byte)(RIB7 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonCountry { get { return (RIB7 & (1 << 4)) == 1 << 4; } set { RIB7 = (byte)(RIB7 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonNational { get { return (RIB7 & (1 << 5)) == 1 << 5; } set { RIB7 = (byte)(RIB7 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonEarth { get { return (RIB7 & (1 << 6)) == 1 << 6; } set { RIB7 = (byte)(RIB7 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonWorld { get { return (RIB7 & (1 << 7)) == 1 << 7; } set { RIB7 = (byte)(RIB7 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
|
||||
public override bool FatefulEncounter { get { return (Data[0x40] & 1) == 1; } set { Data[0x40] = (byte)(Data[0x40] & ~0x01 | (value ? 1 : 0)); } }
|
||||
public override int Gender { get { return (Data[0x40] >> 1) & 0x3; } set { Data[0x40] = (byte)(Data[0x40] & ~0x06 | (value << 1)); } }
|
||||
|
|
@ -184,33 +184,33 @@ public override string Nickname
|
|||
// 0x5E unused
|
||||
public override int Version { get { return Data[0x5F]; } set { Data[0x5F] = (byte)value; } }
|
||||
private byte RIB8 { get { return Data[0x60]; } set { Data[0x60] = value; } } // Sinnoh 3
|
||||
public bool RIB8_0 { get { return (RIB8 & (1 << 0)) == 1 << 0; } set { RIB8 = (byte)(RIB8 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cool Ribbon
|
||||
public bool RIB8_1 { get { return (RIB8 & (1 << 1)) == 1 << 1; } set { RIB8 = (byte)(RIB8 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cool Ribbon Great
|
||||
public bool RIB8_2 { get { return (RIB8 & (1 << 2)) == 1 << 2; } set { RIB8 = (byte)(RIB8 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cool Ribbon Ultra
|
||||
public bool RIB8_3 { get { return (RIB8 & (1 << 3)) == 1 << 3; } set { RIB8 = (byte)(RIB8 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cool Ribbon Master
|
||||
public bool RIB8_4 { get { return (RIB8 & (1 << 4)) == 1 << 4; } set { RIB8 = (byte)(RIB8 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Beauty Ribbon
|
||||
public bool RIB8_5 { get { return (RIB8 & (1 << 5)) == 1 << 5; } set { RIB8 = (byte)(RIB8 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Beauty Ribbon Great
|
||||
public bool RIB8_6 { get { return (RIB8 & (1 << 6)) == 1 << 6; } set { RIB8 = (byte)(RIB8 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Beauty Ribbon Ultra
|
||||
public bool RIB8_7 { get { return (RIB8 & (1 << 7)) == 1 << 7; } set { RIB8 = (byte)(RIB8 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Beauty Ribbon Master
|
||||
private byte RIB9 { get { return Data[0x61]; } set { Data[0x61] = value; } } // Sinnoh 4
|
||||
public bool RIB9_0 { get { return (RIB9 & (1 << 0)) == 1 << 0; } set { RIB9 = (byte)(RIB9 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cute Ribbon
|
||||
public bool RIB9_1 { get { return (RIB9 & (1 << 1)) == 1 << 1; } set { RIB9 = (byte)(RIB9 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cute Ribbon Great
|
||||
public bool RIB9_2 { get { return (RIB9 & (1 << 2)) == 1 << 2; } set { RIB9 = (byte)(RIB9 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cute Ribbon Ultra
|
||||
public bool RIB9_3 { get { return (RIB9 & (1 << 3)) == 1 << 3; } set { RIB9 = (byte)(RIB9 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cute Ribbon Master
|
||||
public bool RIB9_4 { get { return (RIB9 & (1 << 4)) == 1 << 4; } set { RIB9 = (byte)(RIB9 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Smart Ribbon
|
||||
public bool RIB9_5 { get { return (RIB9 & (1 << 5)) == 1 << 5; } set { RIB9 = (byte)(RIB9 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Smart Ribbon Great
|
||||
public bool RIB9_6 { get { return (RIB9 & (1 << 6)) == 1 << 6; } set { RIB9 = (byte)(RIB9 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Smart Ribbon Ultra
|
||||
public bool RIB9_7 { get { return (RIB9 & (1 << 7)) == 1 << 7; } set { RIB9 = (byte)(RIB9 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Smart Ribbon Master
|
||||
private byte RIB9 { get { return Data[0x61]; } set { Data[0x61] = value; } } // Sinnoh 4
|
||||
private byte RIBA { get { return Data[0x62]; } set { Data[0x62] = value; } } // Sinnoh 5
|
||||
public bool RIBA_0 { get { return (RIBA & (1 << 0)) == 1 << 0; } set { RIBA = (byte)(RIBA & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Tough Ribbon
|
||||
public bool RIBA_1 { get { return (RIBA & (1 << 1)) == 1 << 1; } set { RIBA = (byte)(RIBA & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Tough Ribbon Great
|
||||
public bool RIBA_2 { get { return (RIBA & (1 << 2)) == 1 << 2; } set { RIBA = (byte)(RIBA & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Tough Ribbon Ultra
|
||||
public bool RIBA_3 { get { return (RIBA & (1 << 3)) == 1 << 3; } set { RIBA = (byte)(RIBA & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Tough Ribbon Master
|
||||
private byte RIBB { get { return Data[0x63]; } set { Data[0x63] = value; } } // Sinnoh 6
|
||||
public bool RibbonG4Cool { get { return (RIB8 & (1 << 0)) == 1 << 0; } set { RIB8 = (byte)(RIB8 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG4CoolGreat { get { return (RIB8 & (1 << 1)) == 1 << 1; } set { RIB8 = (byte)(RIB8 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG4CoolUltra { get { return (RIB8 & (1 << 2)) == 1 << 2; } set { RIB8 = (byte)(RIB8 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG4CoolMaster { get { return (RIB8 & (1 << 3)) == 1 << 3; } set { RIB8 = (byte)(RIB8 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG4Beauty { get { return (RIB8 & (1 << 4)) == 1 << 4; } set { RIB8 = (byte)(RIB8 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG4BeautyGreat { get { return (RIB8 & (1 << 5)) == 1 << 5; } set { RIB8 = (byte)(RIB8 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG4BeautyUltra { get { return (RIB8 & (1 << 6)) == 1 << 6; } set { RIB8 = (byte)(RIB8 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG4BeautyMaster { get { return (RIB8 & (1 << 7)) == 1 << 7; } set { RIB8 = (byte)(RIB8 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG4Cute { get { return (RIB9 & (1 << 0)) == 1 << 0; } set { RIB9 = (byte)(RIB9 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG4CuteGreat { get { return (RIB9 & (1 << 1)) == 1 << 1; } set { RIB9 = (byte)(RIB9 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG4CuteUltra { get { return (RIB9 & (1 << 2)) == 1 << 2; } set { RIB9 = (byte)(RIB9 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG4CuteMaster { get { return (RIB9 & (1 << 3)) == 1 << 3; } set { RIB9 = (byte)(RIB9 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG4Smart { get { return (RIB9 & (1 << 4)) == 1 << 4; } set { RIB9 = (byte)(RIB9 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG4SmartGreat { get { return (RIB9 & (1 << 5)) == 1 << 5; } set { RIB9 = (byte)(RIB9 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG4SmartUltra { get { return (RIB9 & (1 << 6)) == 1 << 6; } set { RIB9 = (byte)(RIB9 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG4SmartMaster { get { return (RIB9 & (1 << 7)) == 1 << 7; } set { RIB9 = (byte)(RIB9 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG4Tough { get { return (RIBA & (1 << 0)) == 1 << 0; } set { RIBA = (byte)(RIBA & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG4ToughGreat { get { return (RIBA & (1 << 1)) == 1 << 1; } set { RIBA = (byte)(RIBA & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG4ToughUltra { get { return (RIBA & (1 << 2)) == 1 << 2; } set { RIBA = (byte)(RIBA & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG4ToughMaster { get { return (RIBA & (1 << 3)) == 1 << 3; } set { RIBA = (byte)(RIBA & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIBA_4 { get { return (RIBA & (1 << 4)) == 1 << 4; } set { RIBA = (byte)(RIBA & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Unused
|
||||
public bool RIBA_5 { get { return (RIBA & (1 << 5)) == 1 << 5; } set { RIBA = (byte)(RIBA & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Unused
|
||||
public bool RIBA_6 { get { return (RIBA & (1 << 6)) == 1 << 6; } set { RIBA = (byte)(RIBA & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Unused
|
||||
public bool RIBA_7 { get { return (RIBA & (1 << 7)) == 1 << 7; } set { RIBA = (byte)(RIBA & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Unused
|
||||
private byte RIBB { get { return Data[0x63]; } set { Data[0x63] = value; } } // Sinnoh 6
|
||||
public bool RIBB_0 { get { return (RIBB & (1 << 0)) == 1 << 0; } set { RIBB = (byte)(RIBB & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Unused
|
||||
public bool RIBB_1 { get { return (RIBB & (1 << 1)) == 1 << 1; } set { RIBB = (byte)(RIBB & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Unused
|
||||
public bool RIBB_2 { get { return (RIBB & (1 << 2)) == 1 << 2; } set { RIBB = (byte)(RIBB & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Unused
|
||||
|
|
@ -261,10 +261,21 @@ public override int Egg_Location
|
|||
}
|
||||
set
|
||||
{
|
||||
if (PtHGSS)
|
||||
if (value == 0)
|
||||
{
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x44);
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x7E);
|
||||
}
|
||||
else if (PtHGSS)
|
||||
{
|
||||
BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x44);
|
||||
BitConverter.GetBytes(0x7D0).CopyTo(Data, 0x7E);
|
||||
BitConverter.GetBytes(0xBBA).CopyTo(Data, 0x7E); // Faraway Place (for DP display)
|
||||
}
|
||||
else if ((value < 2000 && value > 111) || (value < 3000 && value > 2010))
|
||||
{
|
||||
// Met location not in DP, set to Mystery Zone (0, illegal) as opposed to Faraway Place
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x44);
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x7E);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -284,10 +295,21 @@ public override int Met_Location
|
|||
}
|
||||
set
|
||||
{
|
||||
if (PtHGSS)
|
||||
if (value == 0)
|
||||
{
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x46);
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x80);
|
||||
}
|
||||
else if (PtHGSS)
|
||||
{
|
||||
BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x46);
|
||||
BitConverter.GetBytes(0x7D0).CopyTo(Data, 0x80);
|
||||
BitConverter.GetBytes(0xBBA).CopyTo(Data, 0x80); // Faraway Place (for DP display)
|
||||
}
|
||||
else if ((value < 2000 && value > 111) || (value < 3000 && value > 2010))
|
||||
{
|
||||
// Met location not in DP, set to Mystery Zone (0, illegal) as opposed to Faraway Place
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x46);
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(Data, 0x80);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -299,11 +321,26 @@ public override int Met_Location
|
|||
private byte PKRS { get { return Data[0x82]; } set { Data[0x82] = value; } }
|
||||
public override int PKRS_Days { get { return PKRS & 0xF; } set { PKRS = (byte)(PKRS & ~0xF | value); } }
|
||||
public override int PKRS_Strain { get { return PKRS >> 4; } set { PKRS = (byte)(PKRS & 0xF | (value << 4)); } }
|
||||
public override int Ball { get { return Data[0x83]; } set { Data[0x83] = (byte)value; } }
|
||||
public override int Ball
|
||||
{
|
||||
get { return Data[HGSS ? 0x86 : 0x83]; }
|
||||
set
|
||||
{
|
||||
if (HGSS)
|
||||
{
|
||||
Data[0x83] = (byte)(value <= 0x10 ? value : 4); // Ball to display in DP (cap at Cherish)
|
||||
Data[0x86] = (byte)(value <= 0x18 ? value : 4); // Cap at Comp Ball
|
||||
}
|
||||
else
|
||||
{
|
||||
Data[0x83] = (byte)(value <= 0x10 ? value : 4); // Cap at Cherish Ball
|
||||
Data[0x86] = 0; // Unused
|
||||
}
|
||||
}
|
||||
}
|
||||
public override int Met_Level { get { return Data[0x84] & ~0x80; } set { Data[0x84] = (byte)((Data[0x84] & 0x80) | value); } }
|
||||
public override int OT_Gender { get { return Data[0x84] >> 7; } set { Data[0x84] = (byte)((Data[0x84] & ~0x80) | value << 7); } }
|
||||
public override int EncounterType { get { return Data[0x85]; } set { Data[0x85] = (byte)value; } }
|
||||
public int HGSSBall { get { return Data[0x86]; } set { Data[0x86] = (byte)value; } }
|
||||
// Unused 0x87
|
||||
#endregion
|
||||
|
||||
|
|
@ -340,7 +377,7 @@ public override int Characteristic
|
|||
// Methods
|
||||
public override bool getGenderIsValid()
|
||||
{
|
||||
int gv = PKX.Personal[Species].Gender;
|
||||
int gv = PersonalTable.HGSS[Species].Gender;
|
||||
|
||||
if (gv == 255)
|
||||
return Gender == 2;
|
||||
|
|
@ -380,10 +417,10 @@ public PK5 convertToPK5()
|
|||
};
|
||||
|
||||
// Fix PP
|
||||
pk5.Move1_PP = PKX.getMovePP(pk5.Move1_PP, pk5.Move1_PPUps);
|
||||
pk5.Move2_PP = PKX.getMovePP(pk5.Move2_PP, pk5.Move2_PPUps);
|
||||
pk5.Move3_PP = PKX.getMovePP(pk5.Move3_PP, pk5.Move3_PPUps);
|
||||
pk5.Move4_PP = PKX.getMovePP(pk5.Move4_PP, pk5.Move4_PPUps);
|
||||
pk5.Move1_PP = getMovePP(pk5.Move1_PP, pk5.Move1_PPUps);
|
||||
pk5.Move2_PP = getMovePP(pk5.Move2_PP, pk5.Move2_PPUps);
|
||||
pk5.Move3_PP = getMovePP(pk5.Move3_PP, pk5.Move3_PPUps);
|
||||
pk5.Move4_PP = getMovePP(pk5.Move4_PP, pk5.Move4_PPUps);
|
||||
|
||||
// Disassociate Nature and PID
|
||||
pk5.Nature = (int)(pk5.PID % 25);
|
||||
|
|
@ -392,14 +429,13 @@ public PK5 convertToPK5()
|
|||
BitConverter.GetBytes((uint)0).CopyTo(pk5.Data, 0x44);
|
||||
|
||||
// Met / Crown Data Detection
|
||||
pk5.Met_Location = pk5.FatefulEncounter && Array.IndexOf(new[] {251, 243, 244, 245}, pk5.Species) >= 0
|
||||
pk5.Met_Location = pk5.Gen4 && pk5.FatefulEncounter && Array.IndexOf(new[] {251, 243, 244, 245}, pk5.Species) >= 0
|
||||
? (pk5.Species == 251 ? 30010 : 30012) // Celebi : Beast
|
||||
: 30001; // Pokétransfer (not Crown)
|
||||
|
||||
// Delete HGSS Data
|
||||
BitConverter.GetBytes((ushort)0).CopyTo(pk5.Data, 0x86);
|
||||
if (HGSSBall > 0 && HGSSBall != 4)
|
||||
pk5.Ball = HGSSBall;
|
||||
pk5.Ball = Ball;
|
||||
|
||||
// Transfer Nickname and OT Name
|
||||
pk5.Nickname = Nickname;
|
||||
|
|
@ -409,9 +445,9 @@ public PK5 convertToPK5()
|
|||
pk5.Met_Level = PKX.getLevel(pk5.Species, pk5.EXP);
|
||||
|
||||
// Remove HM moves; Defog should be kept if both are learned.
|
||||
int[] banned = Moves.Contains(250) /*Whirlpool*/ && !Moves.Contains(432) /*Defog*/
|
||||
? new[] {15, 19, 57, 70, 432, 249, 127, 431} // No Defog
|
||||
: new[] {15, 19, 57, 70, 250, 249, 127, 431};// No Whirlpool
|
||||
int[] banned = Moves.Contains(250) && Moves.Contains(432) // Whirlpool & Defog
|
||||
? new[] {15, 19, 57, 70, 250, 249, 127, 431} // No Whirlpool
|
||||
: new[] {15, 19, 57, 70, 249, 127, 431};// Transfer via advantageous game
|
||||
|
||||
int[] newMoves = pk5.Moves;
|
||||
for (int i = 0; i < 4; i++)
|
||||
|
|
|
|||
234
PKM/PK5.cs
|
|
@ -10,7 +10,7 @@ public class PK5 : PKM // 5th Generation PKM File
|
|||
{
|
||||
0x42, 0x43, 0x5E, 0x63, 0x64, 0x65, 0x66, 0x67, 0x87
|
||||
};
|
||||
public override int SIZE_PARTY => PKX.SIZE_5PARTY;
|
||||
public sealed override int SIZE_PARTY => PKX.SIZE_5PARTY;
|
||||
public override int SIZE_STORED => PKX.SIZE_5STORED;
|
||||
public override int Format => 5;
|
||||
public PK5(byte[] decryptedData = null, string ident = null)
|
||||
|
|
@ -57,37 +57,37 @@ public PK5(byte[] decryptedData = null, string ident = null)
|
|||
public override int CNT_Sheen { get { return Data[0x23]; } set { Data[0x23] = (byte)value; } }
|
||||
|
||||
private byte RIB0 { get { return Data[0x24]; } set { Data[0x24] = value; } } // Sinnoh 1
|
||||
public bool RIB0_0 { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Sinnoh Champ Ribbon
|
||||
public bool RIB0_1 { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Ability Ribbon
|
||||
public bool RIB0_2 { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Great Ability Ribbon
|
||||
public bool RIB0_3 { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Double Ability Ribbon
|
||||
public bool RIB0_4 { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Multi Ability Ribbon
|
||||
public bool RIB0_5 { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Pair Ability Ribbon
|
||||
public bool RIB0_6 { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // World Ability Ribbon
|
||||
public bool RIB0_7 { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Alert Ribbon
|
||||
private byte RIB1 { get { return Data[0x25]; } set { Data[0x25] = value; } } // Sinnoh 2
|
||||
public bool RIB1_0 { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Shock Ribbon
|
||||
public bool RIB1_1 { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Downcast Ribbon
|
||||
public bool RIB1_2 { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Careless Ribbon
|
||||
public bool RIB1_3 { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Relax Ribbon
|
||||
public bool RIB1_4 { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Snooze Ribbon
|
||||
public bool RIB1_5 { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Smile Ribbon
|
||||
public bool RIB1_6 { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Gorgeous Ribbon
|
||||
public bool RIB1_7 { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Royal Ribbon
|
||||
private byte RIB1 { get { return Data[0x25]; } set { Data[0x25] = value; } } // Sinnoh 2
|
||||
private byte RIB2 { get { return Data[0x26]; } set { Data[0x26] = value; } } // Unova 1
|
||||
public bool RIB2_0 { get { return (RIB2 & (1 << 0)) == 1 << 0; } set { RIB2 = (byte)(RIB2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Gorgeous Royal Ribbon
|
||||
public bool RIB2_1 { get { return (RIB2 & (1 << 1)) == 1 << 1; } set { RIB2 = (byte)(RIB2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Footprint Ribbon
|
||||
public bool RIB2_2 { get { return (RIB2 & (1 << 2)) == 1 << 2; } set { RIB2 = (byte)(RIB2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Record Ribbon
|
||||
public bool RIB2_3 { get { return (RIB2 & (1 << 3)) == 1 << 3; } set { RIB2 = (byte)(RIB2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Event Ribbon
|
||||
public bool RIB2_4 { get { return (RIB2 & (1 << 4)) == 1 << 4; } set { RIB2 = (byte)(RIB2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Legend Ribbon
|
||||
public bool RIB2_5 { get { return (RIB2 & (1 << 5)) == 1 << 5; } set { RIB2 = (byte)(RIB2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // World Champion Ribbon
|
||||
public bool RIB2_6 { get { return (RIB2 & (1 << 6)) == 1 << 6; } set { RIB2 = (byte)(RIB2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Birthday Ribbon
|
||||
public bool RIB2_7 { get { return (RIB2 & (1 << 7)) == 1 << 7; } set { RIB2 = (byte)(RIB2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Special Ribbon
|
||||
private byte RIB3 { get { return Data[0x27]; } set { Data[0x27] = value; } } // Unova 2
|
||||
public bool RIB3_0 { get { return (RIB3 & (1 << 0)) == 1 << 0; } set { RIB3 = (byte)(RIB3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Souvenir Ribbon
|
||||
public bool RIB3_1 { get { return (RIB3 & (1 << 1)) == 1 << 1; } set { RIB3 = (byte)(RIB3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Wishing Ribbon
|
||||
public bool RIB3_2 { get { return (RIB3 & (1 << 2)) == 1 << 2; } set { RIB3 = (byte)(RIB3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Classic Ribbon
|
||||
public bool RIB3_3 { get { return (RIB3 & (1 << 3)) == 1 << 3; } set { RIB3 = (byte)(RIB3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Premier Ribbon
|
||||
private byte RIB3 { get { return Data[0x27]; } set { Data[0x27] = value; } } // Unova 2
|
||||
public bool RibbonChampionSinnoh { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonAbility { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonAbilityGreat { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonAbilityDouble { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonAbilityMulti { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonAbilityPair { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonAbilityWorld { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonAlert { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonShock { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonDowncast { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonCareless { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonRelax { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonSnooze { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonSmile { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonGorgeous { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonRoyal { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonGorgeousRoyal { get { return (RIB2 & (1 << 0)) == 1 << 0; } set { RIB2 = (byte)(RIB2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonFootprint { get { return (RIB2 & (1 << 1)) == 1 << 1; } set { RIB2 = (byte)(RIB2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonRecord { get { return (RIB2 & (1 << 2)) == 1 << 2; } set { RIB2 = (byte)(RIB2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonEvent { get { return (RIB2 & (1 << 3)) == 1 << 3; } set { RIB2 = (byte)(RIB2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonLegend { get { return (RIB2 & (1 << 4)) == 1 << 4; } set { RIB2 = (byte)(RIB2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonChampionWorld { get { return (RIB2 & (1 << 5)) == 1 << 5; } set { RIB2 = (byte)(RIB2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonBirthday { get { return (RIB2 & (1 << 6)) == 1 << 6; } set { RIB2 = (byte)(RIB2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonSpecial { get { return (RIB2 & (1 << 7)) == 1 << 7; } set { RIB2 = (byte)(RIB2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonSouvenir { get { return (RIB3 & (1 << 0)) == 1 << 0; } set { RIB3 = (byte)(RIB3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonWishing { get { return (RIB3 & (1 << 1)) == 1 << 1; } set { RIB3 = (byte)(RIB3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonClassic { get { return (RIB3 & (1 << 2)) == 1 << 2; } set { RIB3 = (byte)(RIB3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonPremier { get { return (RIB3 & (1 << 3)) == 1 << 3; } set { RIB3 = (byte)(RIB3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB3_4 { get { return (RIB3 & (1 << 4)) == 1 << 4; } set { RIB3 = (byte)(RIB3 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Unused
|
||||
public bool RIB3_5 { get { return (RIB3 & (1 << 5)) == 1 << 5; } set { RIB3 = (byte)(RIB3 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Unused
|
||||
public bool RIB3_6 { get { return (RIB3 & (1 << 6)) == 1 << 6; } set { RIB3 = (byte)(RIB3 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Unused
|
||||
|
|
@ -116,43 +116,43 @@ public PK5(byte[] decryptedData = null, string ident = null)
|
|||
public override int IV_SPD { get { return (int)(IV32 >> 25) & 0x1F; } set { IV32 = (uint)((IV32 & ~(0x1F << 25)) | (uint)((value > 31 ? 31 : value) << 25)); } }
|
||||
public override bool IsEgg { get { return ((IV32 >> 30) & 1) == 1; } set { IV32 = (uint)((IV32 & ~0x40000000) | (uint)(value ? 0x40000000 : 0)); } }
|
||||
public override bool IsNicknamed { get { return ((IV32 >> 31) & 1) == 1; } set { IV32 = (IV32 & 0x7FFFFFFF) | (value ? 0x80000000 : 0); } }
|
||||
|
||||
|
||||
private byte RIB4 { get { return Data[0x3C]; } set { Data[0x3C] = value; } } // Hoenn 1a
|
||||
public bool RIB4_0 { get { return (RIB4 & (1 << 0)) == 1 << 0; } set { RIB4 = (byte)(RIB4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cool Ribbon
|
||||
public bool RIB4_1 { get { return (RIB4 & (1 << 1)) == 1 << 1; } set { RIB4 = (byte)(RIB4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cool Ribbon Super
|
||||
public bool RIB4_2 { get { return (RIB4 & (1 << 2)) == 1 << 2; } set { RIB4 = (byte)(RIB4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cool Ribbon Hyper
|
||||
public bool RIB4_3 { get { return (RIB4 & (1 << 3)) == 1 << 3; } set { RIB4 = (byte)(RIB4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cool Ribbon Master
|
||||
public bool RIB4_4 { get { return (RIB4 & (1 << 4)) == 1 << 4; } set { RIB4 = (byte)(RIB4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Beauty Ribbon
|
||||
public bool RIB4_5 { get { return (RIB4 & (1 << 5)) == 1 << 5; } set { RIB4 = (byte)(RIB4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Beauty Ribbon Super
|
||||
public bool RIB4_6 { get { return (RIB4 & (1 << 6)) == 1 << 6; } set { RIB4 = (byte)(RIB4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Beauty Ribbon Hyper
|
||||
public bool RIB4_7 { get { return (RIB4 & (1 << 7)) == 1 << 7; } set { RIB4 = (byte)(RIB4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Beauty Ribbon Master
|
||||
private byte RIB5 { get { return Data[0x3D]; } set { Data[0x3D] = value; } } // Hoenn 1b
|
||||
public bool RIB5_0 { get { return (RIB5 & (1 << 0)) == 1 << 0; } set { RIB5 = (byte)(RIB5 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cute Ribbon
|
||||
public bool RIB5_1 { get { return (RIB5 & (1 << 1)) == 1 << 1; } set { RIB5 = (byte)(RIB5 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cute Ribbon Super
|
||||
public bool RIB5_2 { get { return (RIB5 & (1 << 2)) == 1 << 2; } set { RIB5 = (byte)(RIB5 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cute Ribbon Hyper
|
||||
public bool RIB5_3 { get { return (RIB5 & (1 << 3)) == 1 << 3; } set { RIB5 = (byte)(RIB5 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cute Ribbon Master
|
||||
public bool RIB5_4 { get { return (RIB5 & (1 << 4)) == 1 << 4; } set { RIB5 = (byte)(RIB5 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Smart Ribbon
|
||||
public bool RIB5_5 { get { return (RIB5 & (1 << 5)) == 1 << 5; } set { RIB5 = (byte)(RIB5 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Smart Ribbon Super
|
||||
public bool RIB5_6 { get { return (RIB5 & (1 << 6)) == 1 << 6; } set { RIB5 = (byte)(RIB5 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Smart Ribbon Hyper
|
||||
public bool RIB5_7 { get { return (RIB5 & (1 << 7)) == 1 << 7; } set { RIB5 = (byte)(RIB5 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Smart Ribbon Master
|
||||
private byte RIB5 { get { return Data[0x3D]; } set { Data[0x3D] = value; } } // Hoenn 1b
|
||||
private byte RIB6 { get { return Data[0x3E]; } set { Data[0x3E] = value; } } // Hoenn 2a
|
||||
public bool RIB6_0 { get { return (RIB6 & (1 << 0)) == 1 << 0; } set { RIB6 = (byte)(RIB6 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Tough Ribbon
|
||||
public bool RIB6_1 { get { return (RIB6 & (1 << 1)) == 1 << 1; } set { RIB6 = (byte)(RIB6 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Tough Ribbon Super
|
||||
public bool RIB6_2 { get { return (RIB6 & (1 << 2)) == 1 << 2; } set { RIB6 = (byte)(RIB6 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Tough Ribbon Hyper
|
||||
public bool RIB6_3 { get { return (RIB6 & (1 << 3)) == 1 << 3; } set { RIB6 = (byte)(RIB6 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Tough Ribbon Master
|
||||
public bool RIB6_4 { get { return (RIB6 & (1 << 4)) == 1 << 4; } set { RIB6 = (byte)(RIB6 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Champion Ribbon
|
||||
public bool RIB6_5 { get { return (RIB6 & (1 << 5)) == 1 << 5; } set { RIB6 = (byte)(RIB6 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Winning Ribbon
|
||||
public bool RIB6_6 { get { return (RIB6 & (1 << 6)) == 1 << 6; } set { RIB6 = (byte)(RIB6 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Victory Ribbon
|
||||
public bool RIB6_7 { get { return (RIB6 & (1 << 7)) == 1 << 7; } set { RIB6 = (byte)(RIB6 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Artist Ribbon
|
||||
private byte RIB7 { get { return Data[0x3F]; } set { Data[0x3F] = value; } } // Hoenn 2b
|
||||
public bool RIB7_0 { get { return (RIB7 & (1 << 0)) == 1 << 0; } set { RIB7 = (byte)(RIB7 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Effort Ribbon
|
||||
public bool RIB7_1 { get { return (RIB7 & (1 << 1)) == 1 << 1; } set { RIB7 = (byte)(RIB7 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Battle Champion Ribbon
|
||||
public bool RIB7_2 { get { return (RIB7 & (1 << 2)) == 1 << 2; } set { RIB7 = (byte)(RIB7 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Regional Champion Ribbon
|
||||
public bool RIB7_3 { get { return (RIB7 & (1 << 3)) == 1 << 3; } set { RIB7 = (byte)(RIB7 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // National Champion Ribbon
|
||||
public bool RIB7_4 { get { return (RIB7 & (1 << 4)) == 1 << 4; } set { RIB7 = (byte)(RIB7 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Country Ribbon
|
||||
public bool RIB7_5 { get { return (RIB7 & (1 << 5)) == 1 << 5; } set { RIB7 = (byte)(RIB7 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // National Ribbon
|
||||
public bool RIB7_6 { get { return (RIB7 & (1 << 6)) == 1 << 6; } set { RIB7 = (byte)(RIB7 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Earth Ribbon
|
||||
public bool RIB7_7 { get { return (RIB7 & (1 << 7)) == 1 << 7; } set { RIB7 = (byte)(RIB7 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // World Ribbon
|
||||
private byte RIB7 { get { return Data[0x3F]; } set { Data[0x3F] = value; } } // Hoenn 2b
|
||||
public bool RibbonG3Cool { get { return (RIB4 & (1 << 0)) == 1 << 0; } set { RIB4 = (byte)(RIB4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG3CoolSuper { get { return (RIB4 & (1 << 1)) == 1 << 1; } set { RIB4 = (byte)(RIB4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG3CoolHyper { get { return (RIB4 & (1 << 2)) == 1 << 2; } set { RIB4 = (byte)(RIB4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG3CoolMaster { get { return (RIB4 & (1 << 3)) == 1 << 3; } set { RIB4 = (byte)(RIB4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG3Beauty { get { return (RIB4 & (1 << 4)) == 1 << 4; } set { RIB4 = (byte)(RIB4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG3BeautySuper { get { return (RIB4 & (1 << 5)) == 1 << 5; } set { RIB4 = (byte)(RIB4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG3BeautyHyper { get { return (RIB4 & (1 << 6)) == 1 << 6; } set { RIB4 = (byte)(RIB4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG3BeautyMaster { get { return (RIB4 & (1 << 7)) == 1 << 7; } set { RIB4 = (byte)(RIB4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG3Cute { get { return (RIB5 & (1 << 0)) == 1 << 0; } set { RIB5 = (byte)(RIB5 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG3CuteSuper { get { return (RIB5 & (1 << 1)) == 1 << 1; } set { RIB5 = (byte)(RIB5 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG3CuteHyper { get { return (RIB5 & (1 << 2)) == 1 << 2; } set { RIB5 = (byte)(RIB5 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG3CuteMaster { get { return (RIB5 & (1 << 3)) == 1 << 3; } set { RIB5 = (byte)(RIB5 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG3Smart { get { return (RIB5 & (1 << 4)) == 1 << 4; } set { RIB5 = (byte)(RIB5 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG3SmartSuper { get { return (RIB5 & (1 << 5)) == 1 << 5; } set { RIB5 = (byte)(RIB5 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG3SmartHyper { get { return (RIB5 & (1 << 6)) == 1 << 6; } set { RIB5 = (byte)(RIB5 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG3SmartMaster { get { return (RIB5 & (1 << 7)) == 1 << 7; } set { RIB5 = (byte)(RIB5 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG3Tough { get { return (RIB6 & (1 << 0)) == 1 << 0; } set { RIB6 = (byte)(RIB6 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG3ToughSuper { get { return (RIB6 & (1 << 1)) == 1 << 1; } set { RIB6 = (byte)(RIB6 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG3ToughHyper { get { return (RIB6 & (1 << 2)) == 1 << 2; } set { RIB6 = (byte)(RIB6 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG3ToughMaster { get { return (RIB6 & (1 << 3)) == 1 << 3; } set { RIB6 = (byte)(RIB6 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonChampionG3Hoenn { get { return (RIB6 & (1 << 4)) == 1 << 4; } set { RIB6 = (byte)(RIB6 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonWinning { get { return (RIB6 & (1 << 5)) == 1 << 5; } set { RIB6 = (byte)(RIB6 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonVictory { get { return (RIB6 & (1 << 6)) == 1 << 6; } set { RIB6 = (byte)(RIB6 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonArtist { get { return (RIB6 & (1 << 7)) == 1 << 7; } set { RIB6 = (byte)(RIB6 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonEffort { get { return (RIB7 & (1 << 0)) == 1 << 0; } set { RIB7 = (byte)(RIB7 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonChampionBattle { get { return (RIB7 & (1 << 1)) == 1 << 1; } set { RIB7 = (byte)(RIB7 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonChampionRegional{ get { return (RIB7 & (1 << 2)) == 1 << 2; } set { RIB7 = (byte)(RIB7 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonChampionNational{ get { return (RIB7 & (1 << 3)) == 1 << 3; } set { RIB7 = (byte)(RIB7 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonCountry { get { return (RIB7 & (1 << 4)) == 1 << 4; } set { RIB7 = (byte)(RIB7 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonNational { get { return (RIB7 & (1 << 5)) == 1 << 5; } set { RIB7 = (byte)(RIB7 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonEarth { get { return (RIB7 & (1 << 6)) == 1 << 6; } set { RIB7 = (byte)(RIB7 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonWorld { get { return (RIB7 & (1 << 7)) == 1 << 7; } set { RIB7 = (byte)(RIB7 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
|
||||
public override bool FatefulEncounter { get { return (Data[0x40] & 1) == 1; } set { Data[0x40] = (byte)(Data[0x40] & ~0x01 | (value ? 1 : 0)); } }
|
||||
public override int Gender { get { return (Data[0x40] >> 1) & 0x3; } set { Data[0x40] = (byte)(Data[0x40] & ~0x06 | (value << 1)); } }
|
||||
|
|
@ -188,33 +188,33 @@ public override string Nickname
|
|||
// 0x5E unused
|
||||
public override int Version { get { return Data[0x5F]; } set { Data[0x5F] = (byte)value; } }
|
||||
private byte RIB8 { get { return Data[0x60]; } set { Data[0x60] = value; } } // Sinnoh 3
|
||||
public bool RIB8_0 { get { return (RIB8 & (1 << 0)) == 1 << 0; } set { RIB8 = (byte)(RIB8 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cool Ribbon
|
||||
public bool RIB8_1 { get { return (RIB8 & (1 << 1)) == 1 << 1; } set { RIB8 = (byte)(RIB8 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cool Ribbon Great
|
||||
public bool RIB8_2 { get { return (RIB8 & (1 << 2)) == 1 << 2; } set { RIB8 = (byte)(RIB8 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cool Ribbon Ultra
|
||||
public bool RIB8_3 { get { return (RIB8 & (1 << 3)) == 1 << 3; } set { RIB8 = (byte)(RIB8 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cool Ribbon Master
|
||||
public bool RIB8_4 { get { return (RIB8 & (1 << 4)) == 1 << 4; } set { RIB8 = (byte)(RIB8 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Beauty Ribbon
|
||||
public bool RIB8_5 { get { return (RIB8 & (1 << 5)) == 1 << 5; } set { RIB8 = (byte)(RIB8 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Beauty Ribbon Great
|
||||
public bool RIB8_6 { get { return (RIB8 & (1 << 6)) == 1 << 6; } set { RIB8 = (byte)(RIB8 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Beauty Ribbon Ultra
|
||||
public bool RIB8_7 { get { return (RIB8 & (1 << 7)) == 1 << 7; } set { RIB8 = (byte)(RIB8 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Beauty Ribbon Master
|
||||
private byte RIB9 { get { return Data[0x61]; } set { Data[0x61] = value; } } // Sinnoh 4
|
||||
public bool RIB9_0 { get { return (RIB9 & (1 << 0)) == 1 << 0; } set { RIB9 = (byte)(RIB9 & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Cute Ribbon
|
||||
public bool RIB9_1 { get { return (RIB9 & (1 << 1)) == 1 << 1; } set { RIB9 = (byte)(RIB9 & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Cute Ribbon Great
|
||||
public bool RIB9_2 { get { return (RIB9 & (1 << 2)) == 1 << 2; } set { RIB9 = (byte)(RIB9 & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Cute Ribbon Ultra
|
||||
public bool RIB9_3 { get { return (RIB9 & (1 << 3)) == 1 << 3; } set { RIB9 = (byte)(RIB9 & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Cute Ribbon Master
|
||||
public bool RIB9_4 { get { return (RIB9 & (1 << 4)) == 1 << 4; } set { RIB9 = (byte)(RIB9 & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Smart Ribbon
|
||||
public bool RIB9_5 { get { return (RIB9 & (1 << 5)) == 1 << 5; } set { RIB9 = (byte)(RIB9 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Smart Ribbon Great
|
||||
public bool RIB9_6 { get { return (RIB9 & (1 << 6)) == 1 << 6; } set { RIB9 = (byte)(RIB9 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Smart Ribbon Ultra
|
||||
public bool RIB9_7 { get { return (RIB9 & (1 << 7)) == 1 << 7; } set { RIB9 = (byte)(RIB9 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Smart Ribbon Master
|
||||
private byte RIB9 { get { return Data[0x61]; } set { Data[0x61] = value; } } // Sinnoh 4
|
||||
private byte RIBA { get { return Data[0x62]; } set { Data[0x62] = value; } } // Sinnoh 5
|
||||
public bool RIBA_0 { get { return (RIBA & (1 << 0)) == 1 << 0; } set { RIBA = (byte)(RIBA & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Tough Ribbon
|
||||
public bool RIBA_1 { get { return (RIBA & (1 << 1)) == 1 << 1; } set { RIBA = (byte)(RIBA & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Tough Ribbon Great
|
||||
public bool RIBA_2 { get { return (RIBA & (1 << 2)) == 1 << 2; } set { RIBA = (byte)(RIBA & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Tough Ribbon Ultra
|
||||
public bool RIBA_3 { get { return (RIBA & (1 << 3)) == 1 << 3; } set { RIBA = (byte)(RIBA & ~(1 << 3) | (value ? 1 << 3 : 0)); } } // Tough Ribbon Master
|
||||
private byte RIBB { get { return Data[0x63]; } set { Data[0x63] = value; } } // Sinnoh 6
|
||||
public bool RibbonG4Cool { get { return (RIB8 & (1 << 0)) == 1 << 0; } set { RIB8 = (byte)(RIB8 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG4CoolGreat { get { return (RIB8 & (1 << 1)) == 1 << 1; } set { RIB8 = (byte)(RIB8 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG4CoolUltra { get { return (RIB8 & (1 << 2)) == 1 << 2; } set { RIB8 = (byte)(RIB8 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG4CoolMaster { get { return (RIB8 & (1 << 3)) == 1 << 3; } set { RIB8 = (byte)(RIB8 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG4Beauty { get { return (RIB8 & (1 << 4)) == 1 << 4; } set { RIB8 = (byte)(RIB8 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG4BeautyGreat { get { return (RIB8 & (1 << 5)) == 1 << 5; } set { RIB8 = (byte)(RIB8 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG4BeautyUltra { get { return (RIB8 & (1 << 6)) == 1 << 6; } set { RIB8 = (byte)(RIB8 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG4BeautyMaster { get { return (RIB8 & (1 << 7)) == 1 << 7; } set { RIB8 = (byte)(RIB8 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG4Cute { get { return (RIB9 & (1 << 0)) == 1 << 0; } set { RIB9 = (byte)(RIB9 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG4CuteGreat { get { return (RIB9 & (1 << 1)) == 1 << 1; } set { RIB9 = (byte)(RIB9 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG4CuteUltra { get { return (RIB9 & (1 << 2)) == 1 << 2; } set { RIB9 = (byte)(RIB9 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG4CuteMaster { get { return (RIB9 & (1 << 3)) == 1 << 3; } set { RIB9 = (byte)(RIB9 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonG4Smart { get { return (RIB9 & (1 << 4)) == 1 << 4; } set { RIB9 = (byte)(RIB9 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonG4SmartGreat { get { return (RIB9 & (1 << 5)) == 1 << 5; } set { RIB9 = (byte)(RIB9 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonG4SmartUltra { get { return (RIB9 & (1 << 6)) == 1 << 6; } set { RIB9 = (byte)(RIB9 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonG4SmartMaster { get { return (RIB9 & (1 << 7)) == 1 << 7; } set { RIB9 = (byte)(RIB9 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonG4Tough { get { return (RIBA & (1 << 0)) == 1 << 0; } set { RIBA = (byte)(RIBA & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonG4ToughGreat { get { return (RIBA & (1 << 1)) == 1 << 1; } set { RIBA = (byte)(RIBA & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonG4ToughUltra { get { return (RIBA & (1 << 2)) == 1 << 2; } set { RIBA = (byte)(RIBA & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonG4ToughMaster { get { return (RIBA & (1 << 3)) == 1 << 3; } set { RIBA = (byte)(RIBA & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIBA_4 { get { return (RIBA & (1 << 4)) == 1 << 4; } set { RIBA = (byte)(RIBA & ~(1 << 4) | (value ? 1 << 4 : 0)); } } // Unused
|
||||
public bool RIBA_5 { get { return (RIBA & (1 << 5)) == 1 << 5; } set { RIBA = (byte)(RIBA & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Unused
|
||||
public bool RIBA_6 { get { return (RIBA & (1 << 6)) == 1 << 6; } set { RIBA = (byte)(RIBA & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Unused
|
||||
public bool RIBA_7 { get { return (RIBA & (1 << 7)) == 1 << 7; } set { RIBA = (byte)(RIBA & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Unused
|
||||
private byte RIBB { get { return Data[0x63]; } set { Data[0x63] = value; } } // Sinnoh 6
|
||||
public bool RIBB_0 { get { return (RIBB & (1 << 0)) == 1 << 0; } set { RIBB = (byte)(RIBB & ~(1 << 0) | (value ? 1 << 0 : 0)); } } // Unused
|
||||
public bool RIBB_1 { get { return (RIBB & (1 << 1)) == 1 << 1; } set { RIBB = (byte)(RIBB & ~(1 << 1) | (value ? 1 << 1 : 0)); } } // Unused
|
||||
public bool RIBB_2 { get { return (RIBB & (1 << 2)) == 1 << 2; } set { RIBB = (byte)(RIBB & ~(1 << 2) | (value ? 1 << 2 : 0)); } } // Unused
|
||||
|
|
@ -300,17 +300,19 @@ public override int Characteristic
|
|||
// Methods
|
||||
public override bool getGenderIsValid()
|
||||
{
|
||||
int gv = PKX.Personal[Species].Gender;
|
||||
if (gv == 255 && Gender == 2)
|
||||
return true;
|
||||
if (gv == 0 && Gender == 1)
|
||||
return true;
|
||||
if (gv == 254 && Gender == 0)
|
||||
return true;
|
||||
if (gv <= (PID & 0xFF) && Gender == 0)
|
||||
return true;
|
||||
if (gv > (PID & 0xFF) && Gender == 1)
|
||||
return true;
|
||||
int gv = PersonalTable.B2W2[Species].Gender;
|
||||
|
||||
if (gv == 255)
|
||||
return Gender == 2;
|
||||
if (gv == 254)
|
||||
return Gender == 0;
|
||||
if (gv == 0)
|
||||
return Gender == 1;
|
||||
if (gv <= (PID & 0xFF))
|
||||
return Gender == 0;
|
||||
if ((PID & 0xFF) < gv)
|
||||
return Gender == 1;
|
||||
|
||||
return false;
|
||||
}
|
||||
public override byte[] Encrypt()
|
||||
|
|
@ -332,19 +334,21 @@ public PK6 convertToPK6()
|
|||
Ability = Ability
|
||||
};
|
||||
|
||||
int abilnum = PKX.getAbilityNumber(Species, Ability, AltForm);
|
||||
if (abilnum > 0) pk6.AbilityNumber = abilnum;
|
||||
int[] abilities = PersonalTable.AO.getAbilities(Species, AltForm);
|
||||
int abilval = Array.IndexOf(abilities, Ability);
|
||||
if (abilval >= 0)
|
||||
pk6.AbilityNumber = 1 << abilval;
|
||||
else // Fallback (shouldn't happen)
|
||||
{
|
||||
if (HiddenAbility) pk6.AbilityNumber = 4; // Hidden, else G5 or G3/4 correlation.
|
||||
else pk6.AbilityNumber = Gen5 ? 1 << (int)(PID >> 16 & 1) : 1 << (int)(PID & 1);
|
||||
}
|
||||
pk6.Circle = Circle;
|
||||
pk6.Square = Square;
|
||||
pk6.Triangle = Triangle;
|
||||
pk6.Heart = Heart;
|
||||
pk6.Star = Star;
|
||||
pk6.Diamond = Diamond;
|
||||
pk6.MarkCircle = MarkCircle;
|
||||
pk6.MarkSquare = MarkSquare;
|
||||
pk6.MarkTriangle = MarkTriangle;
|
||||
pk6.MarkHeart = MarkHeart;
|
||||
pk6.MarkStar = MarkStar;
|
||||
pk6.MarkDiamond = MarkDiamond;
|
||||
pk6.Language = Language;
|
||||
|
||||
pk6.CNT_Cool = CNT_Cool;
|
||||
|
|
@ -366,10 +370,10 @@ public PK6 convertToPK6()
|
|||
pk6.Move3 = Move3;
|
||||
pk6.Move4 = Move4;
|
||||
|
||||
pk6.Move1_PP = PKX.getMovePP(Move1, Move1_PPUps);
|
||||
pk6.Move2_PP = PKX.getMovePP(Move2, Move2_PPUps);
|
||||
pk6.Move3_PP = PKX.getMovePP(Move3, Move3_PPUps);
|
||||
pk6.Move4_PP = PKX.getMovePP(Move4, Move4_PPUps);
|
||||
pk6.Move1_PP = getMovePP(Move1, Move1_PPUps);
|
||||
pk6.Move2_PP = getMovePP(Move2, Move2_PPUps);
|
||||
pk6.Move3_PP = getMovePP(Move3, Move3_PPUps);
|
||||
pk6.Move4_PP = getMovePP(Move4, Move4_PPUps);
|
||||
|
||||
pk6.Move1_PPUps = Move1_PPUps;
|
||||
pk6.Move2_PPUps = Move2_PPUps;
|
||||
|
|
@ -426,7 +430,7 @@ public PK6 convertToPK6()
|
|||
// Contest Ribbon Counter
|
||||
for (int i = 0; i < 8; i++) // Sinnoh 3, Hoenn 1
|
||||
{
|
||||
if (((Data[0x60] >> i) & 1) == 1) contestribbons++;
|
||||
if ((Data[0x60] >> i & 1) == 1) contestribbons++;
|
||||
if (((Data[0x61] >> i) & 1) == 1) contestribbons++;
|
||||
if (((Data[0x3C] >> i) & 1) == 1) contestribbons++;
|
||||
if (((Data[0x3D] >> i) & 1) == 1) contestribbons++;
|
||||
|
|
@ -446,8 +450,8 @@ public PK6 convertToPK6()
|
|||
if (((Data[0x24] >> i) & 1) == 1) battleribbons++;
|
||||
|
||||
// Fill the Ribbon Counter Bytes
|
||||
pk6.Memory_ContestCount = contestribbons;
|
||||
pk6.Memory_BattleCount = battleribbons;
|
||||
pk6.RibbonCountMemoryContest = contestribbons;
|
||||
pk6.RibbonCountMemoryBattle = battleribbons;
|
||||
|
||||
// Copy Ribbons to their new locations.
|
||||
int bx30 = 0;
|
||||
|
|
@ -517,7 +521,7 @@ public PK6 convertToPK6()
|
|||
pk6.HT_Memory = 4;
|
||||
pk6.HT_Feeling = (int)(Util.rnd32() % 10);
|
||||
// When transferred, friendship gets reset.
|
||||
pk6.OT_Friendship = pk6.HT_Friendship = PKX.getBaseFriendship(Species);
|
||||
pk6.OT_Friendship = pk6.HT_Friendship = PersonalTable.B2W2[Species].BaseFriendship;
|
||||
|
||||
// Antishiny Mechanism
|
||||
ushort LID = (ushort)(PID & 0xFFFF);
|
||||
|
|
|
|||
178
PKM/PK6.cs
|
|
@ -10,7 +10,7 @@ public class PK6 : PKM
|
|||
{
|
||||
0x36, 0x37, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F, 0x58, 0x59, 0x73, 0x90, 0x91, 0x9E, 0x9F, 0xA0, 0xA1, 0xA7, 0xAA, 0xAB, 0xAC, 0xAD, 0xC8, 0xC9, 0xD7, 0xE4, 0xE5, 0xE6, 0xE7
|
||||
};
|
||||
public override int SIZE_PARTY => PKX.SIZE_6PARTY;
|
||||
public sealed override int SIZE_PARTY => PKX.SIZE_6PARTY;
|
||||
public override int SIZE_STORED => PKX.SIZE_6STORED;
|
||||
public override int Format => 6;
|
||||
public PK6(byte[] decryptedData = null, string ident = null)
|
||||
|
|
@ -97,104 +97,104 @@ public override uint PID
|
|||
private byte ST1 { get { return Data[0x2C]; } set { Data[0x2C] = value; } }
|
||||
public bool Unused0 { get { return (ST1 & (1 << 0)) == 1 << 0; } set { ST1 = (byte)(ST1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool Unused1 { get { return (ST1 & (1 << 1)) == 1 << 1; } set { ST1 = (byte)(ST1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool ST1_SPA { get { return (ST1 & (1 << 2)) == 1 << 2; } set { ST1 = (byte)(ST1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool ST1_HP { get { return (ST1 & (1 << 3)) == 1 << 3; } set { ST1 = (byte)(ST1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool ST1_ATK { get { return (ST1 & (1 << 4)) == 1 << 4; } set { ST1 = (byte)(ST1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool ST1_SPD { get { return (ST1 & (1 << 5)) == 1 << 5; } set { ST1 = (byte)(ST1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool ST1_SPE { get { return (ST1 & (1 << 6)) == 1 << 6; } set { ST1 = (byte)(ST1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool ST1_DEF { get { return (ST1 & (1 << 7)) == 1 << 7; } set { ST1 = (byte)(ST1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool SuperTrain1_SPA { get { return (ST1 & (1 << 2)) == 1 << 2; } set { ST1 = (byte)(ST1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool SuperTrain1_HP { get { return (ST1 & (1 << 3)) == 1 << 3; } set { ST1 = (byte)(ST1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool SuperTrain1_ATK { get { return (ST1 & (1 << 4)) == 1 << 4; } set { ST1 = (byte)(ST1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool SuperTrain1_SPD { get { return (ST1 & (1 << 5)) == 1 << 5; } set { ST1 = (byte)(ST1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool SuperTrain1_SPE { get { return (ST1 & (1 << 6)) == 1 << 6; } set { ST1 = (byte)(ST1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool SuperTrain1_DEF { get { return (ST1 & (1 << 7)) == 1 << 7; } set { ST1 = (byte)(ST1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte ST2 { get { return Data[0x2D]; } set { Data[0x2D] = value; } }
|
||||
public bool ST2_SPA { get { return (ST2 & (1 << 0)) == 1 << 0; } set { ST2 = (byte)(ST2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool ST2_HP { get { return (ST2 & (1 << 1)) == 1 << 1; } set { ST2 = (byte)(ST2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool ST2_ATK { get { return (ST2 & (1 << 2)) == 1 << 2; } set { ST2 = (byte)(ST2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool ST2_SPD { get { return (ST2 & (1 << 3)) == 1 << 3; } set { ST2 = (byte)(ST2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool ST2_SPE { get { return (ST2 & (1 << 4)) == 1 << 4; } set { ST2 = (byte)(ST2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool ST2_DEF { get { return (ST2 & (1 << 5)) == 1 << 5; } set { ST2 = (byte)(ST2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool ST3_SPA { get { return (ST2 & (1 << 6)) == 1 << 6; } set { ST2 = (byte)(ST2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool ST3_HP { get { return (ST2 & (1 << 7)) == 1 << 7; } set { ST2 = (byte)(ST2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool SuperTrain2_SPA { get { return (ST2 & (1 << 0)) == 1 << 0; } set { ST2 = (byte)(ST2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool SuperTrain2_HP { get { return (ST2 & (1 << 1)) == 1 << 1; } set { ST2 = (byte)(ST2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool SuperTrain2_ATK { get { return (ST2 & (1 << 2)) == 1 << 2; } set { ST2 = (byte)(ST2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool SuperTrain2_SPD { get { return (ST2 & (1 << 3)) == 1 << 3; } set { ST2 = (byte)(ST2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool SuperTrain2_SPE { get { return (ST2 & (1 << 4)) == 1 << 4; } set { ST2 = (byte)(ST2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool SuperTrain2_DEF { get { return (ST2 & (1 << 5)) == 1 << 5; } set { ST2 = (byte)(ST2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool SuperTrain3_SPA { get { return (ST2 & (1 << 6)) == 1 << 6; } set { ST2 = (byte)(ST2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool SuperTrain3_HP { get { return (ST2 & (1 << 7)) == 1 << 7; } set { ST2 = (byte)(ST2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte ST3 { get { return Data[0x2E]; } set { Data[0x2E] = value; } }
|
||||
public bool ST3_ATK { get { return (ST3 & (1 << 0)) == 1 << 0; } set { ST3 = (byte)(ST3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool ST3_SPD { get { return (ST3 & (1 << 1)) == 1 << 1; } set { ST3 = (byte)(ST3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool ST3_SPE { get { return (ST3 & (1 << 2)) == 1 << 2; } set { ST3 = (byte)(ST3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool ST3_DEF { get { return (ST3 & (1 << 3)) == 1 << 3; } set { ST3 = (byte)(ST3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool ST4_1 { get { return (ST3 & (1 << 4)) == 1 << 4; } set { ST3 = (byte)(ST3 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool ST5_1 { get { return (ST3 & (1 << 5)) == 1 << 5; } set { ST3 = (byte)(ST3 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool ST5_2 { get { return (ST3 & (1 << 6)) == 1 << 6; } set { ST3 = (byte)(ST3 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool ST5_3 { get { return (ST3 & (1 << 7)) == 1 << 7; } set { ST3 = (byte)(ST3 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool SuperTrain3_ATK { get { return (ST3 & (1 << 0)) == 1 << 0; } set { ST3 = (byte)(ST3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool SuperTrain3_SPD { get { return (ST3 & (1 << 1)) == 1 << 1; } set { ST3 = (byte)(ST3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool SuperTrain3_SPE { get { return (ST3 & (1 << 2)) == 1 << 2; } set { ST3 = (byte)(ST3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool SuperTrain3_DEF { get { return (ST3 & (1 << 3)) == 1 << 3; } set { ST3 = (byte)(ST3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool SuperTrain4_1 { get { return (ST3 & (1 << 4)) == 1 << 4; } set { ST3 = (byte)(ST3 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool SuperTrain5_1 { get { return (ST3 & (1 << 5)) == 1 << 5; } set { ST3 = (byte)(ST3 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool SuperTrain5_2 { get { return (ST3 & (1 << 6)) == 1 << 6; } set { ST3 = (byte)(ST3 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool SuperTrain5_3 { get { return (ST3 & (1 << 7)) == 1 << 7; } set { ST3 = (byte)(ST3 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte ST4 { get { return Data[0x2F]; } set { Data[0x2F] = value; } }
|
||||
public bool ST5_4 { get { return (ST4 & (1 << 0)) == 1 << 0; } set { ST4 = (byte)(ST4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool ST6_1 { get { return (ST4 & (1 << 1)) == 1 << 1; } set { ST4 = (byte)(ST4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool ST6_2 { get { return (ST4 & (1 << 2)) == 1 << 2; } set { ST4 = (byte)(ST4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool ST6_3 { get { return (ST4 & (1 << 3)) == 1 << 3; } set { ST4 = (byte)(ST4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool ST7_1 { get { return (ST4 & (1 << 4)) == 1 << 4; } set { ST4 = (byte)(ST4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool ST7_2 { get { return (ST4 & (1 << 5)) == 1 << 5; } set { ST4 = (byte)(ST4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool ST7_3 { get { return (ST4 & (1 << 6)) == 1 << 6; } set { ST4 = (byte)(ST4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool ST8_1 { get { return (ST4 & (1 << 7)) == 1 << 7; } set { ST4 = (byte)(ST4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool SuperTrain5_4 { get { return (ST4 & (1 << 0)) == 1 << 0; } set { ST4 = (byte)(ST4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool SuperTrain6_1 { get { return (ST4 & (1 << 1)) == 1 << 1; } set { ST4 = (byte)(ST4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool SuperTrain6_2 { get { return (ST4 & (1 << 2)) == 1 << 2; } set { ST4 = (byte)(ST4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool SuperTrain6_3 { get { return (ST4 & (1 << 3)) == 1 << 3; } set { ST4 = (byte)(ST4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool SuperTrain7_1 { get { return (ST4 & (1 << 4)) == 1 << 4; } set { ST4 = (byte)(ST4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool SuperTrain7_2 { get { return (ST4 & (1 << 5)) == 1 << 5; } set { ST4 = (byte)(ST4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool SuperTrain7_3 { get { return (ST4 & (1 << 6)) == 1 << 6; } set { ST4 = (byte)(ST4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool SuperTrain8_1 { get { return (ST4 & (1 << 7)) == 1 << 7; } set { ST4 = (byte)(ST4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte RIB0 { get { return Data[0x30]; } set { Data[0x30] = value; } }
|
||||
public bool RIB0_0 { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RIB0_1 { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RIB0_2 { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RIB0_3 { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB0_4 { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RIB0_5 { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RIB0_6 { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RIB0_7 { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte RIB1 { get { return Data[0x31]; } set { Data[0x31] = value; } }
|
||||
public bool RIB1_0 { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RIB1_1 { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RIB1_2 { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RIB1_3 { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB1_4 { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RIB1_5 { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RIB1_6 { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RIB1_7 { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte RIB2 { get { return Data[0x32]; } set { Data[0x32] = value; } }
|
||||
public bool RIB2_0 { get { return (RIB2 & (1 << 0)) == 1 << 0; } set { RIB2 = (byte)(RIB2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RIB2_1 { get { return (RIB2 & (1 << 1)) == 1 << 1; } set { RIB2 = (byte)(RIB2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RIB2_2 { get { return (RIB2 & (1 << 2)) == 1 << 2; } set { RIB2 = (byte)(RIB2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RIB2_3 { get { return (RIB2 & (1 << 3)) == 1 << 3; } set { RIB2 = (byte)(RIB2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB2_4 { get { return (RIB2 & (1 << 4)) == 1 << 4; } set { RIB2 = (byte)(RIB2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RIB2_5 { get { return (RIB2 & (1 << 5)) == 1 << 5; } set { RIB2 = (byte)(RIB2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RIB2_6 { get { return (RIB2 & (1 << 6)) == 1 << 6; } set { RIB2 = (byte)(RIB2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RIB2_7 { get { return (RIB2 & (1 << 7)) == 1 << 7; } set { RIB2 = (byte)(RIB2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte RIB3 { get { return Data[0x33]; } set { Data[0x33] = value; } }
|
||||
public bool RIB3_0 { get { return (RIB3 & (1 << 0)) == 1 << 0; } set { RIB3 = (byte)(RIB3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RIB3_1 { get { return (RIB3 & (1 << 1)) == 1 << 1; } set { RIB3 = (byte)(RIB3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RIB3_2 { get { return (RIB3 & (1 << 2)) == 1 << 2; } set { RIB3 = (byte)(RIB3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RIB3_3 { get { return (RIB3 & (1 << 3)) == 1 << 3; } set { RIB3 = (byte)(RIB3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB3_4 { get { return (RIB3 & (1 << 4)) == 1 << 4; } set { RIB3 = (byte)(RIB3 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RIB3_5 { get { return (RIB3 & (1 << 5)) == 1 << 5; } set { RIB3 = (byte)(RIB3 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RIB3_6 { get { return (RIB3 & (1 << 6)) == 1 << 6; } set { RIB3 = (byte)(RIB3 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RIB3_7 { get { return (RIB3 & (1 << 7)) == 1 << 7; } set { RIB3 = (byte)(RIB3 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte RIB4 { get { return Data[0x34]; } set { Data[0x34] = value; } }
|
||||
public bool RIB4_0 { get { return (RIB4 & (1 << 0)) == 1 << 0; } set { RIB4 = (byte)(RIB4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RIB4_1 { get { return (RIB4 & (1 << 1)) == 1 << 1; } set { RIB4 = (byte)(RIB4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RIB4_2 { get { return (RIB4 & (1 << 2)) == 1 << 2; } set { RIB4 = (byte)(RIB4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RIB4_3 { get { return (RIB4 & (1 << 3)) == 1 << 3; } set { RIB4 = (byte)(RIB4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB4_4 { get { return (RIB4 & (1 << 4)) == 1 << 4; } set { RIB4 = (byte)(RIB4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RIB4_5 { get { return (RIB4 & (1 << 5)) == 1 << 5; } set { RIB4 = (byte)(RIB4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RIB4_6 { get { return (RIB4 & (1 << 6)) == 1 << 6; } set { RIB4 = (byte)(RIB4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RIB4_7 { get { return (RIB4 & (1 << 7)) == 1 << 7; } set { RIB4 = (byte)(RIB4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
private byte RIB5 { get { return Data[0x35]; } set { Data[0x35] = value; } }
|
||||
public bool RIB5_0 { get { return (RIB5 & (1 << 0)) == 1 << 0; } set { RIB5 = (byte)(RIB5 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RIB5_1 { get { return (RIB5 & (1 << 1)) == 1 << 1; } set { RIB5 = (byte)(RIB5 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RIB5_2 { get { return (RIB5 & (1 << 2)) == 1 << 2; } set { RIB5 = (byte)(RIB5 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RIB5_3 { get { return (RIB5 & (1 << 3)) == 1 << 3; } set { RIB5 = (byte)(RIB5 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RIB5_4 { get { return (RIB5 & (1 << 4)) == 1 << 4; } set { RIB5 = (byte)(RIB5 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RIB5_5 { get { return (RIB5 & (1 << 5)) == 1 << 5; } set { RIB5 = (byte)(RIB5 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RIB5_6 { get { return (RIB5 & (1 << 6)) == 1 << 6; } set { RIB5 = (byte)(RIB5 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RIB5_7 { get { return (RIB5 & (1 << 7)) == 1 << 7; } set { RIB5 = (byte)(RIB5 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonChampionKalos { get { return (RIB0 & (1 << 0)) == 1 << 0; } set { RIB0 = (byte)(RIB0 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonChampionG3Hoenn { get { return (RIB0 & (1 << 1)) == 1 << 1; } set { RIB0 = (byte)(RIB0 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonChampionSinnoh { get { return (RIB0 & (1 << 2)) == 1 << 2; } set { RIB0 = (byte)(RIB0 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonBestFriends { get { return (RIB0 & (1 << 3)) == 1 << 3; } set { RIB0 = (byte)(RIB0 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonTraining { get { return (RIB0 & (1 << 4)) == 1 << 4; } set { RIB0 = (byte)(RIB0 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonBattlerSkillful { get { return (RIB0 & (1 << 5)) == 1 << 5; } set { RIB0 = (byte)(RIB0 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonBattlerExpert { get { return (RIB0 & (1 << 6)) == 1 << 6; } set { RIB0 = (byte)(RIB0 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonEffort { get { return (RIB0 & (1 << 7)) == 1 << 7; } set { RIB0 = (byte)(RIB0 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonAlert { get { return (RIB1 & (1 << 0)) == 1 << 0; } set { RIB1 = (byte)(RIB1 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonShock { get { return (RIB1 & (1 << 1)) == 1 << 1; } set { RIB1 = (byte)(RIB1 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonDowncast { get { return (RIB1 & (1 << 2)) == 1 << 2; } set { RIB1 = (byte)(RIB1 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonCareless { get { return (RIB1 & (1 << 3)) == 1 << 3; } set { RIB1 = (byte)(RIB1 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonRelax { get { return (RIB1 & (1 << 4)) == 1 << 4; } set { RIB1 = (byte)(RIB1 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonSnooze { get { return (RIB1 & (1 << 5)) == 1 << 5; } set { RIB1 = (byte)(RIB1 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonSmile { get { return (RIB1 & (1 << 6)) == 1 << 6; } set { RIB1 = (byte)(RIB1 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonGorgeous { get { return (RIB1 & (1 << 7)) == 1 << 7; } set { RIB1 = (byte)(RIB1 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonRoyal { get { return (RIB2 & (1 << 0)) == 1 << 0; } set { RIB2 = (byte)(RIB2 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonGorgeousRoyal { get { return (RIB2 & (1 << 1)) == 1 << 1; } set { RIB2 = (byte)(RIB2 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonArtist { get { return (RIB2 & (1 << 2)) == 1 << 2; } set { RIB2 = (byte)(RIB2 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonFootprint { get { return (RIB2 & (1 << 3)) == 1 << 3; } set { RIB2 = (byte)(RIB2 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonRecord { get { return (RIB2 & (1 << 4)) == 1 << 4; } set { RIB2 = (byte)(RIB2 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonLegend { get { return (RIB2 & (1 << 5)) == 1 << 5; } set { RIB2 = (byte)(RIB2 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonCountry { get { return (RIB2 & (1 << 6)) == 1 << 6; } set { RIB2 = (byte)(RIB2 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonNational { get { return (RIB2 & (1 << 7)) == 1 << 7; } set { RIB2 = (byte)(RIB2 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonEarth { get { return (RIB3 & (1 << 0)) == 1 << 0; } set { RIB3 = (byte)(RIB3 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonWorld { get { return (RIB3 & (1 << 1)) == 1 << 1; } set { RIB3 = (byte)(RIB3 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonClassic { get { return (RIB3 & (1 << 2)) == 1 << 2; } set { RIB3 = (byte)(RIB3 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonPremier { get { return (RIB3 & (1 << 3)) == 1 << 3; } set { RIB3 = (byte)(RIB3 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonEvent { get { return (RIB3 & (1 << 4)) == 1 << 4; } set { RIB3 = (byte)(RIB3 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonBirthday { get { return (RIB3 & (1 << 5)) == 1 << 5; } set { RIB3 = (byte)(RIB3 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RibbonSpecial { get { return (RIB3 & (1 << 6)) == 1 << 6; } set { RIB3 = (byte)(RIB3 & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool RibbonSouvenir { get { return (RIB3 & (1 << 7)) == 1 << 7; } set { RIB3 = (byte)(RIB3 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonWishing { get { return (RIB4 & (1 << 0)) == 1 << 0; } set { RIB4 = (byte)(RIB4 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonChampionBattle { get { return (RIB4 & (1 << 1)) == 1 << 1; } set { RIB4 = (byte)(RIB4 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonChampionRegional { get { return (RIB4 & (1 << 2)) == 1 << 2; } set { RIB4 = (byte)(RIB4 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonChampionNational { get { return (RIB4 & (1 << 3)) == 1 << 3; } set { RIB4 = (byte)(RIB4 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonChampionWorld { get { return (RIB4 & (1 << 4)) == 1 << 4; } set { RIB4 = (byte)(RIB4 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RIB4_5 { get { return (RIB4 & (1 << 5)) == 1 << 5; } set { RIB4 = (byte)(RIB4 & ~(1 << 5) | (value ? 1 << 5 : 0)); } } // Unused
|
||||
public bool RIB4_6 { get { return (RIB4 & (1 << 6)) == 1 << 6; } set { RIB4 = (byte)(RIB4 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Unused
|
||||
public bool RibbonChampionG6Hoenn { get { return (RIB4 & (1 << 7)) == 1 << 7; } set { RIB4 = (byte)(RIB4 & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public bool RibbonContestStar { get { return (RIB5 & (1 << 0)) == 1 << 0; } set { RIB5 = (byte)(RIB5 & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool RibbonMasterCoolness { get { return (RIB5 & (1 << 1)) == 1 << 1; } set { RIB5 = (byte)(RIB5 & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool RibbonMasterBeauty { get { return (RIB5 & (1 << 2)) == 1 << 2; } set { RIB5 = (byte)(RIB5 & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool RibbonMasterCuteness { get { return (RIB5 & (1 << 3)) == 1 << 3; } set { RIB5 = (byte)(RIB5 & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool RibbonMasterCleverness { get { return (RIB5 & (1 << 4)) == 1 << 4; } set { RIB5 = (byte)(RIB5 & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool RibbonMasterToughness { get { return (RIB5 & (1 << 5)) == 1 << 5; } set { RIB5 = (byte)(RIB5 & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool RIB5_6 { get { return (RIB5 & (1 << 6)) == 1 << 6; } set { RIB5 = (byte)(RIB5 & ~(1 << 6) | (value ? 1 << 6 : 0)); } } // Unused
|
||||
public bool RIB5_7 { get { return (RIB5 & (1 << 7)) == 1 << 7; } set { RIB5 = (byte)(RIB5 & ~(1 << 7) | (value ? 1 << 7 : 0)); } } // Unused
|
||||
public byte _0x36 { get { return Data[0x36]; } set { Data[0x36] = value; } }
|
||||
public byte _0x37 { get { return Data[0x37]; } set { Data[0x37] = value; } }
|
||||
public int Memory_ContestCount { get { return Data[0x38]; } set { Data[0x38] = (byte)value; } }
|
||||
public int Memory_BattleCount { get { return Data[0x39]; } set { Data[0x39] = (byte)value; } }
|
||||
public int RibbonCountMemoryContest { get { return Data[0x38]; } set { Data[0x38] = (byte)value; } }
|
||||
public int RibbonCountMemoryBattle { get { return Data[0x39]; } set { Data[0x39] = (byte)value; } }
|
||||
private byte DistByte { get { return Data[0x3A]; } set { Data[0x3A] = value; } }
|
||||
public bool Dist1 { get { return (DistByte & (1 << 0)) == 1 << 0; } set { DistByte = (byte)(DistByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool Dist2 { get { return (DistByte & (1 << 1)) == 1 << 1; } set { DistByte = (byte)(DistByte & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool Dist3 { get { return (DistByte & (1 << 2)) == 1 << 2; } set { DistByte = (byte)(DistByte & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool Dist4 { get { return (DistByte & (1 << 3)) == 1 << 3; } set { DistByte = (byte)(DistByte & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool Dist5 { get { return (DistByte & (1 << 4)) == 1 << 4; } set { DistByte = (byte)(DistByte & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool Dist6 { get { return (DistByte & (1 << 5)) == 1 << 5; } set { DistByte = (byte)(DistByte & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool DistSuperTrain1 { get { return (DistByte & (1 << 0)) == 1 << 0; } set { DistByte = (byte)(DistByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool DistSuperTrain2 { get { return (DistByte & (1 << 1)) == 1 << 1; } set { DistByte = (byte)(DistByte & ~(1 << 1) | (value ? 1 << 1 : 0)); } }
|
||||
public bool DistSuperTrain3 { get { return (DistByte & (1 << 2)) == 1 << 2; } set { DistByte = (byte)(DistByte & ~(1 << 2) | (value ? 1 << 2 : 0)); } }
|
||||
public bool DistSuperTrain4 { get { return (DistByte & (1 << 3)) == 1 << 3; } set { DistByte = (byte)(DistByte & ~(1 << 3) | (value ? 1 << 3 : 0)); } }
|
||||
public bool DistSuperTrain5 { get { return (DistByte & (1 << 4)) == 1 << 4; } set { DistByte = (byte)(DistByte & ~(1 << 4) | (value ? 1 << 4 : 0)); } }
|
||||
public bool DistSuperTrain6 { get { return (DistByte & (1 << 5)) == 1 << 5; } set { DistByte = (byte)(DistByte & ~(1 << 5) | (value ? 1 << 5 : 0)); } }
|
||||
public bool Dist7 { get { return (DistByte & (1 << 6)) == 1 << 6; } set { DistByte = (byte)(DistByte & ~(1 << 6) | (value ? 1 << 6 : 0)); } }
|
||||
public bool Dist8 { get { return (DistByte & (1 << 7)) == 1 << 7; } set { DistByte = (byte)(DistByte & ~(1 << 7) | (value ? 1 << 7 : 0)); } }
|
||||
public byte _0x3B { get { return Data[0x3B]; } set { Data[0x3B] = value; } }
|
||||
|
|
@ -449,7 +449,7 @@ public override byte[] Encrypt()
|
|||
}
|
||||
public override bool getGenderIsValid()
|
||||
{
|
||||
int gv = PKX.Personal[Species].Gender;
|
||||
int gv = PersonalTable.AO[Species].Gender;
|
||||
|
||||
if (gv == 255)
|
||||
return Gender == 2;
|
||||
|
|
@ -629,7 +629,7 @@ public void TradeFriendshipAffection(string SAV_TRAINER)
|
|||
return;
|
||||
|
||||
// Reset
|
||||
HT_Friendship = PKX.getBaseFriendship(Species);
|
||||
HT_Friendship = PersonalTable.AO[Species].BaseFriendship;
|
||||
HT_Affection = 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
95
PKM/PKM.cs
|
|
@ -13,6 +13,8 @@ public abstract class PKM
|
|||
// Internal Attributes set on creation
|
||||
public byte[] Data; // Raw Storage
|
||||
public string Identifier; // User or Form Custom Attribute
|
||||
public int Box { get; set; } = -1; // Batch Editor
|
||||
public int Slot { get; set; } = -1; // Batch Editor
|
||||
|
||||
public byte[] EncryptedPartyData => Encrypt().Take(SIZE_PARTY).ToArray();
|
||||
public byte[] EncryptedBoxData => Encrypt().Take(SIZE_STORED).ToArray();
|
||||
|
|
@ -145,25 +147,37 @@ public byte[] Write()
|
|||
public bool XY => Version == (int)GameVersion.X || Version == (int)GameVersion.Y;
|
||||
public bool AO => Version == (int)GameVersion.AS || Version == (int)GameVersion.OR;
|
||||
public bool SM => Version == (int)GameVersion.SN || Version == (int)GameVersion.MN;
|
||||
public bool PtHGSS => new[] {GameVersion.Pt, GameVersion.HG, GameVersion.SS}.Contains((GameVersion)Version);
|
||||
protected bool PtHGSS => GameVersion.Pt == (GameVersion)Version || HGSS;
|
||||
public bool HGSS => new[] {GameVersion.HG, GameVersion.SS}.Contains((GameVersion)Version);
|
||||
public bool Gen5 => Version >= 20 && Version <= 23;
|
||||
public bool Gen4 => Version >= 10 && Version < 12 || Version >= 7 && Version <= 8;
|
||||
public bool Gen3 => Version >= 1 && Version <= 5 || Version == 15;
|
||||
public bool GenU => !(Gen6 || Gen5 || Gen4 || Gen3);
|
||||
public int GenNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
if (Gen6) return 6;
|
||||
if (Gen5) return 5;
|
||||
if (Gen4) return 4;
|
||||
if (Gen3) return 3;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
public bool PKRS_Infected => PKRS_Strain > 0;
|
||||
public bool PKRS_Cured => PKRS_Days == 0 && PKRS_Strain > 0;
|
||||
public bool ChecksumValid => Checksum == CalculateChecksum();
|
||||
public int CurrentLevel => PKX.getLevel(Species, EXP);
|
||||
public bool Circle { get { return Markings[0]; } set { Markings[0] = value; } }
|
||||
public bool Triangle { get { return Markings[1]; } set { Markings[1] = value; } }
|
||||
public bool Square { get { return Markings[2]; } set { Markings[2] = value; } }
|
||||
public bool Heart { get { return Markings[3]; } set { Markings[3] = value; } }
|
||||
public bool Star { get { return Markings[4]; } set { Markings[4] = value; } }
|
||||
public bool Diamond { get { return Markings[5]; } set { Markings[5] = value; } }
|
||||
public bool MarkCircle { get { return (MarkByte & (1 << 0)) == 1 << 0; } set { MarkByte = (byte)(MarkByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool MarkTriangle { get { return (MarkByte & (1 << 1)) == 1 << 1; } set { MarkByte = (byte)(MarkByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool MarkSquare { get { return (MarkByte & (1 << 2)) == 1 << 2; } set { MarkByte = (byte)(MarkByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool MarkHeart { get { return (MarkByte & (1 << 3)) == 1 << 3; } set { MarkByte = (byte)(MarkByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool MarkStar { get { return (MarkByte & (1 << 4)) == 1 << 4; } set { MarkByte = (byte)(MarkByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public bool MarkDiamond { get { return (MarkByte & (1 << 5)) == 1 << 5; } set { MarkByte = (byte)(MarkByte & ~(1 << 0) | (value ? 1 << 0 : 0)); } }
|
||||
public Image Sprite => PKX.getSprite(this);
|
||||
public string ShowdownText => ShowdownSet.getShowdownText(this);
|
||||
public string[] QRText => PKX.getQRText(this);
|
||||
public string FileName => PKX.getFileName(this);
|
||||
public string FileName => $"{Species.ToString("000")}{(IsShiny ? " ★" : "")} - {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 }; }
|
||||
|
|
@ -268,10 +282,28 @@ public int PotentialRating
|
|||
return ivTotal <= 150 ? 2 : 3;
|
||||
}
|
||||
}
|
||||
|
||||
public void CalculateStats()
|
||||
|
||||
public ushort[] getStats(PersonalInfo p)
|
||||
{
|
||||
int level = CurrentLevel;
|
||||
ushort[] Stats = new ushort[6];
|
||||
Stats[0] = (ushort)(p.HP == 1 ? 1 : (IV_HP + 2 * p.HP + EV_HP / 4 + 100) * level / 100 + 10);
|
||||
Stats[1] = (ushort)((IV_ATK + 2 * p.ATK + EV_ATK / 4) * level / 100 + 5);
|
||||
Stats[2] = (ushort)((IV_DEF + 2 * p.DEF + EV_DEF / 4) * level / 100 + 5);
|
||||
Stats[4] = (ushort)((IV_SPA + 2 * p.SPA + EV_SPA / 4) * level / 100 + 5);
|
||||
Stats[5] = (ushort)((IV_SPD + 2 * p.SPD + EV_SPD / 4) * level / 100 + 5);
|
||||
Stats[3] = (ushort)((IV_SPE + 2 * p.SPE + EV_SPE / 4) * level / 100 + 5);
|
||||
|
||||
// Account for nature
|
||||
int incr = Nature / 5 + 1;
|
||||
int decr = Nature % 5 + 1;
|
||||
if (incr == decr) return Stats;
|
||||
Stats[incr] *= 11; Stats[incr] /= 10;
|
||||
Stats[decr] *= 9; Stats[decr] /= 10;
|
||||
return Stats;
|
||||
}
|
||||
public void setStats(ushort[] Stats)
|
||||
{
|
||||
ushort[] Stats = PKX.getStats(this);
|
||||
Stat_HPMax = Stat_HPCurrent = Stats[0];
|
||||
Stat_ATK = Stats[1];
|
||||
Stat_DEF = Stats[2];
|
||||
|
|
@ -279,7 +311,48 @@ public void CalculateStats()
|
|||
Stat_SPA = Stats[4];
|
||||
Stat_SPD = Stats[5];
|
||||
}
|
||||
public virtual bool CanHoldItem(ushort[] ValidArray)
|
||||
{
|
||||
return ValidArray.Contains((ushort)HeldItem);
|
||||
}
|
||||
|
||||
public abstract PKM Clone();
|
||||
|
||||
public int getMovePP(int move, int ppup)
|
||||
{
|
||||
return getBasePP(move) * (5 + ppup) / 5;
|
||||
}
|
||||
|
||||
private int getBasePP(int move)
|
||||
{
|
||||
int[] pptable;
|
||||
switch (Format)
|
||||
{
|
||||
case 3: pptable = Legal.MovePP_RS; break;
|
||||
case 4: pptable = Legal.MovePP_DP; break;
|
||||
case 5: pptable = Legal.MovePP_BW; break;
|
||||
case 6: pptable = Legal.MovePP_XY; break;
|
||||
default: pptable = new int[1]; break;
|
||||
}
|
||||
if (move >= pptable.Length)
|
||||
move = 0;
|
||||
return pptable[move];
|
||||
}
|
||||
|
||||
public void setShinyPID()
|
||||
{
|
||||
do PID = PKX.getRandomPID(Species, Gender, Version, Nature, AltForm, PID); while (!IsShiny);
|
||||
EncryptionConstant = PID;
|
||||
}
|
||||
public void setPIDGender(int gender)
|
||||
{
|
||||
do PID = PKX.getRandomPID(Species, gender, Version, Nature, AltForm, PID); while (IsShiny);
|
||||
EncryptionConstant = PID;
|
||||
}
|
||||
public void setPIDNature(int nature)
|
||||
{
|
||||
do PID = PKX.getRandomPID(Species, Gender, Version, nature, AltForm, PID); while (IsShiny);
|
||||
EncryptionConstant = PID;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
namespace PKHeX
|
||||
{
|
||||
internal static class PKMConverter
|
||||
public static class PKMConverter
|
||||
{
|
||||
internal static int Country = 31;
|
||||
internal static int Country = 49;
|
||||
internal static int Region = 7;
|
||||
internal static int ConsoleRegion = 1;
|
||||
internal static string OT_Name = "PKHeX";
|
||||
|
|
@ -19,7 +19,12 @@ internal static void updateConfig(int SUBREGION, int COUNTRY, int _3DSREGION, st
|
|||
OT_Gender = TRAINERGENDER;
|
||||
}
|
||||
|
||||
private static int getPKMDataFormat(byte[] data)
|
||||
/// <summary>
|
||||
/// Gets the generation of the Pokemon data.
|
||||
/// </summary>
|
||||
/// <param name="data">Raw data representing a Pokemon.</param>
|
||||
/// <returns>An integer indicating the generation of the PKM file, or -1 if the data is invalid.</returns>
|
||||
public static int getPKMDataFormat(byte[] data)
|
||||
{
|
||||
if (!PKX.getIsPKM(data.Length))
|
||||
return -1;
|
||||
|
|
@ -40,19 +45,27 @@ private static int getPKMDataFormat(byte[] data)
|
|||
case PKX.SIZE_6PARTY: // collision with PGT, same size.
|
||||
if (BitConverter.ToUInt16(data, 0x4) != 0) // Bad Sanity?
|
||||
return -1;
|
||||
if (BitConverter.ToUInt32(data, 0x06) == PKX.getCHK(data))
|
||||
return 6;
|
||||
if (BitConverter.ToUInt16(data, 0x58) != 0) // Encrypted?
|
||||
{
|
||||
PKX.getCHK(data);
|
||||
for (int i = data.Length - 0x10; i < data.Length; i++) // 0x10 of 00's at the end != PK6
|
||||
if (data[i] != 0)
|
||||
break;
|
||||
return 6;
|
||||
return 6;
|
||||
return -1;
|
||||
}
|
||||
return -1;
|
||||
return 6;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
internal static PKM getPKMfromBytes(byte[] data, string ident = null)
|
||||
|
||||
/// <summary>
|
||||
/// Creates an instance of <see cref="PKM"/> from the given data.
|
||||
/// </summary>
|
||||
/// <param name="data">Raw data of the Pokemon file.</param>
|
||||
/// <param name="ident">Optional identifier for the Pokemon. Usually the full path of the source file.</param>
|
||||
/// <returns>An instance of <see cref="PKM"/> created from the given <paramref name="data"/>, or null if <paramref name="data"/> is invalid.</returns>
|
||||
public static PKM getPKMfromBytes(byte[] data, string ident = null)
|
||||
{
|
||||
checkEncrypted(ref data);
|
||||
switch (getPKMDataFormat(data))
|
||||
|
|
@ -103,11 +116,11 @@ internal static PKM convertToFormat(PKM pk, int Format, out string comment)
|
|||
pkm.Met_Location = 30001; // Pokétransfer
|
||||
}
|
||||
if (pkm.Format == 3 && Format > 3)
|
||||
pkm = (pkm as PK3).convertToPK4();
|
||||
pkm = ((PK3) pkm).convertToPK4();
|
||||
if (pkm.Format == 4 && Format > 4)
|
||||
pkm = (pkm as PK4).convertToPK5();
|
||||
pkm = ((PK4) pkm).convertToPK5();
|
||||
if (pkm.Format == 5 && Format > 5)
|
||||
pkm = (pkm as PK5).convertToPK6();
|
||||
pkm = ((PK5) pkm).convertToPK6();
|
||||
comment = $"Converted from pk{currentFormat} to pk{Format}";
|
||||
return pkm;
|
||||
}
|
||||
|
|
|
|||
775
PKM/PKX.cs
|
|
@ -9,11 +9,11 @@ public class ShowdownSet
|
|||
internal static readonly string[] StatNames = { "HP", "Atk", "Def", "SpA", "SpD", "Spe" };
|
||||
public static readonly string[] types = Util.getStringList("types", "en");
|
||||
public static readonly string[] forms = Util.getStringList("forms", "en");
|
||||
private static readonly string[] species = Util.getStringList("species", "en");
|
||||
private static readonly string[] species = Util.getSpeciesList("en");
|
||||
private static readonly string[] items = Util.getStringList("items", "en");
|
||||
private static readonly string[] natures = Util.getStringList("natures", "en");
|
||||
private static readonly string[] moves = Util.getStringList("moves", "en");
|
||||
private static readonly string[] abilities = Util.getStringList("abilities", "en");
|
||||
private static readonly string[] moves = Util.getMovesList("en");
|
||||
private static readonly string[] abilities = Util.getAbilitiesList("en");
|
||||
private static readonly string[] hptypes = types.Skip(1).ToArray();
|
||||
|
||||
// Default Set Data
|
||||
|
|
@ -207,7 +207,7 @@ public string getText()
|
|||
|
||||
// First Line: Name, Nickname, Gender, Item
|
||||
string result = string.Format(species[Species] != Nickname ? "{0} ({1})" : "{1}", Nickname,
|
||||
species[Species] + ((Form ?? "") != "" ? "-" + Form.Replace("Mega ", "Mega-") : "")) // Species (& Form if necessary)
|
||||
species[Species] + ((Form ?? "") != "" ? "-" + Form?.Replace("Mega ", "Mega-") : "")) // Species (& Form if necessary)
|
||||
+ Gender + (Item != 0 ? " @ " + items[Item] : "") + Environment.NewLine;
|
||||
|
||||
// IVs
|
||||
|
|
|
|||
2983
PKX/f4-RibbMedal.Designer.cs
generated
|
|
@ -1,382 +0,0 @@
|
|||
using System;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public partial class RibbMedal : Form
|
||||
{
|
||||
private readonly PictureBox[] pba;
|
||||
private readonly CheckBox[] cba;
|
||||
private readonly Image[] bma;
|
||||
private readonly PK6 pk6;
|
||||
public RibbMedal()
|
||||
{
|
||||
InitializeComponent();
|
||||
pk6 = Main.pkm as PK6; // cache copy
|
||||
pba = new[] {
|
||||
PB_10, PB_11, PB_12, PB_13,
|
||||
PB_14, PB_15, PB_16, PB_17,
|
||||
|
||||
PB_20, PB_21, PB_22, PB_23,
|
||||
PB_24, PB_25, PB_26, PB_27,
|
||||
|
||||
PB_30, PB_31, PB_32, PB_33,
|
||||
PB_34, PB_35, PB_36, PB_37,
|
||||
|
||||
PB_40, PB_41, PB_42, PB_43,
|
||||
PB_44, PB_45, PB_46, PB_47,
|
||||
|
||||
PB_50, PB_51, PB_52, PB_53,
|
||||
PB_54,
|
||||
|
||||
PB_57,
|
||||
PB_O0, PB_O1,PB_O2,PB_O3,PB_O4,PB_O5,
|
||||
};
|
||||
cba = new [] {
|
||||
Kalos1a_0, Kalos1a_1, Kalos1a_2, Kalos1a_3, Kalos1a_4, Kalos1a_5, Kalos1a_6, Kalos1a_7,
|
||||
Kalos1b_0, Kalos1b_1, Kalos1b_2, Kalos1b_3, Kalos1b_4, Kalos1b_5, Kalos1b_6, Kalos1b_7,
|
||||
Kalos2a_0, Kalos2a_1, Kalos2a_2, Kalos2a_3, Kalos2a_4, Kalos2a_5, Kalos2a_6, Kalos2a_7,
|
||||
Kalos2b_0, Kalos2b_1, Kalos2b_2, Kalos2b_3, Kalos2b_4, Kalos2b_5, Kalos2b_6, Kalos2b_7,
|
||||
Extra1_0, Extra1_1, Extra1_2, Extra1_3, Extra1_4,
|
||||
|
||||
Extra1_7, ORAS_0, ORAS_1, ORAS_2, ORAS_3, ORAS_4, ORAS_5,
|
||||
};
|
||||
bma = new Image[pba.Length];
|
||||
for (int i = 0; i < bma.Length; i++)
|
||||
{
|
||||
bma[i] = pba[i].Image;
|
||||
pba[i].Image = Util.ChangeOpacity(bma[i], 0.1);
|
||||
}
|
||||
Util.TranslateInterface(this, Main.curlanguage);
|
||||
|
||||
// Set up Training Bag Data
|
||||
CB_Bag.Items.Clear();
|
||||
CB_Bag.Items.Add("---");
|
||||
for (int i = 1; i < Main.trainingbags.Length - 1; i++)
|
||||
CB_Bag.Items.Add(Main.trainingbags[i]);
|
||||
|
||||
getData();
|
||||
}
|
||||
private void getData()
|
||||
{
|
||||
CHK_Secret.Checked = pk6.SecretSuperTraining;
|
||||
|
||||
TMedal1_0.Checked = pk6.Unused0;
|
||||
TMedal1_1.Checked = pk6.Unused1;
|
||||
TMedal1_2.Checked = pk6.ST1_SPA;
|
||||
TMedal1_3.Checked = pk6.ST1_HP;
|
||||
TMedal1_4.Checked = pk6.ST1_ATK;
|
||||
TMedal1_5.Checked = pk6.ST1_SPD;
|
||||
TMedal1_6.Checked = pk6.ST1_SPE;
|
||||
TMedal1_7.Checked = pk6.ST1_DEF;
|
||||
|
||||
TMedal2_0.Checked = pk6.ST2_SPA;
|
||||
TMedal2_1.Checked = pk6.ST2_HP;
|
||||
TMedal2_2.Checked = pk6.ST2_ATK;
|
||||
TMedal2_3.Checked = pk6.ST2_SPD;
|
||||
TMedal2_4.Checked = pk6.ST2_SPE;
|
||||
TMedal2_5.Checked = pk6.ST2_DEF;
|
||||
TMedal2_6.Checked = pk6.ST3_SPA;
|
||||
TMedal2_7.Checked = pk6.ST3_HP;
|
||||
|
||||
TMedal3_0.Checked = pk6.ST3_ATK;
|
||||
TMedal3_1.Checked = pk6.ST3_SPD;
|
||||
TMedal3_2.Checked = pk6.ST3_SPE;
|
||||
TMedal3_3.Checked = pk6.ST3_DEF;
|
||||
TMedal3_4.Checked = pk6.ST4_1;
|
||||
TMedal3_5.Checked = pk6.ST5_1;
|
||||
TMedal3_6.Checked = pk6.ST5_2;
|
||||
TMedal3_7.Checked = pk6.ST5_3;
|
||||
|
||||
TMedal4_0.Checked = pk6.ST5_4;
|
||||
TMedal4_1.Checked = pk6.ST6_1;
|
||||
TMedal4_2.Checked = pk6.ST6_2;
|
||||
TMedal4_3.Checked = pk6.ST6_3;
|
||||
TMedal4_4.Checked = pk6.ST7_1;
|
||||
TMedal4_5.Checked = pk6.ST7_2;
|
||||
TMedal4_6.Checked = pk6.ST7_3;
|
||||
TMedal4_7.Checked = pk6.ST8_1;
|
||||
|
||||
CHK_D0.Checked = pk6.Dist1;
|
||||
CHK_D1.Checked = pk6.Dist2;
|
||||
CHK_D2.Checked = pk6.Dist3;
|
||||
CHK_D3.Checked = pk6.Dist4;
|
||||
CHK_D4.Checked = pk6.Dist5;
|
||||
CHK_D5.Checked = pk6.Dist6;
|
||||
|
||||
Kalos1a_0.Checked = pk6.RIB0_0;
|
||||
Kalos1a_1.Checked = pk6.RIB0_1;
|
||||
Kalos1a_2.Checked = pk6.RIB0_2;
|
||||
Kalos1a_3.Checked = pk6.RIB0_3;
|
||||
Kalos1a_4.Checked = pk6.RIB0_4;
|
||||
Kalos1a_5.Checked = pk6.RIB0_5;
|
||||
Kalos1a_6.Checked = pk6.RIB0_6;
|
||||
Kalos1a_7.Checked = pk6.RIB0_7;
|
||||
|
||||
Kalos1b_0.Checked = pk6.RIB1_0;
|
||||
Kalos1b_1.Checked = pk6.RIB1_1;
|
||||
Kalos1b_2.Checked = pk6.RIB1_2;
|
||||
Kalos1b_3.Checked = pk6.RIB1_3;
|
||||
Kalos1b_4.Checked = pk6.RIB1_4;
|
||||
Kalos1b_5.Checked = pk6.RIB1_5;
|
||||
Kalos1b_6.Checked = pk6.RIB1_6;
|
||||
Kalos1b_7.Checked = pk6.RIB1_7;
|
||||
|
||||
Kalos2a_0.Checked = pk6.RIB2_0;
|
||||
Kalos2a_1.Checked = pk6.RIB2_1;
|
||||
Kalos2a_2.Checked = pk6.RIB2_2;
|
||||
Kalos2a_3.Checked = pk6.RIB2_3;
|
||||
Kalos2a_4.Checked = pk6.RIB2_4;
|
||||
Kalos2a_5.Checked = pk6.RIB2_5;
|
||||
Kalos2a_6.Checked = pk6.RIB2_6;
|
||||
Kalos2a_7.Checked = pk6.RIB2_7;
|
||||
|
||||
Kalos2b_0.Checked = pk6.RIB3_0;
|
||||
Kalos2b_1.Checked = pk6.RIB3_1;
|
||||
Kalos2b_2.Checked = pk6.RIB3_2;
|
||||
Kalos2b_3.Checked = pk6.RIB3_3;
|
||||
Kalos2b_4.Checked = pk6.RIB3_4;
|
||||
Kalos2b_5.Checked = pk6.RIB3_5;
|
||||
Kalos2b_6.Checked = pk6.RIB3_6;
|
||||
Kalos2b_7.Checked = pk6.RIB3_7;
|
||||
|
||||
Extra1_0.Checked = pk6.RIB4_0;
|
||||
Extra1_1.Checked = pk6.RIB4_1;
|
||||
Extra1_2.Checked = pk6.RIB4_2;
|
||||
Extra1_3.Checked = pk6.RIB4_3;
|
||||
Extra1_4.Checked = pk6.RIB4_4;
|
||||
|
||||
// Introduced in ORAS
|
||||
Extra1_7.Checked = pk6.RIB4_7;
|
||||
|
||||
ORAS_0.Checked = pk6.RIB5_0;
|
||||
ORAS_1.Checked = pk6.RIB5_1;
|
||||
ORAS_2.Checked = pk6.RIB5_2;
|
||||
ORAS_3.Checked = pk6.RIB5_3;
|
||||
ORAS_4.Checked = pk6.RIB5_4;
|
||||
ORAS_5.Checked = pk6.RIB5_5;
|
||||
|
||||
TB_PastContest.Text = pk6.Memory_ContestCount.ToString();
|
||||
TB_PastBattle.Text = pk6.Memory_BattleCount.ToString();
|
||||
|
||||
CB_Bag.SelectedIndex = pk6.TrainingBag;
|
||||
NUD_BagHits.Value = pk6.TrainingBagHits;
|
||||
}
|
||||
private void setData()
|
||||
{
|
||||
pk6.SecretSuperTraining = CHK_Secret.Checked;
|
||||
|
||||
pk6.Unused0 = TMedal1_0.Checked;
|
||||
pk6.Unused1 = TMedal1_1.Checked;
|
||||
pk6.ST1_SPA = TMedal1_2.Checked;
|
||||
pk6.ST1_HP = TMedal1_3.Checked;
|
||||
pk6.ST1_ATK = TMedal1_4.Checked;
|
||||
pk6.ST1_SPD = TMedal1_5.Checked;
|
||||
pk6.ST1_SPE = TMedal1_6.Checked;
|
||||
pk6.ST1_DEF = TMedal1_7.Checked;
|
||||
|
||||
pk6.ST2_SPA = TMedal2_0.Checked;
|
||||
pk6.ST2_HP = TMedal2_1.Checked;
|
||||
pk6.ST2_ATK = TMedal2_2.Checked;
|
||||
pk6.ST2_SPD = TMedal2_3.Checked;
|
||||
pk6.ST2_SPE = TMedal2_4.Checked;
|
||||
pk6.ST2_DEF = TMedal2_5.Checked;
|
||||
pk6.ST3_SPA = TMedal2_6.Checked;
|
||||
pk6.ST3_HP = TMedal2_7.Checked;
|
||||
|
||||
pk6.ST3_ATK = TMedal3_0.Checked;
|
||||
pk6.ST3_SPD = TMedal3_1.Checked;
|
||||
pk6.ST3_SPE = TMedal3_2.Checked;
|
||||
pk6.ST3_DEF = TMedal3_3.Checked;
|
||||
pk6.ST4_1 = TMedal3_4.Checked;
|
||||
pk6.ST5_1 = TMedal3_5.Checked;
|
||||
pk6.ST5_2 = TMedal3_6.Checked;
|
||||
pk6.ST5_3 = TMedal3_7.Checked;
|
||||
|
||||
pk6.ST5_4 = TMedal4_0.Checked;
|
||||
pk6.ST6_1 = TMedal4_1.Checked;
|
||||
pk6.ST6_2 = TMedal4_2.Checked;
|
||||
pk6.ST6_3 = TMedal4_3.Checked;
|
||||
pk6.ST7_1 = TMedal4_4.Checked;
|
||||
pk6.ST7_2 = TMedal4_5.Checked;
|
||||
pk6.ST7_3 = TMedal4_6.Checked;
|
||||
pk6.ST8_1 = TMedal4_7.Checked;
|
||||
|
||||
pk6.Dist1 = CHK_D0.Checked;
|
||||
pk6.Dist2 = CHK_D1.Checked;
|
||||
pk6.Dist3 = CHK_D2.Checked;
|
||||
pk6.Dist4 = CHK_D3.Checked;
|
||||
pk6.Dist5 = CHK_D4.Checked;
|
||||
pk6.Dist6 = CHK_D5.Checked;
|
||||
|
||||
pk6.RIB0_0 = Kalos1a_0.Checked;
|
||||
pk6.RIB0_1 = Kalos1a_1.Checked;
|
||||
pk6.RIB0_2 = Kalos1a_2.Checked;
|
||||
pk6.RIB0_3 = Kalos1a_3.Checked;
|
||||
pk6.RIB0_4 = Kalos1a_4.Checked;
|
||||
pk6.RIB0_5 = Kalos1a_5.Checked;
|
||||
pk6.RIB0_6 = Kalos1a_6.Checked;
|
||||
pk6.RIB0_7 = Kalos1a_7.Checked;
|
||||
|
||||
pk6.RIB1_0 = Kalos1b_0.Checked;
|
||||
pk6.RIB1_1 = Kalos1b_1.Checked;
|
||||
pk6.RIB1_2 = Kalos1b_2.Checked;
|
||||
pk6.RIB1_3 = Kalos1b_3.Checked;
|
||||
pk6.RIB1_4 = Kalos1b_4.Checked;
|
||||
pk6.RIB1_5 = Kalos1b_5.Checked;
|
||||
pk6.RIB1_6 = Kalos1b_6.Checked;
|
||||
pk6.RIB1_7 = Kalos1b_7.Checked;
|
||||
|
||||
pk6.RIB2_0 = Kalos2a_0.Checked;
|
||||
pk6.RIB2_1 = Kalos2a_1.Checked;
|
||||
pk6.RIB2_2 = Kalos2a_2.Checked;
|
||||
pk6.RIB2_3 = Kalos2a_3.Checked;
|
||||
pk6.RIB2_4 = Kalos2a_4.Checked;
|
||||
pk6.RIB2_5 = Kalos2a_5.Checked;
|
||||
pk6.RIB2_6 = Kalos2a_6.Checked;
|
||||
pk6.RIB2_7 = Kalos2a_7.Checked;
|
||||
|
||||
pk6.RIB3_0 = Kalos2b_0.Checked;
|
||||
pk6.RIB3_1 = Kalos2b_1.Checked;
|
||||
pk6.RIB3_2 = Kalos2b_2.Checked;
|
||||
pk6.RIB3_3 = Kalos2b_3.Checked;
|
||||
pk6.RIB3_4 = Kalos2b_4.Checked;
|
||||
pk6.RIB3_5 = Kalos2b_5.Checked;
|
||||
pk6.RIB3_6 = Kalos2b_6.Checked;
|
||||
pk6.RIB3_7 = Kalos2b_7.Checked;
|
||||
|
||||
pk6.RIB4_0 = Extra1_0.Checked;
|
||||
pk6.RIB4_1 = Extra1_1.Checked;
|
||||
pk6.RIB4_2 = Extra1_2.Checked;
|
||||
pk6.RIB4_3 = Extra1_3.Checked;
|
||||
pk6.RIB4_4 = Extra1_4.Checked;
|
||||
|
||||
// Introduced in ORAS
|
||||
pk6.RIB4_7 = Extra1_7.Checked;
|
||||
|
||||
pk6.RIB5_0 = ORAS_0.Checked;
|
||||
pk6.RIB5_1 = ORAS_1.Checked;
|
||||
pk6.RIB5_2 = ORAS_2.Checked;
|
||||
pk6.RIB5_3 = ORAS_3.Checked;
|
||||
pk6.RIB5_4 = ORAS_4.Checked;
|
||||
pk6.RIB5_5 = ORAS_5.Checked;
|
||||
|
||||
pk6.Memory_ContestCount = Util.ToInt32(TB_PastContest.Text);
|
||||
pk6.Memory_BattleCount = Util.ToInt32(TB_PastBattle.Text);
|
||||
|
||||
pk6.TrainingBag = CB_Bag.SelectedIndex;
|
||||
pk6.TrainingBagHits = (int)NUD_BagHits.Value;
|
||||
}
|
||||
private void buttonFlag(bool b)
|
||||
{
|
||||
if (tabControl1.SelectedTab == Tab_Kalos)
|
||||
{
|
||||
// Kalos
|
||||
foreach (var chk in cba.Skip(0).Take(32))
|
||||
chk.Checked = b;
|
||||
}
|
||||
else if (tabControl1.SelectedTab == Tab_Extra)
|
||||
{
|
||||
// Extra
|
||||
foreach (var chk in cba.Skip(32))
|
||||
chk.Checked = b;
|
||||
|
||||
if (Main.pkm.Version >= 0x10) return; // No Memory Ribbons for Pokémon from Generation 4+
|
||||
TB_PastContest.Text = (b ? 40 : 0).ToString();
|
||||
TB_PastBattle.Text = (b ? 8 : 0).ToString();
|
||||
}
|
||||
else if (tabControl1.SelectedTab == Tab_Medals)
|
||||
{
|
||||
// Medals
|
||||
if (CHK_Secret.Checked)
|
||||
{
|
||||
CheckBox[] ck2 = {
|
||||
TMedal3_4,
|
||||
TMedal3_5, TMedal3_6, TMedal3_7, TMedal4_0,
|
||||
TMedal4_1, TMedal4_2, TMedal4_3,
|
||||
TMedal4_4, TMedal4_5, TMedal4_6,
|
||||
TMedal4_7
|
||||
};
|
||||
foreach (var chk in ck2) chk.Checked = b;
|
||||
}
|
||||
CheckBox[] ck = {
|
||||
// TMedal1_0, TMedal1_1,
|
||||
TMedal1_2, TMedal1_3, TMedal1_4, TMedal1_5, TMedal1_6, TMedal1_7,
|
||||
TMedal2_0, TMedal2_1, TMedal2_2, TMedal2_3, TMedal2_4, TMedal2_5,
|
||||
TMedal2_6, TMedal2_7, TMedal3_0, TMedal3_1, TMedal3_2, TMedal3_3,
|
||||
CHK_Secret
|
||||
};
|
||||
foreach (var chk in ck) chk.Checked = b;
|
||||
foreach (CheckBox chk in new[] { CHK_D0, CHK_D1, CHK_D2, CHK_D3, CHK_D4, CHK_D5 }) chk.Checked = b;
|
||||
}
|
||||
}
|
||||
|
||||
private void B_Save_Click(object sender, EventArgs e)
|
||||
{
|
||||
setData();
|
||||
Main.pkm = pk6; // set back
|
||||
Close();
|
||||
}
|
||||
private void B_Cancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
private void B_AllRibbons_Click(object sender, EventArgs e)
|
||||
{
|
||||
buttonFlag(true);
|
||||
}
|
||||
private void B_NoRibbons_Click(object sender, EventArgs e)
|
||||
{
|
||||
buttonFlag(false);
|
||||
}
|
||||
|
||||
private void updateSecretSuper(object sender, EventArgs e)
|
||||
{
|
||||
GB_Medals2.Enabled = CHK_Secret.Checked;
|
||||
if (CHK_Secret.Checked) return;
|
||||
|
||||
CheckBox[] ck = {
|
||||
TMedal3_4, TMedal3_5, TMedal3_6, TMedal3_7,
|
||||
TMedal4_0, TMedal4_1, TMedal4_2, TMedal4_3,
|
||||
TMedal4_4, TMedal4_5, TMedal4_6, TMedal4_7
|
||||
};
|
||||
foreach (var chk in ck) chk.Checked = false;
|
||||
}
|
||||
private void updateUnused(object sender, EventArgs e)
|
||||
{
|
||||
// Futureproofing: If either of the unused bitflags are 1 (true),
|
||||
// we'll display them to alert the user.
|
||||
TMedal1_0.Visible = TMedal1_0.Checked;
|
||||
TMedal1_1.Visible = TMedal1_1.Checked;
|
||||
}
|
||||
private void updateRibbon(object sender, EventArgs e)
|
||||
{
|
||||
int index = Array.IndexOf(cba, sender);
|
||||
pba[index].Image = Util.ChangeOpacity(bma[index], (cba[index].Checked ? 1 : 0) * 0.9 + 0.1);
|
||||
}
|
||||
private void updateMemoryRibbon(object sender, EventArgs e)
|
||||
{
|
||||
if ((sender as MaskedTextBox).Text.Length == 0) { (sender as MaskedTextBox).Text = "0"; return; }
|
||||
if (sender as MaskedTextBox == TB_PastContest)
|
||||
{
|
||||
var val = Util.ToInt32(TB_PastContest.Text);
|
||||
if (val > 40) { TB_PastContest.Text = 40.ToString(); return; }
|
||||
PastContest.Image = Util.ChangeOpacity(val < 40 ? Properties.Resources.contestmemory : Properties.Resources.contestmemory2,
|
||||
(val != 0 ? 1 : 0) * 0.9 + 0.1);
|
||||
}
|
||||
else
|
||||
{
|
||||
var val = Util.ToInt32(TB_PastBattle.Text);
|
||||
if (val > 8) { TB_PastBattle.Text = 8.ToString(); return; }
|
||||
PastBattle.Image = Util.ChangeOpacity(Util.ToUInt32(TB_PastBattle.Text) < 40 ? Properties.Resources.battlememory : Properties.Resources.battlememory2,
|
||||
(val != 0 ? 1 : 0) * 0.9 + 0.1);
|
||||
}
|
||||
}
|
||||
private void clickRibbon(object sender, EventArgs e)
|
||||
{
|
||||
cba[Array.IndexOf(pba, sender)].Checked ^= true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,612 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="BTN_All.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_D5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_D4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Distro.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_D3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_D0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_D1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_D2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="CHK_Secret.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Medals1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_SuperTraining.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal2_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Medals2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="label11.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank8.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="L_Rank4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal4_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal3_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="TMedal1_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Extra2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Extra1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_54.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_50.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_53.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_52.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_51.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Extra1_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Extra1_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Extra1_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Extra1_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Extra1_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_47.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_46.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_45.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_44.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_43.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_42.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_41.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_40.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_37.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_36.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_35.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_34.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_33.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_32.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_31.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_30.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2b_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos2a_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="GB_Kalos12.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_27.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_26.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_25.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_24.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_23.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_22.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_21.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_20.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_17.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_16.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_15.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_14.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_13.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_12.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_11.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="PB_10.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1b_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_7.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_6.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_5.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_4.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_3.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_2.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="Kalos1a_0.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="tabControl1.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="$this.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAABAAIAEBAAAAEAIABoBAAAJgAAACAgAAABACAAqBAAAI4EAAAoAAAAEAAAACAAAAABACAAAAAAAAAE
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAIyMjAQAAAAALCwsPJiYmJysrKycqKionKSkpJykpKScpKSknKioqJyoq
|
||||
KicrKysnJycnJw0ODQ8AAAAAJiYmAQAAAABpaWlHq6ur17+/v+6+vr7svr6+7b6+vu2+vr7tvr6+7b6+
|
||||
vu2+vr7tvr6+7L+/v+6rq6vXampqSAAAAAAoKSgXvr++3eLi4v/g4OD94eHh/+Hh4f/i4uL/4uLi/+Li
|
||||
4v/i4uL/4eHh/+Dh4P/g4OD94uLi/7+/v90sLCwXfn5+PNna2frg4OD/39/f/uHh4f7h4eH+39/f/uDg
|
||||
4P7g4OD+39/f/uHh4f7h4OH+39/f/t/g3//a2tr6g4ODPoOCgz7X19f64+Pj/+Li4v7k5OT/4+Tj//Ly
|
||||
8v/19fX/9PT0//T09P/k5OT/5OTk/+Pj4/7j4+P/19jX+4qLikCDhIM+2tra++Xl5f/k5eT+5OTk//Lz
|
||||
8v+urq7/RUVF/z4+Pv+Zmpn/8fHx/+Xm5f/k5eT+5eXl/9ra2vyLi4tAhYWFPuXm5vvx8vP/7+/w/v//
|
||||
//+sra3/AgIC/15eXv9tbG3/BQUF/4yMjP//////7+/w/vHy8//l5ub8jY2NQC4uLD5LS0f7UFBL/09P
|
||||
Sv5YWVP/FBUS/29wcP///////////5SUlP8PDw//U1NO/1BQS/5PT0r/S0tH/DIyMEAAAAs+AAAM+wAA
|
||||
Dv8AAA/+AwMS/wAAAP+UlJX///////////+3t7n/AAAA/wAAD/8BAQ/+AAAO/wAADPwCAg5ABARSPgoK
|
||||
k/sNDab/DQ2o/hAQvP8CAmj/IiIW/7Kzrv/Cw8D/NDQm/wAATf8QELz/DQ2q/gwMp/8LC5T8Dg5bQAUF
|
||||
Xj4KCpz7DQ2u/w0NsP4NDbX/Dw+//wUFYf8CAhL/AwMP/wMDTf8ODrj/Dg64/w0NsP4MDK7/Cwud/A8P
|
||||
aEEGBmU9DAyl+w4Otf8ODrf+Dw+6/xAQvv8TE8v/EhK+/xAQvP8TE8v/EBDA/w8Puf8PD7f+Dg61/w0N
|
||||
pvsREW9ACAhtQA8PsfsTE77/ExO//xQUwP8UFML/FBTD/xUVyP8WFsn/FRXE/xQUw/8UFMH/ExO//xMT
|
||||
vv8QELL7ERF3QxkZdCgXF771ExPH/xUVyPwVFcn9FhbL/RcXzP0XF8z9FxfM/RcXy/0XF8v9FhbJ/RUV
|
||||
yPwTE8f/Fxe+9RkZdykAAAAAIyOtghsbx/8ZGcj+GRnJ/xoayf8aGsn/GhrK/xoayv8aGsn/GhrJ/xkZ
|
||||
yf8ZGcj+GxvH/yMjrYQAAAAAAADHAQAAAAAzM51FLCyscCoqrGwqKqxtKSmsbSoqrG0qKqxtKSmsbSoq
|
||||
rG0qKqxsLCyscDMznUUAAAAAAAAAAP//AADAAwAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIAB
|
||||
AACAAQAAgAEAAIABAACAAQAAgAEAAP//AAAoAAAAIAAAAEAAAAABACAAAAAAAAAQAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKysrCR0dHSMWFhY3GBgYORgYGDkYGBg5GBgYORgY
|
||||
GDkYGBg5GBgYORgYGDkYGBg5GBgYORgYGDkYGBg5GBgYORgYGDkYGBg5GBgYORgYGDkYGBg5FxcXNx4e
|
||||
HiQuLi4JAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASEhIARYWFis7OzuVkJCQ2ampqeqqqqrsqqqq7Kqq
|
||||
quyqqqrsqqqq7Kqqquyqqqrsqqqq7Kqqquyqqqrsqqqq7Kqqquyqqqrsqqqq7Kqqquyqqqrsqqqq7Kqq
|
||||
quypqanqkZGR2j09PZcXFxcsUFBQAQAAAAAAAAAAAAAAAAAAAAASEhIuhISEytvb2/7W1tb/19fX/9jY
|
||||
2P/Y2Nj/2NjY/9jY2P/Y2Nj/2NjY/9nZ2f/Z2dn/2dnZ/9nZ2f/Z2dn/2dnZ/9nZ2f/Y2Nj/2NjY/9jY
|
||||
2P/Y2Nj/2NjY/9fX1//W1tb/29vb/oeHh8sTExMvAAAAAAAAAAAAAAAAPDw8DGtra6zZ2dn/2dnZ/9ra
|
||||
2v/b29v/29vb/9vb2//c3Nz/3Nzc/9zc3P/c3Nz/3d3d/93d3f/d3d3/3d3d/93d3f/d3d3/3Nzc/9zc
|
||||
3P/c3Nz/3Nzc/9vb2//b29v/29vb/9ra2v/Z2dn/2dnZ/21tba5DQ0MNAAAAAAAAAAAiIiIx1NXU9tna
|
||||
2f/c3Nz/3d3d/93e3f/e3t7/3t7e/9/f3//f39//39/f/9/g3//g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg
|
||||
4P/g4OD/39/f/9/f3//f39//3t/e/97e3v/d3t3/3d3d/9zc3P/Z2tn/1dXV9icnJzMAAAAAAAAAAFhZ
|
||||
WFzf4N//3Nzc/97e3v/f39//39/f/9/g3//g4OD/4ODg/+Hh4f/h4eH/4eHh/+Li4v/i4uL/4uLi/+Li
|
||||
4v/i4uL/4uLi/+Hi4f/h4eH/4eHh/+Dg4P/g4OD/3+Df/9/f3//f39//3t7e/9zc3P/f39//XV1dXQAA
|
||||
AAAAAAAAZmZmZdvc2//e3t7/3+Df/+Dg4P/g4eD/4eHh/+Hi4f/i4uL/4uPi/+Pj4//j4+P/5OTk/+Tk
|
||||
5P/k5OT/5OTk/+Tk5P/k5OT/4+Pj/+Pj4//j4+P/4uLi/+Li4v/h4eH/4eHh/+Dg4P/f4N//3t7e/9vb
|
||||
2/9wcHBoAAAAAAAAAABoaGhl3d3d/9/f3//h4eH/4eLh/+Li4v/j4+P/4+Pj/+Tk5P/k5OT/5eXl/+Xl
|
||||
5f/l5uX/5ubm/+bm5v/m5ub/5ubm/+bm5v/l5eX/5eXl/+Tk5P/k5OT/4+Pj/+Pj4//i4uL/4uLi/+Hh
|
||||
4f/f39//3N3c/3Nzc2kAAAAAAAAAAGhoaGXe3t7/4ODg/+Li4v/j4+P/4+Pj/+Tk5P/l5eX/5eXl/+bm
|
||||
5v/m5+b/5+fn/+fn5//n6Of/6Ojo/+jo6P/o6Oj/5+fn/+fn5//n5+f/5ubm/+Xl5f/l5eX/5OTk/+Pk
|
||||
4//j4+P/4uLi/+Dg4P/e3t7/c3NzaQAAAAAAAAAAaGhoZd/g3//i4uL/5OTk/+Tl5P/l5eX/5ebl/+bn
|
||||
5v/n5+f/5+jn/+jp6P/p6en/7Ozs/8LCwv+Tk5P/ioqK/66urv/o6ej/6enp/+jp6P/o6Oj/5+jn/+bn
|
||||
5v/m5ub/5ebl/+Tl5P/k5OT/4uLi/9/g3/9zdHNpAAAAAAAAAABoaWhl4eLh/+Pk4//m5ub/5ubm/+fn
|
||||
5//n6Of/6Ojo/+np6f/p6un/6urq/8bGxv8yMjL/AAAA/wAAAP8AAAD/AAAA/xMTE/+ZmZn/7Ozs/+rq
|
||||
6v/p6en/6Ojo/+jo6P/n5+f/5ubm/+bm5v/k5OT/4eHh/3R0dGkAAAAAAAAAAGhpaGXj4+P/5eXl/+fn
|
||||
5//n6Of/6Ojo/+np6f/q6ur/6urq/+vr6//Dw8P/DAwM/wAAAP8AAAD/Gxsb/ygoKP8BAQH/AAAA/wAA
|
||||
AP+FhYX/7O3s/+rr6v/q6ur/6enp/+jo6P/o6Oj/5+fn/+Xl5f/i4+L/dHR0aQAAAAAAAAAAYWFhZeTl
|
||||
5P/m5+b/6Ono/+np6f/p6un/6uvq/+vr6//s7Oz/7e7t/ycnJ/8AAAD/Ghoa/7S0tP/m5ub/5OTk/9HR
|
||||
0f9GRkb/AAAA/wICAv/IyMj/7Ozs/+vs6//q6+r/6urq/+nq6f/o6ej/5+fn/+Tk5P9sbGxpAAAAAAAA
|
||||
AAA9Pj1lj4+P/5OTk/+VlZX/lpaW/5eXl/+YmJj/mZmZ/5qamv92dnb/AAAA/wEBAf+/wL//3Nzc/+Tk
|
||||
5P/l5eX/3d3d/+Li4v8mJib/AAAA/0ZGRv+ampr/mZmZ/5iYmP+Xl5f/lpaW/5WVlf+Tk5P/j4+P/0ZG
|
||||
RmoAAAAAAAAAAAwMDGUAAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/Nzc3/+fn
|
||||
5//q6ur/7O3s/+zt7P/v7+//39/f/4WFhf8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
|
||||
AP8AAAD/EBAQagAAAAAAAAAAAwMHZQAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
|
||||
AP9NTU3/5ufm//Lz8v/z9PP/8/Tz//X19f/l5eX/nZ2d/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
|
||||
AP8AAAD/AAAA/wAAAP8GBgpqAAAAAAAAAAAAABZlAQEk/wEBJ/8CAin/AgIq/wICKv8CAiv/AgIs/wIC
|
||||
LP8BAR3/AAAA/xwcHP/w8PD/6+zr//r6+v/6+vr/9PT0/+vr6/9lZWX/AAAA/wAAD/8CAi3/AgIs/wIC
|
||||
K/8CAir/AgIq/wICKf8BASf/AQEl/wUFG2oAAAAAAAAAAAICQGUGBpL/Bwec/wgIo/8JCaf/CQmq/wkJ
|
||||
rf8JCa//Cgqz/wkJqP8AAAL/AAAA/4CAgP/y8/L/6+zr/+3t7f/u7u7/xMTE/wcHB/8AAAD/BgZz/woK
|
||||
s/8JCbD/CQmt/wkJqv8JCaj/CAik/wcHnf8HB5P/Dg5MagAAAAAAAAAAAwNHZQgIk/8JCZ3/Cgqj/wsL
|
||||
p/8LC6n/Cwus/wsLr/8MDLL/DAy2/wYGW/8AAAD/AAAA/1JSUv+sraz/tra2/3h4eP8KCgr/AAAA/wIC
|
||||
Iv8MDLb/DAyy/wsLsP8LC63/Cwuq/wsLp/8KCqT/CQmd/wgIk/8PD1VrAAAAAAAAAAAEBE1lCQmY/woK
|
||||
ov8LC6j/DAyr/wwMrf8MDLD/DAyy/w0Ntf8NDbf/Dg67/wUFSv8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA
|
||||
AP8CAiH/DQ2q/w0NuP8NDbX/DQ2z/wwMsP8MDK7/DAyr/wsLqP8KCqL/CQmZ/xAQWmsAAAAAAAAAAAQE
|
||||
UGUKCp7/Cwum/wwMrP8NDa//DQ2w/w0Ns/8ODrX/Dg63/w4Ouf8ODrv/Dw/A/wwMiv8FBTj/AAAG/wAA
|
||||
AP8DAyb/CQls/w8Pu/8PD7z/Dg66/w4OuP8ODrX/DQ2z/w0Nsf8NDa//DAys/wsLp/8KCp7/ERFeawAA
|
||||
AAAAAAAABQVTZQsLpP8MDKv/DQ2w/w4Os/8ODrT/Dg62/w8PuP8PD7r/Dw+8/w8Pvf8QEL//EBDA/xER
|
||||
w/8SEsn/ERHJ/xERxf8QEMD/EBC//w8Pvv8PD7z/Dw+6/w8PuP8ODrf/Dg61/w4Os/8NDbH/DAyr/wsL
|
||||
pP8SEmFrAAAAAAAAAAAGBlZlDAyq/w4OsP8PD7X/Dw+3/w8PuP8QELr/EBC7/xAQvf8REb7/ERHA/xER
|
||||
wf8REcL/EhLC/xISw/8SEsP/EhLC/xERwv8REcH/ERHA/xERvv8QEL3/EBC7/xAQuv8QELj/Dw+3/w8P
|
||||
tf8ODrD/DAyq/xMTZWsAAAAAAAAAAAcHWmUODrD/EBC2/xERuv8REbz/ERG9/xISvv8SEr//EhLA/xMT
|
||||
wf8TE8P/ExPD/xMTxP8TE8X/FBTF/xQUxf8UFMX/ExPE/xMTxP8TE8P/ExPC/xISwf8SEr//EhK+/xER
|
||||
vf8REbz/ERG6/xAQtv8ODrD/FBRpawAAAAAAAAAACAhcYxAQtf8SErv/ExO+/xQUwP8UFMD/FBTB/xUV
|
||||
wv8VFcP/FRXE/xUVxf8WFsb/FhbG/xYWx/8WFsf/FhbH/xYWx/8WFsf/FhbG/xYWxf8VFcT/FRXD/xUV
|
||||
wv8UFMH/FBTB/xQUwP8TE77/EhK7/xAQtf8TE2hoAAAAAAAAAAAQEFNUFRXC/xMTv/8UFMP/FRXE/xUV
|
||||
xP8VFcX/FRXG/xYWx/8WFsf/FhbI/xYWyf8XF8n/FxfK/xcXyv8XF8r/FxfK/xcXyf8XF8n/FhbI/xYW
|
||||
yP8WFsf/FhbG/xUVxf8VFcT/FRXE/xQUw/8TE7//FRXB/xAQV1UAAAAAAAAAAA0NPxkjI8byFBTD/xUV
|
||||
x/8WFsj/FxfJ/xcXyf8XF8r/FxfK/xcXy/8YGMz/GBjM/xgYzP8YGM3/GBjN/xgYzf8YGM3/GBjM/xgY
|
||||
zP8YGMz/GBjL/xcXy/8XF8r/FxfJ/xcXyf8WFsj/FRXH/xQUw/8jI8f0Dg5GGwAAAAAAAAAAFhZxAiUl
|
||||
eIUZGcr/FBTI/xUVyv8WFsv/FhbM/xYWzP8WFsz/FhbN/xcXzf8XF83/FxfN/xcXzv8XF87/FxfO/xcX
|
||||
zv8XF87/FxfN/xcXzf8WFs3/FhbM/xYWzP8WFsz/FhbL/xUVyv8UFMj/GBjJ/yYmeogWFnYCAAAAAAAA
|
||||
AAAAAAAAGBh1BzMzk50kJNP+FxfK/xgYzP8YGMz/GBjN/xgYzf8YGM3/GBjN/xgYzf8ZGc7/GRnO/xkZ
|
||||
zv8ZGc7/GRnO/xkZzv8YGM3/GBjN/xgYzf8YGM3/GBjN/xgYzP8YGMz/FxfK/yMj0v4zM5WfFBRkBwAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAHBx7Ay0tdkg3N5emMTGpxSwsp8gsLKfILCynyCwsp8gsLKfILCynyCws
|
||||
p8gsLKfILCynyCwsp8gsLKfILCynyCwsp8gsLKfILCynyCwsp8gsLKfILCynyDExqcU2NpenLi54Shsb
|
||||
ewMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP//////////8AAAD+AAAAfAAAADwAAAA8AAAAPAAAADwAAAA8AA
|
||||
AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA
|
||||
AAPAAAADwAAAA8AAAAPAAAAD4AAAB/gAAB//////
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
||||
91
PersonalInfo/PersonalInfo.cs
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
namespace PKHeX
|
||||
{
|
||||
public abstract class PersonalInfo
|
||||
{
|
||||
protected byte[] Data;
|
||||
public abstract byte[] Write();
|
||||
public abstract int HP { get; set; }
|
||||
public abstract int ATK { get; set; }
|
||||
public abstract int DEF { get; set; }
|
||||
public abstract int SPE { get; set; }
|
||||
public abstract int SPA { get; set; }
|
||||
public abstract int SPD { get; set; }
|
||||
public abstract int EV_HP { get; set; }
|
||||
public abstract int EV_ATK { get; set; }
|
||||
public abstract int EV_DEF { get; set; }
|
||||
public abstract int EV_SPE { get; set; }
|
||||
public abstract int EV_SPA { get; set; }
|
||||
public abstract int EV_SPD { get; set; }
|
||||
|
||||
public abstract int[] Types { get; set; }
|
||||
public abstract int CatchRate { get; set; }
|
||||
public virtual int EvoStage { get; set; }
|
||||
public abstract int[] Items { get; set; }
|
||||
public abstract int Gender { get; set; }
|
||||
public abstract int HatchCycles { get; set; }
|
||||
public abstract int BaseFriendship { get; set; }
|
||||
public abstract int EXPGrowth { get; set; }
|
||||
public abstract int[] EggGroups { get; set; }
|
||||
public abstract int [] Abilities { get; set; }
|
||||
public abstract int EscapeRate { get; set; }
|
||||
public virtual int FormeCount { get; set; }
|
||||
protected virtual int FormStatsIndex { get; set; }
|
||||
public virtual int FormeSprite { get; set; }
|
||||
public abstract int BaseEXP { get; set; }
|
||||
public abstract int Color { get; set; }
|
||||
|
||||
public virtual int Height { get; set; } = 0;
|
||||
public virtual int Weight { get; set; } = 0;
|
||||
|
||||
public bool[] TMHM { get; set; }
|
||||
public bool[] TypeTutors { get; set; }
|
||||
public bool[][] SpecialTutors { get; set; } = new bool[0][];
|
||||
|
||||
protected static bool[] getBits(byte[] data)
|
||||
{
|
||||
bool[] r = new bool[8 * data.Length];
|
||||
for (int i = 0; i < r.Length; i++)
|
||||
r[i] = (data[i/8] >> (i&7) & 0x1) == 1;
|
||||
return r;
|
||||
}
|
||||
protected static byte[] setBits(bool[] bits)
|
||||
{
|
||||
byte[] data = new byte[bits.Length/8];
|
||||
for (int i = 0; i < bits.Length; i++)
|
||||
data[i / 8] |= (byte)(bits[i] ? 1 << (i&0x7) : 0);
|
||||
return data;
|
||||
}
|
||||
|
||||
// Data Manipulation
|
||||
public int FormeIndex(int species, int forme)
|
||||
{
|
||||
if (forme <= 0) // no forme requested
|
||||
return species;
|
||||
if (FormStatsIndex <= 0) // no formes present
|
||||
return species;
|
||||
if (forme > FormeCount) // beyond range of species' formes
|
||||
return species;
|
||||
|
||||
return FormStatsIndex + forme - 1;
|
||||
}
|
||||
public int RandomGender
|
||||
{
|
||||
get
|
||||
{
|
||||
switch (Gender)
|
||||
{
|
||||
case 255: // Genderless
|
||||
return 2;
|
||||
case 254: // Female
|
||||
return 1;
|
||||
case 0: // Male
|
||||
return 0;
|
||||
default:
|
||||
return (int)(Util.rnd32() % 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
public bool HasFormes => FormeCount > 1;
|
||||
public int BST => HP + ATK + DEF + SPE + SPA + SPD;
|
||||
}
|
||||
}
|
||||
37
PersonalInfo/PersonalInfoB2W2.cs
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
using System.Linq;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PersonalInfoB2W2 : PersonalInfoBW
|
||||
{
|
||||
public new const int SIZE = 0x4C;
|
||||
public PersonalInfoB2W2(byte[] data)
|
||||
{
|
||||
if (data.Length != SIZE)
|
||||
return;
|
||||
Data = data;
|
||||
|
||||
// Unpack TMHM & Tutors
|
||||
TMHM = getBits(Data.Skip(0x28).Take(0x10).ToArray());
|
||||
TypeTutors = getBits(Data.Skip(0x38).Take(0x4).ToArray());
|
||||
SpecialTutors = new[]
|
||||
{
|
||||
getBits(Data.Skip(0x3C).Take(0x04).ToArray()),
|
||||
getBits(Data.Skip(0x40).Take(0x04).ToArray()),
|
||||
getBits(Data.Skip(0x44).Take(0x04).ToArray()),
|
||||
getBits(Data.Skip(0x48).Take(0x04).ToArray()),
|
||||
};
|
||||
}
|
||||
|
||||
public override byte[] Write()
|
||||
{
|
||||
setBits(TMHM).CopyTo(Data, 0x28);
|
||||
setBits(TypeTutors).CopyTo(Data, 0x38);
|
||||
setBits(SpecialTutors[0]).CopyTo(Data, 0x3C);
|
||||
setBits(SpecialTutors[1]).CopyTo(Data, 0x40);
|
||||
setBits(SpecialTutors[2]).CopyTo(Data, 0x44);
|
||||
setBits(SpecialTutors[3]).CopyTo(Data, 0x48);
|
||||
return Data;
|
||||
}
|
||||
}
|
||||
}
|
||||
97
PersonalInfo/PersonalInfoBW.cs
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PersonalInfoBW : PersonalInfo
|
||||
{
|
||||
protected PersonalInfoBW() { }
|
||||
public const int SIZE = 0x3C;
|
||||
public PersonalInfoBW(byte[] data)
|
||||
{
|
||||
if (data.Length != SIZE)
|
||||
return;
|
||||
Data = data;
|
||||
|
||||
// Unpack TMHM & Tutors
|
||||
TMHM = getBits(Data.Skip(0x28).Take(0x10).ToArray());
|
||||
TypeTutors = getBits(Data.Skip(0x38).Take(0x4).ToArray());
|
||||
}
|
||||
public override byte[] Write()
|
||||
{
|
||||
setBits(TMHM).CopyTo(Data, 0x28);
|
||||
setBits(TypeTutors).CopyTo(Data, 0x38);
|
||||
return Data;
|
||||
}
|
||||
|
||||
public override int HP { get { return Data[0x00]; } set { Data[0x00] = (byte)value; } }
|
||||
public override int ATK { get { return Data[0x01]; } set { Data[0x01] = (byte)value; } }
|
||||
public override int DEF { get { return Data[0x02]; } set { Data[0x02] = (byte)value; } }
|
||||
public override int SPE { get { return Data[0x03]; } set { Data[0x03] = (byte)value; } }
|
||||
public override int SPA { get { return Data[0x04]; } set { Data[0x04] = (byte)value; } }
|
||||
public override int SPD { get { return Data[0x05]; } set { Data[0x05] = (byte)value; } }
|
||||
public override int[] Types
|
||||
{
|
||||
get { return new int[] { Data[0x06], Data[0x07] }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 2) return;
|
||||
Data[0x06] = (byte)value[0];
|
||||
Data[0x07] = (byte)value[1];
|
||||
}
|
||||
}
|
||||
public override int CatchRate { get { return Data[0x08]; } set { Data[0x08] = (byte)value; } }
|
||||
public override int EvoStage { get { return Data[0x09]; } set { Data[0x09] = (byte)value; } }
|
||||
private int EVYield { get { return BitConverter.ToUInt16(Data, 0x0A); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x0A); } }
|
||||
public override int EV_HP { get { return EVYield >> 0 & 0x3; } set { EVYield = (EVYield & (0x3 << 0)) | (value & 0x3); } }
|
||||
public override int EV_ATK { get { return EVYield >> 2 & 0x3; } set { EVYield = (EVYield & (0x3 << 2)) | (value & 0x3); } }
|
||||
public override int EV_DEF { get { return EVYield >> 4 & 0x3; } set { EVYield = (EVYield & (0x3 << 4)) | (value & 0x3); } }
|
||||
public override int EV_SPE { get { return EVYield >> 6 & 0x3; } set { EVYield = (EVYield & (0x3 << 6)) | (value & 0x3); } }
|
||||
public override int EV_SPA { get { return EVYield >> 8 & 0x3; } set { EVYield = (EVYield & (0x3 << 8)) | (value & 0x3); } }
|
||||
public override int EV_SPD { get { return EVYield >> 16 & 0x3; } set { EVYield = (EVYield & (0x3 << 10)) | (value & 0x3); } }
|
||||
public override int[] Items
|
||||
{
|
||||
get { return new int[] { BitConverter.ToInt16(Data, 0xC), BitConverter.ToInt16(Data, 0xE), BitConverter.ToInt16(Data, 0x10) }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 3) return;
|
||||
BitConverter.GetBytes((short)value[0]).CopyTo(Data, 0xC);
|
||||
BitConverter.GetBytes((short)value[0]).CopyTo(Data, 0xE);
|
||||
BitConverter.GetBytes((short)value[0]).CopyTo(Data, 0x10);
|
||||
}
|
||||
}
|
||||
public override int Gender { get { return Data[0x12]; } set { Data[0x12] = (byte)value; } }
|
||||
public override int HatchCycles { get { return Data[0x13]; } set { Data[0x13] = (byte)value; } }
|
||||
public override int BaseFriendship { get { return Data[0x14]; } set { Data[0x14] = (byte)value; } }
|
||||
public override int EXPGrowth { get { return Data[0x15]; } set { Data[0x15] = (byte)value; } }
|
||||
public override int[] EggGroups
|
||||
{
|
||||
get { return new int[] { Data[0x16], Data[0x17] }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 2) return;
|
||||
Data[0x16] = (byte)value[0];
|
||||
Data[0x17] = (byte)value[1];
|
||||
}
|
||||
}
|
||||
public override int[] Abilities
|
||||
{
|
||||
get { return new int[] { Data[0x18], Data[0x19], Data[0x1A] }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 2) return;
|
||||
Data[0x18] = (byte)value[0];
|
||||
Data[0x19] = (byte)value[1];
|
||||
Data[0x1A] = (byte)value[2];
|
||||
}
|
||||
}
|
||||
public override int EscapeRate { get { return Data[0x1B]; } set { Data[0x1B] = (byte)value; } }
|
||||
protected override int FormStatsIndex { get { return BitConverter.ToUInt16(Data, 0x1C); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x1C); } }
|
||||
public override int FormeSprite { get { return BitConverter.ToUInt16(Data, 0x1E); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x1E); } }
|
||||
public override int FormeCount { get { return Data[0x20]; } set { Data[0x20] = (byte)value; } }
|
||||
public override int Color { get { return Data[0x21]; } set { Data[0x21] = (byte)value; } }
|
||||
public override int BaseEXP { get { return BitConverter.ToUInt16(Data, 0x22); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x22); } }
|
||||
public override int Height { get { return BitConverter.ToUInt16(Data, 0x24); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x24); } }
|
||||
public override int Weight { get { return BitConverter.ToUInt16(Data, 0x26); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x26); } }
|
||||
}
|
||||
}
|
||||
84
PersonalInfo/PersonalInfoG3.cs
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
using System;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PersonalInfoG3 : PersonalInfo
|
||||
{
|
||||
protected PersonalInfoG3() { }
|
||||
public const int SIZE = 0x1C;
|
||||
public PersonalInfoG3(byte[] data)
|
||||
{
|
||||
if (data.Length != SIZE)
|
||||
return;
|
||||
|
||||
Data = data;
|
||||
}
|
||||
public override byte[] Write()
|
||||
{
|
||||
return Data;
|
||||
}
|
||||
|
||||
public override int HP { get { return Data[0x00]; } set { Data[0x00] = (byte)value; } }
|
||||
public override int ATK { get { return Data[0x01]; } set { Data[0x01] = (byte)value; } }
|
||||
public override int DEF { get { return Data[0x02]; } set { Data[0x02] = (byte)value; } }
|
||||
public override int SPE { get { return Data[0x03]; } set { Data[0x03] = (byte)value; } }
|
||||
public override int SPA { get { return Data[0x04]; } set { Data[0x04] = (byte)value; } }
|
||||
public override int SPD { get { return Data[0x05]; } set { Data[0x05] = (byte)value; } }
|
||||
public override int[] Types
|
||||
{
|
||||
get { return new int[] { Data[0x06], Data[0x07] }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 2) return;
|
||||
Data[0x06] = (byte)value[0];
|
||||
Data[0x07] = (byte)value[1];
|
||||
}
|
||||
}
|
||||
public override int CatchRate { get { return Data[0x08]; } set { Data[0x08] = (byte)value; } }
|
||||
public override int BaseEXP { get { return Data[0x09]; } set { Data[0x09] = (byte)value; } }
|
||||
private int EVYield { get { return BitConverter.ToUInt16(Data, 0x0A); } set { BitConverter.GetBytes((ushort)value).CopyTo(Data, 0x0A); } }
|
||||
public override int EV_HP { get { return EVYield >> 0 & 0x3; } set { EVYield = (EVYield & (0x3 << 0)) | (value & 0x3); } }
|
||||
public override int EV_ATK { get { return EVYield >> 2 & 0x3; } set { EVYield = (EVYield & (0x3 << 2)) | (value & 0x3); } }
|
||||
public override int EV_DEF { get { return EVYield >> 4 & 0x3; } set { EVYield = (EVYield & (0x3 << 4)) | (value & 0x3); } }
|
||||
public override int EV_SPE { get { return EVYield >> 6 & 0x3; } set { EVYield = (EVYield & (0x3 << 6)) | (value & 0x3); } }
|
||||
public override int EV_SPA { get { return EVYield >> 8 & 0x3; } set { EVYield = (EVYield & (0x3 << 8)) | (value & 0x3); } }
|
||||
public override int EV_SPD { get { return EVYield >> 16 & 0x3; } set { EVYield = (EVYield & (0x3 << 10)) | (value & 0x3); } }
|
||||
|
||||
public override int[] Items
|
||||
{
|
||||
get { return new int[] { BitConverter.ToInt16(Data, 0xC), BitConverter.ToInt16(Data, 0xE) }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 2) return;
|
||||
BitConverter.GetBytes((short)value[0]).CopyTo(Data, 0xC);
|
||||
BitConverter.GetBytes((short)value[0]).CopyTo(Data, 0xE);
|
||||
}
|
||||
}
|
||||
public override int Gender { get { return Data[0x10]; } set { Data[0x10] = (byte)value; } }
|
||||
public override int HatchCycles { get { return Data[0x11]; } set { Data[0x11] = (byte)value; } }
|
||||
public override int BaseFriendship { get { return Data[0x12]; } set { Data[0x12] = (byte)value; } }
|
||||
public override int EXPGrowth { get { return Data[0x13]; } set { Data[0x13] = (byte)value; } }
|
||||
public override int[] EggGroups
|
||||
{
|
||||
get { return new int[] { Data[0x14], Data[0x15] }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 2) return;
|
||||
Data[0x14] = (byte)value[0];
|
||||
Data[0x15] = (byte)value[1];
|
||||
}
|
||||
}
|
||||
public override int[] Abilities
|
||||
{
|
||||
get { return new int[] { Data[0x16], Data[0x17] }; }
|
||||
set
|
||||
{
|
||||
if (value?.Length != 2) return;
|
||||
Data[0x16] = (byte)value[0];
|
||||
Data[0x17] = (byte)value[1];
|
||||
}
|
||||
}
|
||||
public override int EscapeRate { get { return Data[0x18]; } set { Data[0x18] = (byte)value; } }
|
||||
public override int Color { get { return Data[0x19]; } set { Data[0x19] = (byte)value; } }
|
||||
}
|
||||
}
|
||||
30
PersonalInfo/PersonalInfoG4.cs
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PersonalInfoG4 : PersonalInfoG3
|
||||
{
|
||||
public new const int SIZE = 0x2C;
|
||||
public PersonalInfoG4(byte[] data)
|
||||
{
|
||||
if (data.Length != SIZE)
|
||||
return;
|
||||
Data = data;
|
||||
|
||||
// Unpack TMHM & Tutors
|
||||
TMHM = getBits(Data.Skip(0x1C).Take(0x0D).ToArray());
|
||||
TypeTutors = new bool[0]; // not stored in personal
|
||||
}
|
||||
public override byte[] Write()
|
||||
{
|
||||
setBits(TMHM).CopyTo(Data, 0x28);
|
||||
// setBits(TypeTutors).CopyTo(Data, 0x38);
|
||||
return Data;
|
||||
}
|
||||
|
||||
// Manually added attributes
|
||||
public override int FormeCount { get { return Data[0x29]; } set {} }
|
||||
protected override int FormStatsIndex { get { return BitConverter.ToUInt16(Data, 0x2A); } set {} }
|
||||
}
|
||||
}
|
||||
37
PersonalInfo/PersonalInfoORAS.cs
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
using System.Linq;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PersonalInfoORAS : PersonalInfoXY
|
||||
{
|
||||
public new const int SIZE = 0x50;
|
||||
public PersonalInfoORAS(byte[] data)
|
||||
{
|
||||
if (data.Length != SIZE)
|
||||
return;
|
||||
Data = data;
|
||||
|
||||
// Unpack TMHM & Tutors
|
||||
TMHM = getBits(Data.Skip(0x28).Take(0x10).ToArray());
|
||||
TypeTutors = getBits(Data.Skip(0x38).Take(0x4).ToArray());
|
||||
// 0x3C-0x40 unknown
|
||||
SpecialTutors = new[]
|
||||
{
|
||||
getBits(Data.Skip(0x40).Take(0x04).ToArray()),
|
||||
getBits(Data.Skip(0x44).Take(0x04).ToArray()),
|
||||
getBits(Data.Skip(0x48).Take(0x04).ToArray()),
|
||||
getBits(Data.Skip(0x4C).Take(0x04).ToArray()),
|
||||
};
|
||||
}
|
||||
public override byte[] Write()
|
||||
{
|
||||
setBits(TMHM).CopyTo(Data, 0x28);
|
||||
setBits(TypeTutors).CopyTo(Data, 0x38);
|
||||
setBits(SpecialTutors[0]).CopyTo(Data, 0x40);
|
||||
setBits(SpecialTutors[1]).CopyTo(Data, 0x44);
|
||||
setBits(SpecialTutors[2]).CopyTo(Data, 0x48);
|
||||
setBits(SpecialTutors[3]).CopyTo(Data, 0x4C);
|
||||
return Data;
|
||||
}
|
||||
}
|
||||
}
|
||||
27
PersonalInfo/PersonalInfoXY.cs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
using System.Linq;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PersonalInfoXY : PersonalInfoBW
|
||||
{
|
||||
protected PersonalInfoXY() { } // For ORAS
|
||||
public new const int SIZE = 0x40;
|
||||
public PersonalInfoXY(byte[] data)
|
||||
{
|
||||
if (data.Length != SIZE)
|
||||
return;
|
||||
Data = data;
|
||||
|
||||
// Unpack TMHM & Tutors
|
||||
TMHM = getBits(Data.Skip(0x28).Take(0x10).ToArray());
|
||||
TypeTutors = getBits(Data.Skip(0x38).Take(0x4).ToArray());
|
||||
// 0x3C-0x40 unknown
|
||||
}
|
||||
public override byte[] Write()
|
||||
{
|
||||
setBits(TMHM).CopyTo(Data, 0x28);
|
||||
setBits(TypeTutors).CopyTo(Data, 0x38);
|
||||
return Data;
|
||||
}
|
||||
}
|
||||
}
|
||||
113
PersonalInfo/PersonalTable.cs
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
using System;
|
||||
|
||||
namespace PKHeX
|
||||
{
|
||||
public class PersonalTable
|
||||
{
|
||||
internal static readonly PersonalTable AO = new PersonalTable(Properties.Resources.personal_ao, GameVersion.ORAS);
|
||||
internal static readonly PersonalTable XY = new PersonalTable(Properties.Resources.personal_xy, GameVersion.XY);
|
||||
internal static readonly PersonalTable B2W2 = new PersonalTable(Properties.Resources.personal_b2w2, GameVersion.B2W2);
|
||||
internal static readonly PersonalTable BW = new PersonalTable(Properties.Resources.personal_bw, GameVersion.BW);
|
||||
internal static readonly PersonalTable HGSS = new PersonalTable(Properties.Resources.personal_hgss, GameVersion.HGSS);
|
||||
internal static readonly PersonalTable Pt = new PersonalTable(Properties.Resources.personal_pt, GameVersion.Pt);
|
||||
internal static readonly PersonalTable DP = new PersonalTable(Properties.Resources.personal_dp, GameVersion.DP);
|
||||
internal static readonly PersonalTable LG = new PersonalTable(Properties.Resources.personal_lg, GameVersion.LG);
|
||||
internal static readonly PersonalTable FR = new PersonalTable(Properties.Resources.personal_fr, GameVersion.FR);
|
||||
internal static readonly PersonalTable E = new PersonalTable(Properties.Resources.personal_e, GameVersion.E);
|
||||
internal static readonly PersonalTable RS = new PersonalTable(Properties.Resources.personal_rs, GameVersion.RS);
|
||||
|
||||
private static byte[][] splitBytes(byte[] data, int size)
|
||||
{
|
||||
byte[][] r = new byte[data.Length / size][];
|
||||
for (int i = 0; i < data.Length; i += size)
|
||||
{
|
||||
r[i / size] = new byte[size];
|
||||
Array.Copy(data, i, r[i / size], 0, size);
|
||||
}
|
||||
return r;
|
||||
}
|
||||
private PersonalTable(byte[] data, GameVersion format)
|
||||
{
|
||||
int size = 0;
|
||||
switch (format)
|
||||
{
|
||||
case GameVersion.RS:
|
||||
case GameVersion.E:
|
||||
case GameVersion.FR:
|
||||
case GameVersion.LG: size = PersonalInfoG3.SIZE; break;
|
||||
case GameVersion.DP:
|
||||
case GameVersion.Pt:
|
||||
case GameVersion.HGSS: size = PersonalInfoG4.SIZE; break;
|
||||
case GameVersion.BW: size = PersonalInfoBW.SIZE; break;
|
||||
case GameVersion.B2W2: size = PersonalInfoB2W2.SIZE; break;
|
||||
case GameVersion.XY: size = PersonalInfoXY.SIZE; break;
|
||||
case GameVersion.ORAS: size = PersonalInfoORAS.SIZE; break;
|
||||
}
|
||||
|
||||
if (size == 0)
|
||||
{ Table = null; return; }
|
||||
|
||||
byte[][] entries = splitBytes(data, size);
|
||||
PersonalInfo[] d = new PersonalInfo[data.Length / size];
|
||||
|
||||
switch (format)
|
||||
{
|
||||
case GameVersion.RS:
|
||||
case GameVersion.E:
|
||||
case GameVersion.FR:
|
||||
case GameVersion.LG:
|
||||
Array.Resize(ref d, 387);
|
||||
for (int i = 0; i < d.Length; i++) // entries are not in order of natdexID
|
||||
d[i] = new PersonalInfoG3(entries[PKX.getG3Species(i)]);
|
||||
break;
|
||||
case GameVersion.DP:
|
||||
case GameVersion.Pt:
|
||||
case GameVersion.HGSS:
|
||||
for (int i = 0; i < d.Length; i++)
|
||||
d[i] = new PersonalInfoG4(entries[i]);
|
||||
break;
|
||||
case GameVersion.BW:
|
||||
for (int i = 0; i < d.Length; i++)
|
||||
d[i] = new PersonalInfoBW(entries[i]);
|
||||
break;
|
||||
case GameVersion.B2W2:
|
||||
for (int i = 0; i < d.Length; i++)
|
||||
d[i] = new PersonalInfoB2W2(entries[i]);
|
||||
break;
|
||||
case GameVersion.XY:
|
||||
for (int i = 0; i < d.Length; i++)
|
||||
d[i] = new PersonalInfoXY(entries[i]);
|
||||
break;
|
||||
case GameVersion.ORAS:
|
||||
for (int i = 0; i < d.Length; i++)
|
||||
d[i] = new PersonalInfoORAS(entries[i]);
|
||||
break;
|
||||
}
|
||||
Table = d;
|
||||
}
|
||||
|
||||
private readonly PersonalInfo[] Table;
|
||||
public PersonalInfo this[int index]
|
||||
{
|
||||
get { return Table[index]; }
|
||||
set { Table[index] = value; }
|
||||
}
|
||||
|
||||
public int[] getAbilities(int species, int forme)
|
||||
{
|
||||
if (species >= Table.Length)
|
||||
{ species = 0; Console.WriteLine("Requested out of bounds SpeciesID"); }
|
||||
return this[getFormeIndex(species, forme)].Abilities;
|
||||
}
|
||||
public int getFormeIndex(int species, int forme)
|
||||
{
|
||||
if (species >= Table.Length)
|
||||
{ species = 0; Console.WriteLine("Requested out of bounds SpeciesID"); }
|
||||
return this[species].FormeIndex(species, forme);
|
||||
}
|
||||
public PersonalInfo getFormeEntry(int species, int forme)
|
||||
{
|
||||
return this[getFormeIndex(species, forme)];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -3,13 +3,13 @@
|
|||
|
||||
namespace PKHeX
|
||||
{
|
||||
static class Program
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
private static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("PKHeX")]
|
||||
[assembly: AssemblyDescription("Pokémon Editor for Pokémon X/Y")]
|
||||
[assembly: AssemblyDescription("Pokémon Save Editor")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("ProjectPokémon")]
|
||||
[assembly: AssemblyProduct("PKHeX")]
|
||||
|
|
|
|||
2808
Properties/Resources.Designer.cs
generated
BIN
Resources/byte/personal_b2w2
Normal file
BIN
Resources/byte/personal_bw
Normal file
BIN
Resources/byte/personal_dp
Normal file
BIN
Resources/byte/personal_e
Normal file
BIN
Resources/byte/personal_fr
Normal file
BIN
Resources/byte/personal_hgss
Normal file
BIN
Resources/byte/personal_lg
Normal file
BIN
Resources/byte/personal_pt
Normal file
BIN
Resources/byte/personal_rs
Normal file
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
BIN
Resources/img/box/b2w2/box_wp17b2w2.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
Resources/img/box/b2w2/box_wp18b2w2.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
Resources/img/box/b2w2/box_wp19b2w2.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
Resources/img/box/b2w2/box_wp20b2w2.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
Resources/img/box/b2w2/box_wp21b2w2.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
Resources/img/box/b2w2/box_wp22b2w2.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
Resources/img/box/b2w2/box_wp23b2w2.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
Resources/img/box/b2w2/box_wp24b2w2.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
Resources/img/box/bw/box_wp01bw.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Resources/img/box/bw/box_wp02bw.png
Normal file
|
After Width: | Height: | Size: 1002 B |
BIN
Resources/img/box/bw/box_wp03bw.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
Resources/img/box/bw/box_wp04bw.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
Resources/img/box/bw/box_wp05bw.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
Resources/img/box/bw/box_wp06bw.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
Resources/img/box/bw/box_wp07bw.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
Resources/img/box/bw/box_wp08bw.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
Resources/img/box/bw/box_wp09bw.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
Resources/img/box/bw/box_wp10bw.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
Resources/img/box/bw/box_wp11bw.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Resources/img/box/bw/box_wp12bw.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
Resources/img/box/bw/box_wp13bw.png
Normal file
|
After Width: | Height: | Size: 934 B |
BIN
Resources/img/box/bw/box_wp14bw.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
Resources/img/box/bw/box_wp15bw.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
Resources/img/box/bw/box_wp16bw.png
Normal file
|
After Width: | Height: | Size: 466 B |
BIN
Resources/img/box/bw/box_wp17bw.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
Resources/img/box/bw/box_wp18bw.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
Resources/img/box/bw/box_wp19bw.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
Resources/img/box/bw/box_wp20bw.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
Resources/img/box/bw/box_wp21bw.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
Resources/img/box/bw/box_wp22bw.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
Resources/img/box/bw/box_wp23bw.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
Resources/img/box/bw/box_wp24bw.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
Resources/img/box/dp/box_wp01dp.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
Resources/img/box/dp/box_wp02dp.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
Resources/img/box/dp/box_wp03dp.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |