mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-20 22:39:31 +02:00
Merge branch 'pagefaultgames:beta' into bugfix-health-segment-healing
This commit is contained in:
commit
fbdb271f32
@ -1 +1 @@
|
|||||||
Subproject commit fc4a1effd5170def3c8314208a52cd0d8e6913ef
|
Subproject commit d600913dbf1f8b47dae8dccbd8296df78f1c51b5
|
@ -1005,8 +1005,8 @@ export const pokemonEvolutions: PokemonEvolutions = {
|
|||||||
new SpeciesEvolution(Species.COSMOEM, 23, null, null)
|
new SpeciesEvolution(Species.COSMOEM, 23, null, null)
|
||||||
],
|
],
|
||||||
[Species.COSMOEM]: [
|
[Species.COSMOEM]: [
|
||||||
new SpeciesEvolution(Species.SOLGALEO, 53, EvolutionItem.SUN_FLUTE, null, SpeciesWildEvolutionDelay.VERY_LONG),
|
new SpeciesEvolution(Species.SOLGALEO, 1, EvolutionItem.SUN_FLUTE, null, SpeciesWildEvolutionDelay.VERY_LONG),
|
||||||
new SpeciesEvolution(Species.LUNALA, 53, EvolutionItem.MOON_FLUTE, null, SpeciesWildEvolutionDelay.VERY_LONG)
|
new SpeciesEvolution(Species.LUNALA, 1, EvolutionItem.MOON_FLUTE, null, SpeciesWildEvolutionDelay.VERY_LONG)
|
||||||
],
|
],
|
||||||
[Species.MELTAN]: [
|
[Species.MELTAN]: [
|
||||||
new SpeciesEvolution(Species.MELMETAL, 48, null, null)
|
new SpeciesEvolution(Species.MELMETAL, 48, null, null)
|
||||||
|
@ -69,7 +69,9 @@ export abstract class ApiBase {
|
|||||||
"Content-Type": config.headers?.["Content-Type"] ?? "application/json",
|
"Content-Type": config.headers?.["Content-Type"] ?? "application/json",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (import.meta.env.DEV) {
|
||||||
console.log(`Sending ${config.method ?? "GET"} request to: `, this.base + path, config);
|
console.log(`Sending ${config.method ?? "GET"} request to: `, this.base + path, config);
|
||||||
|
}
|
||||||
|
|
||||||
return await fetch(this.base + path, config);
|
return await fetch(this.base + path, config);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user