mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 00:52:47 +02:00
Fixes
This commit is contained in:
parent
c7b7579f60
commit
caf3cc940f
@ -88,8 +88,8 @@ export interface Starter {
|
||||
nature: Nature;
|
||||
moveset?: StarterMoveset;
|
||||
pokerus: boolean;
|
||||
nickname?: string;
|
||||
teraType?: PokemonType;
|
||||
nickname?: string | undefined;
|
||||
teraType?: PokemonType | undefined;
|
||||
}
|
||||
|
||||
interface LanguageSetting {
|
||||
|
@ -28,7 +28,7 @@ describe("Abilities - Forecast", () => {
|
||||
* @param form The expected form based on the active weather
|
||||
* @param initialForm The initial form pre form change
|
||||
*/
|
||||
const testWeatherFormChange = async (game: GameManager, weather: WeatherType, form: number, initialForm?: number) => {
|
||||
const testWeatherFormChange = async (game: GameManager, weather: WeatherType, form: number, initialForm: number) => {
|
||||
game.override.weather(weather).starterForms({ [SpeciesId.CASTFORM]: initialForm });
|
||||
await game.classicMode.startBattle([SpeciesId.CASTFORM]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user