mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-16 12:29:26 +02:00
Fix spacing (thanks VSCode)
This commit is contained in:
parent
149bc0d79a
commit
e1cf7b4d07
@ -6,9 +6,7 @@ import { PokemonType } from "#enums/pokemon-type";
|
|||||||
import { SpeciesFormKey } from "#enums/species-form-key";
|
import { SpeciesFormKey } from "#enums/species-form-key";
|
||||||
import { SpeciesId } from "#enums/species-id";
|
import { SpeciesId } from "#enums/species-id";
|
||||||
|
|
||||||
|
|
||||||
// biome-ignore format: manually formatted
|
// biome-ignore format: manually formatted
|
||||||
|
|
||||||
export function initSpecies() {
|
export function initSpecies() {
|
||||||
allSpecies.push(
|
allSpecies.push(
|
||||||
new PokemonSpecies(SpeciesId.BULBASAUR, 1, false, false, false, "Seed Pokémon", PokemonType.GRASS, PokemonType.POISON, 0.7, 6.9, AbilityId.OVERGROW, AbilityId.NONE, AbilityId.CHLOROPHYLL, 318, 45, 49, 49, 65, 65, 45, 45, 50, 64, GrowthRate.MEDIUM_SLOW, 87.5, false),
|
new PokemonSpecies(SpeciesId.BULBASAUR, 1, false, false, false, "Seed Pokémon", PokemonType.GRASS, PokemonType.POISON, 0.7, 6.9, AbilityId.OVERGROW, AbilityId.NONE, AbilityId.CHLOROPHYLL, 318, 45, 49, 49, 65, 65, 45, 45, 50, 64, GrowthRate.MEDIUM_SLOW, 87.5, false),
|
||||||
|
@ -112,6 +112,7 @@ export function getFusedSpeciesName(speciesAName: string, speciesBName: string):
|
|||||||
|
|
||||||
return `${speciesAPrefix || speciesBPrefix}${fragA}${fragB}${speciesBSuffix || speciesASuffix}`;
|
return `${speciesAPrefix || speciesBPrefix}${fragA}${fragB}${speciesBSuffix || speciesASuffix}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getPokemonSpeciesForm(species: SpeciesId, formIndex: number): PokemonSpeciesForm {
|
export function getPokemonSpeciesForm(species: SpeciesId, formIndex: number): PokemonSpeciesForm {
|
||||||
const retSpecies: PokemonSpecies =
|
const retSpecies: PokemonSpecies =
|
||||||
species >= 2000
|
species >= 2000
|
||||||
|
Loading…
Reference in New Issue
Block a user