7 lines
165 B
ActionScript
7 lines
165 B
ActionScript
|
shared interface BattleRandom {
|
||
|
bool EffectChance(float chance, ExecutingMove@ move, Pokemon@ target);
|
||
|
int Get();
|
||
|
int Get(int max);
|
||
|
int Get(int min, int max);
|
||
|
}
|