More moves

This commit is contained in:
2025-03-21 13:35:12 +01:00
parent 7f5088b763
commit 85b513092a
9 changed files with 149 additions and 11 deletions

View File

@@ -450,6 +450,8 @@ public interface IPokemonBattleData : IDeepCloneable
void MarkItemAsConsumed(IItem itemName);
uint SwitchInTurn { get; internal set; }
IBattleSide BattleSide { get; }
}
/// <inheritdoc cref="IPokemon"/>
@@ -1254,4 +1256,7 @@ public class PokemonBattleDataImpl : IPokemonBattleData
/// <inheritdoc />
public uint SwitchInTurn { get; set; }
/// <inheritdoc />
public IBattleSide BattleSide => Battle.Sides[SideIndex];
}