Finish the A moves
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-10-30 18:45:42 +02:00
parent cb2f53a239
commit afe091eefa
14 changed files with 213 additions and 10 deletions

View File

@@ -1,6 +1,13 @@
type BattleSide {
bool SwapPositions(uint8 a, uint8 b);
uint8 SideIndex { get const; };
bool IsDefeated { get const; };
bool HasFled { get const; };
Battle@ Battle { get const; };
uint8 GetPokemonIndex(const Pokemon@ pokemon) const;
Pokemon@ GetPokemon(uint8 index) const;
ref@ AddVolatile(const constString &in name);
ref@ GetVolatile(const constString &in name);
void RemoveVolatile(const constString &in name) const;
bool HasVolatile(const constString &in name) const;
}