This commit is contained in:
@@ -2,6 +2,7 @@ type Battle {
|
||||
const BattleLibrary@ Library { get const; };
|
||||
bool CanFlee { get const; };
|
||||
uint CurrentTurn { get const; };
|
||||
uint8 PokemonPerSide { get const; };
|
||||
BattleRandom@ Random { get const; };
|
||||
ChoiceQueue@ TurnQueue { get const; };
|
||||
narray<BattleSide>@ Sides { get const; };
|
||||
@@ -9,6 +10,7 @@ type Battle {
|
||||
BattleHistory@ History { get const; };
|
||||
bool CanUse(BaseTurnChoice@ choice);
|
||||
ref@ AddVolatile(const constString &in name);
|
||||
ref@ GetVolatile(const constString &in name);
|
||||
void RemoveVolatile(const constString &in name) const;
|
||||
void SetWeather(const constString &in name) const;
|
||||
void ClearWeather(const constString &in name) const;
|
||||
@@ -16,4 +18,5 @@ type Battle {
|
||||
BattleSide@ GetBattleSide(uint8 index);
|
||||
BattleParty@ GetParty(uint8 index);
|
||||
BattleParty@ FindPartyForPokemon(Pokemon@ pokemon);
|
||||
bool HasVolatile(const constString &in name) const;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user