Adds battle history, fixes code style

This commit is contained in:
2024-08-23 09:24:00 +02:00
parent d48889e21a
commit e7dc885afd
21 changed files with 80 additions and 70 deletions

View File

@@ -166,7 +166,7 @@ public class FormImpl : IForm
return new AbilityIndex
{
IsHidden = false,
Index = (byte)i
Index = (byte)i,
};
}
for (var i = 0; i < HiddenAbilities.Count && i < 255; i++)
@@ -175,7 +175,7 @@ public class FormImpl : IForm
return new AbilityIndex
{
IsHidden = true,
Index = (byte)i
Index = (byte)i,
};
}
return null;

View File

@@ -17,5 +17,5 @@ public enum Gender : byte
/// <summary>
/// The Pokémon is female.
/// </summary>
Female
Female,
}