Add all missing docs

This commit is contained in:
2025-05-03 14:18:12 +02:00
parent 4d5dfd0342
commit 441f5dddaf
40 changed files with 400 additions and 21 deletions

View File

@@ -142,9 +142,19 @@ public interface IBattleSide : IScriptSource, IDeepCloneable
/// </summary>
IItem? GetLastConsumedItem(byte battleDataPosition);
/// <summary>
/// Marks a Pokémon as fainted. This is used to track the last turn a Pokémon in a position fainted.
/// </summary>
void MarkFaint(byte position);
/// <summary>
/// Gets the last turn a Pokémon in a specific position fainted.
/// </summary>
uint? GetLastFaintTurn(byte position);
/// <summary>
/// Gets the last turn a Pokémon in any position fainted.
/// </summary>
uint? GetLastFaintTurn();
}