diff --git a/.circleci/config.yml b/.circleci/config.yml index ca9a3533..4c652294 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,6 +20,9 @@ jobs: - run: name: Run tests command: make test + - run: + name: Generate OpenAPI schema + command: make openapi-generate build: docker: - image: cimg/python:3.10.9 diff --git a/.dockerignore b/.dockerignore index dd4e3be5..48324223 100644 --- a/.dockerignore +++ b/.dockerignore @@ -18,7 +18,7 @@ graphql .vscode .github .circleci -docker-compose.yml +docker-compose* .dockerignore /*.md /*.js diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-build-and-push.yml similarity index 81% rename from .github/workflows/docker-image.yml rename to .github/workflows/docker-build-and-push.yml index 66d81883..2ab7c156 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-build-and-push.yml @@ -13,24 +13,24 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: submodules: recursive - name: Docker meta id: meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v5 with: # list of Docker images to use as base name for tags images: | pokeapi/pokeapi - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub if: github.event_name != 'pull_request' - uses: docker/login-action@v1 + uses: docker/login-action@v1 with: username: ${{ secrets.DOCKERHUB_USERNAME_NARAMSIM }} password: ${{ secrets.DOCKERHUB_TOKEN_NARAMSIM }} @@ -43,12 +43,12 @@ jobs: echo "Platforms: ${{ steps.buildx.outputs.platforms }}" - name: Build and push id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: . file: ./Resources/docker/app/Dockerfile push: true - platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/arm/v7,linux/arm/v6 + platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - name: Image digest diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml deleted file mode 100644 index cfdf1888..00000000 --- a/.github/workflows/docker-build.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Build Docker image - -on: - pull_request: - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - submodules: recursive - - name: Docker meta - id: meta - uses: docker/metadata-action@v5 - with: - images: pokeapi/pokeapi - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - id: buildx - uses: docker/setup-buildx-action@v3 - - name: Inspect builder - run: | - echo "Name: ${{ steps.buildx.outputs.name }}" - echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}" - echo "Status: ${{ steps.buildx.outputs.status }}" - echo "Flags: ${{ steps.buildx.outputs.flags }}" - echo "Platforms: ${{ steps.buildx.outputs.platforms }}" - - name: Build - id: docker_build - uses: docker/build-push-action@v5 - with: - context: . - file: ./Resources/docker/app/Dockerfile - push: false - platforms: local - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - name: Image digest - run: echo ${{ steps.docker_build.outputs.digest }} diff --git a/.github/workflows/docker-k8s.yml b/.github/workflows/docker-k8s.yml new file mode 100644 index 00000000..b90c1210 --- /dev/null +++ b/.github/workflows/docker-k8s.yml @@ -0,0 +1,101 @@ +name: Build Docker image and create k8s with it + +on: + pull_request: + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: pokeapi/pokeapi + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v3 + - name: Build + id: docker_build + uses: docker/build-push-action@v5 + with: + context: . + file: ./Resources/docker/app/Dockerfile + push: false + platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 + tags: pokeapi/pokeapi:local + labels: ${{ steps.meta.outputs.labels }} + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }} + k8s: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: pokeapi/pokeapi + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v3 + - name: Build + id: docker_build + uses: docker/build-push-action@v5 + with: + context: . + file: ./Resources/docker/app/Dockerfile + push: false + load: true + platforms: local + tags: pokeapi/pokeapi:local + labels: ${{ steps.meta.outputs.labels }} + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }} + - name: Lint k8s + run: (cd Resources/k8s/kustomize && yamllint .) + - name: Create k8s Kind Cluster + uses: helm/kind-action@v1.10.0 + with: + cluster_name: pokeapi + version: v0.21.0 + - name: Create deployment configuration + run: | + cp Resources/k8s/kustomize/base/secrets/postgres.env.sample Resources/k8s/kustomize/base/secrets/postgres.env + cp Resources/k8s/kustomize/base/secrets/graphql.env.sample Resources/k8s/kustomize/base/secrets/graphql.env + cp Resources/k8s/kustomize/base/config/pokeapi.env.sample Resources/k8s/kustomize/base/config/pokeapi.env + - name: Load local image to Kind + run: kind load docker-image pokeapi/pokeapi:local --name pokeapi + - name: K8s Apply + run: | + make kustomize-local-apply + kubectl proxy & + sleep 1 + bash Resources/scripts/wait.sh http://localhost:8001/api/v1/namespaces/pokeapi/services/pokeapi/proxy/api/v2/ + - name: Set default namespace and print info + run: | + kubectl config set-context --current --namespace pokeapi + kubectl describe deployment + - name: Migrate and build data + run: | + make k8s-migrate + make k8s-build-db + bash Resources/scripts/wait.sh http://localhost:8001/api/v1/namespaces/pokeapi/services/pokeapi/proxy/api/v2/pal-park-area/5/ + - name: K8s wait for job + run: | + kubectl wait --timeout=600s --for=condition=complete job/load-graphql + last_command=$(kubectl get job -o jsonpath='{.status.succeeded}' load-graphql) + test "$last_command" -eq 1 + - name: Get GQL output + run: kubectl logs jobs/load-graphql diff --git a/.github/workflows/kustomize.yml b/.github/workflows/kustomize.yml deleted file mode 100644 index f26a3cb2..00000000 --- a/.github/workflows/kustomize.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Deploy Kustomize k8s cluster - -on: - workflow_run: - workflows: ["Build and Push Docker image"] - branches: [master, staging] - types: - - completed - schedule: - - cron: '0 0 1 * *' - -jobs: - create-kustomize-cluster: - runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' }} - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - submodules: recursive - - name: Lint - run: (cd Resources/k8s/kustomize && yamllint .) - - name: Create k8s Kind Cluster - uses: helm/kind-action@v1.1.0 - with: - version: v0.11.1 - - name: Create deployment configuration - run: | - cp Resources/k8s/kustomize/base/secrets/postgres.env.sample Resources/k8s/kustomize/base/secrets/postgres.env - cp Resources/k8s/kustomize/base/secrets/graphql.env.sample Resources/k8s/kustomize/base/secrets/graphql.env - cp Resources/k8s/kustomize/base/config/pokeapi.env.sample Resources/k8s/kustomize/base/config/pokeapi.env - - name: K8s Apply - run: | - if [ ${GITHUB_REF#refs/heads/} = 'master' ]; then make kustomize-apply; else make kustomize-staging-apply; fi - kubectl proxy & - kubectl describe deployment - bash Resources/scripts/wait.sh http://localhost:8001/api/v1/namespaces/pokeapi/services/pokeapi/proxy/api/v2/ - - name: Set default namespace - run: | - kubectl config set-context --current --namespace pokeapi - - name: Migrate and build data - run: | - make k8s-migrate - make k8s-build-db - bash Resources/scripts/wait.sh http://localhost:8001/api/v1/namespaces/pokeapi/services/pokeapi/proxy/api/v2/pal-park-area/5/ - - name: K8s Apply - run: | - kubectl wait --timeout=120s --for=condition=complete job/load-graphql - last_command=$(kubectl get job -o jsonpath='{.status.succeeded}' load-graphql) - test "$last_command" -eq 1 diff --git a/.gitmodules b/.gitmodules index a8f5548c..615535be 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "data/v2/sprites"] path = data/v2/sprites url = https://github.com/PokeAPI/sprites.git +[submodule "data/v2/cries"] + path = data/v2/cries + url = https://github.com/PokeAPI/cries.git diff --git a/Makefile b/Makefile index 33d90310..a2b1b8bb 100755 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ veekun_pokedex_repository = ../pokedex local_config = --settings=config.local docker_config = --settings=config.docker-compose +gql_compose_config = -f docker-compose.yml -f Resources/compose/docker-compose-prod-graphql.yml .PHONY: help .SILENT: @@ -41,39 +42,42 @@ make-migrations: # Create migrations files if schema has changed shell: # Load a shell python manage.py shell ${local_config} +openapi-generate: + python manage.py spectacular --color --file openapi.yml ${local_config} + docker-up: # (Docker) Create services/volumes/networks - docker-compose up -d + docker compose up -d docker-migrate: # (Docker) Run any pending migrations - docker-compose exec -T app python manage.py migrate ${docker_config} + docker compose exec -T app python manage.py migrate ${docker_config} docker-build-db: # (Docker) Build the database - docker-compose exec -T app sh -c 'echo "from data.v2.build import build_all; build_all()" | python manage.py shell ${docker_config}' + docker compose exec -T app sh -c 'echo "from data.v2.build import build_all; build_all()" | python manage.py shell ${docker_config}' docker-make-migrations: # (Docker) Create migrations files if schema has changed - docker-compose exec -T app sh -c 'python manage.py makemigrations ${docker_config}' + docker compose exec -T app sh -c 'python manage.py makemigrations ${docker_config}' docker-flush-db: # (Docker) Removes all the data present in the database but preserves tables and migrations - docker-compose exec -T app sh -c 'python manage.py flush --no-input ${docker_config}' + docker compose exec -T app sh -c 'python manage.py flush --no-input ${docker_config}' docker-destroy-db: # (Docker) Removes the volume where the database is installed on, alongside to the container itself docker rm -f pokeapi_db_1 docker volume rm pokeapi_pg_data docker-shell: # (Docker) Launch an interative shell for the pokeapi container - docker-compose exec app sh -l + docker compose exec app sh -l docker-stop: # (Docker) Stop containers - docker-compose stop + docker compose stop docker-down: # (Docker) Stop and removes containers and networks - docker-compose down + docker compose down docker-test: # (Docker) Run tests - docker-compose exec -T app python manage.py test ${local_config} + docker compose exec -T app python manage.py test ${local_config} docker-prod: - docker-compose -f docker-compose.yml -f docker-compose.override.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d + docker compose -f docker-compose.yml -f docker-compose.override.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d docker-setup: docker-up docker-migrate docker-build-db # (Docker) Start services, prepare the latest DB schema, populate the DB @@ -112,14 +116,17 @@ hasura-get-anon-schema: # Dumps GraphQL schema kustomize-apply: # (Kustomize) Run kubectl apply -k on the connected k8s cluster kubectl apply -k Resources/k8s/kustomize/base/ -kustomize-staging-apply: # (Kustomize) Run kubectl apply -k on the connected k8s cluster +kustomize-staging-apply: # (Kustomize) Run kubectl apply -k on the connected k8s cluster using pokeapi/pokeapi:staging kubectl apply -k Resources/k8s/kustomize/staging/ +kustomize-local-apply: # (Kustomize) Run kubectl apply -k on the connected k8s cluster using the locally available pokeapi/pokeapi:local + kubectl apply -k Resources/k8s/kustomize/local/ + k8s-migrate: # (k8s) Run any pending migrations - kubectl exec --namespace pokeapi deployment/pokeapi -- python manage.py migrate --settings=config.docker-compose + kubectl exec --namespace pokeapi deployment/pokeapi -- python manage.py migrate ${docker_config} k8s-build-db: # (k8s) Build the database - kubectl exec --namespace pokeapi deployment/pokeapi -- sh -c 'echo "from data.v2.build import build_all; build_all()" | python manage.py shell --settings=config.docker-compose' + kubectl exec --namespace pokeapi deployment/pokeapi -- sh -c 'echo "from data.v2.build import build_all; build_all()" | python manage.py shell ${docker_config}' k8s-delete: # (k8s) Delete pokeapi namespace kubectl delete namespace pokeapi @@ -135,17 +142,20 @@ down-graphql-prod: docker system prune --all --volumes --force sync; echo 3 > /proc/sys/vm/drop_caches +# Nginx doesn't start if upstream graphql-engine is down update-graphql-data-prod: + docker compose ${gql_compose_config} stop git pull origin master - git submodule update --init - docker compose stop graphql-engine + git submodule update --remote --merge + docker compose ${gql_compose_config} up --pull always -d app cache db sync; echo 3 > /proc/sys/vm/drop_caches - docker compose -f docker-compose.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d app make docker-migrate make docker-build-db - docker compose stop app - sync; echo 3 > /proc/sys/vm/drop_caches - docker compose exec -T web sh -c 'rm -rf /tmp/cache/*' - docker compose start graphql-engine + docker compose ${gql_compose_config} stop app cache + docker compose ${gql_compose_config} up --pull always -d graphql-engine graphiql sleep 120 make hasura-apply + docker compose ${gql_compose_config} up --pull always -d web + docker compose exec -T web sh -c 'rm -rf /tmp/cache/*' + docker image prune -af + sync; echo 3 > /proc/sys/vm/drop_caches diff --git a/README.md b/README.md index fe9db05e..533ecdad 100755 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ A RESTful API for Pokémon - [pokeapi.co](https://pokeapi.co) make setup ``` -- Run the server using the following command: +- Run the server on port `8000` using the following command: ```sh make serve @@ -45,25 +45,34 @@ A RESTful API for Pokémon - [pokeapi.co](https://pokeapi.co) ### Database setup +To build or rebuild the database by applying any CSV file update, run + ```sh make build-db ``` -Visit [localhost:80/api/v2/](localhost:80/api/v2/) to see the running API! +Visit [localhost:8000/api/v2/](http://localhost:8000/api/v2/) to see the running API! -Each time the build script is run, it will iterate over each table in the database, wipe it, and rewrite each row using the data found in data/v2/csv. - -The option to build individual portions of the database was removed in order to increase performance of the build script. +Each time the `build-db` script is run, it will iterate over each table in the database, wipe it, and rewrite each row using the data found in data/v2/csv. If you ever need to wipe the database use this command: ```sh -make wipe_db +make wipe-sqlite-db ``` +If the database schema has changed, generate any outstanding migrations and apply them + +```sh +make make-migrations +make migrate +``` + +Run `make help` to see all tasks. + ## Docker and Compose   [![docker hub](https://img.shields.io/docker/v/pokeapi/pokeapi?label=tag&sort=semver)](https://hub.docker.com/r/pokeapi/pokeapi) -There is also a multi-container setup, managed by [Docker Compose](https://docs.docker.com/compose/). This setup allows you to deploy a production-like environment, with separate containers for each services and is recommended if you need to simply spin up PokéAPI. +There is also a multi-container setup, managed by [Docker Compose V2](https://docs.docker.com/compose/). This setup allows you to deploy a production-like environment, with separate containers for each service, and is recommended if you need to simply spin up PokéAPI. Start everything by @@ -74,16 +83,29 @@ make docker-setup If you don't have `make` on your machine you can use the following commands ```sh -docker-compose up -d -docker-compose exec -T app python manage.py migrate --settings=config.docker-compose -docker-compose exec -T app sh -c 'echo "from data.v2.build import build_all; build_all()" | python manage.py shell --settings=config.docker-compose' +docker compose up -d +docker compose exec -T app python manage.py migrate --settings=config.docker-compose +docker compose exec -T app sh -c 'echo "from data.v2.build import build_all; build_all()" | python manage.py shell --settings=config.docker-compose' ``` Browse [localhost/api/v2/](http://localhost/api/v2/) or [localhost/api/v2/pokemon/bulbasaur/](http://localhost/api/v2/pokemon/bulbasaur/) on port `80`. +To rebuild the database and apply any CSV file updates, run + +```sh +make docker-build-db +``` + +If the database schema has changed, generate the migrations and apply those + +```sh +make docker-make-migrations +make docker-migrate +``` + ## GraphQL   -When you start PokéAPI with the above docker-compose setup, an [Hasura Engine](https://github.com/hasura/graphql-engine) server is started as well. It's possible to track all the PokeAPI tables and foreign keys by simply +When you start PokéAPI with the above Docker Compose setup, an [Hasura Engine](https://github.com/hasura/graphql-engine) server is started as well. It's possible to track all the PokeAPI tables and foreign keys by simply ```sh # hasura cli needs to be installed and available in your $PATH: https://hasura.io/docs/latest/graphql/core/hasura-cli/install-hasura-cli.html @@ -95,9 +117,9 @@ When finished browse http://localhost:8080 and you will find the admin console. A free public GraphiQL console is browsable at the address https://beta.pokeapi.co/graphql/console/. The relative GraphQL endpoint is accessible at https://beta.pokeapi.co/graphql/v1beta -A set of examples are provided in the directory [/graphql/examples](./graphql/examples) of this repository. +A set of examples is provided in the directory [/graphql/examples](./graphql/examples) of this repository. -## Kubernetes   [![k8s status](https://github.com/PokeAPI/pokeapi/actions/workflows/kustomize.yml/badge.svg?branch=master)](https://github.com/PokeAPI/pokeapi/actions/workflows/kustomize.yml) +## Kubernetes   [![Build Docker image and create k8s with it](https://github.com/PokeAPI/pokeapi/actions/workflows/docker-k8s.yml/badge.svg)](https://github.com/PokeAPI/pokeapi/actions/workflows/docker-k8s.yml) [Kustomize](https://kubernetes.io/docs/tasks/manage-kubernetes-objects/kustomization/) files are provided in the folder https://github.com/PokeAPI/pokeapi/tree/master/Resources/k8s/kustomize/base/. Create and change your secrets: @@ -131,23 +153,24 @@ This k8s setup creates all k8s resources inside the _Namespace_ `pokeapi`, run ` | Python 2/3 | [PokeAPI/pokepy](https://github.com/PokeAPI/pokepy) | _Auto caching_ | | Python 3 | [PokeAPI/pokebase](https://github.com/PokeAPI/pokebase) | _Auto caching_, _Image caching_ | -| Wrapper | Repository | Features | -| --- | --- | --- | -| PHP | [lmerotta/phpokeapi](https://github.com/lmerotta/phpokeapi) | _Auto caching, lazy loading_ | -| Ruby | [rdavid1099/poke-api-v2](https://github.com/rdavid1099/poke-api-v2) | | -| .Net Standard | [mtrdp642/PokeApiNet](https://github.com/mtrdp642/PokeApiNet) | _Auto caching_ | -| Go | [mtslzr/pokeapi-go](https://github.com/mtslzr/pokeapi-go) | _Auto caching_ | -| Dart | [prathanbomb/pokedart](https://github.com/prathanbomb/pokedart) | | -| Rust | [lunik1/pokerust](https://gitlab.com/lunik1/pokerust) | _Auto caching_ | -| Spring Boot | [dlfigueira/spring-pokeapi](https://github.com/dlfigueira/spring-pokeapi) | _Auto caching_ | -| Swift | [kinkofer/PokemonAPI](https://github.com/kinkofer/PokemonAPI) | | -| Typescript server-side/client-side | [Gabb-c/Pokenode-ts](https://github.com/Gabb-c/pokenode-ts) | _Auto caching_ | -| Python | [beastmatser/aiopokeapi](https://github.com/beastmatser/aiopokeapi) | _Auto caching, asynchronous_ -| Scala | [juliano/pokeapi-scala](https://github.com/juliano/pokeapi-scala) | _Auto caching_ | +|Wrapper|Repository|Features| +|---|---|---| +|.Net Standard |[mtrdp642/PokeApiNet](https://github.com/mtrdp642/PokeApiNet)|Auto caching | +|Dart|[prathanbomb/pokedart](https://github.com/prathanbomb/pokedart)| | +|Go|[mtslzr/pokeapi-go](https://github.com/mtslzr/pokeapi-go)|Auto caching | +|PHP |[lmerotta/phpokeapi](https://github.com/lmerotta/phpokeapi)|Auto caching, lazy loading | +|PowerShell|[Celerium/PokeAPI-PowerShellWrapper](https://github.com/Celerium/PokeAPI-PowerShellWrapper)| | +|Python|[beastmatser/aiopokeapi](https://github.com/beastmatser/aiopokeapi)|Auto caching, asynchronous | +|Ruby|[rdavid1099/poke-api-v2](https://github.com/rdavid1099/poke-api-v2)| | +|Rust|[lunik1/pokerust](https://gitlab.com/lunik1/pokerust)|Auto caching | +|Scala |[juliano/pokeapi-scala](https://github.com/juliano/pokeapi-scala)|Auto caching | +|Spring Boot |[dlfigueira/spring-pokeapi](https://github.com/dlfigueira/spring-pokeapi)|Auto caching | +|Swift |[kinkofer/PokemonAPI](https://github.com/kinkofer/PokemonAPI)| | +|Typescript server-side/client-side|[Gabb-c/Pokenode-ts](https://github.com/Gabb-c/pokenode-ts)|Auto caching | ## Donations -Help to keep PokéAPI running! If you're using PokéAPI as a teaching resource or for a project, consider sending us a $10 donation to help keep the service up. We get 330 million requests a month! +Help to keep PokéAPI running! If you're using PokéAPI as a teaching resource or for a project, consider sending us a donation to help keep the service up. We get 1+ billion requests a month! Thank you to all our backers! [Become a backer](https://opencollective.com/pokeapi#backer) @@ -161,7 +184,7 @@ Thank you to all our backers! [Become a backer](https://opencollective.com/pokea Have a question or just want to discuss new ideas and improvements? Hit us up on Slack. ~~Consider talking with us here before creating a new issue.~~ This way we can keep issues here a bit more organized and helpful in the long run. Be excellent to each other :smile: -[Sign up](https://join.slack.com/t/pokeapi/shared_invite/zt-1l4vpwa8k-muQmMrFfv7TIFGrVWzjzcw) easily! +[Sign up](https://join.slack.com/t/pokeapi/shared_invite/zt-2ampo6her-_tHSI3uOS65WzGypt7Y96w) easily! Once you've signed up visit [PokéAPI on Slack](https://pokeapi.slack.com) @@ -171,7 +194,7 @@ This project exists thanks to all the people who [contribute](https://github.com -All contributions are welcome: bug fixes, data contributions, recommendations. +All contributions are welcome: bug fixes, data contributions, and recommendations. Please see the [issues on GitHub](https://github.com/PokeAPI/pokeapi/issues) before you submit a pull request or raise an issue, someone else might have beat you to it. diff --git a/Resources/compose/docker-compose-prod-graphql.yml b/Resources/compose/docker-compose-prod-graphql.yml index a4670a12..d149ecbf 100644 --- a/Resources/compose/docker-compose-prod-graphql.yml +++ b/Resources/compose/docker-compose-prod-graphql.yml @@ -1,5 +1,8 @@ version: '2.4' services: + cache: + restart: "no" + db: environment: POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}" @@ -13,6 +16,8 @@ services: web: volumes: - graphiql:/public-console:ro + logging: + driver: gcplogs graphql-engine: cpus: 0.7 diff --git a/Resources/docker/app/Dockerfile b/Resources/docker/app/Dockerfile index c2d72940..a8d2ac4d 100644 --- a/Resources/docker/app/Dockerfile +++ b/Resources/docker/app/Dockerfile @@ -7,9 +7,9 @@ RUN mkdir /code WORKDIR /code ADD requirements.txt /code/ -RUN \ - apk add --no-cache postgresql-libs libstdc++ && \ - apk add --no-cache --virtual .build-deps gcc g++ musl-dev postgresql-dev && \ +RUN apk add --no-cache postgresql-libs libstdc++ +RUN apk add --no-cache --virtual .build-deps gcc g++ musl-dev \ + postgresql-dev rust cargo && \ python3 -m pip install -r requirements.txt --no-cache-dir && \ apk --purge del .build-deps ADD . /code/ diff --git a/Resources/docker/app/README.md b/Resources/docker/app/README.md index 8e2b8779..48c5d548 100644 --- a/Resources/docker/app/README.md +++ b/Resources/docker/app/README.md @@ -35,7 +35,7 @@ The container connects to a Redis cache via the environment variable `REDIS_CONN ### Run the container -The container exposes port `80`. It needs a PostgreSQL and a Redis instance to connect to. Refer to the section [How to use this image](./how-to-use-this-image) for mapping the environment variables. +The container exposes port `80`. It needs a PostgreSQL and a Redis instance to connect to. Refer to the section [How to use this image](#how-to-use-this-image) for mapping the environment variables. It's recommended to use the provided [docker-compose.yml](https://github.com/PokeAPI/pokeapi/blob/master/docker-compose.yml) to start a container from this image. diff --git a/Resources/k8s/kustomize/base/config/pokeapi.env.sample b/Resources/k8s/kustomize/base/config/pokeapi.env.sample index e964f3cf..76fb7424 100644 --- a/Resources/k8s/kustomize/base/config/pokeapi.env.sample +++ b/Resources/k8s/kustomize/base/config/pokeapi.env.sample @@ -1,2 +1,3 @@ ADMINS=PokeAPI,change.me@pokeapi.co BASE_URL=http://localhost/ +POKEAPI_CHECKOUT_REF=master \ No newline at end of file diff --git a/Resources/k8s/kustomize/base/deployments/graphql-deployment.yaml b/Resources/k8s/kustomize/base/deployments/graphql-deployment.yaml index 20a80d40..8e2f4347 100644 --- a/Resources/k8s/kustomize/base/deployments/graphql-deployment.yaml +++ b/Resources/k8s/kustomize/base/deployments/graphql-deployment.yaml @@ -25,7 +25,7 @@ spec: done; containers: - name: graphql-engine - image: hasura/graphql-engine:v2.16.1 + image: hasura/graphql-engine:v2.36.4 ports: - containerPort: 8080 env: diff --git a/Resources/k8s/kustomize/base/deployments/pokeapi-deployment.yaml b/Resources/k8s/kustomize/base/deployments/pokeapi-deployment.yaml index 6d7e3634..863b7479 100644 --- a/Resources/k8s/kustomize/base/deployments/pokeapi-deployment.yaml +++ b/Resources/k8s/kustomize/base/deployments/pokeapi-deployment.yaml @@ -26,7 +26,7 @@ spec: containers: - name: pokeapi image: pokeapi/pokeapi:master - imagePullPolicy: Always + imagePullPolicy: IfNotPresent ports: - containerPort: 8080 securityContext: # CI: Github Actions kills this container if not run with root. Otherwise, it's safe to use the default pokeapi/pokeapi user and remove these lines. diff --git a/Resources/k8s/kustomize/base/jobs/load-graphql.yaml b/Resources/k8s/kustomize/base/jobs/load-graphql.yaml index c644ad5f..cc43bb4d 100644 --- a/Resources/k8s/kustomize/base/jobs/load-graphql.yaml +++ b/Resources/k8s/kustomize/base/jobs/load-graphql.yaml @@ -25,13 +25,17 @@ spec: secretKeyRef: name: graphql-env-secret key: HASURA_GRAPHQL_ADMIN_SECRET + - name: POKEAPI_CHECKOUT_REF + valueFrom: + configMapKeyRef: + name: pokeapi-configmap + key: POKEAPI_CHECKOUT_REF command: ["sh", "-c"] args: - - apt-get update && - apt-get install -y git curl && - curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash && - hasura update-cli --version v2.0.8 && + - apt-get update && apt-get install -y curl git && + curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | VERSION=v2.36.4 bash && + cd /tmp && git clone https://github.com/PokeAPI/pokeapi.git && cd pokeapi && - git checkout staging && + (git checkout $(POKEAPI_CHECKOUT_REF) || git checkout master) && hasura md apply --endpoint http://graphql:8080 --project graphql --admin-secret $(HASURA_GRAPHQL_ADMIN_SECRET) diff --git a/Resources/k8s/kustomize/base/kustomization.yaml b/Resources/k8s/kustomize/base/kustomization.yaml index 93828994..7fdf034c 100644 --- a/Resources/k8s/kustomize/base/kustomization.yaml +++ b/Resources/k8s/kustomize/base/kustomization.yaml @@ -5,7 +5,7 @@ namespace: pokeapi configMapGenerator: - name: pokeapi-configmap - files: + envs: - config/pokeapi.env secretGenerator: diff --git a/Resources/k8s/kustomize/local/kustomization.yaml b/Resources/k8s/kustomize/local/kustomization.yaml new file mode 100644 index 00000000..371b3533 --- /dev/null +++ b/Resources/k8s/kustomize/local/kustomization.yaml @@ -0,0 +1,9 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +bases: + - ../base + +images: + - name: pokeapi/pokeapi + newTag: local diff --git a/Resources/nginx/nginx.conf b/Resources/nginx/nginx.conf index 19797b04..0ce02689 100644 --- a/Resources/nginx/nginx.conf +++ b/Resources/nginx/nginx.conf @@ -2,26 +2,32 @@ worker_processes 1; events { worker_connections 1024; - multi_accept on; # accept each connection as soon as you can + multi_accept on; accept_mutex off; use epoll; } http { - include mime.types; - default_type application/octet-stream; + access_log off; + log_format pokeapilogformat + '$remote_addr ' + '"$request" $status cs:$upstream_cache_status s:$bytes_sent ' + 'r:"$http_referer"'; + error_log /dev/stdout warn; + include mime.types; + default_type application/octet-stream; - server_tokens off; # dont send unnecessary server info (like version) + server_tokens off; - add_header X-XSS-Protection "1; mode=block"; # prevent XSS + add_header X-XSS-Protection "1; mode=block"; - client_body_buffer_size 10K; # raise the threshold by which requests are written to HDD instead of RAM - client_header_buffer_size 2k; - client_max_body_size 8m; # we dont accept requests larger that 8mb + client_body_buffer_size 10K; + client_header_buffer_size 1k; + client_max_body_size 8m; - sendfile on; - tcp_nopush on; - tcp_nodelay on; + sendfile on; + tcp_nopush on; + tcp_nodelay on; keepalive_timeout 5; @@ -47,6 +53,16 @@ http { 192.168.0.0/24 0; } + map $http_user_agent $exclude_ua { + "~*monitoring*" 0; + default 1; + } + + map $request_method $only_post { + default 0; + POST $exclude_ua; + } + map $limit $limit_key { 0 ""; 1 $binary_remote_addr; @@ -69,7 +85,7 @@ http { # Admin console location /graphql/admin/ { - expires 1m; # client-side caching, one minute for each API resource + expires 1m; add_header Cache-Control "public"; add_header Pragma public; proxy_http_version 1.1; @@ -89,21 +105,15 @@ http { } location /graphql/v1beta { + access_log /dev/stdout pokeapilogformat if=$only_post; include /ssl/cache.conf*; - # proxy_cache small; - # proxy_cache_valid 200 10d; - # proxy_cache_valid any 0; - # proxy_cache_methods POST; - # proxy_cache_key "$request_method$request_uri$request_body"; limit_req zone=graphqlDefaultLimit burst=100 nodelay; limit_req_status 429; - expires 30m; # client-side caching, one minute for each API resource + expires 30m; add_header Cache-Control "public"; add_header Pragma public; - # add_header X-Proxy-Cache $upstream_cache_status; proxy_hide_header Access-Control-Allow-Origin; add_header Access-Control-Allow-Origin *; - # add_header X-Cache-Date $upstream_http_date; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; @@ -115,7 +125,7 @@ http { } location /api/ { - expires 1m; # client-side caching, one minute for each API resource + expires 1m; add_header Cache-Control "public"; add_header Pragma public; proxy_set_header X-Real-IP $remote_addr; diff --git a/config/settings.py b/config/settings.py index 8213dd2e..4456a88a 100755 --- a/config/settings.py +++ b/config/settings.py @@ -99,6 +99,7 @@ INSTALLED_APPS = ( "corsheaders", "rest_framework", "cachalot", + "drf_spectacular", ) + CUSTOM_APPS @@ -116,6 +117,7 @@ REST_FRAMEWORK = { "DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.LimitOffsetPagination", "PAGE_SIZE": 20, "PAGINATE_BY": 20, + "DEFAULT_SCHEMA_CLASS": "drf_spectacular.openapi.AutoSchema", } @@ -136,3 +138,106 @@ TEMPLATES = [ ] DEFAULT_AUTO_FIELD = "django.db.models.AutoField" + +SPECTACULAR_SETTINGS = { + "TITLE": "PokéAPI", + "DESCRIPTION": """All the Pokémon data you'll ever need in one place, easily accessible through a modern free open-source RESTful API. + +## What is this? + +This is a full RESTful API linked to an extensive database detailing everything about the Pokémon main game series. + +We've covered everything from Pokémon to Berry Flavors. + +## Where do I start? + +We have awesome [documentation](https://pokeapi.co/docs/v2) on how to use this API. It takes minutes to get started. + +This API will always be publicly available and will never require any extensive setup process to consume. + +Created by [**Paul Hallett**(]https://github.com/phalt) and other [**PokéAPI contributors***](https://github.com/PokeAPI/pokeapi#contributing) around the world. Pokémon and Pokémon character names are trademarks of Nintendo. + """, + "SORT_OPERATIONS": False, + "SERVERS": [{"url": "https://pokeapi.co"}], + "EXTERNAL_DOCS": {"url": "https://pokeapi.co/docs/v2"}, + "VERSION": "2.7.0", + "SERVE_INCLUDE_SCHEMA": False, + "OAS_VERSION": "3.1.0", + "COMPONENT_SPLIT_REQUEST": True, + "TAGS": [ + { + "name": "pokemon", + "description": "Pokémon are the creatures that inhabit the world of the Pokémon games. They can be caught using Pokéballs and trained by battling with other Pokémon. Each Pokémon belongs to a specific species but may take on a variant which makes it differ from other Pokémon of the same species, such as base stats, available abilities and typings. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_(species)) for greater detail.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon", + }, + }, + { + "name": "evolution", + "description": "Evolution is a process in which a Pokémon changes into a different species of Pokémon.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/Evolution", + }, + }, + { + "name": "berries", + "description": "Berries can be soft or hard. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Category:Berries_by_firmness) for greater detail.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/Berry", + }, + }, + { + "name": "items", + "description": "An item is an object in the games which the player can pick up, keep in their bag, and use in some manner. They have various uses, including healing, powering up, helping catch Pokémon, or to access a new area.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/Item", + }, + }, + { + "name": "machines", + "description": "Machines are the representation of items that teach moves to Pokémon. They vary from version to version, so it is not certain that one specific TM or HM corresponds to a single Machine.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/TM", + }, + }, + { + "name": "location", + "description": "Locations that can be visited within the games. Locations make up sizable portions of regions, like cities or routes.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/List_of_locations_by_index_number", + }, + }, + { + "name": "contest", + "description": "Pokémon Contests are a type of competition often contrasted with Pokémon battles and held in Contest Halls", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_Contest", + }, + }, + { + "name": "moves", + "description": "Moves are the skills of Pokémon in battle. In battle, a Pokémon uses one move each turn. Some moves (including those learned by Hidden Machine) can be used outside of battle as well, usually for the purpose of removing obstacles or exploring new areas.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/List_of_locations_by_name", + }, + }, + {"name": "encounters"}, + { + "name": "games", + "description": "The Pokémon games are all video games in the Pokémon franchise.", + "externalDocs": { + "description": "Find more info here", + "url": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_games", + }, + }, + {"name": "utility"}, + ], +} diff --git a/config/wsgi.py b/config/wsgi.py index 9642109b..d246049d 100755 --- a/config/wsgi.py +++ b/config/wsgi.py @@ -13,6 +13,7 @@ middleware here, or combine a Django application with an application of another framework. """ + import os from django.core.wsgi import get_wsgi_application diff --git a/data/v2/build.py b/data/v2/build.py index 76561b22..cfabe10a 100644 --- a/data/v2/build.py +++ b/data/v2/build.py @@ -36,8 +36,16 @@ MEDIA_DIR = "{prefix}{{file_name}}".format( "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/", ) ) +SOUND_DIR = "{prefix}{{file_name}}".format( + prefix=os.environ.get( + "POKEAPI_CRIES_PREFIX", + "https://raw.githubusercontent.com/PokeAPI/cries/main/cries/", + ) +) IMAGE_DIR = os.getcwd() + "/data/v2/sprites/sprites/" +CRIES_DIR = os.getcwd() + "/data/v2/cries/cries/" RESOURCE_IMAGES = [] +RESOURCE_CRIES = [] for root, dirs, files in os.walk(IMAGE_DIR): for file in files: @@ -45,8 +53,20 @@ for root, dirs, files in os.walk(IMAGE_DIR): image_path = image_path.replace("\\", "/") # convert Windows-style path to Unix RESOURCE_IMAGES.append(image_path) +for root, dirs, files in os.walk(CRIES_DIR): + for file in files: + cry_path = os.path.join(root.replace(CRIES_DIR, ""), file) + cry_path = cry_path.replace("\\", "/") # convert Windows-style path to Unix + RESOURCE_CRIES.append(cry_path) -def file_path_or_none(file_name): + +def file_path_or_none(file_name, image_file=True): + if not image_file: + return ( + SOUND_DIR.format(file_name=file_name) + if file_name in RESOURCE_CRIES + else None + ) return ( MEDIA_DIR.format(file_name=file_name) if file_name in RESOURCE_IMAGES else None ) @@ -609,6 +629,45 @@ def _build_types(): build_generic((TypeEfficacyPast,), "type_efficacy_past.csv", csv_record_to_objects) + def csv_record_to_objects(info): + game_map = { + "generation-iii": [ + "colosseum", + "emerald", + "firered-leafgreen", + "ruby-saphire", + "xd", + ], + "generation-iv": ["diamond-pearl", "heartgold-soulsilver", "platinum"], + "generation-v": ["black-2-white-2", "black-white"], + "generation-vi": ["omega-ruby-alpha-sapphire", "x-y"], + "generation-vii": [ + "lets-go-pikachu-lets-go-eevee", + "sun-moon", + "ultra-sun-ultra-moon", + ], + "generation-viii": [ + "brilliant-diamond-and-shining-pearl", + "legends-arceus", + "sword-shield", + ], + "generation-ix": ["scarlet-violet"], + } + sprites = {} + for generation in game_map.keys(): + for game in game_map[generation]: + if generation not in sprites: + sprites[generation] = {} + sprites[generation][game] = { + "name_icon": file_path_or_none( + f"types/{generation}/{game}/{info[0]}.png" + ) + } + + yield TypeSprites(type_id=int(info[0]), sprites=sprites) + + build_generic((TypeSprites,), "types.csv", csv_record_to_objects) + ############# # CONTEST # @@ -1222,9 +1281,11 @@ def _build_locations(): id=int(info[0]), location_id=int(info[1]), game_index=int(info[2]), - name="{}-{}".format(location.name, info[3]) - if info[3] - else "{}-{}".format(location.name, "area"), + name=( + "{}-{}".format(location.name, info[3]) + if info[3] + else "{}-{}".format(location.name, "area") + ), ) build_generic((LocationArea,), "location_areas.csv", csv_record_to_objects) @@ -1931,6 +1992,26 @@ def _build_pokemons(): build_generic((PokemonSprites,), "pokemon.csv", csv_record_to_objects) + def try_cry_names(path, info, extension): + file_name = "%s.%s" % (info[0], extension) + return file_path_or_none(path + file_name, image_file=False) + + def csv_record_to_objects(info): + poke_cries = "pokemon" + latest = f"{poke_cries}/latest/" + legacy = f"{poke_cries}/legacy/" + cries = { + "latest": try_cry_names(latest, info, "ogg"), + "legacy": try_cry_names(legacy, info, "ogg"), + } + yield PokemonCries( + id=int(info[0]), + pokemon=Pokemon.objects.get(pk=int(info[0])), + cries=cries, + ) + + build_generic((PokemonCries,), "pokemon.csv", csv_record_to_objects) + def csv_record_to_objects(info): yield PokemonAbility( pokemon_id=int(info[0]), diff --git a/data/v2/cries b/data/v2/cries new file mode 160000 index 00000000..8584048d --- /dev/null +++ b/data/v2/cries @@ -0,0 +1 @@ +Subproject commit 8584048df8f55ee1c436da23b378316e9d416a9b diff --git a/data/v2/csv/ability_flavor_text.csv b/data/v2/csv/ability_flavor_text.csv index 20ae2b43..019148e2 100644 --- a/data/v2/csv/ability_flavor_text.csv +++ b/data/v2/csv/ability_flavor_text.csv @@ -1,17 +1,26 @@ ability_id,version_group_id,language_id,flavor_text +1,5,5,Repousse POKéMON sauvage. 1,5,9,Helps repel wild POKéMON. +1,6,5,Repousse POKéMON sauvage. 1,6,9,Helps repel wild POKéMON. +1,7,5,Repousse POKéMON sauvage. 1,7,9,Helps repel wild POKéMON. +1,8,5,La puanteur peut repousser les Pokémon sauvages. 1,8,9,"The stench helps keep wild Pokémon away." +1,9,5,La puanteur peut repousser les Pokémon sauvages. 1,9,9,"The stench helps keep wild Pokémon away." +1,10,5,La puanteur peut repousser les Pokémon sauvages. 1,10,9,"The stench helps keep wild Pokémon away." +1,11,5,La puanteur peut effrayer l'adversaire. 1,11,5,"La puanteur peut effrayer l’adversaire." 1,11,9,"The stench may cause the target to flinch." +1,13,5,La puanteur peut effrayer l'adversaire. +1,14,5,La puanteur peut effrayer l'adversaire. 1,14,9,"The stench may cause the target to flinch." 1,15,1,"くさくて あいてが @@ -34,6 +43,7 @@ the target to flinch." ひるむ ことがある。" 1,16,3,"악취 때문에 상대가 풀죽을 때가 있다." +1,16,5,La puanteur peut effrayer l'adversaire. 1,16,5,"La puanteur peut effrayer l’adversaire." 1,16,6,"Lässt den Gegner durch Gestank @@ -55,6 +65,7 @@ the target to flinch." 1,17,4,"發出臭氣, 在攻擊的時候, 有時會使對手畏縮。" +1,17,5,Le Pokémon émet une odeur si nauséabonde qu'il peut effrayer sa cible. 1,17,5,"Le Pokémon émet une odeur si nauséabonde qu’il peut effrayer sa cible." 1,17,6,"Lässt das Ziel beim Angriff eventuell durch Gestank @@ -80,6 +91,7 @@ may cause the target to flinch." 1,18,4,"發出臭氣, 在攻擊的時候, 有時會使對手畏縮。" +1,18,5,Le Pokémon émet une odeur si nauséabonde qu'il peut effrayer sa cible. 1,18,5,"Le Pokémon émet une odeur si nauséabonde qu’il peut effrayer sa cible." 1,18,6,"Lässt das Ziel beim Angriff eventuell durch Gestank @@ -130,6 +142,7 @@ may cause the target to flinch." 1,20,4,"發出臭氣, 在攻擊的時候, 有時會使對手畏縮。" +1,20,5,Le Pokémon émet une odeur si nauséabonde qu'il peut effrayer sa cible. 1,20,5,"Le Pokémon émet une odeur si nauséabonde qu’il peut effrayer sa cible." 1,20,6,"Lässt das Ziel beim Angriff eventuell durch Gestank @@ -146,6 +159,8 @@ may cause the target to flinch." 1,20,12,"通过释放臭臭的气味, 在攻击的时候, 有时会使对手畏缩。" +1,25,5,Le Pokémon émet une odeur si nauséabonde qu'il peut effrayer sa cible en l'attaquant. +1,25,9,"By releasing a stench when attacking, the Pokémon may cause the target to flinch." 2,5,9,Summons rain in battle. 2,6,9,Summons rain in battle. 2,7,9,Summons rain in battle. @@ -254,19 +269,30 @@ au combat." 天気を 雨に する。" 2,20,12,"出场时, 会将天气变为下雨。" +2,25,5,Le Pokémon invoque la pluie quand il entre au combat. +2,25,9,The Pokémon makes it rain when it enters a battle. +3,5,5,Améliore la VITESSE. 3,5,9,Gradually boosts SPEED. +3,6,5,Améliore la VITESSE. 3,6,9,Gradually boosts SPEED. +3,7,5,Améliore la VITESSE. 3,7,9,Gradually boosts SPEED. +3,8,5,La Vitesse du Pokémon augmente progressivement. 3,8,9,"The Pokémon’s Speed stat is gradually boosted." +3,9,5,La Vitesse du Pokémon augmente progressivement. 3,9,9,"The Pokémon’s Speed stat is gradually boosted." +3,10,5,La Vitesse du Pokémon augmente progressivement. 3,10,9,"Its Speed stat is gradually boosted." +3,11,5,La Vitesse du Pokémon augmente progressivement. 3,11,5,"La Vitesse du Pokémon augmente progressivement." 3,11,9,"Its Speed stat is gradually boosted." +3,13,5,La Vitesse du Pokémon augmente progressivement. +3,14,5,La Vitesse du Pokémon augmente progressivement. 3,14,9,"Its Speed stat is gradually boosted." 3,15,1,"ちょっとずつ @@ -288,6 +314,7 @@ gradually boosted." すばやく なっていく。" 3,16,3,"조금씩 스피드가 높아진다." +3,16,5,La Vitesse du Pokémon augmente progressivement. 3,16,5,"La Vitesse du Pokémon augmente progressivement." 3,16,6,Erhöht Initiative nach und nach. @@ -303,6 +330,7 @@ gradually boosted." 3,17,3,매 턴 스피드가 올라간다. 3,17,4,每一回合速度會變快。 3,17,5,La Vitesse du Pokémon augmente à chaque tour. +3,17,5,La Vitesse du Pokémon augmente à chaque tour. 3,17,6,Erhöht in jeder Runde die Initiative. 3,17,7,Aumenta la Velocidad en cada turno. 3,17,8,La Velocità aumenta a ogni turno. @@ -313,6 +341,7 @@ gradually boosted." 3,18,3,매 턴 스피드가 올라간다. 3,18,4,每一回合速度會變快。 3,18,5,La Vitesse du Pokémon augmente à chaque tour. +3,18,5,La Vitesse du Pokémon augmente à chaque tour. 3,18,6,Erhöht in jeder Runde die Initiative. 3,18,7,Aumenta la Velocidad en cada turno. 3,18,8,La Velocità aumenta a ogni turno. @@ -333,25 +362,37 @@ gradually boosted." 3,20,3,매 턴 스피드가 올라간다. 3,20,4,每一回合速度會變快。 3,20,5,La Vitesse du Pokémon augmente à chaque tour. +3,20,5,La Vitesse du Pokémon augmente à chaque tour. 3,20,6,Erhöht in jeder Runde die Initiative. 3,20,7,Aumenta su Velocidad en cada turno. 3,20,8,La Velocità aumenta a ogni turno. 3,20,9,Its Speed stat is boosted every turn. 3,20,11,毎ターン 素早さが 上がる。 3,20,12,每一回合速度会变快。 +3,25,5,La Vitesse du Pokémon augmente à chaque tour. +3,25,9,The Pokémon's Speed stat is boosted every turn. +4,5,5,Bloque les coups critiques. 4,5,9,Blocks critical hits. +4,6,5,Bloque les coups critiques. 4,6,9,Blocks critical hits. +4,7,5,Bloque les coups critiques. 4,7,9,Blocks critical hits. +4,8,5,Le Pokémon est protégé des coups critiques. 4,8,9,"The Pokémon is protected against critical hits." +4,9,5,Le Pokémon est protégé des coups critiques. 4,9,9,"The Pokémon is protected against critical hits." +4,10,5,Le Pokémon est protégé des coups critiques. 4,10,9,"The Pokémon is protected against critical hits." +4,11,5,Le Pokémon est protégé des coups critiques. 4,11,5,"Le Pokémon est protégé des coups critiques." 4,11,9,"The Pokémon is protected against critical hits." +4,13,5,Le Pokémon est protégé des coups critiques. +4,14,5,Le Pokémon est protégé des coups critiques. 4,14,9,"The Pokémon is protected against critical hits." 4,15,1,"あいての こうげきが @@ -372,6 +413,7 @@ from critical hits." きゅうしょに あたらない。" 4,16,3,"상대의 공격이 급소에 맞지 않는다." +4,16,5,Le Pokémon est protégé des coups critiques. 4,16,5,"Le Pokémon est protégé des coups critiques." 4,16,6,Wehrt gegnerische Volltreffer ab. @@ -390,6 +432,7 @@ from critical hits." 급소에 맞지 않는다." 4,17,4,"被堅硬的甲殼守護著, 不會被對手的攻擊擊中要害。" +4,17,5,Le Pokémon est protégé des coups critiques par une solide carapace. 4,17,5,"Le Pokémon est protégé des coups critiques par une solide carapace." 4,17,6,"Wehrt gegnerische Volltreffer mit einem harten @@ -412,6 +455,7 @@ che gli evita di subire brutti colpi." 급소에 맞지 않는다." 4,18,4,"被堅硬的甲殼守護著, 不會被對手的攻擊擊中要害。" +4,18,5,Le Pokémon est protégé des coups critiques par une solide carapace. 4,18,5,"Le Pokémon est protégé des coups critiques par une solide carapace." 4,18,6,"Wehrt gegnerische Volltreffer mit einem harten @@ -456,6 +500,7 @@ che gli evita di subire brutti colpi." 급소에 맞지 않는다." 4,20,4,"被堅硬的甲殼守護著, 不會被對手的攻擊擊中要害。" +4,20,5,Le Pokémon est protégé des coups critiques par une solide carapace. 4,20,5,"Le Pokémon est protégé des coups critiques par une solide carapace." 4,20,6,"Wehrt gegnerische Volltreffer mit einem harten @@ -470,6 +515,8 @@ che gli evita di subire brutti colpi." 急所に 当たらない。" 4,20,12,"被坚硬的甲壳守护着, 不会被对手的攻击击中要害。" +4,25,5,Le Pokémon est protégé des coups critiques\npar une solide carapace. +4,25,9,Hard armor protects the Pokémon from critical hits. 5,5,9,Negates 1-hit KO attacks. 5,6,9,Negates 1-hit KO attacks. 5,7,9,Negates 1-hit KO attacks. @@ -627,25 +674,37 @@ moves cannot knock it out, either." 5,20,12,"即使受到对手的招式攻击, 也不会被一击打倒。 一击必杀的招式也没有效果。" +5,25,5,Le Pokémon encaisse toujours au moins une attaque\ns’il a tous ses PV. Il est également immunisé contre\nles capacités pouvant mettre K.O. en un coup. +5,25,9,The Pokémon cannot be knocked out by a single hit as long as its HP is full. One-hit KO moves will also fail to knock it out. +6,5,5,Empêche auto-destruction. 6,5,9,Prevents self-destruction. +6,6,5,Empêche auto-destruction. 6,6,9,Prevents self-destruction. +6,7,5,Empêche auto-destruction. 6,7,9,Prevents self-destruction. +6,8,5,Empêche les combattants de s'autodétruire. 6,8,9,"Prevents combatants from self destructing." +6,9,5,Empêche les combattants de s'autodétruire. 6,9,9,"Prevents combatants from self destructing." +6,10,5,Empêche les combattants de s'autodétruire. 6,10,9,"Prevents combatants from self-destructing." +6,11,5,Empêche les combattants de s'autodétruire. 6,11,5,"Empêche les combattants de s’autodétruire." 6,11,9,"Prevents the use of self-destructing moves." +6,13,5,Empêche les combattants de s'autodétruire. +6,14,5,Empêche les combattants de s'autodétruire. 6,14,9,"Prevents the use of self-destructing moves." 6,15,1,"だれも ばくはつが できなくなる。" 6,15,3,"누구도 폭발 할 수 없게 된다." +6,15,5,"Le Pokémon augmente l'humidité de l'air, ce qui empêche tous les Pokémon d'utiliser des capacités explosives telles que Destruction." 6,15,5,"Empêche les combattants de s’autodétruire." 6,15,6,"Hält alle Pokémon davon ab, @@ -662,6 +721,8 @@ self-destructing moves." できなくなる。" 6,16,3,"누구도 폭발 할 수 없게 된다." +6,16,5,"Le Pokémon augmente l'humidité de l'air, ce qui empêche tous les Pokémon d'utiliser des capacités explosives telles que Destruction." +6,16,5,Empêche les combattants de s'autodétruire. 6,16,5,"Empêche les combattants de s’autodétruire." 6,16,6,"Hält alle Pokémon davon ab, @@ -682,6 +743,7 @@ self-destructing moves." 아무도 못 쓰게 한다." 6,17,4,"透過把周圍都弄濕, 使誰都無法使用自爆等爆炸類的招式。" +6,17,5,"Le Pokémon augmente l'humidité de l'air, ce qui empêche tous les Pokémon d'utiliser des capacités explosives telles que Destruction." 6,17,5,"Le Pokémon augmente l’humidité de l’air, ce qui empêche tous les Pokémon d’utiliser des capacités explosives telles que Destruction." @@ -708,6 +770,7 @@ Self-Destruct by dampening its surroundings." 아무도 못 쓰게 한다." 6,18,4,"透過把周圍都弄濕, 使誰都無法使用自爆等爆炸類的招式。" +6,18,5,"Le Pokémon augmente l'humidité de l'air, ce qui empêche tous les Pokémon d'utiliser des capacités explosives telles que Destruction." 6,18,5,"Le Pokémon augmente l’humidité de l’air, ce qui empêche tous les Pokémon d’utiliser des capacités explosives telles que Destruction." @@ -760,6 +823,7 @@ Self-Destruct, by dampening its surroundings." 아무도 못 쓰게 한다." 6,20,4,"透過把周圍都弄濕, 使誰都無法使用自爆等爆炸類的招式。" +6,20,5,"Le Pokémon augmente l'humidité de l'air, ce qui empêche tous les Pokémon d'utiliser des capacités explosives telles que Destruction." 6,20,5,"Le Pokémon augmente l’humidité de l’air, ce qui empêche tous les Pokémon d’utiliser des capacités explosives telles que Destruction." @@ -777,11 +841,18 @@ Self-Destruct, by dampening its surroundings." だれも 使えなくなる。" 6,20,12,"通过把周围都弄湿, 使谁都无法使用自爆等爆炸类的招式。" +6,25,5,"Le Pokémon augmente l'humidité de l'air, ce qui empêche tous les Pokémon d'utiliser des capacités explosives telles que Destruction." +6,25,9,"The Pokémon dampens its surroundings, preventing all Pokémon from using explosive moves such as Self-Destruct." +7,5,5,Empêche la paralysie. 7,5,9,Prevents paralysis. +7,6,5,Empêche la paralysie. 7,6,9,Prevents paralysis. +7,7,5,Empêche la paralysie. 7,7,9,Prevents paralysis. +7,8,5,Protège le Pokémon de la paralysie. 7,8,9,"The Pokémon is protected from paralysis." +7,9,5,Protège le Pokémon de la paralysie. 7,9,9,"The Pokémon is protected from paralysis." 7,10,9,"The Pokémon is protected @@ -796,6 +867,7 @@ from paralysis." ならない。" 7,15,3,"마비 상태가 되지 않는다." +7,15,5,"Le Pokémon s'est suffisamment échauffé, ce qui l'immunise contre la paralysie." 7,15,5,"Protège le Pokémon de la paralysie." 7,15,6,Verhindert Paralyse. @@ -810,6 +882,8 @@ from paralysis." ならない。" 7,16,3,"마비 상태가 되지 않는다." +7,16,5,Protège le Pokémon de la paralysie. +7,16,5,"Le Pokémon s'est suffisamment échauffé, ce qui l'immunise contre la paralysie." 7,16,5,"Protège le Pokémon de la paralysie." 7,16,6,Verhindert Paralyse. @@ -826,6 +900,7 @@ from paralysis." 마비 상태가 되지 않는다." 7,17,4,"因為身體柔軟, 不會陷入麻痺狀態。" +7,17,5,"Le Pokémon s'est suffisamment échauffé, ce qui l'immunise contre la paralysie." 7,17,5,"Le Pokémon s’est suffisamment échauffé, ce qui l’immunise contre la paralysie." 7,17,6,"Der flexible Körper des Pokémon schützt es vor @@ -845,6 +920,7 @@ di subire gli effetti della paralisi." 마비 상태가 되지 않는다." 7,18,4,"因為身體柔軟, 不會陷入麻痺狀態。" +7,18,5,"Le Pokémon s'est suffisamment échauffé, ce qui l'immunise contre la paralysie." 7,18,5,"Le Pokémon s’est suffisamment échauffé, ce qui l’immunise contre la paralysie." 7,18,6,"Der flexible Körper des Pokémon schützt es vor @@ -883,6 +959,7 @@ di subire gli effetti della paralisi." 마비 상태가 되지 않는다." 7,20,4,"因為身體柔軟, 不會陷入麻痺狀態。" +7,20,5,"Le Pokémon s'est suffisamment échauffé, ce qui l'immunise contre la paralysie." 7,20,5,"Le Pokémon s’est suffisamment échauffé, ce qui l’immunise contre la paralysie." 7,20,6,"Der flexible Körper des Pokémon schützt es vor @@ -896,25 +973,37 @@ di subire gli effetti della paralisi." まひ状態に ならない。" 7,20,12,"因为身体柔软, 不会变为麻痹状态。" +7,25,5,"Le Pokémon s'est suffisamment échauffé, ce qui l'immunise contre la paralysie." +7,25,9,The Pokémon's limber body prevents it from being paralyzed. +8,5,5,Evasion si tempête sable. 8,5,9,Ups evasion in a sandstorm. +8,6,5,Evasion si tempête sable. 8,6,9,Ups evasion in a sandstorm. +8,7,5,Evasion si tempête sable. 8,7,9,Ups evasion in a sandstorm. +8,8,5,Augmente l'esquive lors des tempêtes de sable. 8,8,9,"Boosts the Pokémon’s evasion in a sandstorm." +8,9,5,Augmente l'esquive lors des tempêtes de sable. 8,9,9,"Boosts the Pokémon’s evasion in a sandstorm." +8,10,5,Augmente l'esquive lors des tempêtes de sable. 8,10,9,"Boosts the Pokémon’s evasion in a sandstorm." +8,11,5,Augmente l'Esquive lors des tempêtes de sable. 8,11,5,"Augmente l’Esquive lors des tempêtes de sable." 8,11,9,"Boosts the Pokémon’s evasion in a sandstorm." +8,13,5,Augmente l'Esquive lors des tempêtes de sable. +8,14,5,Augmente l'Esquive lors des tempêtes de sable. 8,14,9,"Boosts the Pokémon’s evasion in a sandstorm." 8,15,1,"すなあらしで かいひりつが あがる。" 8,15,3,"모래바람으로 회피율이 올라간다." +8,15,5,Augmente l'Esquive du Pokémon lors des tempêtes de sable. 8,15,5,"Augmente l’Esquive lors des tempêtes de sable." 8,15,6,"Erhöht in Sandstürmen @@ -931,6 +1020,8 @@ evasion in a sandstorm." かいひりつが あがる。" 8,16,3,"모래바람으로 회피율이 올라간다." +8,16,5,Augmente l'Esquive lors des tempêtes de sable. +8,16,5,Augmente l'Esquive du Pokémon lors des tempêtes de sable. 8,16,5,"Augmente l’Esquive lors des tempêtes de sable." 8,16,6,"Erhöht in Sandstürmen @@ -949,6 +1040,7 @@ evasion in a sandstorm." 회피율이 올라간다." 8,17,4,"在沙暴中 閃避率會提高。" +8,17,5,Augmente l'Esquive du Pokémon lors des tempêtes de sable. 8,17,5,"Augmente l’Esquive du Pokémon lors des tempêtes de sable." 8,17,6,Erhöht in Sandstürmen den Fluchtwert. @@ -965,6 +1057,7 @@ de sable." 회피율이 올라간다." 8,18,4,"在沙暴中 閃避率會提高。" +8,18,5,Augmente l'Esquive du Pokémon lors des tempêtes de sable. 8,18,5,"Augmente l’Esquive du Pokémon lors des tempêtes de sable." 8,18,6,Erhöht in Sandstürmen den Fluchtwert. @@ -997,6 +1090,7 @@ de sable." 회피율이 올라간다." 8,20,4,"在沙暴中 閃避率會提高。" +8,20,5,Augmente l'Esquive du Pokémon lors des tempêtes de sable. 8,20,5,"Augmente l’Esquive du Pokémon lors des tempêtes de sable." 8,20,6,Erhöht in Sandstürmen den Ausweichwert. @@ -1007,25 +1101,37 @@ de sable." 回避率が 上がる。" 8,20,12,"在沙暴的时候, 闪避率会提高。" +8,25,5,Augmente l'Esquive du Pokémon lors des tempêtes de sable. +8,25,9,Boosts the Pokémon's evasiveness in a sandstorm. +9,5,5,Paralyse au toucher. 9,5,9,Paralyzes on contact. +9,6,5,Paralyse au toucher. 9,6,9,Paralyzes on contact. +9,7,5,Paralyse au toucher. 9,7,9,Paralyzes on contact. +9,8,5,Un contact avec le Pokémon peut paralyser. 9,8,9,"Contact with the Pokémon may cause paralysis." +9,9,5,Un contact avec le Pokémon peut paralyser. 9,9,9,"Contact with the Pokémon may cause paralysis." +9,10,5,Un contact avec le Pokémon peut paralyser. 9,10,9,"Contact with the Pokémon may cause paralysis." +9,11,5,Un contact avec le Pokémon peut paralyser. 9,11,5,"Un contact avec le Pokémon peut paralyser." 9,11,9,"Contact with the Pokémon may cause paralysis." +9,13,5,Un contact avec le Pokémon peut paralyser. +9,14,5,Un contact avec le Pokémon peut paralyser. 9,14,9,"Contact with the Pokémon may cause paralysis." 9,15,1,"さわった あいてを まひさせる ことがある。" 9,15,3,"접촉한 상대를 마비시킬 때가 있다." +9,15,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." 9,15,5,"Un contact avec le Pokémon peut paralyser." 9,15,6,Kann bei Berührung paralysieren. @@ -1041,6 +1147,8 @@ may cause paralysis." まひさせる ことがある。" 9,16,3,"접촉한 상대를 마비시킬 때가 있다." +9,16,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." +9,16,5,Un contact avec le Pokémon peut paralyser. 9,16,5,"Un contact avec le Pokémon peut paralyser." 9,16,6,Kann bei Berührung paralysieren. @@ -1060,6 +1168,7 @@ may cause paralysis." 마비시킬 때가 있다." 9,17,4,"身上帶有靜電, 有時會令接觸到的對手麻痺。" +9,17,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." 9,17,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." 9,17,6,"Kann bei Berührung durch statisch aufgeladenen @@ -1084,6 +1193,7 @@ contact with it may cause paralysis." 마비시킬 때가 있다." 9,18,4,"身上帶有靜電, 有時會令接觸到的對手麻痺。" +9,18,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." 9,18,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." 9,18,6,"Kann bei Berührung durch statisch aufgeladenen @@ -1132,6 +1242,7 @@ contact with it may cause paralysis." 마비시킬 때가 있다." 9,20,4,"身上帶有靜電, 有時會令接觸到的對手麻痺。" +9,20,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." 9,20,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." 9,20,6,"Kann bei Berührung durch statisch aufgeladenen Körper @@ -1148,25 +1259,37 @@ contact with it may cause paralysis." まひさせる ことがある。" 9,20,12,"身上带有静电, 有时会让接触到的对手麻痹。" +9,25,5,"Le Pokémon charge son corps en électricité statique, et tout contact avec lui peut paralyser." +9,25,9,The Pokémon is charged with static electricity and may paralyze attackers that make direct contact with it. +10,5,5,Change l'électricité en PV. 10,5,9,Turns electricity into HP. +10,6,5,Change l'électricité en PV. 10,6,9,Turns electricity into HP. +10,7,5,Change l'électricité en PV. 10,7,9,Turns electricity into HP. +10,8,5,Récupère des PV si touché par une capacité Electrik. 10,8,9,"Restores HP if hit by an Electric-type move." +10,9,5,Récupère des PV si touché par une capacité Electrik. 10,9,9,"Restores HP if hit by an Electric-type move." +10,10,5,Récupère des PV si touché par une capacité Electrik. 10,10,9,"Restores HP if hit by an Electric-type move." +10,11,5,Récupère des PV si touché par une capacité Electrik. 10,11,5,"Récupère des PV si touché par une capacité Électrik." 10,11,9,"Restores HP if hit by an Electric-type move." +10,14,5,Récupère des PV si touché par une capacité Electrik. 10,14,9,"Restores HP if hit by an Electric-type move." 10,15,1,"でんきを うけると かいふくする。" 10,15,3,"전기를 받으면 회복한다." +10,15,5,Récupère des PV si touché par une capacité Électrik. +10,15,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,15,5,"Récupère des PV si touché par une capacité Électrik." 10,15,6,"Treffer durch Elektro-Attacken @@ -1183,6 +1306,8 @@ Electric-type move." かいふくする。" 10,16,3,"전기를 받으면 회복한다." +10,16,5,Récupère des PV si touché par une capacité Électrik. +10,16,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,16,5,"Récupère des PV si touché par une capacité Électrik." 10,16,6,"Treffer durch Elektro-Attacken @@ -1201,6 +1326,7 @@ Electric-type move." 데미지를 받지 않고 회복한다." 10,17,4,"受到電屬性的招式攻擊時, 不會受到傷害,而是會回復。" +10,17,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,17,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,17,6,"Treffer durch Elektro-Attacken verursachen keinen @@ -1221,6 +1347,7 @@ of taking damage." 데미지를 받지 않고 회복한다." 10,18,4,"受到電屬性的招式攻擊時, 不會受到傷害,而是會回復。" +10,18,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,18,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,18,6,"Treffer durch Elektro-Attacken verursachen keinen @@ -1261,6 +1388,7 @@ of taking damage." 데미지를 받지 않고 회복한다." 10,20,4,"受到電屬性的招式攻擊時, 不會受到傷害,而是會回復。" +10,20,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,20,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." 10,20,6,"Treffer durch Elektro-Attacken verursachen keinen @@ -1275,25 +1403,37 @@ of taking damage." ダメージを 受けずに 回復する。" 10,20,12,"受到电属性的招式攻击时, 不会受到伤害,而是会回复。" +10,25,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et regagne des PV à la place." +10,25,9,"If hit by an Electric-type move, the Pokémon has its HP restored instead of taking damage." +11,5,5,Change l'eau en PV. 11,5,9,Changes water into HP. +11,6,5,Change l'eau en PV. 11,6,9,Changes water into HP. +11,7,5,Change l'eau en PV. 11,7,9,Changes water into HP. +11,8,5,Récupère des PV si touché par une capacité Eau. 11,8,9,"Restores HP if hit by a Water-type move." +11,9,5,Récupère des PV si touché par une capacité Eau. 11,9,9,"Restores HP if hit by a Water-type move." +11,10,5,Récupère des PV si touché par une capacité Eau. 11,10,9,"Restores HP if hit by a Water-type move." +11,11,5,Récupère des PV si touché par une capacité Eau. 11,11,5,"Récupère des PV si touché par une capacité Eau." 11,11,9,"Restores HP if hit by a Water-type move." +11,13,5,Récupère des PV si touché par une capacité Eau. +11,14,5,Récupère des PV si touché par une capacité Eau. 11,14,9,"Restores HP if hit by a Water-type move." 11,15,1,"みずを うけると かいふくする。" 11,15,3,"물을 받으면 회복한다." +11,15,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." 11,15,5,"Récupère des PV si touché par une capacité Eau." 11,15,6,"Treffer durch Wasser-Attacken @@ -1310,6 +1450,8 @@ Water-type move." かいふくする。" 11,16,3,"물을 받으면 회복한다." +11,16,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." +11,16,5,Récupère des PV si touché par une capacité Eau. 11,16,5,"Récupère des PV si touché par une capacité Eau." 11,16,6,"Treffer durch Wasser-Attacken @@ -1328,6 +1470,7 @@ Water-type move." 데미지를 받지 않고 회복한다." 11,17,4,"受到水屬性的招式攻擊時, 不會受到傷害,而是會回復。" +11,17,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." 11,17,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." 11,17,6,"Treffer durch Wasser-Attacken verursachen keinen @@ -1348,6 +1491,7 @@ taking damage." 데미지를 받지 않고 회복한다." 11,18,4,"受到水屬性的招式攻擊時, 不會受到傷害,而是會回復。" +11,18,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." 11,18,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." 11,18,6,"Treffer durch Wasser-Attacken verursachen keinen @@ -1388,6 +1532,7 @@ taking damage." 데미지를 받지 않고 회복한다." 11,20,4,"受到水屬性的招式攻擊時, 不會受到傷害,而是會回復。" +11,20,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." 11,20,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." 11,20,6,"Treffer durch Wasser-Attacken verursachen keinen @@ -1402,25 +1547,36 @@ taking damage." ダメージを 受けずに 回復する。" 11,20,12,"受到水属性的招式攻击时, 不会受到伤害,而是会回复。" +11,25,5,"Si le Pokémon est touché par une capacité Eau, il ne subit aucun dégât et regagne des PV à la place." +11,25,9,"If hit by a Water-type move, the Pokémon has its HP restored instead of taking damage." +12,5,5,Empêche l'attirance. 12,5,9,Prevents attraction. +12,6,5,Empêche l'attirance. 12,6,9,Prevents attraction. +12,7,5,Empêche l'attirance. 12,7,9,Prevents attraction. +12,8,5,Empêche le Pokémon de tomber amoureux. 12,8,9,"Prevents the Pokémon from becoming infatuated." +12,9,5,Empêche le Pokémon de tomber amoureux. 12,9,9,"Prevents the Pokémon from becoming infatuated." +12,10,5,Empêche le Pokémon de tomber amoureux. 12,10,9,"Prevents it from becoming infatuated." +12,11,5,Empêche le Pokémon de tomber amoureux. 12,11,5,"Empêche le Pokémon de tomber amoureux." 12,11,9,"Prevents it from becoming infatuated." +12,14,5,Empêche le Pokémon de tomber amoureux. 12,14,9,"Prevents it from becoming infatuated." 12,15,1,"メロメロや ちょうはつ じょうたいに ならない。" 12,15,3,"헤롱헤롱이나 도발 상태가 되지 않는다." +12,15,5,Immunise le Pokémon contre l'attraction ou la provocation. 12,15,5,"Immunise le Pokémon contre l’attraction ou la provocation." 12,15,6,"Verhindert, dass das Pokémon @@ -1437,6 +1593,7 @@ infatuated or falling for taunts." じょうたいに ならない。" 12,16,3,"헤롱헤롱이나 도발 상태가 되지 않는다." +12,16,5,Immunise le Pokémon contre l'attraction ou la provocation. 12,16,5,"Immunise le Pokémon contre l’attraction ou la provocation." 12,16,6,"Verhindert, dass das Pokémon @@ -1457,6 +1614,7 @@ infatuated or falling for taunts." 되지 않는다." 12,17,4,"感覺遲鈍, 不會陷入著迷和被挑釁狀態。" +12,17,5,"Le Pokémon est un grand benêt, ce qui l'immunise contre l'attraction ou la provocation." 12,17,5,"Le Pokémon est un grand benêt, ce qui l’immunise contre l’attraction ou la provocation." 12,17,6,"Das Pokémon ist so apathisch, dass es nicht betört @@ -1480,6 +1638,7 @@ being infatuated or falling for taunts." 되지 않는다." 12,18,4,"感覺遲鈍, 不會陷入著迷和被挑釁狀態。" +12,18,5,"Le Pokémon est un grand benêt, ce qui l'immunise contre l'attraction ou la provocation." 12,18,5,"Le Pokémon est un grand benêt, ce qui l’immunise contre l’attraction ou la provocation." 12,18,6,"Das Pokémon ist so apathisch, dass es nicht betört @@ -1526,6 +1685,7 @@ being infatuated or falling for taunts." 되지 않는다." 12,20,4,"感覺遲鈍, 不會陷入著迷和被挑釁狀態。" +12,20,5,"Le Pokémon est un grand benêt, ce qui l'immunise contre l'attraction ou la provocation." 12,20,5,"Le Pokémon est un grand benêt, ce qui l’immunise contre l’attraction ou la provocation." 12,20,6,"Das Pokémon ist so apathisch, dass es nicht betört oder @@ -1541,25 +1701,36 @@ being infatuated or falling for taunts." ならない。" 12,20,12,"因为感觉迟钝, 不会变为着迷和被挑衅状态。" +12,25,5,"Le Pokémon est un grand benêt, ce qui l'immunise contre l'attraction, la provocation ou l'intimidation." +12,25,9,"The Pokémon is oblivious, keeping it from being infatuated, falling for taunts, or being affected by Intimidate." +13,5,5,Ignore les effets du climat. 13,5,9,Negates weather effects. +13,6,5,Ignore les effets du climat. 13,6,9,Negates weather effects. 13,7,9,Negates weather effects. +13,8,5,Annule les effets du climat. 13,8,9,"Eliminates the effects of weather." +13,9,5,Annule les effets du climat. 13,9,9,"Eliminates the effects of weather." +13,10,5,Annule les effets du climat. 13,10,9,"Eliminates the effects of weather." +13,11,5,Annule les effets du climat. 13,11,5,"Annule les effets du climat." 13,11,9,"Eliminates the effects of weather." +13,13,5,Annule les effets du climat. +13,14,5,Annule les effets du climat. 13,14,9,"Eliminates the effects of weather." 13,15,1,"てんきの えいきょうが なくなる。" 13,15,3,"날씨의 영향이 없어진다." +13,15,5,Annule tous les effets liés à la météo. 13,15,5,Annule les effets du climat. 13,15,6,Hebt Wetter-Effekte auf. 13,15,7,"Anula los efectos del tiempo @@ -1574,6 +1745,8 @@ weather." なくなる。" 13,16,3,"날씨의 영향이 없어진다." +13,16,5,Annule tous les effets liés à la météo. +13,16,5,Annule les effets du climat. 13,16,5,Annule les effets du climat. 13,16,6,Hebt Wetter-Effekte auf. 13,16,7,"Anula los efectos del tiempo @@ -1589,6 +1762,7 @@ condizioni atmosferiche." 없어진다." 13,17,4,任何天氣的影響都會消失。 13,17,5,Annule tous les effets liés à la météo. +13,17,5,Annule tous les effets liés à la météo. 13,17,6,Hebt alle Wetter-Effekte auf. 13,17,7,Anula todos los efectos del tiempo atmosférico. 13,17,8,"Neutralizza gli effetti di tutte le condizioni @@ -1603,6 +1777,7 @@ atmosferiche." 없어진다." 13,18,4,任何天氣的影響都會消失。 13,18,5,Annule tous les effets liés à la météo. +13,18,5,Annule tous les effets liés à la météo. 13,18,6,Hebt alle Wetter-Effekte auf. 13,18,7,Anula todos los efectos del tiempo atmosférico. 13,18,8,"Neutralizza gli effetti di tutte le condizioni @@ -1631,6 +1806,7 @@ atmosferiche." 없어진다." 13,20,4,任何天氣的影響都會消失。 13,20,5,Annule tous les effets liés à la météo. +13,20,5,Annule tous les effets liés à la météo. 13,20,6,Hebt alle Wetter-Effekte auf. 13,20,7,Anula todos los efectos del tiempo atmosférico. 13,20,8,"Neutralizza gli effetti di tutte le condizioni @@ -1639,19 +1815,30 @@ atmosferiche." 13,20,11,"あらゆる 天気の 影響が なくなって しまう。" 13,20,12,任何天气的影响都会消失。 +13,25,5,Annule tous les effets liés à la météo. +13,25,9,Eliminates the effects of weather. +14,5,5,Augmente la précision. 14,5,9,Raises accuracy. +14,6,5,Augmente la précision. 14,6,9,Raises accuracy. +14,7,5,Augmente la précision. 14,7,9,Raises accuracy. +14,8,5,Augmente la précision du Pokémon. 14,8,9,"The Pokémon’s accuracy is boosted." +14,9,5,Augmente la précision du Pokémon. 14,9,9,"The Pokémon’s accuracy is boosted." +14,10,5,Augmente la précision du Pokémon. 14,10,9,"The Pokémon’s accuracy is boosted." +14,11,5,Augmente la précision du Pokémon. 14,11,5,"Augmente la Précision du Pokémon." 14,11,9,"The Pokémon’s accuracy is boosted." +14,13,5,Augmente la précision du Pokémon. +14,14,5,Augmente la précision du Pokémon. 14,14,9,"The Pokémon’s accuracy is boosted." 14,15,1,"わざの めいちゅうりつが @@ -1673,6 +1860,7 @@ del Pokémon." あがる。" 14,16,3,"기술의 명중률이 올라간다." +14,16,5,Augmente la précision du Pokémon. 14,16,5,"Augmente la Précision du Pokémon." 14,16,6,"Steigert die Genauigkeit @@ -1690,6 +1878,7 @@ del Pokémon." 기술의 명중률이 올라간다." 14,17,4,"因為擁有複眼, 會提高招式的命中率。" +14,17,5,Les yeux à facettes du Pokémon augmentent sa Précision. 14,17,5,"Les yeux à facettes du Pokémon augmentent sa Précision." 14,17,6,Erhöht die Genauigkeit von Attacken. @@ -1707,6 +1896,7 @@ occhi composti." 기술의 명중률이 올라간다." 14,18,4,"因為擁有複眼, 會提高招式的命中率。" +14,18,5,Les yeux à facettes du Pokémon augmentent sa Précision. 14,18,5,"Les yeux à facettes du Pokémon augmentent sa Précision." 14,18,6,Erhöht die Genauigkeit von Attacken. @@ -1741,6 +1931,7 @@ occhi composti." 기술의 명중률이 올라간다." 14,20,4,"因為擁有複眼, 會提高招式的命中率。" +14,20,5,Les yeux à facettes du Pokémon augmentent sa Précision. 14,20,5,"Les yeux à facettes du Pokémon augmentent sa Précision." 14,20,6,Erhöht die Genauigkeit von Attacken. @@ -1752,25 +1943,35 @@ occhi composti." 技の 命中率が 上がる。" 14,20,12,"因为拥有复眼, 招式的命中率会提高。" +14,25,5,Les yeux à facettes du Pokémon augmentent la Précision de ses capacités. +14,25,9,The Pokémon's compound eyes boost its accuracy. +15,5,5,Empêche de s'endormir. 15,5,9,Prevents sleep. +15,6,5,Empêche de s'endormir. 15,6,9,Prevents sleep. +15,7,5,Empêche de s'endormir. 15,7,9,Prevents sleep. +15,8,5,Empêche de s'endormir. 15,8,9,"Prevents the Pokémon from falling asleep." 15,9,9,"Prevents the Pokémon from falling asleep." 15,10,9,"Prevents the Pokémon from falling asleep." +15,11,5,Empêche de s'endormir. 15,11,5,"Empêche le Pokémon de s’endormir." 15,11,9,"Prevents the Pokémon from falling asleep." +15,14,5,Empêche de s'endormir. 15,14,9,"Prevents the Pokémon from falling asleep." 15,15,1,"ねむり じょうたいに ならない。" 15,15,3,"잠듦 상태가 되지 않는다." +15,15,5,Le Pokémon est incapable de dormir. +15,15,5,Empêche de s'endormir. 15,15,5,"Empêche le Pokémon de s’endormir." 15,15,6,Verhindert Einschlafen. @@ -1785,6 +1986,8 @@ from falling asleep." ならない。" 15,16,3,"잠듦 상태가 되지 않는다." +15,16,5,Le Pokémon est incapable de dormir. +15,16,5,Empêche de s'endormir. 15,16,5,"Empêche le Pokémon de s’endormir." 15,16,6,Verhindert Einschlafen. @@ -1802,6 +2005,7 @@ from falling asleep." 15,17,4,"因為擁有不會睡覺的體質, 所以不會陷入睡眠狀態。" 15,17,5,Le Pokémon est incapable de dormir. +15,17,5,Le Pokémon est incapable de dormir. 15,17,6,Verhindert Einschlafen. 15,17,7,Su resistencia al sueño le impide quedarse dormido. 15,17,8,"Il Pokémon soffre d’insonnia e non può finire @@ -1819,6 +2023,7 @@ fall asleep." 15,18,4,"因為擁有不會睡覺的體質, 所以不會陷入睡眠狀態。" 15,18,5,Le Pokémon est incapable de dormir. +15,18,5,Le Pokémon est incapable de dormir. 15,18,6,Verhindert Einschlafen. 15,18,7,Su resistencia al sueño le impide quedarse dormido. 15,18,8,"Il Pokémon soffre d’insonnia e non può finire @@ -1853,15 +2058,18 @@ fall asleep." 15,20,4,"因為有著睡不著的體質, 所以不會陷入睡眠狀態。" 15,20,5,Le Pokémon est incapable de dormir. +15,20,5,Le Pokémon est incapable de dormir. 15,20,6,Verhindert Einschlafen. 15,20,7,Su resistencia al sueño le impide quedarse dormido. 15,20,8,Il Pokémon soffre d’insonnia e non può addormentarsi. 15,20,9,"The Pokémon is suffering from insomnia and cannot fall asleep." +15,20,9,The Pokémon's insomnia prevents it from falling asleep. 15,20,11,"眠れない 体質 なので ねむり状態に ならない。" 15,20,12,"因为有着睡不着的体质, 所以不会陷入睡眠状态。" +15,25,5,Le Pokémon est incapable de dormir. 16,5,9,Changes type to foe’s move. 16,6,9,Changes type to foe’s move. 16,7,9,Changes type to foe’s move. @@ -1984,19 +2192,29 @@ used on it." 自分の タイプが 変化 する。" 16,20,12,"自己的属性会变为 从对手处所受招式的属性。" +16,25,5,"Lorsque le Pokémon est touché par une capacité,\nil prend le type de celle-ci." +17,5,5,Empêche l'empoisonnement. 17,5,9,Prevents poisoning. +17,6,5,Empêche l'empoisonnement. 17,6,9,Prevents poisoning. +17,7,5,Empêche l'empoisonnement. 17,7,9,Prevents poisoning. +17,8,5,Empêche le Pokémon d'être empoisonné. 17,8,9,"Prevents the Pokémon from getting poisoned." +17,9,5,Empêche le Pokémon d'être empoisonné. 17,9,9,"Prevents the Pokémon from getting poisoned." +17,10,5,Empêche le Pokémon d'être empoisonné. 17,10,9,"Prevents the Pokémon from getting poisoned." +17,11,5,Empêche le Pokémon d'être empoisonné. 17,11,5,"Empêche le Pokémon d’être empoisonné." 17,11,9,"Prevents the Pokémon from getting poisoned." +17,13,5,Empêche le Pokémon d'être empoisonné. +17,14,5,Empêche le Pokémon d'être empoisonné. 17,14,9,"Prevents the Pokémon from getting poisoned." 17,15,1,"どく じょうたいに @@ -2017,6 +2235,7 @@ from getting poisoned." ならない。" 17,16,3,"독 상태가 되지 않는다." +17,16,5,Empêche le Pokémon d'être empoisonné. 17,16,5,"Empêche le Pokémon d’être empoisonné." 17,16,6,Verhindert Vergiftungen. @@ -2033,6 +2252,7 @@ from getting poisoned." 독 상태가 되지 않는다." 17,17,4,"因為體內擁有免疫能力, 不會陷入中毒狀態。" +17,17,5,Le Pokémon est naturellement immunisé contre toute forme de poison. 17,17,5,"Le Pokémon est naturellement immunisé contre toute forme de poison." 17,17,6,"Das starke Immunsystem des Pokémon verhindert @@ -2052,6 +2272,7 @@ getting poisoned." 독 상태가 되지 않는다." 17,18,4,"因為體內擁有免疫能力, 不會陷入中毒狀態。" +17,18,5,Le Pokémon est naturellement immunisé contre toute forme de poison. 17,18,5,"Le Pokémon est naturellement immunisé contre toute forme de poison." 17,18,6,"Das starke Immunsystem des Pokémon verhindert @@ -2090,6 +2311,7 @@ getting poisoned." 독 상태가 되지 않는다." 17,20,4,"因為體內擁有免疫能力, 不會陷入中毒狀態。" +17,20,5,Le Pokémon est naturellement immunisé contre toute forme de poison. 17,20,5,"Le Pokémon est naturellement immunisé contre toute forme de poison." 17,20,6,"Das starke Immunsystem des Pokémon verhindert @@ -2103,25 +2325,37 @@ getting poisoned." どく状態に ならない。" 17,20,12,"因为体内拥有免疫能力, 不会变为中毒状态。" +17,25,5,Le Pokémon est naturellement immunisé\ncontre toute forme de poison. +17,25,9,The Pokémon's immune system prevents it from being poisoned. +18,5,5,Puissance monte si brûlé. 18,5,9,Powers up if hit by fire. +18,6,5,Puissance monte si brûlé. 18,6,9,Powers up if hit by fire. +18,7,5,Puissance monte si brûlé. 18,7,9,Powers up if hit by fire. +18,8,5,Booste capacités Feu si touché par attaques Feu. 18,8,9,"Powers up Fire-type moves if hit by a fire move." +18,9,5,Booste capacités Feu si touché par attaques Feu. 18,9,9,"Powers up Fire-type moves if hit by a fire move." +18,10,5,Booste capacités Feu si touché par attaques Feu. 18,10,9,"It powers up Fire-type moves if it’s hit by one." +18,11,5,Booste capacités Feu si touché par attaques Feu. 18,11,5,"Booste capacités Feu si touché par attaques Feu." 18,11,9,"It powers up Fire-type moves if it’s hit by one." +18,13,5,Booste capacités Feu si touché par attaques Feu. +18,14,5,Booste capacités Feu si touché par attaques Feu. 18,14,9,"It powers up Fire-type moves if it’s hit by one." 18,15,1,"ほのおを うけると ほのおわざが つよくなる。" 18,15,3,"불꽃을 받으면 불꽃 기술이 강해진다." +18,15,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." 18,15,5,"Booste les capacités Feu si touché par attaque Feu." 18,15,6,"Verstärkt Feuer-Attacken, wenn @@ -2138,6 +2372,8 @@ type moves if it’s hit by one." ほのおわざが つよくなる。" 18,16,3,"불꽃을 받으면 불꽃 기술이 강해진다." +18,16,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." +18,16,5,Booste capacités Feu si touché par attaques Feu. 18,16,5,"Booste les capacités Feu si touché par attaque Feu." 18,16,6,"Verstärkt Feuer-Attacken, wenn @@ -2159,6 +2395,7 @@ Fire-type moves if it’s hit by one." 18,17,4,"受到火屬性的招式攻擊時, 吸收火焰,讓自己使出的 火屬性招式變強。" +18,17,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." 18,17,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." @@ -2186,6 +2423,7 @@ by one." 18,18,4,"受到火屬性的招式攻擊時, 吸收火焰,讓自己使出的 火屬性招式變強。" +18,18,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." 18,18,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." @@ -2240,6 +2478,7 @@ by one." 18,20,4,"受到火屬性的招式攻擊時, 吸收火焰,讓自己使出的 火屬性招式變強。" +18,20,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." 18,20,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." @@ -2258,25 +2497,37 @@ by one." 18,20,12,"受到火属性的招式攻击时, 吸收火焰,自己使出的 火属性招式会变强。" +18,25,5,"Lorsque le Pokémon est touché par une capacité de type Feu, il absorbe la chaleur pour renforcer ses propres capacités Feu." +18,25,9,"If hit by a Fire-type move, the Pokémon absorbs the flames and uses them to power up its own Fire-type moves." +19,5,5,Empêche le cumul d'effets. 19,5,9,Prevents added effects. +19,6,5,Empêche le cumul d'effets. 19,6,9,Prevents added effects. +19,7,5,Empêche le cumul d'effets. 19,7,9,Prevents added effects. +19,8,5,Annule les effets cumulés d'une attaque ennemie. 19,8,9,"Blocks the added effects of attacks taken." +19,9,5,Annule les effets cumulés d'une attaque ennemie. 19,9,9,"Blocks the added effects of attacks taken." +19,10,5,Annule les effets cumulés d'une attaque ennemie. 19,10,9,"Blocks the added effects of attacks taken." +19,11,5,Annule les effets cumulés d'une attaque ennemie. 19,11,5,"Annule les effets cumulés d’une attaque ennemie." 19,11,9,"Blocks the added effects of attacks taken." +19,13,5,Annule les effets cumulés d'une attaque ennemie. +19,14,5,Annule les effets cumulés d'une attaque ennemie. 19,14,9,"Blocks the added effects of attacks taken." 19,15,1,"わざの ついかこうかを うけない。" 19,15,3,"기술의 추가 효과를 받지 않는다." +19,15,5,Le Pokémon dispose d'un écran naturel qui le protège des effets additionnels des attaques ennemies. 19,15,5,"Annule les effets cumulés d’une attaque ennemie." 19,15,6,"Blockiert Zusatz-Effekte @@ -2293,6 +2544,8 @@ of attacks taken." うけない。" 19,16,3,"기술의 추가 효과를 받지 않는다." +19,16,5,Le Pokémon dispose d'un écran naturel qui le protège des effets additionnels des attaques ennemies. +19,16,5,Annule les effets cumulés d'une attaque ennemie. 19,16,5,"Annule les effets cumulés d’une attaque ennemie." 19,16,6,"Blockiert Zusatz-Effekte @@ -2311,6 +2564,7 @@ of attacks taken." 기술의 추가 효과를 받지 않게 된다." 19,17,4,"被鱗粉守護著, 不會受到招式的追加效果影響。" +19,17,5,Le Pokémon dispose d'un écran naturel qui le protège des effets additionnels des attaques ennemies. 19,17,5,"Le Pokémon dispose d’un écran naturel qui le protège des effets additionnels des attaques ennemies." @@ -2332,6 +2586,7 @@ attacks taken." 기술의 추가 효과를 받지 않게 된다." 19,18,4,"被鱗粉守護著, 不會受到招式的追加效果影響。" +19,18,5,Le Pokémon dispose d'un écran naturel qui le protège des effets additionnels des attaques ennemies. 19,18,5,"Le Pokémon dispose d’un écran naturel qui le protège des effets additionnels des attaques ennemies." @@ -2374,6 +2629,7 @@ attacks taken." 기술의 추가 효과를 받지 않게 된다." 19,20,4,"被鱗粉守護著, 不會受到招式的追加效果影響。" +19,20,5,Le Pokémon dispose d'un écran naturel qui le protège des effets additionnels des attaques ennemies. 19,20,5,"Le Pokémon dispose d’un écran naturel qui le protège des effets additionnels des attaques ennemies." 19,20,6,"Blockiert durch Puder die Zusatzeffekte gegnerischer @@ -2388,9 +2644,15 @@ attacks taken." 技の 追加効果を 受けなくなる。" 19,20,12,"被鳞粉守护着, 不会受到招式的追加效果影响。" +19,25,5,Le Pokémon dispose d'un écran naturel qui le protège des effets additionnels des attaques ennemies. +19,25,9,Protective dust shields the Pokémon from the additional effects of moves. +20,5,5,Empêche la confusion. 20,5,9,Prevents confusion. +20,6,5,Empêche la confusion. 20,6,9,Prevents confusion. +20,7,5,Empêche la confusion. 20,7,9,Prevents confusion. +20,8,5,Empêche la confusion. 20,8,9,"Prevents the Pokémon from becoming confused." 20,9,9,"Prevents the Pokémon @@ -2398,8 +2660,10 @@ from becoming confused." 20,10,9,"Prevents the Pokémon from becoming confused." 20,11,5,Empêche la confusion. +20,11,5,Empêche la confusion. 20,11,9,"Prevents the Pokémon from becoming confused." +20,14,5,Empêche la confusion. 20,14,9,"Prevents the Pokémon from becoming confused." 20,15,1,"こんらん じょうたいに @@ -2407,6 +2671,7 @@ from becoming confused." 20,15,3,"혼란 상태가 되지 않는다." 20,15,5,Empêche la confusion. +20,15,5,Empêche la confusion. 20,15,6,Verhindert Verwirrung. 20,15,7,Evita ser confundido. 20,15,8,"Impedisce al Pokémon @@ -2420,6 +2685,7 @@ from becoming confused." 20,16,3,"혼란 상태가 되지 않는다." 20,16,5,Empêche la confusion. +20,16,5,Empêche la confusion. 20,16,6,Verhindert Verwirrung. 20,16,7,Evita ser confundido. 20,16,8,"Impedisce al Pokémon @@ -2434,6 +2700,7 @@ from becoming confused." 혼란 상태가 되지 않는다." 20,17,4,"因為我行我素, 不會陷入混亂狀態。" +20,17,5,"Le Pokémon vit sa vie à son propre rythme, ce qui l'immunise contre la confusion." 20,17,5,"Le Pokémon vit sa vie à son propre rythme, ce qui l’immunise contre la confusion." 20,17,6,"Das Pokémon lässt sich nicht aus der Ruhe bringen @@ -2454,6 +2721,7 @@ it from becoming confused." 혼란 상태가 되지 않는다." 20,18,4,"因為我行我素, 不會陷入混亂狀態。" +20,18,5,"Le Pokémon vit sa vie à son propre rythme, ce qui l'immunise contre la confusion." 20,18,5,"Le Pokémon vit sa vie à son propre rythme, ce qui l’immunise contre la confusion." 20,18,6,"Das Pokémon lässt sich nicht aus der Ruhe bringen @@ -2494,6 +2762,7 @@ it from becoming confused." 혼란 상태가 되지 않는다." 20,20,4,"因為我行我素, 不會陷入混亂狀態。" +20,20,5,"Le Pokémon vit sa vie à son propre rythme, ce qui l'immunise contre la confusion." 20,20,5,"Le Pokémon vit sa vie à son propre rythme, ce qui l’immunise contre la confusion." 20,20,6,"Das Pokémon lässt sich nicht aus der Ruhe bringen und @@ -2508,25 +2777,36 @@ it from becoming confused." こんらん状態に ならない。" 20,20,12,"因为我行我素, 不会变为混乱状态。" +20,25,5,"Le Pokémon vit sa vie à son propre rythme, ce qui l'immunise contre la confusion et l'intimidation." +20,25,9,"The Pokémon sticks to its own tempo, preventing it from becoming confused or being affected by Intimidate." +21,5,5,Fixe solidement le corps. 21,5,9,Firmly anchors the body. +21,6,5,Fixe solidement le corps. 21,6,9,Firmly anchors the body. +21,7,5,Fixe solidement le corps. 21,7,9,Firmly anchors the body. +21,8,5,Annule les cap. forçant à changer de Pokémon. 21,8,9,"Negates moves that force switching out." +21,9,5,Annule les cap. forçant à changer de Pokémon. 21,9,9,"Negates moves that force switching out." +21,10,5,Annule les cap. forçant à changer de Pokémon. 21,10,9,"Negates foes’ moves that force switching out." +21,11,5,Annule les cap. et obj. qui font changer de Pokémon. 21,11,5,"Annule les cap. et obj. qui font changer de Pokémon." 21,11,9,"Negates all moves that force switching out." +21,14,5,Annule les cap. et obj. qui font changer de Pokémon. 21,14,9,"Negates all moves that force switching out." 21,15,1,"いれかえさせる わざや どうぐが きかない。" 21,15,3,"교체시키는 기술이나 도구의 효과를 받지 않는다." +21,15,5,Annule les capacités ou objets qui font changer de Pokémon. 21,15,5,"Annule les capacités ou objets qui font changer de Pokémon." 21,15,6,"Blockt Attacken und Items, @@ -2543,6 +2823,7 @@ that force switching out." どうぐが きかない。" 21,16,3,"교체시키는 기술이나 도구의 효과를 받지 않는다." +21,16,5,Annule les capacités ou objets qui font changer de Pokémon. 21,16,5,"Annule les capacités ou objets qui font changer de Pokémon." 21,16,6,"Blockt Attacken und Items, @@ -2563,6 +2844,7 @@ that force switching out." 기술이나 도구의 효과를 발휘하지 못하게 한다." 21,17,4,"用吸盤將自己牢牢吸附在地面上, 讓替換寶可夢的招式和道具失效。" +21,17,5,"Le Pokémon est solidement fixé au sol, ce qui le protège des capacités ou objets qui font changer de Pokémon." 21,17,5,"Le Pokémon est solidement fixé au sol, ce qui le protège des capacités ou objets qui font changer de Pokémon." @@ -2590,6 +2872,7 @@ switching out." 기술이나 도구의 효과를 발휘하지 못하게 한다." 21,18,4,"用吸盤將自己牢牢吸附在地面上, 讓替換寶可夢的招式和道具失效。" +21,18,5,"Le Pokémon est solidement fixé au sol, ce qui le protège des capacités ou objets qui font changer de Pokémon." 21,18,5,"Le Pokémon est solidement fixé au sol, ce qui le protège des capacités ou objets qui font changer de Pokémon." @@ -2644,6 +2927,7 @@ switching out." 기술이나 도구의 효과를 발휘하지 못하게 한다." 21,20,4,"用吸盤將自己牢牢吸附在地面上, 讓替換寶可夢的招式和道具失效。" +21,20,5,"Le Pokémon est solidement fixé au sol, ce qui le protège des capacités ou objets qui font changer de Pokémon." 21,20,5,"Le Pokémon est solidement fixé au sol, ce qui le protège des capacités ou objets qui font changer de Pokémon." 21,20,6,"Blockt Attacken und Items, die Pokémon austauschen, @@ -2660,24 +2944,36 @@ switching out." 技や 道具が 効かなくなる。" 21,20,12,"用吸盘牢牢贴在地面上, 让替换宝可梦的招式和道具无效。" +21,27,5,"Le Pokémon est solidement fixé au sol par des\nventouses, ce qui le protège des capacités ou\nobjets qui font changer de Pokémon." +21,27,9,The Pokémon uses suction cups to stay in one spot. This protects it from moves and items that would force it to switch out. +22,5,5,Baisse l'ATTAQUE ennemie. 22,5,9,Lowers the foe’s ATTACK. +22,6,5,Baisse l'ATTAQUE ennemie. 22,6,9,Lowers the foe’s ATTACK. +22,7,5,Baisse l'ATTAQUE ennemie. 22,7,9,Lowers the foe’s ATTACK. +22,8,5,Baisse l'Attaque ennemie. 22,8,9,"Lowers the foe’s Attack stat." +22,9,5,Baisse l'Attaque ennemie. 22,9,9,"Lowers the foe’s Attack stat." +22,10,5,Baisse l'Attaque ennemie. 22,10,9,"Lowers the foe’s Attack stat." +22,11,5,Baisse l'Attaque ennemie. 22,11,5,Baisse l’Attaque ennemie. 22,11,9,"Lowers the foe’s Attack stat." +22,13,5,Baisse l'Attaque ennemie. +22,14,5,Baisse l'Attaque ennemie. 22,14,9,"Lowers the foe’s Attack stat." 22,15,1,"あいての こうげきを さげる。" 22,15,3,"상대의 공격을 떨어뜨린다." +22,15,5,"Le Pokémon rugit lorsqu'il arrive au combat, ce qui intimide l'ennemi et baisse son Attaque." 22,15,5,Baisse l’Attaque ennemie. 22,15,6,Senkt Angriff des Gegners. 22,15,7,Baja el Ataque del rival. @@ -2691,6 +2987,8 @@ Attack stat." さげる。" 22,16,3,"상대의 공격을 떨어뜨린다." +22,16,5,"Le Pokémon rugit lorsqu'il arrive au combat, ce qui intimide l'ennemi et baisse son Attaque." +22,16,5,Baisse l'Attaque ennemie. 22,16,5,Baisse l’Attaque ennemie. 22,16,6,Senkt Angriff des Gegners. 22,16,7,Baja el Ataque del rival. @@ -2709,6 +3007,7 @@ Attack stat." 22,17,4,"出場時威嚇對手, 使其退縮, 從而降低對手的攻擊。" +22,17,5,"Le Pokémon rugit lorsqu'il arrive au combat, ce qui intimide l'ennemi et baisse son Attaque." 22,17,5,"Le Pokémon rugit lorsqu’il arrive au combat, ce qui intimide l’ennemi et baisse son Attaque." 22,17,6,"Senkt den Angriff der Gegner, indem es sie gleich zu @@ -2735,6 +3034,7 @@ entering battle, lowering their Attack stat." 22,18,4,"出場時威嚇對手, 使其退縮, 從而降低對手的攻擊。" +22,18,5,"Le Pokémon rugit lorsqu'il arrive au combat, ce qui intimide l'ennemi et baisse son Attaque." 22,18,5,"Le Pokémon rugit lorsqu’il arrive au combat, ce qui intimide l’ennemi et baisse son Attaque." 22,18,6,"Senkt den Angriff der Gegner, indem es sie gleich zu @@ -2787,6 +3087,7 @@ entering battle, lowering their Attack stat." 22,20,4,"出場時威嚇對手, 使其退縮, 從而降低對手的攻擊。" +22,20,5,"Le Pokémon rugit lorsqu'il arrive au combat, ce qui intimide l'ennemi et baisse son Attaque." 22,20,5,"Le Pokémon rugit lorsqu’il arrive au combat, ce qui intimide l’ennemi et baisse son Attaque." 22,20,6,"Senkt den Angriff der Gegner, indem es sie gleich zu @@ -2804,8 +3105,13 @@ entering battle, lowering their Attack stat." 22,20,12,"出场时威吓对手, 让其退缩, 降低对手的攻击。" +22,25,5,"Le Pokémon rugit lorsqu'il arrive au combat, ce qui intimide l'ennemi et baisse son Attaque." +22,25,9,"When the Pokémon enters a battle, it intimidates opposing Pokémon and makes them cower, lowering their Attack stats." +23,5,5,Empêche la fuite ennemie. 23,5,9,Prevents the foe’s escape. +23,6,5,Empêche la fuite ennemie. 23,6,9,Prevents the foe’s escape. +23,7,5,Empêche la fuite ennemie. 23,7,9,Prevents the foe’s escape. 23,8,9,"Prevents the foe from escaping." @@ -2852,6 +3158,7 @@ from escaping." 23,17,4,"踩住對手的影子 使其無法逃走或替換。" 23,17,5,Empêche le Pokémon ennemi de quitter le combat. +23,17,5,Empêche le Pokémon ennemi de quitter le combat. 23,17,6,"Hindert den Gegner an der Flucht beziehungsweise am Auswechseln, indem es ihm den Weg versperrt." 23,17,7,Evita que el enemigo huya o sea cambiado por otro. @@ -2870,6 +3177,7 @@ shadow to prevent it from escaping." 23,18,4,"踩住對手的影子 使其無法逃走或替換。" 23,18,5,Empêche le Pokémon ennemi de quitter le combat. +23,18,5,Empêche le Pokémon ennemi de quitter le combat. 23,18,6,"Hindert den Gegner an der Flucht beziehungsweise am Auswechseln, indem es ihm den Weg versperrt." 23,18,7,Evita que el enemigo huya o sea cambiado por otro. @@ -2905,6 +3213,7 @@ shadow to prevent it from escaping." 도망치거나 교체할 수 없게 한다." 23,20,4,"踩住對手的影子 使其無法逃走或替換。" +23,20,5,Empêche le Pokémon ennemi de quitter le combat. 23,20,5,Empêche les Pokémon ennemis de quitter le combat. 23,20,6,"Hindert Gegner an der Flucht beziehungsweise am Auswechseln, indem es ihnen den Weg versperrt." @@ -2917,25 +3226,37 @@ shadow to prevent it from escaping." 逃げたり 交代 できなくする。" 23,20,12,"踩住对手的影子 使其无法逃走或替换。" +23,25,5,Empêche les Pokémon ennemis de quitter le terrain. +23,25,9,The Pokémon steps on the opposing Pokémon's shadows to prevent them from fleeing or switching out. +24,5,5,Blesse quand touché. 24,5,9,Hurts to touch. +24,6,5,Blesse quand touché. 24,6,9,Hurts to touch. +24,7,5,Blesse quand touché. 24,7,9,Hurts to touch. +24,8,5,Le Pokémon blesse l'ennemi qui le touche. 24,8,9,"Inflicts damage to the foe on contact." +24,9,5,Le Pokémon blesse l'ennemi qui le touche. 24,9,9,"Inflicts damage to the foe on contact." +24,10,5,Le Pokémon blesse l'ennemi qui le touche. 24,10,9,"Inflicts damage to the foe on contact." +24,11,5,Le Pokémon blesse l'ennemi qui le touche. 24,11,5,"Le Pokémon blesse l’ennemi qui le touche." 24,11,9,"Inflicts damage to the attacker on contact." +24,14,5,Le Pokémon blesse l'ennemi qui le touche. 24,14,9,"Inflicts damage to the attacker on contact." 24,15,1,"ふれた あいてを キズつける。" 24,15,3,"접촉한 상대에게 상처를 입힌다." +24,15,5,Blesse l'attaquant au moindre contact. +24,15,5,Blesse l'attaquant lorsque le Pokémon subit une attaque directe. 24,15,5,"Blesse l’attaquant au moindre contact." 24,15,6,Verletzt Angreifer bei Berührung. @@ -2950,6 +3271,8 @@ attacker on contact." キズつける。" 24,16,3,"접촉한 상대에게 상처를 입힌다." +24,16,5,Blesse l'attaquant au moindre contact. +24,16,5,Blesse l'attaquant lorsque le Pokémon subit une attaque directe. 24,16,5,"Blesse l’attaquant au moindre contact." 24,16,6,Verletzt Angreifer bei Berührung. @@ -2969,6 +3292,7 @@ attacker on contact." 24,17,4,"受到攻擊時, 用粗糙的皮膚弄傷 接觸到自己的對手。" +24,17,5,Blesse l'attaquant lorsque le Pokémon subit une attaque directe. 24,17,5,"Blesse l’attaquant lorsque le Pokémon subit une attaque directe." 24,17,6,"Angreifer werden durch die raue Haut des Pokémon @@ -2994,6 +3318,7 @@ to the attacker on contact." 24,18,4,"受到攻擊時, 用粗糙的皮膚弄傷 接觸到自己的對手。" +24,18,5,Blesse l'attaquant lorsque le Pokémon subit une attaque directe. 24,18,5,"Blesse l’attaquant lorsque le Pokémon subit une attaque directe." 24,18,6,"Angreifer werden durch die raue Haut des Pokémon @@ -3044,6 +3369,7 @@ to the attacker on contact." 24,20,4,"受到攻擊時, 用粗糙的皮膚弄傷 接觸到自己的對手。" +24,20,5,Blesse l'attaquant lorsque le Pokémon subit une attaque directe. 24,20,5,"Blesse l’attaquant lorsque le Pokémon subit une attaque directe." 24,20,6,"Angreifer werden durch die raue Haut des Pokémon @@ -3060,25 +3386,36 @@ to the attacker on contact." 24,20,12,"受到攻击时, 用粗糙的皮肤弄伤 接触到自己的对手。" +24,25,5,Blesse l'attaquant lorsque le Pokémon subit une attaque directe. +24,25,9,The Pokémon's rough skin damages attackers that make direct contact with it. +25,5,5,"Reçoit seul. ""sup. eff.""." 25,5,9,“Super effective” hits. +25,6,5,"Reçoit seul. ""sup. eff.""." 25,6,9,“Super effective” hits. +25,7,5,"Reçoit seul. ""sup. eff.""." 25,7,9,“Super effective” hits. +25,8,5,Seules capacités “super efficaces” l'atteignent. 25,8,9,"Only supereffective moves will hit." +25,9,5,Seules capacités “super efficaces” l'atteignent. 25,9,9,"Only supereffective moves will hit." +25,10,5,Seules capacités “super efficaces” l'atteignent. 25,10,9,"Only supereffective moves will hit." +25,11,5,Seules capacités “super efficaces” l'atteignent. 25,11,5,"Seules capacités “super efficaces” l’atteignent." 25,11,9,"Only supereffective moves will hit." +25,14,5,Seules capacités “super efficaces” l'atteignent. 25,14,9,"Only supereffective moves will hit." 25,15,1,"こうかばつぐん しか あたらない。" 25,15,3,"효과가 굉장한 기술밖에 맞지 않는다." +25,15,5,Seules les capacités « super efficaces » l'atteignent. 25,15,5,"Seules les capacités « super efficaces » l’atteignent." 25,15,6,"Nur sehr effektive Treffer @@ -3095,6 +3432,7 @@ moves will hit." あたらない。" 25,16,3,"효과가 굉장한 기술밖에 맞지 않는다." +25,16,5,Seules les capacités « super efficaces » l'atteignent. 25,16,5,"Seules les capacités «super efficaces» l’atteignent." 25,16,6,"Nur sehr effektive Treffer @@ -3113,6 +3451,7 @@ moves will hit." 맞는 불가사의한 힘." 25,17,4,"不可思議的力量, 只有效果絕佳的招式才會擊中自己。" +25,17,5,"Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles « super efficaces »." 25,17,5,"Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles « super efficaces »." @@ -3134,6 +3473,7 @@ hit the Pokémon." 맞는 불가사의한 힘." 25,18,4,"不可思議的力量, 只有效果絕佳的招式才會擊中自己。" +25,18,5,"Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles « super efficaces »." 25,18,5,"Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles « super efficaces »." @@ -3176,6 +3516,7 @@ hit the Pokémon." 맞는 불가사의한 힘." 25,20,4,"不可思議的力量, 只有效果絕佳的招式才會擊中自己。" +25,20,5,"Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles « super efficaces »." 25,20,5,"Une puissance mystérieuse protège le Pokémon contre toutes les capacités, sauf celles « super efficaces »." 25,20,6,"Wundersame Kräfte bewirken, dass nur sehr effektive @@ -3190,25 +3531,36 @@ hit the Pokémon." 当たらない 不思議な 力。" 25,20,12,"不可思议的力量, 只有效果绝佳的招式才能击中。" +25,25,5,"Une puissance mystérieuse protège le Pokémon contre\ntoutes les capacités, sauf celles qui sont super efficaces." +26,5,5,Ignore les attaques SOL. 26,5,9,Not hit by GROUND attacks. +26,6,5,Ignore les attaques SOL. 26,6,9,Not hit by GROUND attacks. +26,7,5,Ignore les attaques SOL. 26,7,9,Not hit by GROUND attacks. +26,8,5,Immunise contre toutes les capacités de type Sol. 26,8,9,"Gives full immunity to all Ground-type moves." +26,9,5,Immunise contre toutes les capacités de type Sol. 26,9,9,"Gives full immunity to all Ground-type moves." +26,10,5,Immunise contre toutes les capacités de type Sol. 26,10,9,"Gives full immunity to all Ground-type moves." +26,11,5,Immunise contre toutes les capacités de type Sol. 26,11,5,"Immunise contre toutes les capacités de type Sol." 26,11,9,"Gives full immunity to all Ground-type moves." +26,13,5,Immunise contre toutes les capacités de type Sol. +26,14,5,Immunise contre toutes les capacités de type Sol. 26,14,9,"Gives full immunity to all Ground-type moves." 26,15,1,"じめんタイプの わざを うけない。" 26,15,3,"땅타입의 기술을 받지 않는다." +26,15,5,"Le Pokémon flotte, ce qui l'immunise contre les capacités de type Sol." 26,15,5,"Immunise contre toutes les capacités de type Sol." 26,15,6,"Volle Immunität gegen @@ -3225,6 +3577,8 @@ Ground-type moves." うけない。" 26,16,3,"땅타입의 기술을 받지 않는다." +26,16,5,"Le Pokémon flotte, ce qui l'immunise contre les capacités de type Sol." +26,16,5,Immunise contre toutes les capacités de type Sol. 26,16,5,"Immunise contre toutes les capacités de type Sol." 26,16,6,"Volle Immunität gegen @@ -3243,6 +3597,7 @@ Ground-type moves." 땅타입의 기술을 받지 않는다." 26,17,4,"從地面浮起, 從而不會受到地面屬性招式的攻擊。" +26,17,5,"Le Pokémon flotte, ce qui l'immunise contre les capacités de type Sol." 26,17,5,"Le Pokémon flotte, ce qui l’immunise contre les capacités de type Sol." 26,17,6,"Verleiht volle Immunität gegen alle Boden-Attacken @@ -3263,6 +3618,7 @@ immunity to all Ground-type moves." 땅타입의 기술을 받지 않는다." 26,18,4,"從地面浮起, 從而不會受到地面屬性招式的攻擊。" +26,18,5,"Le Pokémon flotte, ce qui l'immunise contre les capacités de type Sol." 26,18,5,"Le Pokémon flotte, ce qui l’immunise contre les capacités de type Sol." 26,18,6,"Verleiht volle Immunität gegen alle Boden-Attacken @@ -3303,6 +3659,7 @@ immunity to all Ground-type moves." 땅타입의 기술을 받지 않는다." 26,20,4,"從地面浮起, 從而不會受到地面屬性招式的攻擊。" +26,20,5,"Le Pokémon flotte, ce qui l'immunise contre les capacités de type Sol." 26,20,5,"Le Pokémon flotte, ce qui l’immunise contre les capacités de type Sol." 26,20,6,"Verleiht volle Immunität gegen alle Boden-Attacken @@ -3317,25 +3674,37 @@ immunity to all Ground-type moves." じめんタイプの 技を 受けない。" 26,20,12,"从地面浮起, 从而不会受到地面属性招式的攻击。" +26,25,5,"Le Pokémon flotte, ce qui l'immunise contre les capacités de type Sol." +26,25,9,"By floating in the air, the Pokémon receives full immunity to all Ground-type moves." +27,5,5,Laisse spores si touché. 27,5,9,Leaves spores on contact. +27,6,5,Laisse spores si touché. 27,6,9,Leaves spores on contact. +27,7,5,Laisse spores si touché. 27,7,9,Leaves spores on contact. +27,8,5,"Peut paralyser, empoisonner, endormir au contact." 27,8,9,"Contact may paralyze, poison, or cause sleep." +27,9,5,"Peut paralyser, empoisonner, endormir au contact." 27,9,9,"Contact may paralyze, poison, or cause sleep." +27,10,5,"Peut paralyser, empoisonner, endormir au contact." 27,10,9,"Contact may paralyze, poison, or cause sleep." +27,11,5,"Peut paralyser, empoisonner, endormir au contact." 27,11,5,"Peut paralyser, empoison- ner, endormir au contact." 27,11,9,"Contact may poison or cause paralysis or sleep." +27,13,5,"Peut paralyser, empoisonner, endormir au contact." +27,14,5,"Peut paralyser, empoisonner, endormir au contact." 27,14,9,"Contact may poison or cause paralysis or sleep." 27,15,1,"ふれると どく まひ ねむりに することがある。" 27,15,3,"스치면 독, 마비, 잠듦 상태가 될 때가 있다." +27,15,5,"Peut paralyser, empoisonner ou endormir l'attaquant lorsque le Pokémon subit une attaque directe." 27,15,5,"Peut paralyser, empoisonner, endormir au contact." 27,15,6,"Kann bei Kontakt Paralyse, @@ -3352,6 +3721,8 @@ cause paralysis or sleep." ねむりに することがある。" 27,16,3,"스치면 독, 마비, 잠듦 상태가 될 때가 있다." +27,16,5,"Peut paralyser, empoisonner ou endormir l'attaquant lorsque le Pokémon subit une attaque directe." +27,16,5,"Peut paralyser, empoisonner, endormir au contact." 27,16,5,"Peut paralyser, empoisonner, endormir au contact." 27,16,6,"Kann bei Kontakt Paralyse, @@ -3372,6 +3743,7 @@ cause paralysis or sleep." 만들 때가 있다." 27,17,4,"透過攻擊有時會使接觸到自己的對手, 陷入中毒、麻痺或睡眠狀態。" +27,17,5,"Peut paralyser, empoisonner ou endormir l'attaquant lorsque le Pokémon subit une attaque directe." 27,17,5,"Peut paralyser, empoisonner ou endormir l’attaquant lorsque le Pokémon subit une attaque directe." 27,17,6,"Wird dieses Pokémon durch eine direkte Attacke @@ -3397,6 +3769,7 @@ or paralysis on its attacker." 만들 때가 있다." 27,18,4,"透過攻擊有時會使接觸到自己的對手, 陷入中毒、麻痺或睡眠狀態。" +27,18,5,"Peut paralyser, empoisonner ou endormir l'attaquant lorsque le Pokémon subit une attaque directe." 27,18,5,"Peut paralyser, empoisonner ou endormir l’attaquant lorsque le Pokémon subit une attaque directe." 27,18,6,"Wird dieses Pokémon durch eine direkte Attacke @@ -3448,6 +3821,7 @@ or paralysis on its attacker." 27,20,4,"受到攻擊時, 有時會讓接觸到自己的對手 陷入中毒、麻痺或睡眠狀態。" +27,20,5,"Peut paralyser, empoisonner ou endormir l'attaquant lorsque le Pokémon subit une attaque directe." 27,20,5,"Peut paralyser, empoisonner ou endormir l’attaquant lorsque le Pokémon subit une attaque directe." 27,20,6,"Wird dieses Pokémon durch eine direkte Attacke @@ -3465,25 +3839,37 @@ or paralysis on its attacker." 27,20,12,"受到攻击时, 有时会把接触到自己的对手 变为中毒、麻痹或睡眠状态。" +27,25,5,"Peut paralyser, empoisonner ou endormir l'attaquant lorsque le Pokémon subit une attaque directe." +27,25,9,"Contact with the Pokémon may inflict poison, sleep, or paralysis on the attacker." +28,5,5,Transfère statuts. 28,5,9,Passes on status problems. +28,6,5,Transfère statuts. 28,6,9,Passes on status problems. +28,7,5,Transfère statuts. 28,7,9,Passes on status problems. +28,8,5,"Transmet brûlure, poison ou paralysie à l'ennemi." 28,8,9,"Passes on a burn, poison, or paralysis to the foe." +28,9,5,"Transmet brûlure, poison ou paralysie à l'ennemi." 28,9,9,"Passes on a burn, poison, or paralysis to the foe." +28,10,5,"Transmet brûlure, poison ou paralysie à l'ennemi." 28,10,9,"Passes a burn, poison, or paralysis to the foe." +28,11,5,"Transmet brûlure, poison ou paralysie à l'ennemi." 28,11,5,"Transmet brûlure, poison ou paralysie à l’ennemi." 28,11,9,"Passes a burn, poison, or paralysis to the foe." +28,14,5,"Transmet brûlure, poison ou paralysie à l'ennemi." 28,14,9,"Passes a burn, poison, or paralysis to the foe." 28,15,1,"どく まひ やけどを あいてに うつす。" 28,15,3,"독, 마비, 화상을 상대에게 옮긴다." +28,15,5,"Transmet brûlure, paralysie ou poison au Pokémon qui l'a infligé." +28,15,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." 28,15,5,"Transmet brûlure, paralysie ou poison au Pokémon qui l’a infligé." 28,15,6,"Brand, Gift oder Paralyse ereilen @@ -3500,6 +3886,8 @@ to the Pokémon that inflicted it." あいてに うつす。" 28,16,3,"독, 마비, 화상을 상대에게 옮긴다." +28,16,5,"Transmet brûlure, paralysie ou poison au Pokémon qui l'a infligé." +28,16,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." 28,16,5,"Transmet brûlure, paralysie ou poison au Pokémon qui l’a infligé." 28,16,6,"Brand, Gift oder Paralyse ereilen @@ -3520,6 +3908,7 @@ to the Pokémon that inflicted it." 상대에게 옮긴다." 28,17,4,"將自己的中毒、麻痺或 灼傷狀態傳染給對手。" +28,17,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." 28,17,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." @@ -3546,6 +3935,7 @@ it inflicts a burn, poison, or paralysis to the Pokémon." 상대에게 옮긴다." 28,18,4,"將自己的中毒、麻痺或 灼傷狀態傳染給對手。" +28,18,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." 28,18,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." @@ -3598,6 +3988,7 @@ it inflicts a burn, poison, or paralysis to the Pokémon." 상대에게 옮긴다." 28,20,4,"將自己的中毒、麻痺或 灼傷狀態傳染給對手。" +28,20,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." 28,20,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." 28,20,6,"Erleidet das Pokémon Verbrennungen, Vergiftungen @@ -3615,19 +4006,30 @@ it inflicts a burn, poison, or paralysis to the Pokémon." 相手に うつす。" 28,20,12,"将自己的中毒、麻痹 或灼伤状态传染给对手。" +28,25,5,"Quand le Pokémon est brûlé, paralysé ou empoisonné par un autre Pokémon, il partage ce statut avec celui-ci." +28,25,9,"If the Pokémon is burned, paralyzed, or poisoned by another Pokémon, that Pokémon will be inflicted with the same status condition." +29,5,5,Empêche réduction de cap. 29,5,9,Prevents ability reduction. +29,6,5,Empêche réduction de cap. 29,6,9,Prevents ability reduction. +29,7,5,Empêche réduction de cap. 29,7,9,Prevents ability reduction. +29,8,5,Peut empêcher les stats du Pokémon de baisser. 29,8,9,"Prevents the Pokémon’s stats from being lowered." +29,9,5,Peut empêcher les stats du Pokémon de baisser. 29,9,9,"Prevents the Pokémon’s stats from being lowered." +29,10,5,Peut empêcher les stats du Pokémon de baisser. 29,10,9,"Prevents its stats from being lowered." +29,11,5,Peut empêcher les stats du Pokémon de baisser. 29,11,5,"Empêche les stats du Pokémon de baisser." 29,11,9,"Prevents other Pokémon from lowering its stats." +29,13,5,Peut empêcher les stats du Pokémon de baisser. +29,14,5,Peut empêcher les stats du Pokémon de baisser. 29,14,9,"Prevents other Pokémon from lowering its stats." 29,15,1,"あいてに のうりょくを @@ -3650,6 +4052,7 @@ from lowering its stats." さげられない。" 29,16,3,"상대가 능력을 떨어뜨릴 수 없다." +29,16,5,Peut empêcher les stats du Pokémon de baisser. 29,16,5,"Empêche les stats du Pokémon de baisser." 29,16,6,"Hindert Angreifer daran, @@ -3668,6 +4071,7 @@ from lowering its stats." 능력을 떨어뜨릴 수 없다." 29,17,4,"不會因對手的招式或特性 而被降低能力。" +29,17,5,Empêche les stats du Pokémon de baisser à cause d'une capacité ou d'un talent. 29,17,5,"Empêche les stats du Pokémon de baisser à cause d’une capacité ou d’un talent." 29,17,6,"Verhindert das Senken der Statuswerte durch @@ -3688,6 +4092,7 @@ lowering the Pokémon’s stats." 능력을 떨어뜨릴 수 없다." 29,18,4,"不會因對手的招式或特性 而被降低能力。" +29,18,5,Empêche les stats du Pokémon de baisser à cause d'une capacité ou d'un talent. 29,18,5,"Empêche les stats du Pokémon de baisser à cause d’une capacité ou d’un talent." 29,18,6,"Verhindert das Senken der Statuswerte durch @@ -3728,6 +4133,7 @@ lowering the Pokémon’s stats." 능력을 떨어뜨릴 수 없다." 29,20,4,"不會因對手的招式或特性 而被降低能力。" +29,20,5,Empêche les stats du Pokémon de baisser à cause d'une capacité ou d'un talent. 29,20,5,"Empêche les stats du Pokémon de baisser à cause d’une capacité ou d’un talent." 29,20,6,"Verhindert das Senken der Statuswerte durch Attacken @@ -3742,25 +4148,37 @@ lowering the Pokémon’s stats." 能力を 下げられない。" 29,20,12,"不会因为对手的招式或特性 而被降低能力。" +29,25,5,Empêche les stats du Pokémon de baisser à cause du talent ou d'une capacité de l'adversaire. +29,25,9,Prevents other Pokémon's moves or Abilities from lowering the Pokémon's stats. +30,5,5,Soigne POKéMON changeant. 30,5,9,Heals upon switching out. +30,6,5,Soigne POKéMON changeant. 30,6,9,Heals upon switching out. +30,7,5,Soigne POKéMON changeant. 30,7,9,Heals upon switching out. +30,8,5,Quitter le combat soigne les problèmes de statut. 30,8,9,"All status problems are healed upon switching out." +30,9,5,Quitter le combat soigne les problèmes de statut. 30,9,9,"All status problems are healed upon switching out." +30,10,5,Quitter le combat soigne les problèmes de statut. 30,10,9,"All status problems heal when it switches out." +30,11,5,Quitter le combat soigne les problèmes de statut. 30,11,5,"Quitter le combat soigne les problèmes de statut." 30,11,9,"All status problems heal when it switches out." +30,13,5,Quitter le combat soigne les problèmes de statut. +30,14,5,Quitter le combat soigne les problèmes de statut. 30,14,9,"All status problems heal when it switches out." 30,15,1,"じょうたい いじょうが ひっこむと なおる。" 30,15,3,"배틀에서 일단 물러나면 상태 이상이 회복된다." +30,15,5,Le Pokémon soigne ses altérations de statut en quittant le combat. 30,15,5,"Quitter le combat soigne les problèmes de statut." 30,15,6,"Heilt bei Austausch @@ -3777,6 +4195,8 @@ the Pokémon switches out." ひっこむと なおる。" 30,16,3,"배틀에서 일단 물러나면 상태 이상이 회복된다." +30,16,5,Le Pokémon soigne ses altérations de statut en quittant le combat. +30,16,5,Quitter le combat soigne les problèmes de statut. 30,16,5,"Quitter le combat soigne les problèmes de statut." 30,16,6,"Heilt bei Austausch @@ -3795,6 +4215,7 @@ the Pokémon switches out." 상태 이상이 회복된다." 30,17,4,"異常狀態會在 離場後治癒。" +30,17,5,Le Pokémon soigne ses altérations de statut en quittant le combat. 30,17,5,"Le Pokémon soigne ses altérations de statut en quittant le combat." 30,17,6,"Wird das Pokémon ausgewechselt, werden seine @@ -3814,6 +4235,7 @@ switches out." 상태 이상이 회복된다." 30,18,4,"異常狀態會在 離場後治癒。" +30,18,5,Le Pokémon soigne ses altérations de statut en quittant le combat. 30,18,5,"Le Pokémon soigne ses altérations de statut en quittant le combat." 30,18,6,"Wird das Pokémon ausgewechselt, werden seine @@ -3852,6 +4274,7 @@ switches out." 상태 이상이 회복된다." 30,20,4,"異常狀態會在 離場後治癒。" +30,20,5,Le Pokémon soigne ses altérations de statut en quittant le combat. 30,20,5,"Le Pokémon soigne ses altérations de statut en quittant le combat." 30,20,6,"Wird das Pokémon ausgewechselt, werden seine @@ -3866,6 +4289,8 @@ switches out." 状態異常が 治る。" 30,20,12,"回到同行队伍后, 异常状态就会被治愈。" +30,25,5,Le Pokémon soigne ses altérations de statut en quittant le combat. +30,25,9,The Pokémon's status conditions are cured when it switches out. 31,5,9,Draws electrical moves. 31,6,9,Draws electrical moves. 31,7,9,Draws electrical moves. @@ -4016,25 +4441,37 @@ it boosts its Sp. Atk." 特攻が 上がる。" 31,20,12,"将电属性的招式吸引到自己身上, 不会受到伤害,而是会提高特攻。" +31,25,5,"Le Pokémon détourne sur lui les capacités\nde type Électrik et les neutralise, tout en\naugmentant son Attaque Spéciale." +31,25,9,"The Pokémon draws in all Electric-type moves. Instead of taking damage from them, its Sp. Atk stat is boosted." +32,5,5,Favorise le cumul d'effet. 32,5,9,Promotes added effects. +32,6,5,Favorise le cumul d'effet. 32,6,9,Promotes added effects. +32,7,5,Favorise le cumul d'effet. 32,7,9,Promotes added effects. +32,8,5,Augmente la fréquence du cumul d'effets. 32,8,9,"Boosts the likelihood of added effects appearing." +32,9,5,Augmente la fréquence du cumul d'effets. 32,9,9,"Boosts the likelihood of added effects appearing." +32,10,5,Augmente la fréquence du cumul d'effets. 32,10,9,"Boosts the likelihood of added effects appearing." +32,11,5,Augmente la fréquence du cumul d'effets. 32,11,5,"Augmente la fréquence du cumul d’effets." 32,11,9,"Boosts the likelihood of added effects appearing." +32,13,5,Augmente la fréquence du cumul d'effets. +32,14,5,Augmente la fréquence du cumul d'effets. 32,14,9,"Boosts the likelihood of added effects appearing." 32,15,1,"わざの ついかこうかが でやすい。" 32,15,3,"기술의 추가 효과가 나오기 쉽다." +32,15,5,Augmente les chances d'infliger des effets additionnels. 32,15,5,"Augmente la fréquence du cumul d’effets." 32,15,6,Erhöht Chance auf Zusatz-Effekte. @@ -4050,6 +4487,8 @@ additional effects occurring." でやすい。" 32,16,3,"기술의 추가 효과가 나오기 쉽다." +32,16,5,Augmente les chances d'infliger des effets additionnels. +32,16,5,Augmente la fréquence du cumul d'effets. 32,16,5,"Augmente la fréquence du cumul d’effets." 32,16,6,Erhöht Chance auf Zusatz-Effekte. @@ -4067,6 +4506,7 @@ additional effects occurring." 기술의 추가 효과가 나오기 쉽다." 32,17,4,"受到上天保佑, 容易出現招式的追加效果。" +32,17,5,Augmente les chances d'infliger des effets additionnels. 32,17,5,"Augmente les chances d’infliger des effets additionnels." 32,17,6,"Erhöht die Wahrscheinlichkeit, dass Zusatzeffekte @@ -4086,6 +4526,7 @@ when attacking." 기술의 추가 효과가 나오기 쉽다." 32,18,4,"受到上天保佑, 容易出現招式的追加效果。" +32,18,5,Augmente les chances d'infliger des effets additionnels. 32,18,5,"Augmente les chances d’infliger des effets additionnels." 32,18,6,"Erhöht die Wahrscheinlichkeit, dass Zusatzeffekte @@ -4124,6 +4565,7 @@ when attacking." 기술의 추가 효과가 나오기 쉽다." 32,20,4,"受到上天保佑, 容易出現招式的追加效果。" +32,20,5,Augmente les chances d'infliger des effets additionnels. 32,20,5,Augmente les chances d’infliger des effets additionnels. 32,20,6,"Erhöht die Wahrscheinlichkeit, dass Zusatzeffekte von Attacken auftreten." @@ -4136,8 +4578,13 @@ when attacking." 技の 追加効果が でやすい。" 32,20,12,"托天恩的福, 招式的追加效果容易出现。" +32,25,5,Augmente les chances d'infliger des effets additionnels. +32,25,9,Raises the likelihood of additional effects occurring when the Pokémon uses its moves. +33,5,5,Monte VITESSE s'il pleut. 33,5,9,Raises SPEED in rain. +33,6,5,Monte VITESSE s'il pleut. 33,6,9,Raises SPEED in rain. +33,7,5,Monte VITESSE s'il pleut. 33,7,9,Raises SPEED in rain. 33,8,9,"Boosts the Pokémon’s Speed in rain." @@ -4155,6 +4602,7 @@ Speed in rain." あがる。" 33,15,3,"비가 올 때 스피드가 올라간다." +33,15,5,Augmente la Vitesse du Pokémon s'il pleut. 33,15,5,"Augmente la Vitesse du Pokémon s’il pleut." 33,15,6,Steigert bei Regen die Initiative. @@ -4170,6 +4618,7 @@ Speed stat in rain." あがる。" 33,16,3,"비가 올 때 스피드가 올라간다." +33,16,5,Augmente la Vitesse du Pokémon s'il pleut. 33,16,5,"Augmente la Vitesse du Pokémon s’il pleut." 33,16,6,Steigert bei Regen die Initiative. @@ -4187,6 +4636,7 @@ Speed stat in rain." 스피드가 올라간다." 33,17,4,"天氣為下雨時, 速度會提高。" +33,17,5,Augmente la Vitesse du Pokémon s'il pleut. 33,17,5,Augmente la Vitesse du Pokémon s’il pleut. 33,17,6,Erhöht bei Regen die Initiative. 33,17,7,Sube la Velocidad cuando llueve. @@ -4202,6 +4652,7 @@ Speed stat in rain." 스피드가 올라간다." 33,18,4,"天氣為下雨時, 速度會提高。" +33,18,5,Augmente la Vitesse du Pokémon s'il pleut. 33,18,5,Augmente la Vitesse du Pokémon s’il pleut. 33,18,6,Erhöht bei Regen die Initiative. 33,18,7,Sube la Velocidad cuando llueve. @@ -4232,6 +4683,7 @@ Speed stat in rain." 스피드가 올라간다." 33,20,4,"天氣為下雨時, 速度會提高。" +33,20,5,Augmente la Vitesse du Pokémon s'il pleut. 33,20,5,Augmente la Vitesse du Pokémon s’il pleut. 33,20,6,Erhöht bei Regen die Initiative. 33,20,7,Sube su Velocidad cuando llueve. @@ -4241,19 +4693,30 @@ Speed stat in rain." 素早さが 上がる。" 33,20,12,"下雨天气时, 速度会提高。" +33,25,5,Augmente la Vitesse du Pokémon s'il pleut. +33,25,9,Boosts the Pokémon's Speed stat in rain. +34,5,5,Augmente vitesse au soleil. 34,5,9,Raises SPEED in sunshine. +34,6,5,Augmente vitesse au soleil. 34,6,9,Raises SPEED in sunshine. +34,7,5,Augmente vitesse au soleil. 34,7,9,Raises SPEED in sunshine. +34,8,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,8,9,"Boosts the Pokémon’s Speed in sunshine." +34,9,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,9,9,"Boosts the Pokémon’s Speed in sunshine." +34,10,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,10,9,"Boosts the Pokémon’s Speed in sunshine." +34,11,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,11,5,"Augmente la Vitesse du Pokémon s’il y a du soleil." 34,11,9,"Boosts the Pokémon’s Speed in sunshine." +34,13,5,Augmente la Vitesse du Pokémon s'il y a du soleil. +34,14,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,14,9,"Boosts the Pokémon’s Speed in sunshine." 34,15,1,"はれのとき すばやさが @@ -4276,6 +4739,7 @@ Speed stat in sunshine." あがる。" 34,16,3,"맑을 때 스피드가 올라간다." +34,16,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,16,5,"Augmente la Vitesse du Pokémon s’il y a du soleil." 34,16,6,"Steigert bei Sonnenschein @@ -4294,6 +4758,7 @@ Speed stat in sunshine." 스피드가 올라간다." 34,17,4,"天氣為晴朗時, 速度會提高。" +34,17,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,17,5,Augmente la Vitesse du Pokémon s’il y a du soleil. 34,17,6,Erhöht bei Sonnenschein die Initiative. 34,17,7,Sube la Velocidad cuando hace sol. @@ -4309,6 +4774,7 @@ Speed stat in sunshine." 스피드가 올라간다." 34,18,4,"天氣為晴朗時, 速度會提高。" +34,18,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,18,5,Augmente la Vitesse du Pokémon s’il y a du soleil. 34,18,6,Erhöht bei Sonnenschein die Initiative. 34,18,7,Sube la Velocidad cuando hace sol. @@ -4339,6 +4805,7 @@ Speed stat in sunshine." 스피드가 올라간다." 34,20,4,"天氣為晴朗時, 速度會提高。" +34,20,5,Augmente la Vitesse du Pokémon s'il y a du soleil. 34,20,5,Augmente la Vitesse du Pokémon s’il y a du soleil. 34,20,6,Erhöht bei Sonnenschein die Initiative. 34,20,7,Sube su Velocidad cuando hace sol. @@ -4348,19 +4815,30 @@ Speed stat in sunshine." 素早さが 上がる。" 34,20,12,"晴朗天气时, 速度会提高。" +34,25,5,Augmente la Vitesse du Pokémon s'il y a du soleil. +34,25,9,Boosts the Pokémon's Speed stat in harsh sunlight. +35,5,5,Augmente les rencontres. 35,5,9,Encounter rate increases. +35,6,5,Augmente les rencontres. 35,6,9,Encounter rate increases. +35,7,5,Augmente les rencontres. 35,7,9,Encounter rate increases. +35,8,5,Augmente les rencontres avec Pokémon sauvages. 35,8,9,"Raises the likelihood of meeting wild Pokémon." +35,9,5,Augmente les rencontres avec Pokémon sauvages. 35,9,9,"Raises the likelihood of meeting wild Pokémon." +35,10,5,Augmente les rencontres avec Pokémon sauvages. 35,10,9,"Raises the likelihood of meeting wild Pokémon." +35,11,5,Augmente les rencontres avec Pokémon sauvages. 35,11,5,"Augmente les rencontres avec Pokémon sauvages." 35,11,9,"Raises the likelihood of meeting wild Pokémon." +35,13,5,Augmente les rencontres avec Pokémon sauvages. +35,14,5,Augmente les rencontres avec Pokémon sauvages. 35,14,9,"Raises the likelihood of meeting wild Pokémon." 35,15,1,"やせいの ポケモンに @@ -4383,6 +4861,7 @@ meeting wild Pokémon." そうぐう しやすくなる。" 35,16,3,"야생 포켓몬과 만나기 쉬워진다." +35,16,5,Augmente les rencontres avec Pokémon sauvages. 35,16,5,"Augmente les rencontres avec les Pokémon sauvages." 35,16,6,"Erhöht die Wahrscheinlichkeit, @@ -4403,6 +4882,7 @@ meeting wild Pokémon." 만나기 쉬워진다." 35,17,4,"透過讓周圍變亮, 變得容易遇見野生的寶可夢。" +35,17,5,Émet une lumière spécifique qui facilite les rencontres avec les Pokémon sauvages. 35,17,5,"Émet une lumière spécifique qui facilite les rencontres avec les Pokémon sauvages." 35,17,6,"Erhellt die Umgebung und erhöht dadurch die @@ -4426,6 +4906,7 @@ illuminating the surroundings." 만나기 쉬워진다." 35,18,4,"透過讓周圍變亮, 變得容易遇見野生的寶可夢。" +35,18,5,Émet une lumière spécifique qui facilite les rencontres avec les Pokémon sauvages. 35,18,5,"Émet une lumière spécifique qui facilite les rencontres avec les Pokémon sauvages." 35,18,6,"Erhellt die Umgebung und erhöht dadurch die @@ -4472,6 +4953,7 @@ illuminating the surroundings." 만나기 쉬워진다." 35,20,4,"透過讓周圍變亮, 變得容易遇見野生的寶可夢。" +35,20,5,Émet une lumière spécifique qui facilite les rencontres avec les Pokémon sauvages. 35,20,5,"Émet une lumière spécifique qui facilite les rencontres avec les Pokémon sauvages." 35,20,6,"Erhellt die Umgebung und erhöht dadurch die @@ -4487,25 +4969,36 @@ illuminating the surroundings." 遭遇 しやすくなる。" 35,20,12,"通过让周围变亮, 变得容易遇到野生的宝可梦。" +35,26,5,"Le Pokémon illumine les alentours, ce qui empêche\nsa Précision de baisser." +35,26,9,"By illuminating its surroundings, the Pokémon prevents its accuracy from being lowered." +36,5,5,Imite la capacité spéciale. 36,5,9,Copies special ability. +36,6,5,Imite la capacité spéciale. 36,6,9,Copies special ability. 36,7,9,Copies special ability. +36,8,5,Imite la capacité spéciale de l'ennemi. 36,8,9,"The Pokémon copies the foe’s ability." +36,9,5,Imite la capacité spéciale de l'ennemi. 36,9,9,"The Pokémon copies the foe’s ability." +36,10,5,Imite la capacité spéciale de l'ennemi. 36,10,9,"The Pokémon copies the foe’s ability." +36,11,5,Imite la capacité spéciale de l'ennemi. 36,11,5,"Imite la capacité spéciale de l’ennemi." 36,11,9,"The Pokémon copies a foe’s Ability." +36,14,5,Imite la capacité spéciale de l'ennemi. 36,14,9,"The Pokémon copies a foe’s Ability." 36,15,1,"あいてと おなじ とくせいに なる。" 36,15,3,"상대와 같은 특성이 된다." +36,15,5,Imite le talent de l'ennemi. +36,15,5,"Lorsque le Pokémon entre au combat, il calque le talent d'un ennemi pour remplacer le sien." 36,15,5,Imite le talent de l’ennemi. 36,15,6,"Das Pokémon kopiert die Fähigkeit des Gegners." @@ -4519,6 +5012,8 @@ opposing Pokémon’s Ability." とくせいに なる。" 36,16,3,"상대와 같은 특성이 된다." +36,16,5,Imite le talent de l'ennemi. +36,16,5,"Lorsque le Pokémon entre au combat, il calque le talent d'un ennemi pour remplacer le sien." 36,16,5,Imite le talent de l’ennemi. 36,16,6,"Das Pokémon kopiert die Fähigkeit des Gegners." @@ -4536,6 +5031,7 @@ opposing Pokémon’s Ability." 같은 특성이 된다." 36,17,4,"出場時,複製對手的特性, 變為與之相同的特性。" +36,17,5,"Lorsque le Pokémon entre au combat, il calque le talent d'un ennemi pour remplacer le sien." 36,17,5,"Lorsque le Pokémon entre au combat, il calque le talent d’un ennemi pour remplacer le sien." 36,17,6,Kopiert bei Kampfantritt die Fähigkeit eines Gegners. @@ -4557,6 +5053,7 @@ opposing Pokémon’s Ability." 같은 특성이 된다." 36,18,4,"出場時,複製對手的特性, 變為與之相同的特性。" +36,18,5,"Lorsque le Pokémon entre au combat, il calque le talent d'un ennemi pour remplacer le sien." 36,18,5,"Lorsque le Pokémon entre au combat, il calque le talent d’un ennemi pour remplacer le sien." 36,18,6,Kopiert bei Kampfantritt die Fähigkeit eines Gegners. @@ -4599,6 +5096,7 @@ opposing Pokémon’s Ability." 같은 특성이 된다." 36,20,4,"出場時,複製對手的特性, 變為與之相同的特性。" +36,20,5,"Lorsque le Pokémon entre au combat, il calque le talent d'un ennemi pour remplacer le sien." 36,20,5,"Lorsque le Pokémon entre au combat, il calque le talent d’un ennemi pour remplacer le sien." 36,20,6,Kopiert bei Kampfantritt die Fähigkeit eines Gegners. @@ -4612,19 +5110,30 @@ opposing Pokémon’s Ability." 同じ 特性に なる。" 36,20,12,"出场时,复制对手的特性, 变为与之相同的特性。" +36,25,5,"Lorsque le Pokémon entre au combat, il calque le talent d'un ennemi pour remplacer le sien." +36,25,9,"When it enters a battle, the Pokémon copies an opposing Pokémon's Ability." +37,5,5,Augmente ATTAQUE. 37,5,9,Raises ATTACK. +37,6,5,Augmente ATTAQUE. 37,6,9,Raises ATTACK. +37,7,5,Augmente ATTAQUE. 37,7,9,Raises ATTACK. +37,8,5,Augmente l'Attaque du Pokémon. 37,8,9,"Raises the Pokémon’s Attack stat." +37,9,5,Augmente l'Attaque du Pokémon. 37,9,9,"Raises the Pokémon’s Attack stat." +37,10,5,Augmente l'Attaque du Pokémon. 37,10,9,"Raises the Pokémon’s Attack stat." +37,11,5,Augmente l'Attaque du Pokémon. 37,11,5,"Augmente l’Attaque du Pokémon." 37,11,9,"Raises the Pokémon’s Attack stat." +37,13,5,Augmente l'Attaque du Pokémon. +37,14,5,Augmente l'Attaque du Pokémon. 37,14,9,"Raises the Pokémon’s Attack stat." 37,15,1,"ぶつり こうげきの @@ -4644,6 +5153,7 @@ Attack stat." いりょくが あがる。" 37,16,3,"물리공격의 위력이 올라간다." +37,16,5,Augmente l'Attaque du Pokémon. 37,16,5,Augmente l’Attaque du Pokémon. 37,16,6,Stärkt physische Attacken. 37,16,7,Aumenta el Ataque. @@ -4658,6 +5168,7 @@ Attack stat." 37,17,3,"물리공격의 위력이 2배가 된다." 37,17,4,物理攻擊的威力會變為2倍。 +37,17,5,Double l'Attaque du Pokémon. 37,17,5,Double l’Attaque du Pokémon. 37,17,6,Verdoppelt die Stärke von physischen Attacken. 37,17,7,Duplica la potencia de los ataques físicos. @@ -4671,6 +5182,7 @@ Attack stat." 37,18,3,"물리공격의 위력이 2배가 된다." 37,18,4,物理攻擊的威力會變為2倍。 +37,18,5,Double l'Attaque du Pokémon. 37,18,5,Double l’Attaque du Pokémon. 37,18,6,Verdoppelt die Stärke von physischen Attacken. 37,18,7,Duplica la potencia de los ataques físicos. @@ -4697,6 +5209,8 @@ Attack stat." 37,20,3,"물리공격의 위력이 2배가 된다." 37,20,4,物理攻擊的威力會變為2倍。 +37,20,5,Double la puissance des attaques physiques. +37,20,5,Double l'Attaque du Pokémon. 37,20,5,Double l’Attaque du Pokémon. 37,20,6,Verdoppelt die Stärke von physischen Attacken. 37,20,7,Duplica la potencia de sus ataques físicos. @@ -4705,25 +5219,37 @@ Attack stat." 37,20,11,"物理攻撃の 威力が 2倍になる。" 37,20,12,物理攻击的威力会变为2倍。 +37,25,5,Double la puissance des attaques physiques. +37,25,9,Doubles the Pokémon's Attack stat. +38,5,5,Empoisonne quand touché. 38,5,9,Poisons foe on contact. +38,6,5,Empoisonne quand touché. 38,6,9,Poisons foe on contact. +38,7,5,Empoisonne quand touché. 38,7,9,Poisons foe on contact. +38,8,5,Peut empoisonner l'ennemi s'il y a contact. 38,8,9,"Contact with the Pokémon may poison the foe." +38,9,5,Peut empoisonner l'ennemi s'il y a contact. 38,9,9,"Contact with the Pokémon may poison the foe." +38,10,5,Peut empoisonner l'ennemi s'il y a contact. 38,10,9,"Contact with the Pokémon may poison the foe." +38,11,5,Peut empoisonner l'ennemi s'il y a contact. 38,11,5,"Peut empoisonner l’ennemi s’il y a contact." 38,11,9,"Contact with the Pokémon may poison the attacker." +38,13,5,Peut empoisonner l'ennemi s'il y a contact. +38,14,5,Peut empoisonner l'ennemi s'il y a contact. 38,14,9,"Contact with the Pokémon may poison the attacker." 38,15,1,"ふれた あいてに どくを おわせる ことがある。" 38,15,3,"접촉한 상대를 중독시킬 때가 있다." +38,15,5,Peut empoisonner l'attaquant lorsque le Pokémon subit une attaque directe. 38,15,5,"Peut empoisonner l’attaquant s’il y a contact." 38,15,6,"Vergiftet den Angreifer @@ -4740,6 +5266,8 @@ may poison the attacker." おわせる ことがある。" 38,16,3,"접촉한 상대를 중독시킬 때가 있다." +38,16,5,Peut empoisonner l'attaquant lorsque le Pokémon subit une attaque directe. +38,16,5,Peut empoisonner l'ennemi s'il y a contact. 38,16,5,"Peut empoisonner l’attaquant s’il y a contact." 38,16,6,"Vergiftet den Angreifer @@ -4758,6 +5286,7 @@ may poison the attacker." 독 상태로 만들 때가 있다." 38,17,4,"有時會讓接觸到自己的 對手陷入中毒狀態。" +38,17,5,Peut empoisonner l'attaquant lorsque le Pokémon subit une attaque directe. 38,17,5,"Peut empoisonner l’attaquant lorsque le Pokémon subit une attaque directe." 38,17,6,Vergiftet den Angreifer bei Berührung eventuell. @@ -4775,6 +5304,7 @@ un attacco diretto." 독 상태로 만들 때가 있다." 38,18,4,"有時會讓接觸到自己的 對手陷入中毒狀態。" +38,18,5,Peut empoisonner l'attaquant lorsque le Pokémon subit une attaque directe. 38,18,5,"Peut empoisonner l’attaquant lorsque le Pokémon subit une attaque directe." 38,18,6,Vergiftet den Angreifer bei Berührung eventuell. @@ -4809,6 +5339,7 @@ un attacco diretto." 독 상태로 만들 때가 있다." 38,20,4,"有時會讓接觸到自己的 對手陷入中毒狀態。" +38,20,5,Peut empoisonner l'attaquant lorsque le Pokémon subit une attaque directe. 38,20,5,"Peut empoisonner l’attaquant lorsque le Pokémon subit une attaque directe." 38,20,6,Vergiftet den Angreifer bei Berührung eventuell. @@ -4819,19 +5350,30 @@ subit une attaque directe." どく状態に することがある。" 38,20,12,"有时会让接触到自己的 对手变为中毒状态。" +38,25,5,Peut empoisonner l'attaquant lorsque le Pokémon subit une attaque directe. +38,25,9,Contact with the Pokémon may poison the attacker. +39,5,5,Empêche la peur. 39,5,9,Prevents flinching. +39,6,5,Empêche la peur. 39,6,9,Prevents flinching. +39,7,5,Empêche la peur. 39,7,9,Prevents flinching. +39,8,5,Empêche le Pokémon d'avoir peur. 39,8,9,"The Pokémon is protected from flinching." +39,9,5,Empêche le Pokémon d'avoir peur. 39,9,9,"The Pokémon is protected from flinching." +39,10,5,Empêche le Pokémon d'avoir peur. 39,10,9,"The Pokémon is protected from flinching." +39,11,5,Empêche le Pokémon d'avoir peur. 39,11,5,"Empêche le Pokémon d’avoir peur." 39,11,9,"The Pokémon is protected from flinching." +39,13,5,Empêche le Pokémon d'avoir peur. +39,14,5,Empêche le Pokémon d'avoir peur. 39,14,9,"The Pokémon is protected from flinching." 39,15,1,"ひるまない。 @@ -4849,6 +5391,7 @@ from flinching." 39,16,1,"ひるまない。 " 39,16,3,풀죽지 않는다. +39,16,5,Empêche le Pokémon d'avoir peur. 39,16,5,"Empêche le Pokémon d’avoir peur." 39,16,6,Verhindert Zurückschrecken. @@ -4864,6 +5407,7 @@ from flinching." 상대의 공격에 풀죽지 않는다." 39,17,4,"靠著經過鍛鍊精神, 不會因對手的攻擊而畏縮。" +39,17,5,Le Pokémon a un mental à toute épreuve qui empêche les capacités ennemies de lui faire peur. 39,17,5,"Le Pokémon a un mental à toute épreuve qui empêche les capacités ennemies de lui faire peur." 39,17,6,"Verhindert durch erhöhte Konzentrationsfähigkeit @@ -4884,6 +5428,7 @@ the Pokémon from flinching." 상대의 공격에 풀죽지 않는다." 39,18,4,"靠著經過鍛鍊精神, 不會因對手的攻擊而畏縮。" +39,18,5,Le Pokémon a un mental à toute épreuve qui empêche les capacités ennemies de lui faire peur. 39,18,5,"Le Pokémon a un mental à toute épreuve qui empêche les capacités ennemies de lui faire peur." 39,18,6,"Verhindert durch erhöhte Konzentrationsfähigkeit @@ -4924,6 +5469,7 @@ the Pokémon from flinching." 상대의 공격에 풀죽지 않는다." 39,20,4,"靠著經過鍛鍊的精神, 不會因對手的攻擊而畏縮。" +39,20,5,Le Pokémon a un mental à toute épreuve qui empêche les capacités ennemies de lui faire peur. 39,20,5,"Le Pokémon a un mental à toute épreuve qui empêche les capacités ennemies de lui faire peur." 39,20,6,"Verhindert durch erhöhte Konzentrationsfähigkeit @@ -4938,19 +5484,29 @@ the Pokémon from flinching." 相手の 攻撃に ひるまない。" 39,20,12,"拥有经过锻炼的精神, 而不会因对手的攻击而畏缩。" +39,25,5,Le Pokémon a un mental à toute épreuve qui empêche les attaques ennemies de lui faire peur. Il est aussi immunisé contre le talent Intimidation. +39,25,9,The Pokémon's intense focus prevents it from flinching or being affected by Intimidate. +40,5,5,Empêche le gel. 40,5,9,Prevents freezing. +40,6,5,Empêche le gel. 40,6,9,Prevents freezing. 40,7,9,Prevents freezing. +40,8,5,Protège le Pokémon contre le gel. 40,8,9,"Prevents the Pokémon from becoming frozen." +40,9,5,Protège le Pokémon contre le gel. 40,9,9,"Prevents the Pokémon from becoming frozen." +40,10,5,Protège le Pokémon contre le gel. 40,10,9,"Prevents the Pokémon from becoming frozen." +40,11,5,Protège le Pokémon contre le gel. 40,11,5,"Protège le Pokémon contre le gel." 40,11,9,"Prevents the Pokémon from becoming frozen." +40,13,5,Protège le Pokémon contre le gel. +40,14,5,Protège le Pokémon contre le gel. 40,14,9,"Prevents the Pokémon from becoming frozen." 40,15,1,"こおり じょうたいに @@ -4971,6 +5527,7 @@ from becoming frozen." ならない。" 40,16,3,"얼음 상태가 되지 않는다." +40,16,5,Protège le Pokémon contre le gel. 40,16,5,"Protège le Pokémon contre le gel." 40,16,6,Verhindert Einfrieren. @@ -4987,6 +5544,7 @@ from becoming frozen." 얼음 상태가 되지 않는다." 40,17,4,"將熾熱的熔岩覆蓋在身上, 不會陷入冰凍狀態。" +40,17,5,Le magma qui recouvre le corps du Pokémon le protège contre le gel. 40,17,5,"Le magma qui recouvre le corps du Pokémon le protège contre le gel." 40,17,6,"Dank eines Panzers aus Magma kann dieses @@ -5007,6 +5565,7 @@ prevents the Pokémon from becoming frozen." 얼음 상태가 되지 않는다." 40,18,4,"將熾熱的熔岩覆蓋在身上, 不會陷入冰凍狀態。" +40,18,5,Le magma qui recouvre le corps du Pokémon le protège contre le gel. 40,18,5,"Le magma qui recouvre le corps du Pokémon le protège contre le gel." 40,18,6,"Dank eines Panzers aus Magma kann dieses @@ -5047,6 +5606,7 @@ prevents the Pokémon from becoming frozen." 얼음 상태가 되지 않는다." 40,20,4,"將熾熱的熔岩覆蓋在身上, 不會陷入冰凍狀態。" +40,20,5,Le magma qui recouvre le corps du Pokémon le protège contre le gel. 40,20,5,"Le magma qui recouvre le corps du Pokémon le protège contre le gel." 40,20,6,"Dank eines Panzers aus Magma kann dieses Pokémon @@ -5061,25 +5621,34 @@ prevents the Pokémon from becoming frozen." こおり状態に ならない。" 40,20,12,"将炽热的熔岩覆盖在身上, 不会变为冰冻状态。" +40,25,5,Le magma qui recouvre le corps du Pokémon le protège\ncontre le gel. +40,25,9,The Pokémon’s hot magma coating prevents it from being frozen. +41,5,5,Empêche les brûlures. 41,5,9,Prevents burns. +41,6,5,Empêche les brûlures. 41,6,9,Prevents burns. +41,7,5,Empêche les brûlures. 41,7,9,Prevents burns. +41,8,5,Empêche les brûlures. 41,8,9,"Prevents the Pokémon from getting a burn." 41,9,9,"Prevents the Pokémon from getting a burn." 41,10,9,"Prevents the Pokémon from getting a burn." +41,11,5,Empêche les brûlures. 41,11,5,"Protège le Pokémon des brûlures." 41,11,9,"Prevents the Pokémon from getting a burn." +41,14,5,Empêche les brûlures. 41,14,9,"Prevents the Pokémon from getting a burn." 41,15,1,"やけど じょうたいに ならない。" 41,15,3,"화상 상태가 되지 않는다." +41,15,5,Empêche les brûlures. 41,15,5,"Protège le Pokémon des brûlures." 41,15,6,Verhindert Verbrennungen. @@ -5094,6 +5663,7 @@ from getting a burn." ならない。" 41,16,3,"화상 상태가 되지 않는다." +41,16,5,Empêche les brûlures. 41,16,5,"Protège le Pokémon des brûlures." 41,16,6,Verhindert Verbrennungen. @@ -5110,6 +5680,7 @@ from getting a burn." 화상 상태가 되지 않는다." 41,17,4,"將水幕裹在身上, 不會陷入灼傷狀態。" +41,17,5,Le voile qui recouvre le Pokémon le protège des brûlures. 41,17,5,"Le voile qui recouvre le Pokémon le protège des brûlures." 41,17,6,"Verhindert durch eine Hülle aus Wasser @@ -5130,6 +5701,7 @@ prevents the Pokémon from getting a burn." 화상 상태가 되지 않는다." 41,18,4,"將水幕裹在身上, 不會陷入灼傷狀態。" +41,18,5,Le voile qui recouvre le Pokémon le protège des brûlures. 41,18,5,"Le voile qui recouvre le Pokémon le protège des brûlures." 41,18,6,"Verhindert durch eine Hülle aus Wasser @@ -5170,6 +5742,7 @@ prevents the Pokémon from getting a burn." 화상 상태가 되지 않는다." 41,20,4,"將水幕裹在身上, 不會陷入灼傷狀態。" +41,20,5,Le voile qui recouvre le Pokémon le protège des brûlures. 41,20,5,"Le voile qui recouvre le Pokémon le protège des brûlures." 41,20,6,Verhindert durch eine Hülle aus Wasser Verbrennungen. @@ -5183,19 +5756,30 @@ prevents the Pokémon from getting a burn." やけど状態に ならない。" 41,20,12,"将水幕裹在身上, 不会变为灼伤状态。" +41,25,5,Le voile qui recouvre le Pokémon le protège\ndes brûlures. +41,25,9,The Pokémon's water veil prevents it from being burned. +42,5,5,Piège les POKéMON ACIER. 42,5,9,Traps STEEL-type POKéMON. +42,6,5,Piège les POKéMON ACIER. 42,6,9,Traps STEEL-type POKéMON. +42,7,5,Piège les POKéMON ACIER. 42,7,9,Traps STEEL-type POKéMON. +42,8,5,Empêche les Pokémon Acier de fuir. 42,8,9,"Prevents Steel-type Pokémon from escaping." +42,9,5,Empêche les Pokémon Acier de fuir. 42,9,9,"Prevents Steel-type Pokémon from escaping." +42,10,5,Empêche les Pokémon Acier de fuir. 42,10,9,"Prevents Steel-type Pokémon from escaping." +42,11,5,Empêche les Pokémon Acier de fuir. 42,11,5,"Empêche les Pokémon Acier de fuir." 42,11,9,"Prevents Steel-type Pokémon from escaping." +42,13,5,Empêche les Pokémon Acier de fuir. +42,14,5,Empêche les Pokémon Acier de fuir. 42,14,9,"Prevents Steel-type Pokémon from escaping." 42,15,1,"はがねの ポケモンを @@ -5218,6 +5802,7 @@ Pokémon from escaping." にげられなくする。" 42,16,3,"강철의 포켓몬을 도망칠 수 없게 한다." +42,16,5,Empêche les Pokémon Acier de fuir. 42,16,5,"Empêche les Pokémon Acier de fuir." 42,16,6,"Hindert Stahl-Pokémon @@ -5238,6 +5823,7 @@ Pokémon from escaping." 도망칠 수 없게 한다." 42,17,4,"用磁力吸住鋼屬性的寶可夢, 使其無法逃走。" +42,17,5,"Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de fuir." 42,17,5,"Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de fuir." 42,17,6,"Hindert Stahl-Pokémon durch Magnetismus an der @@ -5261,6 +5847,7 @@ its magnetic force." 도망칠 수 없게 한다." 42,18,4,"用磁力吸住鋼屬性的寶可夢, 使其無法逃走。" +42,18,5,"Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de fuir." 42,18,5,"Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de fuir." 42,18,6,"Hindert Stahl-Pokémon durch Magnetismus an der @@ -5307,6 +5894,7 @@ its magnetic force." 도망칠 수 없게 한다." 42,20,4,"用磁力吸住鋼屬性的寶可夢, 使其無法逃走。" +42,20,5,"Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de fuir." 42,20,5,"Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de fuir." 42,20,6,"Hindert Stahl-Pokémon durch Magnetismus an der @@ -5322,19 +5910,30 @@ its magnetic force." 逃げられなくする。" 42,20,12,"用磁力吸住钢属性的宝可梦, 使其无法逃走。" +42,25,5,"Attire les Pokémon Acier grâce à un champ magnétique, ce qui les empêche de quitter le terrain." +42,25,9,Prevents Steel-type Pokémon from fleeing by pulling them in with magnetism. +43,5,5,Évite les attaques sonores. 43,5,9,Avoids sound-based moves. +43,6,5,Évite les attaques sonores. 43,6,9,Avoids sound-based moves. +43,7,5,Évite les attaques sonores. 43,7,9,Avoids sound-based moves. +43,8,5,Protège de toutes les capacités sonores. 43,8,9,"Gives full immunity to all sound-based moves." +43,9,5,Protège de toutes les capacités sonores. 43,9,9,"Gives full immunity to all sound-based moves." +43,10,5,Protège de toutes les capacités sonores. 43,10,9,"Gives full immunity to all sound-based moves." +43,11,5,Protège de toutes les capacités sonores. 43,11,5,"Protège de toutes les capacités sonores." 43,11,9,"Gives full immunity to all sound-based moves." +43,13,5,Protège de toutes les capacités sonores. +43,14,5,Protège de toutes les capacités sonores. 43,14,9,"Gives full immunity to all sound-based moves." 43,15,1,"おとの わざを @@ -5356,6 +5955,7 @@ sound-based moves." うけない。" 43,16,3,"소리 기술을 받지 않는다." +43,16,5,Protège de toutes les capacités sonores. 43,16,5,"Protège de toutes les capacités sonores." 43,16,6,"Volle Immunität gegen @@ -5374,6 +5974,7 @@ sound-based moves." 43,17,4,"透過遮蔽聲音, 不受到聲音招式的攻擊。" 43,17,5,Protège le Pokémon de toutes les capacités sonores. +43,17,5,Protège le Pokémon de toutes les capacités sonores. 43,17,6,"Bietet durch Schalldämmung volle Immunität gegen alle Lärm-Attacken." 43,17,7,"Su aislamiento acústico lo protege de movimientos @@ -5394,6 +5995,7 @@ immunity to all sound-based moves." 43,18,4,"透過遮蔽聲音, 不受到聲音招式的攻擊。" 43,18,5,Protège le Pokémon de toutes les capacités sonores. +43,18,5,Protège le Pokémon de toutes les capacités sonores. 43,18,6,"Bietet durch Schalldämmung volle Immunität gegen alle Lärm-Attacken." 43,18,7,"Su aislamiento acústico lo protege de movimientos @@ -5434,6 +6036,7 @@ immunity to all sound-based moves." 43,20,4,"透過遮蔽聲音, 不受到聲音招式的攻擊。" 43,20,5,Protège le Pokémon de toutes les capacités sonores. +43,20,5,Protège le Pokémon de toutes les capacités sonores. 43,20,6,"Bietet durch Schalldämmung volle Immunität gegen alle Lärm-Attacken." 43,20,7,"Su aislamiento acústico lo protege de movimientos @@ -5447,25 +6050,37 @@ immunity to all sound-based moves." 音の 攻撃を 受けない。" 43,20,12,"通过屏蔽声音, 不受到声音招式的攻击。" +43,25,5,Protège le Pokémon de toutes les capacités sonores. +43,25,9,Soundproofing gives the Pokémon full immunity to all sound-based moves. +44,5,5,Gagne quelques PV si pluie. 44,5,9,Slight HP recovery in rain. +44,6,5,Gagne quelques PV si pluie. 44,6,9,Slight HP recovery in rain. +44,7,5,Gagne quelques PV si pluie. 44,7,9,Slight HP recovery in rain. +44,8,5,Récupère progressivement des PV par temps de pluie. 44,8,9,"The Pokémon gradually recovers HP in rain." +44,9,5,Récupère progressivement des PV par temps de pluie. 44,9,9,"The Pokémon gradually recovers HP in rain." +44,10,5,Récupère progressivement des PV par temps de pluie. 44,10,9,"The Pokémon gradually recovers HP in rain." +44,11,5,Récupère progressivement des PV par temps de pluie. 44,11,5,"Récupère progressivement des PV par temps de pluie." 44,11,9,"The Pokémon gradually regains HP in rain." +44,13,5,Récupère progressivement des PV par temps de pluie. +44,14,5,Récupère progressivement des PV par temps de pluie. 44,14,9,"The Pokémon gradually regains HP in rain." 44,15,1,"あめのとき すこしずつ HPを かいふくする。" 44,15,3,"비가 올 때 조금씩 HP를 회복한다." +44,15,5,Le Pokémon récupère progressivement des PV lorsqu'il pleut. 44,15,5,"Récupère progressivement des PV par temps de pluie." 44,15,6,"Stellt bei Regen langsam @@ -5482,6 +6097,8 @@ regains HP in rain." HPを かいふくする。" 44,16,3,"비가 올 때 조금씩 HP를 회복한다." +44,16,5,Le Pokémon récupère progressivement des PV lorsqu'il pleut. +44,16,5,Récupère progressivement des PV par temps de pluie. 44,16,5,"Récupère progressivement des PV par temps de pluie." 44,16,6,"Stellt bei Regen langsam @@ -5500,6 +6117,7 @@ regains HP in rain." 조금씩 HP를 회복한다." 44,17,4,"天氣為下雨時, 會漸漸回復HP。" +44,17,5,Le Pokémon récupère progressivement des PV lorsqu'il pleut. 44,17,5,"Le Pokémon récupère progressivement des PV lorsqu’il pleut." 44,17,6,Stellt bei Regen langsam und stetig KP wieder her. @@ -5516,6 +6134,7 @@ lorsqu’il pleut." 조금씩 HP를 회복한다." 44,18,4,"天氣為下雨時, 會漸漸回復HP。" +44,18,5,Le Pokémon récupère progressivement des PV lorsqu'il pleut. 44,18,5,"Le Pokémon récupère progressivement des PV lorsqu’il pleut." 44,18,6,Stellt bei Regen langsam und stetig KP wieder her. @@ -5548,6 +6167,7 @@ lorsqu’il pleut." 조금씩 HP를 회복한다." 44,20,4,"天氣為下雨時, 會漸漸回復HP。" +44,20,5,Le Pokémon récupère progressivement des PV lorsqu'il pleut. 44,20,5,"Le Pokémon récupère progressivement des PV lorsqu’il pleut." 44,20,6,Regeneriert bei Regen nach und nach KP. @@ -5558,19 +6178,30 @@ lorsqu’il pleut." 少しずつ HPを 回復する。" 44,20,12,"下雨天气时, 会缓缓回复HP。" +44,25,5,Le Pokémon récupère progressivement des PV lorsqu'il pleut. +44,25,9,The Pokémon gradually regains HP in rain. +45,5,5,Lance une tempête de sable. 45,5,9,Summons a sandstorm. +45,6,5,Lance une tempête de sable. 45,6,9,Summons a sandstorm. +45,7,5,Lance une tempête de sable. 45,7,9,Summons a sandstorm. +45,8,5,Le Pokémon invoque une tempête de sable. 45,8,9,"The Pokémon summons a sandstorm in battle." +45,9,5,Le Pokémon invoque une tempête de sable. 45,9,9,"The Pokémon summons a sandstorm in battle." +45,10,5,Le Pokémon invoque une tempête de sable. 45,10,9,"The Pokémon summons a sandstorm in battle." +45,11,5,Le Pokémon invoque une tempête de sable. 45,11,5,"Le Pokémon invoque une tempête de sable." 45,11,9,"The Pokémon summons a sandstorm in battle." +45,13,5,Le Pokémon invoque une tempête de sable. +45,14,5,Le Pokémon invoque une tempête de sable. 45,14,9,"The Pokémon summons a sandstorm in battle." 45,15,1,"せんとうで すなあらしを @@ -5592,6 +6223,7 @@ sandstorm in battle." おこす。" 45,16,3,"배틀에서 모래바람을 일으킨다." +45,16,5,Le Pokémon invoque une tempête de sable. 45,16,5,"Le Pokémon invoque une tempête de sable." 45,16,6,Erzeugt im Kampf Sandstürme. @@ -5609,6 +6241,7 @@ sandstorm in battle." 날씨를 모래바람으로 만든다." 45,17,4,"出場時, 會把天氣變為沙暴。" +45,17,5,Le Pokémon invoque une tempête de sable quand il entre au combat. 45,17,5,"Le Pokémon invoque une tempête de sable quand il entre au combat." 45,17,6,Erzeugt bei Kampfantritt Sandstürme. @@ -5627,6 +6260,7 @@ a battle." 날씨를 모래바람으로 만든다." 45,18,4,"出場時, 會把天氣變為沙暴。" +45,18,5,Le Pokémon invoque une tempête de sable quand il entre au combat. 45,18,5,"Le Pokémon invoque une tempête de sable quand il entre au combat." 45,18,6,Erzeugt bei Kampfantritt Sandstürme. @@ -5663,6 +6297,7 @@ a battle." 날씨를 모래바람으로 만든다." 45,20,4,"出場時, 會把天氣變為沙暴。" +45,20,5,Le Pokémon invoque une tempête de sable quand il entre au combat. 45,20,5,"Le Pokémon invoque une tempête de sable quand il entre au combat." 45,20,6,Erzeugt bei Kampfantritt Sandstürme. @@ -5675,6 +6310,8 @@ a battle." 天気を 砂あらしにする。" 45,20,12,"出场时, 会把天气变为沙暴。" +45,25,5,Le Pokémon invoque une tempête de sable\nquand il entre au combat. +45,25,9,The Pokémon summons a sandstorm when it enters a battle. 46,5,9,Raises foe’s PP usage. 46,6,9,Raises foe’s PP usage. 46,7,9,Raises foe’s PP usage. @@ -5805,25 +6442,37 @@ raises their PP usage." 多く 減らす。" 46,20,12,"给予对手压迫感, 大量减少其使用招式的PP。" +46,25,5,Met la pression à l’adversaire pour le forcer\nà dépenser plus de PP. +46,25,9,"Puts other Pokémon under pressure, causing them to expend more PP to use their moves." +47,5,5,Contre chaleur et froid. 47,5,9,Heat-and-cold protection. +47,6,5,Contre chaleur et froid. 47,6,9,Heat-and-cold protection. +47,7,5,Contre chaleur et froid. 47,7,9,Heat-and-cold protection. +47,8,5,Augmente la résistance aux cap. Feu et Glace. 47,8,9,"Raises resistance to Fire-​ and Ice-type moves." +47,9,5,Augmente la résistance aux cap. Feu et Glace. 47,9,9,"Raises resistance to Fire-​ and Ice-type moves." +47,10,5,Augmente la résistance aux cap. Feu et Glace. 47,10,9,"Ups resistance to Fire-​ and Ice-type moves." +47,11,5,Augmente la résistance aux cap. Feu et Glace. 47,11,5,"Augmente la résistance aux cap. Feu et Glace." 47,11,9,"Ups resistance to Fire-​ and Ice-type moves." +47,14,5,Augmente la résistance aux cap. Feu et Glace. 47,14,9,"Ups resistance to Fire-​ and Ice-type moves." 47,15,1,"ほのおと こおりタイプの わざに つよい。" 47,15,3,"불꽃과 얼음타입의 기술에 강하다." +47,15,5,Augmente la résistance aux capacités Feu et Glace. +47,15,5,Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu'il subit des capacités de types Feu et Glace. 47,15,5,"Augmente la résistance aux capacités Feu et Glace." 47,15,6,"Stark gegen Attacken der Typen @@ -5840,6 +6489,8 @@ and Ice-type moves." わざに つよい。" 47,16,3,"불꽃과 얼음타입의 기술에 강하다." +47,16,5,Augmente la résistance aux capacités Feu et Glace. +47,16,5,Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu'il subit des capacités de types Feu et Glace. 47,16,5,"Augmente la résistance aux capacités Feu et Glace." 47,16,6,"Stark gegen Attacken der Typen @@ -5861,6 +6512,7 @@ and Ice-type moves." 47,17,4,"被厚厚的脂肪保護著, 能夠讓火屬性和冰屬性 招式的傷害減半。" +47,17,5,Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu'il subit des capacités de types Feu et Glace. 47,17,5,"Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu’il subit des capacités de types Feu et Glace." @@ -5890,6 +6542,7 @@ Ice-type moves." 47,18,4,"被厚厚的脂肪保護著, 能夠讓火屬性和冰屬性 招式的傷害減半。" +47,18,5,Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu'il subit des capacités de types Feu et Glace. 47,18,5,"Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu’il subit des capacités de types Feu et Glace." @@ -5948,6 +6601,7 @@ Ice-type moves." 47,20,4,"被厚厚的脂肪保護著, 能夠讓火屬性和冰屬性 招式的傷害減半。" +47,20,5,Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu'il subit des capacités de types Feu et Glace. 47,20,5,"Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu’il subit des capacités de types Feu et Glace." @@ -5968,25 +6622,37 @@ Ice-type moves." 技の ダメージを 半減させる。" 47,20,12,"因为被厚厚的脂肪保护着, 会让火属性和冰属性的招式伤害减半。" +47,25,5,Le Pokémon est protégé par une épaisse couche de graisse qui diminue de moitié les dégâts qu'il subit des capacités de types Feu et Glace. +47,25,9,"The Pokémon is protected by a layer of thick fat, which halves the damage taken from Fire- and Ice-type moves." +48,5,5,Se réveille rapidement. 48,5,9,Awakens quickly from sleep. +48,6,5,Se réveille rapidement. 48,6,9,Awakens quickly from sleep. +48,7,5,Se réveille rapidement. 48,7,9,Awakens quickly from sleep. +48,8,5,Le Pokémon se réveille plus rapidement. 48,8,9,"The Pokémon awakens quickly from sleep." +48,9,5,Le Pokémon se réveille plus rapidement. 48,9,9,"The Pokémon awakens quickly from sleep." +48,10,5,Le Pokémon se réveille plus rapidement. 48,10,9,"The Pokémon awakens quickly from sleep." +48,11,5,Le Pokémon se réveille plus rapidement. 48,11,5,"Le Pokémon se réveille plus rapidement." 48,11,9,"The Pokémon awakens quickly from sleep." +48,13,5,Le Pokémon se réveille plus rapidement. +48,14,5,Le Pokémon se réveille plus rapidement. 48,14,9,"The Pokémon awakens quickly from sleep." 48,15,1,"おきるのが はやくなる。 " 48,15,3,"잠듦 상태에서 빨리 깨어난다." +48,15,5,Le Pokémon se réveille deux fois plus rapidement que les autres. 48,15,5,"Le Pokémon se réveille plus rapidement." 48,15,6,"Bewirkt, dass das Pokémon @@ -6003,6 +6669,8 @@ quickly from sleep." " 48,16,3,"잠듦 상태에서 빨리 깨어난다." +48,16,5,Le Pokémon se réveille deux fois plus rapidement que les autres. +48,16,5,Le Pokémon se réveille plus rapidement. 48,16,5,"Le Pokémon se réveille plus rapidement." 48,16,6,"Bewirkt, dass das Pokémon @@ -6023,6 +6691,7 @@ quickly from sleep." 깨어날 수 있다." 48,17,4,"即使陷入睡眠狀態, 也能以2倍的速度提早醒來。" +48,17,5,Le Pokémon se réveille deux fois plus rapidement que les autres. 48,17,5,"Le Pokémon se réveille deux fois plus rapidement que les autres." 48,17,6,"Wenn es eingeschlafen ist, kann es doppelt so @@ -6046,6 +6715,7 @@ Pokémon from sleep." 깨어날 수 있다." 48,18,4,"即使陷入睡眠狀態, 也能以2倍的速度提早醒來。" +48,18,5,Le Pokémon se réveille deux fois plus rapidement que les autres. 48,18,5,"Le Pokémon se réveille deux fois plus rapidement que les autres." 48,18,6,"Wenn es eingeschlafen ist, kann es doppelt so @@ -6092,6 +6762,7 @@ as other Pokémon." 깨어날 수 있다." 48,20,4,"即使陷入睡眠狀態, 也能以2倍的速度提早醒來。" +48,20,5,Le Pokémon se réveille deux fois plus rapidement que les autres. 48,20,5,"Le Pokémon se réveille deux fois plus rapidement que les autres." 48,20,6,"Wenn es eingeschlafen ist, kann es doppelt so schnell @@ -6107,25 +6778,37 @@ as other Pokémon." 目覚める ことが できる。" 48,20,12,"即使变为睡眠状态, 也能以2倍的速度提早醒来。" +48,25,5,Le Pokémon se réveille deux fois plus rapidement que les autres. +48,25,9,The Pokémon awakens from sleep twice as fast as other Pokémon. +49,5,5,Brûle l'ennemi quand touché. 49,5,9,Burns the foe on contact. +49,6,5,Brûle l'ennemi quand touché. 49,6,9,Burns the foe on contact. +49,7,5,Brûle l'ennemi quand touché. 49,7,9,Burns the foe on contact. +49,8,5,Peut brûler l'ennemi s'il y a contact. 49,8,9,"Contact with the Pokémon may burn the foe." +49,9,5,Peut brûler l'ennemi s'il y a contact. 49,9,9,"Contact with the Pokémon may burn the foe." +49,10,5,Peut brûler l'ennemi s'il y a contact. 49,10,9,"Contact with the Pokémon may burn the foe." +49,11,5,Peut brûler l'ennemi s'il y a contact. 49,11,5,"Peut brûler l’ennemi s’il y a contact." 49,11,9,"Contact with the Pokémon may burn the attacker." +49,14,5,Peut brûler l'ennemi s'il y a contact. 49,14,9,"Contact with the Pokémon may burn the attacker." 49,15,1,"ふれた あいてを やけど させることがある。" 49,15,3,"접촉한 상대에게 화상을 입힐 때가 있다." +49,15,5,Peut brûler l'attaquant s'il y a contact. +49,15,5,Peut brûler l'attaquant lorsque le Pokémon subit une attaque directe. 49,15,5,"Peut brûler l’attaquant s’il y a contact." 49,15,6,"Fügt dem Angreifer bei Berührung @@ -6142,6 +6825,8 @@ may burn the attacker." させることがある。" 49,16,3,"접촉한 상대에게 화상을 입힐 때가 있다." +49,16,5,Peut brûler l'attaquant s'il y a contact. +49,16,5,Peut brûler l'attaquant lorsque le Pokémon subit une attaque directe. 49,16,5,"Peut brûler l’attaquant s’il y a contact." 49,16,6,"Fügt dem Angreifer bei Berührung @@ -6160,6 +6845,7 @@ may burn the attacker." 화상 상태로 만들 때가 있다." 49,17,4,"有時會讓接觸到自己的 對手陷入灼傷狀態。" +49,17,5,Peut brûler l'attaquant lorsque le Pokémon subit une attaque directe. 49,17,5,"Peut brûler l’attaquant lorsque le Pokémon subit une attaque directe." 49,17,6,"Fügt dem Angreifer bei Berührung eventuell @@ -6178,6 +6864,7 @@ scottato." 화상 상태로 만들 때가 있다." 49,18,4,"有時會讓接觸到自己的 對手陷入灼傷狀態。" +49,18,5,Peut brûler l'attaquant lorsque le Pokémon subit une attaque directe. 49,18,5,"Peut brûler l’attaquant lorsque le Pokémon subit une attaque directe." 49,18,6,"Fügt dem Angreifer bei Berührung eventuell @@ -6214,6 +6901,7 @@ scottato." 화상 상태로 만들 때가 있다." 49,20,4,"有時會讓接觸到自己的 對手陷入灼傷狀態。" +49,20,5,Peut brûler l'attaquant lorsque le Pokémon subit une attaque directe. 49,20,5,"Peut brûler l’attaquant lorsque le Pokémon subit une attaque directe." 49,20,6,"Fügt dem Angreifer bei Berührung eventuell @@ -6225,8 +6913,13 @@ Verbrennungen zu." やけど状態に する ことがある。" 49,20,12,"有时会让接触到自己的 对手变为灼伤状态。" +49,25,5,Peut brûler l'attaquant lorsque le Pokémon subit une attaque directe. +49,25,9,Contact with the Pokémon may burn the attacker. +50,5,5,Améliore chances de fuite. 50,5,9,Makes escaping easier. +50,6,5,Améliore chances de fuite. 50,6,9,Makes escaping easier. +50,7,5,Améliore chances de fuite. 50,7,9,Makes escaping easier. 50,8,9,"Enables sure getaway from wild Pokémon." @@ -6244,6 +6937,7 @@ from wild Pokémon." かならず にげられる。" 50,15,3,"야생 포켓몬으로부터 반드시 도망칠 수 있다." +50,15,5,Permet de fuir n'importe quel Pokémon sauvage. 50,15,5,"Permet de fuir n’importe quel Pokémon sauvage." 50,15,6,"Die Flucht vor wilden Pokémon @@ -6260,6 +6954,7 @@ from wild Pokémon." かならず にげられる。" 50,16,3,"야생 포켓몬으로부터 반드시 도망칠 수 있다." +50,16,5,Permet de fuir n'importe quel Pokémon sauvage. 50,16,5,"Permet de fuir n’importe quel Pokémon sauvage." 50,16,6,"Die Flucht vor wilden Pokémon @@ -6278,6 +6973,7 @@ from wild Pokémon." 반드시 도망칠 수 있다." 50,17,4,"一定能從野生寶可夢 那裡逃走。" +50,17,5,Permet de fuir n'importe quel Pokémon sauvage. 50,17,5,Permet de fuir n’importe quel Pokémon sauvage. 50,17,6,Die Flucht vor wilden Pokémon gelingt immer. 50,17,7,Permite escapar de todos los Pokémon salvajes. @@ -6293,6 +6989,7 @@ from wild Pokémon." 반드시 도망칠 수 있다." 50,18,4,"一定能從野生寶可夢 那裡逃走。" +50,18,5,Permet de fuir n'importe quel Pokémon sauvage. 50,18,5,Permet de fuir n’importe quel Pokémon sauvage. 50,18,6,Die Flucht vor wilden Pokémon gelingt immer. 50,18,7,Permite escapar de todos los Pokémon salvajes. @@ -6323,6 +7020,7 @@ from wild Pokémon." 반드시 도망칠 수 있다." 50,20,4,"一定能從野生寶可夢 那裡逃走。" +50,20,5,Permet de fuir n'importe quel Pokémon sauvage. 50,20,5,Permet de fuir n’importe quel Pokémon sauvage. 50,20,6,Die Flucht vor wilden Pokémon gelingt immer. 50,20,7,Puede escaparse de todos los Pokémon salvajes. @@ -6332,25 +7030,37 @@ from wild Pokémon." 必ず 逃げられる。" 50,20,12,"一定能从野生宝可梦 那儿逃走。" +50,25,5,Permet de fuir n'importe quel Pokémon sauvage. +50,25,9,Enables a sure getaway from wild Pokémon. +51,5,5,Empêche perte de précision. 51,5,9,Prevents loss of accuracy. +51,6,5,Empêche perte de précision. 51,6,9,Prevents loss of accuracy. +51,7,5,Empêche perte de précision. 51,7,9,Prevents loss of accuracy. +51,8,5,Empêche le Pokémon de perdre en précision. 51,8,9,"Prevents the Pokémon from losing accuracy." +51,9,5,Empêche le Pokémon de perdre en précision. 51,9,9,"Prevents the Pokémon from losing accuracy." +51,10,5,Empêche le Pokémon de perdre en précision. 51,10,9,"Prevents the Pokémon from losing accuracy." +51,11,5,Empêche le Pokémon de perdre en précision. 51,11,5,"Empêche le Pokémon de perdre en Précision." 51,11,9,"Prevents other Pokémon from lowering accuracy." +51,13,5,Empêche le Pokémon de perdre en précision. +51,14,5,Empêche le Pokémon de perdre en précision. 51,14,9,"Prevents other Pokémon from lowering accuracy." 51,15,1,"めいちゅうりつを さげられない。" 51,15,3,"명중률이 떨어지지 않는다." +51,15,5,Les yeux perçants du Pokémon empêchent sa Précision de baisser. 51,15,5,"Empêche le Pokémon de perdre en Précision." 51,15,6,"Hindert Angreifer daran, @@ -6366,6 +7076,8 @@ from lowering accuracy." さげられない。" 51,16,3,"명중률이 떨어지지 않는다." +51,16,5,Les yeux perçants du Pokémon empêchent sa Précision de baisser. +51,16,5,Empêche le Pokémon de perdre en précision. 51,16,5,"Empêche le Pokémon de perdre en Précision." 51,16,6,"Hindert Angreifer daran, @@ -6383,6 +7095,7 @@ from lowering accuracy." 명중률이 떨어지지 않는다." 51,17,4,"靠著銳利的目光, 命中率不會被降低。" +51,17,5,Les yeux perçants du Pokémon empêchent sa Précision de baisser. 51,17,5,"Les yeux perçants du Pokémon empêchent sa Précision de baisser." 51,17,6,"Sein scharfer Blick hindert Angreifer daran, @@ -6403,6 +7116,7 @@ Pokémon’s accuracy." 명중률이 떨어지지 않는다." 51,18,4,"靠著銳利的目光, 命中率不會被降低。" +51,18,5,Les yeux perçants du Pokémon empêchent sa Précision de baisser. 51,18,5,"Les yeux perçants du Pokémon empêchent sa Précision de baisser." 51,18,6,"Sein scharfer Blick hindert Angreifer daran, @@ -6443,6 +7157,7 @@ Pokémon’s accuracy." 명중률이 떨어지지 않는다." 51,20,4,"靠著銳利的目光, 命中率不會被降低。" +51,20,5,Les yeux perçants du Pokémon empêchent sa Précision de baisser. 51,20,5,"Les yeux perçants du Pokémon empêchent sa Précision de baisser." 51,20,6,"Sein scharfer Blick hindert Angreifer daran, @@ -6456,19 +7171,30 @@ Pokémon’s accuracy." 命中率を 下げられない。" 51,20,12,"多亏了锐利的目光, 命中率不会被降低。" +51,25,5,Les yeux perçants du Pokémon empêchent sa Précision de baisser. +51,25,9,The Pokémon's keen eyes prevent its accuracy from being lowered. +52,5,5,Empêche réduction ATTAQUE. 52,5,9,Prevents ATTACK reduction. +52,6,5,Empêche réduction ATTAQUE. 52,6,9,Prevents ATTACK reduction. +52,7,5,Empêche réduction ATTAQUE. 52,7,9,Prevents ATTACK reduction. +52,8,5,Empêche la réduction de l'Attaque. 52,8,9,"Prevents the Attack stat from being lowered." +52,9,5,Empêche la réduction de l'Attaque. 52,9,9,"Prevents the Attack stat from being lowered." +52,10,5,Empêche la réduction de l'Attaque. 52,10,9,"Prevents the Attack stat from being lowered." +52,11,5,Empêche la réduction de l'Attaque. 52,11,5,"Empêche la réduction de l’Attaque." 52,11,9,"Prevents other Pokémon from lowering Attack stat." +52,13,5,Empêche la réduction de l'Attaque. +52,14,5,Empêche la réduction de l'Attaque. 52,14,9,"Prevents other Pokémon from lowering Attack stat." 52,15,1,"あいてに こうげきを @@ -6490,6 +7216,7 @@ from lowering its Attack stat." さげられない。" 52,16,3,"상대가 공격을 떨어뜨리지 못한다." +52,16,5,Empêche la réduction de l'Attaque. 52,16,5,"Empêche la réduction de l’Attaque." 52,16,6,"Hindert Angreifer daran, @@ -6507,6 +7234,7 @@ from lowering its Attack stat." 상대가 공격을 떨어뜨리지 못한다." 52,17,4,"因為擁有以力量為傲的鉗子, 不會被對手降低攻擊。" +52,17,5,Le Pokémon est armé de lames tranchantes qui font sa fierté et empêchent son Attaque de baisser. 52,17,5,"Le Pokémon est armé de lames tranchantes qui font sa fierté et empêchent son Attaque de baisser." 52,17,6,"Hindert Angreifer durch mächtige Scheren daran, @@ -6527,6 +7255,7 @@ prevent other Pokémon from lowering its Attack stat." 상대가 공격을 떨어뜨리지 못한다." 52,18,4,"因為擁有以力量為傲的鉗子, 不會被對手降低攻擊。" +52,18,5,Le Pokémon est armé de lames tranchantes qui font sa fierté et empêchent son Attaque de baisser. 52,18,5,"Le Pokémon est armé de lames tranchantes qui font sa fierté et empêchent son Attaque de baisser." 52,18,6,"Hindert Angreifer durch mächtige Scheren daran, @@ -6567,6 +7296,7 @@ prevent other Pokémon from lowering its Attack stat." 상대가 공격을 떨어뜨리지 못한다." 52,20,4,"因為擁有以力量為傲的鉗子, 不會被對手降低攻擊。" +52,20,5,Le Pokémon est armé de lames tranchantes qui font sa fierté et empêchent son Attaque de baisser. 52,20,5,"Le Pokémon est armé de lames tranchantes qui font sa fierté et empêchent son Attaque de baisser." 52,20,6,"Hindert Angreifer durch mächtige Scheren daran, @@ -6581,6 +7311,8 @@ prevent other Pokémon from lowering its Attack stat." 相手に 攻撃を 下げられない。" 52,20,12,"因为拥有以力量自豪的钳子, 不会被对手降低攻击。" +52,25,5,Le Pokémon est armé de puissantes pinces qui font sa fierté et empêchent son Attaque d'être baissée par l'adversaire. +52,25,9,"The Pokémon's prized, mighty pincers prevent other Pokémon from lowering its Attack stat." 53,5,9,May pick up items. 53,6,9,May pick up items. 53,7,9,May pick up items. @@ -6734,25 +7466,37 @@ outside of battle, too." 冒険中も 拾ってくる。" 53,20,12,"有时会捡来对手用过的道具, 冒险过程中也会捡到。" +53,25,5,Permet parfois au Pokémon de ramasser les objets\nque d’autres Pokémon ont utilisés. Il lui arrive aussi\nd’en trouver hors des combats. +53,25,9,"The Pokémon may pick up an item another Pokémon used during a battle. It may pick up items outside of battle, too." +54,5,5,Frappe tous les 2 tours. 54,5,9,Moves only every two turns. +54,6,5,Frappe tous les 2 tours. 54,6,9,Moves only every two turns. +54,7,5,Frappe tous les 2 tours. 54,7,9,Moves only every two turns. +54,8,5,Le Pokémon ne frappe qu'un tour sur deux. 54,8,9,"The Pokémon can’t attack on consecutive turns." +54,9,5,Le Pokémon ne frappe qu'un tour sur deux. 54,9,9,"The Pokémon can’t attack on consecutive turns." +54,10,5,Le Pokémon ne frappe qu'un tour sur deux. 54,10,9,"Pokémon can’t attack on consecutive turns." +54,11,5,Le Pokémon ne frappe qu'un tour sur deux. 54,11,5,"Le Pokémon ne frappe qu’un tour sur deux." 54,11,9,"Pokémon can’t attack on consecutive turns." +54,13,5,Le Pokémon ne frappe qu'un tour sur deux. +54,14,5,Le Pokémon ne frappe qu'un tour sur deux. 54,14,9,"Pokémon can’t attack on consecutive turns." 54,15,1,"こうげきが れんぞくで だせない。" 54,15,3,"연속으로 공격할 수 없다." +54,15,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." 54,15,5,"Le Pokémon n’agit qu’un tour sur deux." 54,15,6,Greift nur alle zwei Runden an. @@ -6768,6 +7512,8 @@ on consecutive turns." だせない。" 54,16,3,"연속으로 공격할 수 없다." +54,16,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." +54,16,5,Le Pokémon ne frappe qu'un tour sur deux. 54,16,5,"Le Pokémon n’agit qu’un tour sur deux." 54,16,6,Greift nur alle zwei Runden an. @@ -6785,6 +7531,7 @@ on consecutive turns." 다음 턴은 쉰다." 54,17,4,"如果使出招式, 下一回合就需要休息。" +54,17,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." 54,17,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." 54,17,6,"Das Pokémon muss nach Einsatz einer Attacke @@ -6805,6 +7552,7 @@ uses one." 다음 턴은 쉰다." 54,18,4,"如果使出招式, 下一回合就需要休息。" +54,18,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." 54,18,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." 54,18,6,"Das Pokémon muss nach Einsatz einer Attacke @@ -6845,6 +7593,7 @@ on the previous turn." 다음 턴은 쉰다." 54,20,4,"如果使出招式, 下一回合就需要休息。" +54,20,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." 54,20,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." 54,20,6,"Das Pokémon muss nach Einsatz einer Attacke @@ -6859,19 +7608,29 @@ on the previous turn." 次の ターンは 休んでしまう。" 54,20,12,"如果使出招式, 下一回合就会休息。" +54,25,5,"Lorsque le Pokémon utilise une capacité, il passe le tour suivant à paresser." +54,25,9,"Each time the Pokémon uses a move, it spends the next turn loafing around." +55,5,5,Substitue préc. par puiss. 55,5,9,Trades accuracy for power. +55,6,5,Substitue préc. par puiss. 55,6,9,Trades accuracy for power. 55,7,9,Trades accuracy for power. +55,8,5,Améliore l'Attaque mais diminue la Précision. 55,8,9,"Boosts the Attack stat, but lowers accuracy." +55,9,5,Améliore l'Attaque mais diminue la Précision. 55,9,9,"Boosts the Attack stat, but lowers accuracy." +55,10,5,Améliore l'Attaque mais diminue la Précision. 55,10,9,"Boosts the Attack stat, but lowers accuracy." +55,11,5,Améliore l'Attaque mais diminue la Précision. 55,11,5,"Améliore l’Attaque mais diminue la Précision." 55,11,9,"Boosts the Attack stat, but lowers accuracy." +55,13,5,Améliore l'Attaque mais diminue la Précision. +55,14,5,Améliore l'Attaque mais diminue la Précision. 55,14,9,"Boosts the Attack stat, but lowers accuracy." 55,15,1,"こうげきは たかいが @@ -6894,6 +7653,7 @@ but lowers accuracy." はずれやすい。" 55,16,3,"공격은 높지만 빗나가기 쉽다." +55,16,5,Améliore l'Attaque mais diminue la Précision. 55,16,5,"Améliore l’Attaque mais diminue la Précision." 55,16,6,"Erhöht den Angriffs-Wert, @@ -6912,6 +7672,7 @@ but lowers accuracy." 명중률이 떨어진다." 55,17,4,"自己的攻擊雖會變高, 但命中率會降低。" +55,17,5,Améliore l'Attaque du Pokémon mais diminue la Précision. 55,17,5,"Améliore l’Attaque du Pokémon mais diminue la Précision." 55,17,6,"Erhöht den Angriffs-Wert, aber senkt die @@ -6929,6 +7690,7 @@ Genauigkeit." 명중률이 떨어진다." 55,18,4,"自己的攻擊雖會變高, 但命中率會降低。" +55,18,5,Améliore l'Attaque du Pokémon mais diminue la Précision. 55,18,5,"Améliore l’Attaque du Pokémon mais diminue la Précision." 55,18,6,"Erhöht den Angriffs-Wert, aber senkt die @@ -6963,6 +7725,7 @@ Genauigkeit." 명중률이 떨어진다." 55,20,4,"自己的攻擊雖會變高, 但命中率會降低。" +55,20,5,"Améliore l'Attaque du Pokémon, mais diminue la Précision." 55,20,5,"Améliore l’Attaque du Pokémon, mais diminue la Précision." 55,20,6,"Erhöht den Angriffs-Wert, aber senkt die Genauigkeit." @@ -6973,25 +7736,37 @@ la Précision." 命中率が 下がる。" 55,20,12,"自己的攻击变高, 但命中率会降低。" +55,25,5,"Améliore l'Attaque du Pokémon, mais diminue la Précision." +55,25,9,Boosts the Pokémon's Attack stat but lowers its accuracy. +56,5,5,Séduit quand touché. 56,5,9,Infatuates on contact. +56,6,5,Séduit quand touché. 56,6,9,Infatuates on contact. +56,7,5,Séduit quand touché. 56,7,9,Infatuates on contact. +56,8,5,Séduit parfois l'ennemi au contact. 56,8,9,"Contact with the Pokémon may cause infatuation." +56,9,5,Séduit parfois l'ennemi au contact. 56,9,9,"Contact with the Pokémon may cause infatuation." +56,10,5,Séduit parfois l'ennemi au contact. 56,10,9,"Contact with the Pokémon may cause infatuation." +56,11,5,Séduit parfois l'ennemi au contact. 56,11,5,"Séduit parfois l’ennemi au contact." 56,11,9,"Contact with the Pokémon may cause infatuation." +56,13,5,Séduit parfois l'ennemi au contact. +56,14,5,Séduit parfois l'ennemi au contact. 56,14,9,"Contact with the Pokémon may cause infatuation." 56,15,1,"ふれると メロメロに することがある。" 56,15,3,"스치면 헤롱헤롱 상태가 될 때가 있다." +56,15,5,Peut séduire l'attaquant lorsque le Pokémon subit une attaque directe. 56,15,5,"Séduit parfois l’attaquant au contact." 56,15,6,"Kann bei Kontakt betörend @@ -7008,6 +7783,8 @@ may cause infatuation." することがある。" 56,16,3,"스치면 헤롱헤롱 상태가 될 때가 있다." +56,16,5,Peut séduire l'attaquant lorsque le Pokémon subit une attaque directe. +56,16,5,Séduit parfois l'ennemi au contact. 56,16,5,"Séduit parfois l’attaquant au contact." 56,16,6,"Kann bei Kontakt betörend @@ -7026,6 +7803,7 @@ may cause infatuation." 헤롱헤롱 상태로 만들 때가 있다." 56,17,4,"有時會讓接觸到自己的對手 陷入著迷狀態。" +56,17,5,Peut séduire l'attaquant lorsque le Pokémon subit une attaque directe. 56,17,5,"Peut séduire l’attaquant lorsque le Pokémon subit une attaque directe." 56,17,6,"Wird dieses Pokémon durch eine direkte Attacke @@ -7044,6 +7822,7 @@ un attacco diretto." 헤롱헤롱 상태로 만들 때가 있다." 56,18,4,"有時會讓接觸到自己的對手 陷入著迷狀態。" +56,18,5,Peut séduire l'attaquant lorsque le Pokémon subit une attaque directe. 56,18,5,"Peut séduire l’attaquant lorsque le Pokémon subit une attaque directe." 56,18,6,"Wird dieses Pokémon durch eine direkte Attacke @@ -7080,6 +7859,7 @@ un attacco diretto." 헤롱헤롱 상태로 만들 때가 있다." 56,20,4,"有時會讓接觸到自己的對手 陷入著迷狀態。" +56,20,5,Peut séduire l'attaquant lorsque le Pokémon subit une attaque directe. 56,20,5,"Peut séduire l’attaquant lorsque le Pokémon subit une attaque directe." 56,20,6,"Wird dieses Pokémon durch eine direkte Attacke @@ -7091,19 +7871,30 @@ un attacco diretto." 56,20,11,"自分に 触った 相手を メロメロに することが ある。" 56,20,12,有时会让接触到自己的对手着迷。 +56,25,5,Peut séduire l'attaquant lorsque le Pokémon subit une attaque directe. +56,25,9,The Pokémon may infatuate attackers that make direct contact with it. +57,5,5,Puissance + avec MINUS. 57,5,9,Powers up with MINUS. +57,6,5,Puissance + avec MINUS. 57,6,9,Powers up with MINUS. +57,7,5,Puissance + avec MINUS. 57,7,9,Powers up with MINUS. +57,8,5,Améliore l'Atq. Spé. si un autre Pokémon a Minus. 57,8,9,"Boosts Sp. Atk if another Pokémon has Minus." +57,9,5,Améliore l'Atq. Spé. si un autre Pokémon a Minus. 57,9,9,"Boosts Sp. Atk if another Pokémon has Minus." +57,10,5,Améliore l'Atq. Spé. si un autre Pokémon a Minus. 57,10,9,"Ups Sp. Atk if another Pokémon has Minus." +57,11,5,Augmente l'Atq. Spé. si un Pokémon a Minus ou Plus. 57,11,5,"Augmente l’Atq. Spé. si un Pokémon a Minus ou Plus." 57,11,9,"Ups Sp. Atk if another Pokémon has Plus or Minus." +57,13,5,Augmente l'Atq. Spé. si un Pokémon a Minus ou Plus. +57,14,5,Augmente l'Atq. Spé. si un Pokémon a Minus ou Plus. 57,14,9,"Ups Sp. Atk if another Pokémon has Plus or Minus." 57,15,1,"プラスかマイナスがいると @@ -7126,6 +7917,7 @@ Pokémon has Plus or Minus." とくこうが あがる。" 57,16,3,"플러스나 마이너스가 있으면 특수공격이 올라간다." +57,16,5,Augmente l'Atq. Spé. si un Pokémon a Minus ou Plus. 57,16,5,"Augmente l’Atq. Spé. si un autre Pokémon a Minus ou Plus." 57,16,6,"Erhöht den Spezial-Angriff, wenn @@ -7147,6 +7939,7 @@ Pokémon has Plus or Minus." 57,17,4,"場上的夥伴之中, 如果有正電或負電特性的寶可夢, 自己的特攻會提高。" +57,17,5,L'Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus. 57,17,5,"L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus." 57,17,6,"Erhöht den Spezial-Angriff, wenn das Pokémon einen @@ -7172,6 +7965,7 @@ with the Plus or Minus Ability is also in battle." 57,18,4,"場上的夥伴之中, 如果有正電或負電特性的寶可夢, 自己的特攻會提高。" +57,18,5,L'Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus. 57,18,5,"L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus." 57,18,6,"Erhöht den Spezial-Angriff, wenn das Pokémon einen @@ -7222,6 +8016,7 @@ with the Plus or Minus Ability is also in battle." 57,20,4,"場上的夥伴之中, 如果有正電或負電特性的寶可夢, 自己的特攻會提高。" +57,20,5,L'Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus. 57,20,5,"L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus." 57,20,6,"Erhöht den Spezial-Angriff, wenn das Pokémon einen @@ -7238,19 +8033,30 @@ with the Plus or Minus Ability is also in battle." 57,20,12,"出场的伙伴之间 如果有正电或负电特性的宝可梦, 自己的特攻会提高。" +57,25,5,L’Attaque Spéciale du Pokémon augmente\nsi un Pokémon allié a le talent Moins ou Plus. +57,25,9,Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle. +58,5,5,Puissance + avec PLUS. 58,5,9,Powers up with PLUS. +58,6,5,Puissance + avec PLUS. 58,6,9,Powers up with PLUS. +58,7,5,Puissance + avec PLUS. 58,7,9,Powers up with PLUS. +58,8,5,Améliore l'Atq. Spé. si un autre Pokémon a Plus. 58,8,9,"Boosts Sp. Atk if another Pokémon has Plus." +58,9,5,Améliore l'Atq. Spé. si un autre Pokémon a Plus. 58,9,9,"Boosts Sp. Atk if another Pokémon has Plus." +58,10,5,Améliore l'Atq. Spé. si un autre Pokémon a Plus. 58,10,9,"Ups Sp. Atk if another Pokémon has Plus." +58,11,5,Augmente l'Atq. Spé. si un autre Pokémon a Minus ou Plus. 58,11,5,"Augmente l’Atq. Spé. si un Pokémon a Minus ou Plus." 58,11,9,"Ups Sp. Atk if another Pokémon has Plus or Minus." +58,13,5,Augmente l'Atq. Spé. si un autre Pokémon a Minus ou Plus. +58,14,5,Augmente l'Atq. Spé. si un autre Pokémon a Minus ou Plus. 58,14,9,"Ups Sp. Atk if another Pokémon has Plus or Minus." 58,15,1,"プラスかマイナスがいると @@ -7273,6 +8079,7 @@ Pokémon has Plus or Minus." とくこうが あがる。" 58,16,3,"플러스나 마이너스가 있으면 특수공격이 올라간다." +58,16,5,Augmente l'Atq. Spé. si un autre Pokémon a Minus ou Plus. 58,16,5,"Augmente l’Atq. Spé. si un autre Pokémon a Minus ou Plus." 58,16,6,"Erhöht den Spezial-Angriff, wenn @@ -7294,6 +8101,7 @@ Pokémon has Plus or Minus." 58,17,4,"場上的夥伴之中, 如果有正電或負電特性的寶可夢, 自己的特攻會提高。" +58,17,5,L'Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus. 58,17,5,"L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus." 58,17,6,"Erhöht den Spezial-Angriff, wenn das Pokémon einen @@ -7319,6 +8127,7 @@ with the Plus or Minus Ability is also in battle." 58,18,4,"場上的夥伴之中, 如果有正電或負電特性的寶可夢, 自己的特攻會提高。" +58,18,5,L'Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus. 58,18,5,"L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Minus ou Plus." 58,18,6,"Erhöht den Spezial-Angriff, wenn das Pokémon einen @@ -7369,6 +8178,7 @@ with the Plus or Minus Ability is also in battle." 58,20,4,"場上的夥伴之中, 如果有正電或負電特性的寶可夢, 自己的特攻會提高。" +58,20,5,L'Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus. 58,20,5,"L’Attaque Spéciale du Pokémon augmente si un Pokémon allié a le talent Moins ou Plus." 58,20,6,"Erhöht den Spezial-Angriff, wenn das Pokémon einen @@ -7385,13 +8195,21 @@ with the Plus or Minus Ability is also in battle." 58,20,12,"出场的伙伴之间 如果有正电或负电特性的宝可梦, 自己的特攻会提高。" +58,25,5,L’Attaque Spéciale du Pokémon augmente\nsi un Pokémon allié a le talent Moins ou Plus. +58,25,9,Boosts the Sp. Atk stat of the Pokémon if an ally with the Plus or Minus Ability is also in battle. +59,5,5,Change selon le climat. 59,5,9,Changes with the weather. +59,6,5,Change selon le climat. 59,6,9,Changes with the weather. +59,7,5,Change selon le climat. 59,7,9,Changes with the weather. +59,8,5,MORPHEO change de forme selon le climat. 59,8,9,"CASTFORM transforms with the weather." +59,9,5,MORPHEO change de forme selon le climat. 59,9,9,"CASTFORM transforms with the weather." +59,10,5,MORPHEO change de forme selon le climat. 59,10,9,"CASTFORM transforms with the weather." 59,11,5,"Morphéo change de forme @@ -7404,6 +8222,7 @@ the weather." へんかする。" 59,15,3,"날씨에 따라 캐스퐁이 변화한다." +59,15,5,Morphéo change de forme selon le climat. 59,15,5,"Morphéo change de forme selon le climat." 59,15,6,"Formeo verändert seine Form @@ -7420,6 +8239,7 @@ the weather." へんかする。" 59,16,3,"날씨에 따라 캐스퐁이 변화한다." +59,16,5,Morphéo change de forme selon le climat. 59,16,5,"Morphéo change de forme selon le climat." 59,16,6,"Formeo verändert seine Form @@ -7441,6 +8261,7 @@ the weather." 59,17,4,"在天氣的影響下, 會變成水屬性、火屬性 或冰屬性之中的一種。" +59,17,5,"Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo." 59,17,5,"Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo." 59,17,6,"Nimmt je nach Wetter entweder den Typ Wasser, @@ -7466,6 +8287,7 @@ its type to Water, Fire, or Ice." 59,18,4,"在天氣的影響下, 會變成水屬性、火屬性 或冰屬性之中的一種。" +59,18,5,"Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo." 59,18,5,"Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo." 59,18,6,"Nimmt je nach Wetter entweder den Typ Wasser, @@ -7516,6 +8338,7 @@ its type to Water, Fire, or Ice." 59,20,4,"在天氣的影響下, 會變成水屬性、火屬性 或冰屬性之中的一種。" +59,20,5,"Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo." 59,20,5,"Le Pokémon prend le type Eau, Feu ou Glace en fonction de la météo." 59,20,6,"Nimmt je nach Wetter entweder den Typ Wasser, Feuer @@ -7532,19 +8355,29 @@ its type to Water, Fire, or Ice." 59,20,12,"受天气的影响, 会变为水属性、火属性 或冰属性中的某一个。" +59,25,5,"Le Pokémon prend le type Eau, Feu ou Glace\nen fonction de la météo." +60,5,5,Empêche le vol d'objets. 60,5,9,Prevents item theft. +60,6,5,Empêche le vol d'objets. 60,6,9,Prevents item theft. +60,7,5,Empêche le vol d'objets. 60,7,9,Prevents item theft. +60,8,5,Protège le Pokémon contre le vol d'objets. 60,8,9,"Protects the Pokémon from item theft." +60,9,5,Protège le Pokémon contre le vol d'objets. 60,9,9,"Protects the Pokémon from item theft." +60,10,5,Protège le Pokémon contre le vol d'objets. 60,10,9,"Protects the Pokémon from item theft." +60,11,5,Fait s'agripper à l'objet pour en empêcher le vol. 60,11,5,"Fait s’agripper à l’objet pour en empêcher le vol." 60,11,9,"Protects the Pokémon from item theft." +60,13,5,Fait s'agripper à l'objet pour en empêcher le vol. +60,14,5,Fait s'agripper à l'objet pour en empêcher le vol. 60,14,9,"Protects the Pokémon from item theft." 60,15,1,"ねんちゃくして @@ -7567,6 +8400,7 @@ from item theft." どうぐを まもる。" 60,16,3,"달라붙어서 도구를 지킨다." +60,16,5,Fait s'agripper à l'objet pour en empêcher le vol. 60,16,5,"Fait s’agripper à l’objet pour en empêcher le vol." 60,16,6,"Verhindert durch Klebe-Effekt @@ -7588,6 +8422,7 @@ from item theft." 60,17,4,"道具會黏在 具有黏性的身體上, 不會被對手奪走。" +60,17,5,"Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober." 60,17,5,"Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober." 60,17,6,"Trägt es ein Item, bleibt dieses an seinem klebrigen @@ -7613,6 +8448,7 @@ cannot be removed by other Pokémon." 60,18,4,"道具會黏在 具有黏性的身體上, 不會被對手奪走。" +60,18,5,"Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober." 60,18,5,"Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober." 60,18,6,"Trägt es ein Item, bleibt dieses an seinem klebrigen @@ -7663,6 +8499,7 @@ cannot be removed by other Pokémon." 60,20,4,"道具會黏在 具有黏性的身體上, 不會被對手奪走。" +60,20,5,"Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober." 60,20,5,"Les objets sont collés au corps gluant du Pokémon, ce qui empêche ses adversaires de les dérober." 60,20,6,"Trägt es ein Item, bleibt dieses an seinem klebrigen @@ -7678,25 +8515,37 @@ cannot be removed by other Pokémon." 相手に 道具を 奪われない。" 60,20,12,"因为道具是粘在黏性身体上的, 所以不会被对手夺走。" +60,25,5,"Les objets sont collés au corps gluant du Pokémon,\nce qui empêche ses adversaires de les dérober." +60,25,9,The Pokémon's held items cling to its sticky body and cannot be removed by other Pokémon. +61,5,5,Mue pour se soigner. 61,5,9,Heals the body by shedding. +61,6,5,Mue pour se soigner. 61,6,9,Heals the body by shedding. +61,7,5,Mue pour se soigner. 61,7,9,Heals the body by shedding. +61,8,5,Le Pokémon soigne parfois ses problèmes de statut. 61,8,9,"The Pokémon may heal its own status problems." +61,9,5,Le Pokémon soigne parfois ses problèmes de statut. 61,9,9,"The Pokémon may heal its own status problems." +61,10,5,Le Pokémon soigne parfois ses problèmes de statut. 61,10,9,"The Pokémon may heal its own status problems." +61,11,5,Le Pokémon soigne parfois ses problèmes de statut. 61,11,5,"Le Pokémon soigne parfois ses problèmes de statut." 61,11,9,"The Pokémon may heal its own status problems." +61,13,5,Le Pokémon soigne parfois ses problèmes de statut. +61,14,5,Le Pokémon soigne parfois ses problèmes de statut. 61,14,9,"The Pokémon may heal its own status problems." 61,15,1,"じょうたい いじょうを なおす ことがある。" 61,15,3,"상태 이상을 회복할 때가 있다." +61,15,5,Le Pokémon soigne parfois ses altérations de statut en muant. 61,15,5,"Le Pokémon soigne parfois ses problèmes de statut." 61,15,6,"Das Pokémon heilt eventuell @@ -7713,6 +8562,8 @@ own status conditions." なおす ことがある。" 61,16,3,"상태 이상을 회복할 때가 있다." +61,16,5,Le Pokémon soigne parfois ses altérations de statut en muant. +61,16,5,Le Pokémon soigne parfois ses problèmes de statut. 61,16,5,"Le Pokémon soigne parfois ses problèmes de statut." 61,16,6,"Das Pokémon heilt eventuell @@ -7733,6 +8584,7 @@ own status conditions." 회복할 때가 있다." 61,17,4,"透過蛻去身上的皮, 有時會治癒異常狀態。" +61,17,5,Le Pokémon soigne parfois ses altérations de statut en muant. 61,17,5,"Le Pokémon soigne parfois ses altérations de statut en muant." 61,17,6,"Das Pokémon befreit sich eventuell von @@ -7756,6 +8608,7 @@ by shedding its skin." 회복할 때가 있다." 61,18,4,"透過蛻去身上的皮, 有時會治癒異常狀態。" +61,18,5,Le Pokémon soigne parfois ses altérations de statut en muant. 61,18,5,"Le Pokémon soigne parfois ses altérations de statut en muant." 61,18,6,"Das Pokémon befreit sich eventuell von @@ -7802,6 +8655,7 @@ by shedding its skin." 회복할 때가 있다." 61,20,4,"透過蛻去身上的皮, 有時會治癒異常狀態。" +61,20,5,Le Pokémon soigne parfois ses altérations de statut en muant. 61,20,5,"Le Pokémon soigne parfois ses altérations de statut en muant." 61,20,6,"Das Pokémon befreit sich eventuell von @@ -7816,25 +8670,37 @@ by shedding its skin." 治すことが ある。" 61,20,12,"通过蜕去身上的皮, 有时会治愈异常状态。" +61,25,5,Le Pokémon soigne parfois ses altérations de statut en muant. +61,25,9,The Pokémon may cure its own status conditions by shedding its skin. +62,5,5,Augmente ATT. quand blessé. 62,5,9,Ups ATTACK if suffering. +62,6,5,Augmente ATT. quand blessé. 62,6,9,Ups ATTACK if suffering. +62,7,5,Augmente ATT. quand blessé. 62,7,9,Ups ATTACK if suffering. +62,8,5,Augmente l'Attaque s'il y a un problème de statut. 62,8,9,"Boosts Attack if there is a status problem." +62,9,5,Augmente l'Attaque s'il y a un problème de statut. 62,9,9,"Boosts Attack if there is a status problem." +62,10,5,Augmente l'Attaque s'il y a un problème de statut. 62,10,9,"Boosts Attack if there is a status problem." +62,11,5,Augmente l'Attaque s'il y a un problème de statut. 62,11,5,"Augmente l’Attaque s’il y a un problème de statut." 62,11,9,"Boosts Attack if there is a status problem." +62,13,5,Augmente l'Attaque s'il y a un problème de statut. +62,14,5,Augmente l'Attaque s'il y a un problème de statut. 62,14,9,"Boosts Attack if there is a status problem." 62,15,1,"じょうたい いじょうで こうげきが あがる。" 62,15,3,"상태 이상이 되면 공격이 올라간다." +62,15,5,Augmente l'Attaque du Pokémon s'il est affecté par une altération de statut. 62,15,5,"Augmente l’Attaque s’il y a un problème de statut." 62,15,6,"Steigert bei Statusproblemen @@ -7851,6 +8717,8 @@ Pokémon has a status condition." こうげきが あがる。" 62,16,3,"상태 이상이 되면 공격이 올라간다." +62,16,5,Augmente l'Attaque du Pokémon s'il est affecté par une altération de statut. +62,16,5,Augmente l'Attaque s'il y a un problème de statut. 62,16,5,"Augmente l’Attaque s’il y a un problème de statut." 62,16,6,"Steigert bei Statusproblemen @@ -7872,6 +8740,7 @@ Pokémon has a status condition." 62,17,4,"陷入異常狀態時, 會拿出毅力, 攻擊會提高。" +62,17,5,Augmente l'Attaque du Pokémon s'il est affecté par une altération de statut. 62,17,5,"Augmente l’Attaque du Pokémon s’il est affecté par une altération de statut." 62,17,6,"Bei Statusproblemen setzt es Adrenalin frei und @@ -7897,6 +8766,7 @@ the Pokémon’s Attack stat." 62,18,4,"陷入異常狀態時, 會拿出毅力, 攻擊會提高。" +62,18,5,Augmente l'Attaque du Pokémon s'il est affecté par une altération de statut. 62,18,5,"Augmente l’Attaque du Pokémon s’il est affecté par une altération de statut." 62,18,6,"Bei Statusproblemen setzt es Adrenalin frei und @@ -7947,6 +8817,7 @@ the Pokémon’s Attack stat." 62,20,4,"陷入異常狀態時, 會拿出毅力, 攻擊會提高。" +62,20,5,Augmente l'Attaque du Pokémon s'il est affecté par une altération de statut. 62,20,5,"Augmente l’Attaque du Pokémon s’il est affecté par une altération de statut." 62,20,6,"Bei Statusproblemen setzt es Adrenalin frei und @@ -7963,11 +8834,18 @@ the Pokémon’s Attack stat." 62,20,12,"如果变为异常状态, 会拿出毅力, 攻击会提高。" +62,25,5,Augmente l'Attaque du Pokémon s'il est affecté par une altération de statut. +62,25,9,It's so gutsy that having a status condition boosts the Pokémon's Attack stat. +63,5,5,Augmente DEF. quand blessé. 63,5,9,Ups DEFENSE if suffering. +63,6,5,Augmente DEF. quand blessé. 63,6,9,Ups DEFENSE if suffering. +63,7,5,Augmente DEF. quand blessé. 63,7,9,Ups DEFENSE if suffering. +63,8,5,Augmente la Défense s'il y a un problème de statut. 63,8,9,"Boosts Defense if there is a status problem." +63,9,5,Augmente la Défense s'il y a un problème de statut. 63,9,9,"Boosts Defense if there is a status problem." 63,10,9,"Ups Defense if there is @@ -7998,6 +8876,7 @@ Pokémon has a status condition." ぼうぎょが あがる。" 63,16,3,"상태 이상이 되면 방어가 올라간다." +63,16,5,Augmente la Défense s'il y a un problème de statut. 63,16,5,"Augmente la Défense s’il y a un problème de statut." 63,16,6,"Steigert bei Statusproblemen @@ -8019,6 +8898,7 @@ Pokémon has a status condition." 63,17,4,"陷入異常狀態時, 神奇鱗片會發生反應, 防禦會提高。" +63,17,5,Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense. 63,17,5,"Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense." 63,17,6,"Bei Statusproblemen schützt es sich mit mysteriösen @@ -8045,6 +8925,7 @@ stat if it has a status condition." 63,18,4,"陷入異常狀態時, 神奇鱗片會發生反應, 防禦會提高。" +63,18,5,Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense. 63,18,5,"Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense." 63,18,6,"Bei Statusproblemen schützt es sich mit mysteriösen @@ -8097,6 +8978,7 @@ stat if it has a status condition." 63,20,4,"陷入異常狀態時, 神奇鱗片會發生反應, 防禦會提高。" +63,20,5,Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense. 63,20,5,"Les écailles mystérieuses du Pokémon réagissent aux altérations de statut en augmentant sa Défense." 63,20,6,"Bei Statusproblemen schützt es sich mit mysteriösen @@ -8113,25 +8995,36 @@ stat if it has a status condition." 63,20,12,"如果变为异常状态, 神奇鳞片会发生反应, 防御会提高。" +63,25,5,Les écailles mystérieuses du Pokémon réagissent\naux altérations de statut en augmentant sa Défense. +63,25,9,The Pokémon's marvelous scales boost its Defense stat if it has a status condition. +64,5,5,Blesse quand drainé. 64,5,9,Draining causes injury. +64,6,5,Blesse quand drainé. 64,6,9,Draining causes injury. +64,7,5,Blesse quand drainé. 64,7,9,Draining causes injury. +64,8,5,Blesse l'ennemi qui draine l'énergie du Pokémon. 64,8,9,"Inflicts damage on foes using any draining move." +64,9,5,Blesse l'ennemi qui draine l'énergie du Pokémon. 64,9,9,"Inflicts damage on foes using any draining move." +64,10,5,Blesse l'ennemi qui draine l'énergie du Pokémon. 64,10,9,"Inflicts damage on foes using any draining move." +64,11,5,Blesse l'ennemi qui draine l'énergie du Pokémon. 64,11,5,"Blesse l’ennemi qui draine l’énergie du Pokémon." 64,11,9,"Damages attackers using any draining move." +64,14,5,Blesse l'ennemi qui draine l'énergie du Pokémon. 64,14,9,"Damages attackers using any draining move." 64,15,1,"すいとった あいての HPを へらす。" 64,15,3,"흡수한 상대의 HP를 줄인다." +64,15,5,Blesse l'attaquant qui draine l'énergie du Pokémon. 64,15,5,"Blesse l’attaquant qui draine l’énergie du Pokémon." 64,15,6,"Schadet Angreifern, @@ -8148,6 +9041,7 @@ using any draining move." HPを へらす。" 64,16,3,"흡수한 상대의 HP를 줄인다." +64,16,5,Blesse l'attaquant qui draine l'énergie du Pokémon. 64,16,5,"Blesse l’attaquant qui draine l’énergie du Pokémon." 64,16,6,"Schadet Angreifern, @@ -8169,6 +9063,7 @@ using any draining move." 64,17,4,"吸收了污泥漿的對手 會因為強烈的惡臭而 使得HP減少。" +64,17,5,Le Pokémon suinte un liquide toxique qui blesse tous ceux qui tentent de voler ses PV. 64,17,5,"Le Pokémon suinte un liquide toxique qui blesse tous ceux qui tentent de voler ses PV." 64,17,6,"Angreifer, die durch Saug-Attacken Kloakensoße @@ -8196,6 +9091,7 @@ attackers using any draining move." 64,18,4,"吸收了污泥漿的對手 會因為強烈的惡臭而 使得HP減少。" +64,18,5,Le Pokémon suinte un liquide toxique qui blesse tous ceux qui tentent de voler ses PV. 64,18,5,"Le Pokémon suinte un liquide toxique qui blesse tous ceux qui tentent de voler ses PV." 64,18,6,"Angreifer, die durch Saug-Attacken Kloakensoße @@ -8250,6 +9146,7 @@ attackers using any draining move." 64,20,4,"吸收了污泥漿的對手 會因為強烈的惡臭而 使得HP減少。" +64,20,5,Le Pokémon suinte un liquide toxique nauséabond qui blesse tous ceux qui tentent de voler ses PV. 64,20,5,"Le Pokémon suinte un liquide toxique nauséabond qui blesse tous ceux qui tentent de voler ses PV." 64,20,6,"Angreifer, die durch Saug-Attacken Kloakensoße in @@ -8268,25 +9165,37 @@ attackers using any draining move." 64,20,12,"吸收了污泥浆的对手 会因强烈的恶臭 而受到伤害,减少HP。" +64,25,5,Le Pokémon suinte un liquide toxique nauséabond qui blesse tous ceux qui tentent de voler ses PV. +64,25,9,The strong stench of the Pokémon's oozed liquid damages attackers that use HP-draining moves. +65,5,5,Augmente attaques PLANTE. 65,5,9,Ups GRASS moves in a pinch. +65,6,5,Augmente attaques PLANTE. 65,6,9,Ups GRASS moves in a pinch. +65,7,5,Augmente attaques PLANTE. 65,7,9,Ups GRASS moves in a pinch. +65,8,5,Booste les capacités Plante en cas de besoin. 65,8,9,"Powers up Grass-type moves in a pinch." +65,9,5,Booste les capacités Plante en cas de besoin. 65,9,9,"Powers up Grass-type moves in a pinch." +65,10,5,Booste les capacités Plante en cas de besoin. 65,10,9,"Powers up Grass-type moves in a pinch." +65,11,5,Booste les capacités Plante en cas de besoin. 65,11,5,"Booste les capacités Plante en cas de besoin." 65,11,9,"Powers up Grass-type moves in a pinch." +65,13,5,Booste les capacités Plante en cas de besoin. +65,14,5,Booste les capacités Plante en cas de besoin. 65,14,9,"Powers up Grass-type moves in a pinch." 65,15,1,"ピンチのとき くさの いりょくが あがる。" 65,15,3,"위급할 때 풀타입의 위력이 올라간다." +65,15,5,Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV. 65,15,5,"Booste les capacités Plante en cas de besoin." 65,15,6,"Erhöht in Notfällen die Stärke @@ -8303,6 +9212,8 @@ when the Pokémon is in trouble." いりょくが あがる。" 65,16,3,"위급할 때 풀타입의 위력이 올라간다." +65,16,5,Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV. +65,16,5,Booste les capacités Plante en cas de besoin. 65,16,5,"Booste les capacités Plante en cas de besoin." 65,16,6,"Erhöht in Notfällen die Stärke @@ -8323,6 +9234,7 @@ when the Pokémon is in trouble." 위력이 올라간다." 65,17,4,"HP減少的時候, 草屬性的招式威力會提高。" +65,17,5,Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV. 65,17,5,"Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV." @@ -8347,6 +9259,7 @@ HP is low." 위력이 올라간다." 65,18,4,"HP減少的時候, 草屬性的招式威力會提高。" +65,18,5,Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV. 65,18,5,"Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV." @@ -8395,6 +9308,7 @@ HP is low." 위력이 올라간다." 65,20,4,"HP減少的時候, 草屬性的招式威力會提高。" +65,20,5,Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV. 65,20,5,"Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV." @@ -8411,25 +9325,37 @@ HP is low." 威力が 上がる。" 65,20,12,"HP减少的时候, 草属性的招式威力会提高。" +65,25,5,Augmente la puissance des capacités de type Plante du Pokémon quand il a perdu une certaine quantité de PV. +65,25,9,Powers up Grass-type moves when the Pokémon's HP is low. +66,5,5,Augmente attaques feu. 66,5,9,Ups FIRE moves in a pinch. +66,6,5,Augmente attaques feu. 66,6,9,Ups FIRE moves in a pinch. +66,7,5,Augmente attaques feu. 66,7,9,Ups FIRE moves in a pinch. +66,8,5,Booste les capacités Feu en cas de besoin. 66,8,9,"Powers up Fire-type moves in a pinch." +66,9,5,Booste les capacités Feu en cas de besoin. 66,9,9,"Powers up Fire-type moves in a pinch." +66,10,5,Booste les capacités Feu en cas de besoin. 66,10,9,"Powers up Fire-type moves in a pinch." +66,11,5,Booste les capacités Feu en cas de besoin. 66,11,5,"Booste les capacités Feu en cas de besoin." 66,11,9,"Powers up Fire-type moves in a pinch." +66,13,5,Booste les capacités Feu en cas de besoin. +66,14,5,Booste les capacités Feu en cas de besoin. 66,14,9,"Powers up Fire-type moves in a pinch." 66,15,1,"ピンチのとき ほのおの いりょくが あがる。" 66,15,3,"위급할 때 불꽃타입의 위력이 올라간다." +66,15,5,Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV. 66,15,5,"Booste les capacités Feu en cas de besoin." 66,15,6,"Erhöht in Notfällen die Stärke @@ -8446,6 +9372,8 @@ the Pokémon is in trouble." いりょくが あがる。" 66,16,3,"위급할 때 불꽃타입의 위력이 올라간다." +66,16,5,Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV. +66,16,5,Booste les capacités Feu en cas de besoin. 66,16,5,"Booste les capacités Feu en cas de besoin." 66,16,6,"Erhöht in Notfällen die Stärke @@ -8466,6 +9394,7 @@ the Pokémon is in trouble." 위력이 올라간다." 66,17,4,"HP減少的時候, 火屬性的招式威力會提高。" +66,17,5,Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV. 66,17,5,"Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV." @@ -8490,6 +9419,7 @@ is low." 위력이 올라간다." 66,18,4,"HP減少的時候, 火屬性的招式威力會提高。" +66,18,5,Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV. 66,18,5,"Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV." @@ -8538,6 +9468,7 @@ is low." 위력이 올라간다." 66,20,4,"HP減少的時候, 火屬性的招式威力會提高。" +66,20,5,Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV. 66,20,5,"Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV." @@ -8554,25 +9485,37 @@ is low." 威力が 上がる。" 66,20,12,"HP减少的时候, 火属性的招式威力会提高。" +66,25,5,Augmente la puissance des capacités de type Feu du Pokémon quand il a perdu une certaine quantité de PV. +66,25,9,Powers up Fire-type moves when the Pokémon's HP is low. +67,5,5,Augmente attaques EAU. 67,5,9,Ups WATER moves in a pinch. +67,6,5,Augmente attaques EAU. 67,6,9,Ups WATER moves in a pinch. +67,7,5,Augmente attaques EAU. 67,7,9,Ups WATER moves in a pinch. +67,8,5,Booste les capacités Eau en cas de besoin. 67,8,9,"Powers up Water-type moves in a pinch." +67,9,5,Booste les capacités Eau en cas de besoin. 67,9,9,"Powers up Water-type moves in a pinch." +67,10,5,Booste les capacités Eau en cas de besoin. 67,10,9,"Powers up Water-type moves in a pinch." +67,11,5,Booste les capacités Eau en cas de besoin. 67,11,5,"Booste les capacités Eau en cas de besoin." 67,11,9,"Powers up Water-type moves in a pinch." +67,13,5,Booste les capacités Eau en cas de besoin. +67,14,5,Booste les capacités Eau en cas de besoin. 67,14,9,"Powers up Water-type moves in a pinch." 67,15,1,"ピンチのとき みずの いりょくが あがる。" 67,15,3,"위급할 때 물타입의 위력이 올라간다." +67,15,5,Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV. 67,15,5,"Booste les capacités Eau en cas de besoin." 67,15,6,"Erhöht in Notfällen die Stärke @@ -8589,6 +9532,8 @@ when the Pokémon is in trouble." いりょくが あがる。" 67,16,3,"위급할 때 물타입의 위력이 올라간다." +67,16,5,Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV. +67,16,5,Booste les capacités Eau en cas de besoin. 67,16,5,"Booste les capacités Eau en cas de besoin." 67,16,6,"Erhöht in Notfällen die Stärke @@ -8609,6 +9554,7 @@ when the Pokémon is in trouble." 위력이 올라간다." 67,17,4,"HP減少的時候, 水屬性的招式威力會提高。" +67,17,5,Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV. 67,17,5,"Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV." @@ -8633,6 +9579,7 @@ HP is low." 위력이 올라간다." 67,18,4,"HP減少的時候, 水屬性的招式威力會提高。" +67,18,5,Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV. 67,18,5,"Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV." @@ -8681,6 +9628,7 @@ HP is low." 위력이 올라간다." 67,20,4,"HP減少的時候, 水屬性的招式威力會提高。" +67,20,5,Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV. 67,20,5,"Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV." @@ -8697,25 +9645,37 @@ HP is low." 威力が 上がる。" 67,20,12,"HP减少的时候, 水属性的招式威力会提高。" +67,25,5,Augmente la puissance des capacités de type Eau du Pokémon quand il a perdu une certaine quantité de PV. +67,25,9,Powers up Water-type moves when the Pokémon's HP is low. +68,5,5,Augmente attaques INSECT. 68,5,9,Ups BUG moves in a pinch. +68,6,5,Augmente attaques INSECT. 68,6,9,Ups BUG moves in a pinch. +68,7,5,Augmente attaques INSECT. 68,7,9,Ups BUG moves in a pinch. +68,8,5,Booste les capacités Insecte en cas de besoin. 68,8,9,"Powers up Bug-type moves in a pinch." +68,9,5,Booste les capacités Insecte en cas de besoin. 68,9,9,"Powers up Bug-type moves in a pinch." +68,10,5,Booste les capacités Insecte en cas de besoin. 68,10,9,"Powers up Bug-type moves in a pinch." +68,11,5,Booste les capacités Insecte en cas de besoin. 68,11,5,"Booste les capacités Insecte en cas de besoin." 68,11,9,"Powers up Bug-type moves in a pinch." +68,13,5,Booste les capacités Insecte en cas de besoin. +68,14,5,Booste les capacités Insecte en cas de besoin. 68,14,9,"Powers up Bug-type moves in a pinch." 68,15,1,"ピンチのとき むしの いりょくが あがる。" 68,15,3,"위급할 때 벌레타입의 위력이 올라간다." +68,15,5,Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV. 68,15,5,"Booste les capacités Insecte en cas de besoin." 68,15,6,"Erhöht in Notfällen die Stärke @@ -8732,6 +9692,8 @@ the Pokémon is in trouble." いりょくが あがる。" 68,16,3,"위급할 때 벌레타입의 위력이 올라간다." +68,16,5,Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV. +68,16,5,Booste les capacités Insecte en cas de besoin. 68,16,5,"Booste les capacités Insecte en cas de besoin." 68,16,6,"Erhöht in Notfällen die Stärke @@ -8752,6 +9714,7 @@ the Pokémon is in trouble." 위력이 올라간다." 68,17,4,"HP減少的時候, 蟲屬性的招式威力會提高。" +68,17,5,Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV. 68,17,5,"Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV." @@ -8776,6 +9739,7 @@ is low." 위력이 올라간다." 68,18,4,"HP減少的時候, 蟲屬性的招式威力會提高。" +68,18,5,Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV. 68,18,5,"Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV." @@ -8824,6 +9788,7 @@ is low." 위력이 올라간다." 68,20,4,"HP減少的時候, 蟲屬性的招式威力會提高。" +68,20,5,Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV. 68,20,5,"Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV." @@ -8840,25 +9805,37 @@ is low." 威力が 上がる。" 68,20,12,"HP减少的时候, 虫属性的招式威力会提高。" +68,25,5,Augmente la puissance des capacités de type Insecte du Pokémon quand il a perdu une certaine quantité de PV. +68,25,9,Powers up Bug-type moves when the Pokémon's HP is low. +69,5,5,Empêche dégâts du recul. 69,5,9,Prevents recoil damage. +69,6,5,Empêche dégâts du recul. 69,6,9,Prevents recoil damage. +69,7,5,Empêche dégâts du recul. 69,7,9,Prevents recoil damage. +69,8,5,Protège le Pokémon des dégâts de contrecoups. 69,8,9,"Protects the Pokémon from recoil damage." +69,9,5,Protège le Pokémon des dégâts de contrecoups. 69,9,9,"Protects the Pokémon from recoil damage." +69,10,5,Protège le Pokémon des dégâts de contrecoups. 69,10,9,"Protects the Pokémon from recoil damage." +69,11,5,Protège le Pokémon des dégâts de contrecoups. 69,11,5,"Protège le Pokémon des dégâts de contrecoups." 69,11,9,"Protects the Pokémon from recoil damage." +69,13,5,Protège le Pokémon des dégâts de contrecoups. +69,14,5,Protège le Pokémon des dégâts de contrecoups. 69,14,9,"Protects the Pokémon from recoil damage." 69,15,1,"ぶつかっても はんどうを うけない。" 69,15,3,"부딪쳐도 반동을 받지 않는다." +69,15,5,Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV. 69,15,5,"Protège le Pokémon des dégâts de contrecoups." 69,15,6,"Verhindert Schaden, der durch @@ -8875,6 +9852,8 @@ from recoil damage." はんどうを うけない。" 69,16,3,"부딪쳐도 반동을 받지 않는다." +69,16,5,Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV. +69,16,5,Protège le Pokémon des dégâts de contrecoups. 69,16,5,"Protège le Pokémon des dégâts de contrecoups." 69,16,6,"Verhindert Schaden, der durch @@ -8893,6 +9872,7 @@ from recoil damage." HP가 줄지 않는다." 69,17,4,"即使使出會受反作用力傷害的招式, HP也不會減少。" +69,17,5,Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV. 69,17,5,"Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV." 69,17,6,"Verhindert Schaden, der durch Rückstoß entstehen @@ -8911,6 +9891,7 @@ movimientos." HP가 줄지 않는다." 69,18,4,"即使使出會受反作用力傷害的招式, HP也不會減少。" +69,18,5,Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV. 69,18,5,"Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV." 69,18,6,"Verhindert Schaden, der durch Rückstoß entstehen @@ -8947,6 +9928,7 @@ HP也不会减少。" HP가 줄지 않는다." 69,20,4,"即使使出會受反作用力傷害的招式, HP也不會減少。" +69,20,5,Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV. 69,20,5,"Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV." 69,20,6,"Verhindert Schaden, der durch Rückstoß entstehen @@ -8958,19 +9940,29 @@ würde." HPが 減らない。" 69,20,12,"即使使出会受反作用力伤害的招式, HP也不会减少。" +69,25,5,Le Pokémon peut utiliser des capacités occasionnant un contrecoup sans perdre de PV. +69,25,9,Protects the Pokémon from recoil damage. +70,5,5,Invoque le soleil. 70,5,9,Summons sunlight in battle. +70,6,5,Invoque le soleil. 70,6,9,Summons sunlight in battle. +70,7,5,Invoque le soleil. 70,7,9,Summons sunlight in battle. +70,8,5,Invoque le soleil quand il est au combat. 70,8,9,"The Pokémon makes it sunny if it is in battle." +70,9,5,Invoque le soleil quand il est au combat. 70,9,9,"The Pokémon makes it sunny if it is in battle." +70,10,5,Invoque le soleil quand il est au combat. 70,10,9,"The Pokémon makes it sunny if it is in battle." +70,11,5,Intensifie les rayons du soleil pendant le combat. 70,11,5,"Intensifie les rayons du soleil pendant le combat." 70,11,9,"Turns the sunlight harsh if it is in battle." +70,14,5,Intensifie les rayons du soleil pendant le combat. 70,14,9,"Turns the sunlight harsh if it is in battle." 70,15,1,"せんとうに でると @@ -9011,6 +10003,7 @@ the Pokémon enters a battle." 날씨를 맑음으로 만든다." 70,17,4,"出場時, 會將天氣變為晴朗。" +70,17,5,Le soleil se met à briller quand ce Pokémon rejoint le combat. 70,17,5,"Le soleil se met à briller quand le Pokémon entre au combat." 70,17,6,Erzeugt bei Kampfantritt gleißendes Sonnenlicht. @@ -9030,6 +10023,7 @@ a battle." 날씨를 맑음으로 만든다." 70,18,4,"出場時, 會將天氣變為晴朗。" +70,18,5,Le soleil se met à briller quand ce Pokémon rejoint le combat. 70,18,5,"Le soleil se met à briller quand le Pokémon entre au combat." 70,18,6,Erzeugt bei Kampfantritt gleißendes Sonnenlicht. @@ -9068,6 +10062,7 @@ a battle." 날씨를 맑음으로 만든다." 70,20,4,"出場時, 會將天氣變為晴朗。" +70,20,5,Le soleil se met à briller quand ce Pokémon rejoint le combat. 70,20,5,"Le soleil se met à briller quand le Pokémon entre au combat." 70,20,6,Erzeugt bei Kampfantritt gleißendes Sonnenlicht. @@ -9081,19 +10076,30 @@ a battle." 天気を 晴れに する。" 70,20,12,"出场时, 会将天气变为晴朗。" +70,25,5,Le Pokémon invoque le soleil quand il entre au combat. +70,25,9,Turns the sunlight harsh when the Pokémon enters a battle. +71,5,5,Empêche la fuite. 71,5,9,Prevents fleeing. +71,6,5,Empêche la fuite. 71,6,9,Prevents fleeing. +71,7,5,Empêche la fuite. 71,7,9,Prevents fleeing. +71,8,5,Empêche l'ennemi de s'enfuir. 71,8,9,"Prevents the foe from fleeing." +71,9,5,Empêche l'ennemi de s'enfuir. 71,9,9,"Prevents the foe from fleeing." +71,10,5,Empêche l'ennemi de s'enfuir. 71,10,9,"Prevents the foe from fleeing." +71,11,5,Empêche l'ennemi de s'enfuir. 71,11,5,"Empêche l’ennemi de s’enfuir." 71,11,9,"Prevents the foe from fleeing." +71,13,5,Empêche l'ennemi de s'enfuir. +71,14,5,Empêche l'ennemi de s'enfuir. 71,14,9,"Prevents the foe from fleeing." 71,15,1,"せんとうで あいてを @@ -9113,6 +10119,7 @@ from fleeing." にげられなくする。" 71,16,3,"배틀에서 상대를 도망칠 수 없게 한다." +71,16,5,Empêche l'ennemi de s'enfuir. 71,16,5,Empêche l’ennemi de s’enfuir. 71,16,6,"Hindert den Gegner im Kampf an der Flucht." @@ -9127,6 +10134,7 @@ from fleeing." 71,17,3,"배틀에서 상대를 도망칠 수 없게 한다." 71,17,4,在戰鬥中讓對手無法逃走。 +71,17,5,Empêche l'ennemi de s'enfuir. 71,17,5,Empêche l’ennemi de s’enfuir. 71,17,6,Hindert den Gegner im Kampf an der Flucht. 71,17,7,Evita que el rival huya. @@ -9140,6 +10148,7 @@ from fleeing." 71,18,3,"배틀에서 상대를 도망칠 수 없게 한다." 71,18,4,在戰鬥中讓對手無法逃走。 +71,18,5,Empêche l'ennemi de s'enfuir. 71,18,5,Empêche l’ennemi de s’enfuir. 71,18,6,Hindert den Gegner im Kampf an der Flucht. 71,18,7,Evita que el rival huya. @@ -9166,6 +10175,7 @@ from fleeing." 71,20,3,"배틀에서 상대를 도망칠 수 없게 한다." 71,20,4,在戰鬥中讓對手無法逃走。 +71,20,5,Empêche l'ennemi de s'enfuir. 71,20,5,Empêche l’ennemi de s’enfuir. 71,20,6,Hindert Gegner im Kampf an der Flucht. 71,20,7,Evita que el rival huya. @@ -9174,19 +10184,30 @@ from fleeing." 71,20,11,"戦闘で 相手を 逃げられなくする。" 71,20,12,在战斗中让对手无法逃走。 +71,25,5,Empêche l'adversaire de quitter le terrain. +71,25,9,Prevents opposing Pokémon from fleeing from battle. +72,5,5,Empêche le sommeil. 72,5,9,Prevents sleep. +72,6,5,Empêche le sommeil. 72,6,9,Prevents sleep. +72,7,5,Empêche le sommeil. 72,7,9,Prevents sleep. +72,8,5,Empêche le Pokémon de s'endormir. 72,8,9,"Prevents the Pokémon from falling asleep." +72,9,5,Empêche le Pokémon de s'endormir. 72,9,9,"Prevents the Pokémon from falling asleep." +72,10,5,Empêche le Pokémon de s'endormir. 72,10,9,"Prevents the Pokémon from falling asleep." +72,11,5,Empêche le Pokémon de s'endormir. 72,11,5,"Empêche le Pokémon de s’endormir." 72,11,9,"Prevents the Pokémon from falling asleep." +72,13,5,Empêche le Pokémon de s'endormir. +72,14,5,Empêche le Pokémon de s'endormir. 72,14,9,"Prevents the Pokémon from falling asleep." 72,15,1,"ねむり じょうたいに @@ -9207,6 +10228,7 @@ from falling asleep." ならない。" 72,16,3,"잠듦 상태가 되지 않는다." +72,16,5,Empêche le Pokémon de s'endormir. 72,16,5,"Empêche le Pokémon de s’endormir." 72,16,6,Verhindert Einschlafen. @@ -9223,6 +10245,7 @@ from falling asleep." 잠듦 상태가 되지 않는다." 72,17,4,"透過激發出幹勁, 不會陷入睡眠狀態。" +72,17,5,Empêche le Pokémon de s'endormir. 72,17,5,Empêche le Pokémon de s’endormir. 72,17,6,"Das Pokémon ist so munter, dass es nicht einschlafen kann." @@ -9241,6 +10264,7 @@ it from falling asleep." 잠듦 상태가 되지 않는다." 72,18,4,"透過激發出幹勁, 不會陷入睡眠狀態。" +72,18,5,Empêche le Pokémon de s'endormir. 72,18,5,Empêche le Pokémon de s’endormir. 72,18,6,"Das Pokémon ist so munter, dass es nicht einschlafen kann." @@ -9277,6 +10301,7 @@ it from falling asleep." 잠듦 상태가 되지 않는다." 72,20,4,"透過激發出幹勁, 不會陷入睡眠狀態。" +72,20,5,Empêche le Pokémon de s'endormir. 72,20,5,Empêche le Pokémon de s’endormir. 72,20,6,"Das Pokémon ist so munter, dass es nicht einschlafen kann." @@ -9289,19 +10314,30 @@ it from falling asleep." ねむり状態に ならない。" 72,20,12,"通过激发出干劲, 不会变为睡眠状态。" +72,25,5,Empêche le Pokémon de s'endormir. +72,25,9,"The Pokémon is full of vitality, and that prevents it from falling asleep." +73,5,5,Empêche réduction des cap. 73,5,9,Prevents ability reduction. +73,6,5,Empêche réduction des cap. 73,6,9,Prevents ability reduction. +73,7,5,Empêche réduction des cap. 73,7,9,Prevents ability reduction. +73,8,5,Empêche les stats du Pokémon de baisser. 73,8,9,"Prevents the Pokémon’s stats from being lowered." +73,9,5,Empêche les stats du Pokémon de baisser. 73,9,9,"Prevents the Pokémon’s stats from being lowered." +73,10,5,Empêche les stats du Pokémon de baisser. 73,10,9,"Prevents its stats from being lowered." +73,11,5,Empêche les stats du Pokémon de baisser. 73,11,5,"Empêche les stats du Pokémon de baisser." 73,11,9,"Prevents other Pokémon from lowering its stats." +73,13,5,Empêche les stats du Pokémon de baisser. +73,14,5,Empêche les stats du Pokémon de baisser. 73,14,9,"Prevents other Pokémon from lowering its stats." 73,15,1,"あいてに のうりょくを @@ -9324,6 +10360,7 @@ from lowering its stats." さげられない。" 73,16,3,"상대가 능력을 떨어뜨릴 수 없다." +73,16,5,Empêche les stats du Pokémon de baisser. 73,16,5,"Empêche les stats du Pokémon de baisser." 73,16,6,"Hindert Angreifer daran, @@ -9342,6 +10379,7 @@ from lowering its stats." 상대가 능력을 떨어뜨릴 수 없다." 73,17,4,"被白色煙霧保護著, 不會被對手降低能力。" +73,17,5,Un écran de fumée empêche l'ennemi de baisser les stats du Pokémon. 73,17,5,"Un écran de fumée empêche l’ennemi de baisser les stats du Pokémon." 73,17,6,"Indem es sich mit pulvrigem Rauch umhüllt, hindert @@ -9362,6 +10400,7 @@ prevents other Pokémon from lowering its stats." 상대가 능력을 떨어뜨릴 수 없다." 73,18,4,"被白色煙霧保護著, 不會被對手降低能力。" +73,18,5,Un écran de fumée empêche l'ennemi de baisser les stats du Pokémon. 73,18,5,"Un écran de fumée empêche l’ennemi de baisser les stats du Pokémon." 73,18,6,"Indem es sich mit pulvrigem Rauch umhüllt, hindert @@ -9402,6 +10441,7 @@ prevents other Pokémon from lowering its stats." 상대가 능력을 떨어뜨릴 수 없다." 73,20,4,"被白色煙霧保護著, 不會被對手降低能力。" +73,20,5,Un écran de fumée empêche l'ennemi de baisser les stats du Pokémon. 73,20,5,"Un écran de fumée empêche l’ennemi de baisser les stats du Pokémon." 73,20,6,"Indem es sich mit pulvrigem Rauch umhüllt, hindert es @@ -9416,25 +10456,37 @@ prevents other Pokémon from lowering its stats." 相手に 能力を 下げられない。" 73,20,12,"被白色烟雾保护着, 不会被对手降低能力。" +73,25,5,Un écran de fumée empêche l’adversaire de baisser\nles stats du Pokémon. +73,25,9,"The Pokémon is protected by its white smoke, which prevents other Pokémon from lowering its stats." +74,5,5,Augmente l'ATTAQUE. 74,5,9,Raises ATTACK. +74,6,5,Augmente l'ATTAQUE. 74,6,9,Raises ATTACK. +74,7,5,Augmente l'ATTAQUE. 74,7,9,Raises ATTACK. +74,8,5,Augmente la puissance des attaques physiques. 74,8,9,"Boosts the power of physical attacks." +74,9,5,Augmente la puissance des attaques physiques. 74,9,9,"Boosts the power of physical attacks." +74,10,5,Augmente la puissance des attaques physiques. 74,10,9,"Boosts the power of physical attacks." +74,11,5,Augmente l'Attaque du Pokémon. 74,11,5,"Augmente l’Attaque du Pokémon." 74,11,9,"Raises the Pokémon’s Attack stat." +74,13,5,Augmente l'Attaque du Pokémon. +74,14,5,Augmente l'Attaque du Pokémon. 74,14,9,"Raises the Pokémon’s Attack stat." 74,15,1,"ぶつり こうげきの いりょくが あがる。" 74,15,3,"물리공격의 위력이 올라간다." +74,15,5,Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques. 74,15,5,Augmente l’Attaque du Pokémon. 74,15,6,Stärkt physische Attacken. 74,15,7,Aumenta el Ataque. @@ -9448,6 +10500,8 @@ Attack stat." いりょくが あがる。" 74,16,3,"물리공격의 위력이 올라간다." +74,16,5,Augmente l'Attaque du Pokémon. +74,16,5,Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques. 74,16,5,Augmente l’Attaque du Pokémon. 74,16,6,Stärkt physische Attacken. 74,16,7,Aumenta el Ataque. @@ -9465,6 +10519,7 @@ Attack stat." 2배가 된다." 74,17,4,"因瑜伽的力量, 物理攻擊的威力會變為2倍。" +74,17,5,Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques. 74,17,5,"Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques." 74,17,6,"Verdoppelt mit reiner Willenskraft die Stärke seiner @@ -9487,6 +10542,7 @@ Attack stat." 2배가 된다." 74,18,4,"因瑜伽的力量, 物理攻擊的威力會變為2倍。" +74,18,5,Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques. 74,18,5,"Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques." 74,18,6,"Verdoppelt mit reiner Willenskraft die Stärke seiner @@ -9531,6 +10587,7 @@ Attack stat." 2배가 된다." 74,20,4,"因瑜伽的力量, 物理攻擊的威力會變為2倍。" +74,20,5,Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques. 74,20,5,"Le Pokémon utilise sa maîtrise du yoga pour doubler la puissance de ses capacités physiques." 74,20,6,"Verdoppelt mit reiner Willenskraft die Stärke seiner @@ -9546,25 +10603,37 @@ Attack stat." 2倍に なる。" 74,20,12,"因瑜伽的力量, 物理攻击的威力会变为2倍。" +74,25,5,Le Pokémon utilise sa maîtrise du yoga pour doubler\nla puissance de ses attaques physiques. +74,25,9,"Using its pure power, the Pokémon doubles its Attack stat." +75,5,5,Bloque les coups critiques. 75,5,9,Blocks critical hits. +75,6,5,Bloque les coups critiques. 75,6,9,Blocks critical hits. +75,7,5,Bloque les coups critiques. 75,7,9,Blocks critical hits. +75,8,5,Protège le Pokémon contre les coups critiques. 75,8,9,"The Pokémon is protected against critical hits." +75,9,5,Protège le Pokémon contre les coups critiques. 75,9,9,"The Pokémon is protected against critical hits." +75,10,5,Protège le Pokémon contre les coups critiques. 75,10,9,"The Pokémon is protected against critical hits." +75,11,5,Le Pokémon est protégé des coups critiques. 75,11,5,"Le Pokémon est protégé des coups critiques." 75,11,9,"The Pokémon is protected against critical hits." +75,13,5,Le Pokémon est protégé des coups critiques. +75,14,5,Le Pokémon est protégé des coups critiques. 75,14,9,"The Pokémon is protected against critical hits." 75,15,1,"あいての こうげきが きゅうしょに あたらない。" 75,15,3,"상대의 공격이 급소에 맞지 않는다." +75,15,5,Le Pokémon est protégé des coups critiques par sa carapace. 75,15,5,"Le Pokémon est protégé des coups critiques." 75,15,6,Wehrt gegnerische Volltreffer ab. @@ -9579,6 +10648,8 @@ from critical hits." きゅうしょに あたらない。" 75,16,3,"상대의 공격이 급소에 맞지 않는다." +75,16,5,Le Pokémon est protégé des coups critiques. +75,16,5,Le Pokémon est protégé des coups critiques par sa carapace. 75,16,5,"Le Pokémon est protégé des coups critiques." 75,16,6,Wehrt gegnerische Volltreffer ab. @@ -9597,6 +10668,7 @@ from critical hits." 급소에 맞지 않는다." 75,17,4,"被堅硬的殼保護著, 對手的攻擊不會擊中要害。" +75,17,5,Le Pokémon est protégé des coups critiques par sa carapace. 75,17,5,"Le Pokémon est protégé des coups critiques par sa carapace." 75,17,6,"Wehrt gegnerische Volltreffer mit einem harten @@ -9619,6 +10691,7 @@ che gli evita di subire brutti colpi." 급소에 맞지 않는다." 75,18,4,"被堅硬的殼保護著, 對手的攻擊不會擊中要害。" +75,18,5,Le Pokémon est protégé des coups critiques par sa carapace. 75,18,5,"Le Pokémon est protégé des coups critiques par sa carapace." 75,18,6,"Wehrt gegnerische Volltreffer mit einem harten @@ -9663,6 +10736,7 @@ che gli evita di subire brutti colpi." 급소에 맞지 않는다." 75,20,4,"被堅硬的殼保護著, 對手的攻擊不會擊中要害。" +75,20,5,Le Pokémon est protégé des coups critiques par sa carapace. 75,20,5,"Le Pokémon est protégé des coups critiques par sa carapace." 75,20,6,"Wehrt gegnerische Volltreffer mit einem harten @@ -9677,19 +10751,30 @@ che gli evita di subire brutti colpi." 急所に 当たらない。" 75,20,12,"被坚硬的壳保护着, 对手的攻击不会击中要害。" +75,25,5,Le Pokémon est protégé des coups critiques par sa carapace. +75,25,9,A hard shell protects the Pokémon from critical hits. +76,5,5,Ignore les effets du climat. 76,5,9,Negates weather effects. +76,6,5,Ignore les effets du climat. 76,6,9,Negates weather effects. +76,7,5,Ignore les effets du climat. 76,7,9,Negates weather effects. +76,8,5,Annule les effets du climat. 76,8,9,"Eliminates the effects of weather." +76,9,5,Annule les effets du climat. 76,9,9,"Eliminates the effects of weather." +76,10,5,Annule les effets du climat. 76,10,9,"Eliminates the effects of weather." +76,11,5,Annule les effets du climat. 76,11,5,"Annule les effets du climat." 76,11,9,"Eliminates the effects of weather." +76,13,5,Annule les effets du climat. +76,14,5,Annule les effets du climat. 76,14,9,"Eliminates the effects of weather." 76,15,1,"てんきの えいきょうが @@ -9711,6 +10796,7 @@ weather." 76,16,3,"날씨의 영향이 없어진다." 76,16,5,Annule les effets du climat. +76,16,5,Annule les effets du climat. 76,16,6,Hebt Wetter-Effekte auf. 76,16,7,"Anula los efectos del tiempo atmosférico." @@ -9725,6 +10811,7 @@ condizioni atmosferiche." 없어진다." 76,17,4,所有天氣的影響都會消失。 76,17,5,Annule tous les effets de la météo. +76,17,5,Annule tous les effets de la météo. 76,17,6,Hebt alle Wetter-Effekte auf. 76,17,7,Neutraliza todos los efectos del tiempo atmosférico. 76,17,8,"Il Pokémon non subisce gli effetti di nessuna @@ -9739,6 +10826,7 @@ condizione atmosferica." 없어진다." 76,18,4,所有天氣的影響都會消失。 76,18,5,Annule tous les effets de la météo. +76,18,5,Annule tous les effets de la météo. 76,18,6,Hebt alle Wetter-Effekte auf. 76,18,7,Neutraliza todos los efectos del tiempo atmosférico. 76,18,8,"Il Pokémon non subisce gli effetti di nessuna @@ -9767,6 +10855,7 @@ atmosferiche." 없어진다." 76,20,4,所有天氣的影響都會消失。 76,20,5,Annule tous les effets de la météo. +76,20,5,Annule tous les effets de la météo. 76,20,6,Hebt alle Wetter-Effekte auf. 76,20,7,Neutraliza todos los efectos del tiempo atmosférico. 76,20,8,"Neutralizza gli effetti di tutte le condizioni @@ -9775,22 +10864,31 @@ atmosferiche." 76,20,11,"あらゆる 天気の 影響が 消えて しまう。" 76,20,12,所有天气的影响都会消失。 +76,27,5,Annule tous les effets de la météo. +76,27,9,Eliminates the effects of weather. +77,8,5,Augmente l'esquive si le Pokémon est confus. 77,8,9,"Raises evasion if the Pokémon is confused." +77,9,5,Augmente l'esquive si le Pokémon est confus. 77,9,9,"Raises evasion if the Pokémon is confused." +77,10,5,Augmente l'esquive si le Pokémon est confus. 77,10,9,"Raises evasion if the Pokémon is confused." +77,11,5,Augmente l'esquive si le Pokémon est confus. 77,11,5,"Augmente l’Esquive si le Pokémon est confus." 77,11,9,"Raises evasion if the Pokémon is confused." +77,13,5,Augmente l'esquive si le Pokémon est confus. +77,14,5,Augmente l'esquive si le Pokémon est confus. 77,14,9,"Raises evasion if the Pokémon is confused." 77,15,1,"こんらん していると かいひ しやすくなる。" 77,15,3,"혼란에 빠져있으면 회피하기 쉬워진다." +77,15,5,Augmente l'Esquive du Pokémon s'il est confus. 77,15,5,"Augmente l’Esquive si le Pokémon est confus." 77,15,6,"Erhöht den Fluchtwert, @@ -9807,6 +10905,8 @@ Pokémon is confused." かいひ しやすくなる。" 77,16,3,"혼란에 빠져 있으면 회피하기 쉬워진다." +77,16,5,Augmente l'Esquive du Pokémon s'il est confus. +77,16,5,Augmente l'esquive si le Pokémon est confus. 77,16,5,"Augmente l’Esquive si le Pokémon est confus." 77,16,6,"Erhöht den Fluchtwert, @@ -9825,6 +10925,7 @@ Pokémon is confused." 회피율이 올라간다." 77,17,4,"陷入混亂狀態時, 閃避率會提高。" +77,17,5,Augmente l'Esquive du Pokémon s'il est confus. 77,17,5,Augmente l’Esquive du Pokémon s’il est confus. 77,17,6,"Erhöht den Fluchtwert, wenn das Pokémon verwirrt ist." @@ -9841,6 +10942,7 @@ verwirrt ist." 회피율이 올라간다." 77,18,4,"陷入混亂狀態時, 閃避率會提高。" +77,18,5,Augmente l'Esquive du Pokémon s'il est confus. 77,18,5,Augmente l’Esquive du Pokémon s’il est confus. 77,18,6,"Erhöht den Fluchtwert, wenn das Pokémon verwirrt ist." @@ -9873,6 +10975,7 @@ verwirrt ist." 회피율이 올라간다." 77,20,4,"陷入混亂狀態時, 閃避率會提高。" +77,20,5,Augmente l'Esquive du Pokémon s'il est confus. 77,20,5,Augmente l’Esquive du Pokémon s’il est confus. 77,20,6,"Erhöht den Ausweichwert, wenn das Pokémon verwirrt ist." @@ -9883,22 +10986,27 @@ verwirrt ist." 回避率が アップする。" 77,20,12,"在混乱状态时, 闪避率会提高。" +77,25,5,Augmente l'Esquive du Pokémon s'il est confus. +77,25,9,Boosts the Pokémon's evasiveness if it is confused. 78,8,9,"Raises Speed if hit by an Electric-type move." 78,9,9,"Raises Speed if hit by an Electric-type move." 78,10,9,"Raises Speed if hit by an Electric-type move." +78,11,5,Augmente la Vit. si touché par une cap. Électrik. 78,11,5,"Augmente la Vit. si touché par une cap. Électrik." 78,11,9,"Raises Speed if hit by an Electric-type move." +78,14,5,Augmente la Vit. si touché par une cap. Électrik. 78,14,9,"Raises Speed if hit by an Electric-type move." 78,15,1,"でんきを うけると すばやさが あがる。" 78,15,3,"전기를 받으면 스피드가 올라간다." +78,15,5,Augmente la Vitesse si touché par une capacité Électrik. 78,15,5,"Augmente la Vitesse si touché par une capacité Électrik." 78,15,6,"Erhöht nach einem Treffer durch @@ -9915,6 +11023,7 @@ hit by an Electric-type move." すばやさが あがる。" 78,16,3,"전기를 받으면 스피드가 올라간다." +78,16,5,Augmente la Vitesse si touché par une capacité Électrik. 78,16,5,"Augmente la Vitesse si touché par une capacité Électrik." 78,16,6,"Erhöht nach einem Treffer durch @@ -9935,6 +11044,7 @@ hit by an Electric-type move." 스피드가 올라간다." 78,17,4,"受到電屬性的招式攻擊時, 不但不會受到傷害,反而速度會提高。" +78,17,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et sa Vitesse augmente." 78,17,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et sa Vitesse augmente." 78,17,6,"Treffer durch Elektro-Attacken verursachen keinen @@ -9960,6 +11070,7 @@ instead of taking damage." 스피드가 올라간다." 78,18,4,"受到電屬性的招式攻擊時, 不但不會受到傷害,反而速度會提高。" +78,18,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et sa Vitesse augmente." 78,18,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et sa Vitesse augmente." 78,18,6,"Treffer durch Elektro-Attacken verursachen keinen @@ -10010,6 +11121,7 @@ instead of taking damage." 스피드가 올라간다." 78,20,4,"受到電屬性的招式攻擊時, 不但不會受到傷害,反而速度會提高。" +78,20,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et sa Vitesse augmente." 78,20,5,"Si le Pokémon est touché par une capacité Électrik, il ne subit aucun dégât et sa Vitesse augmente." 78,20,6,"Treffer durch Elektro-Attacken verursachen keinen @@ -10027,16 +11139,24 @@ instead of taking damage." 素早さが 上がる。" 78,20,12,"受到电属性的招式攻击时, 不会受到伤害,而是速度会提高。" +78,27,5,"Si le Pokémon est touché par une capacité de type\nÉlectrik, il ne subit aucun dégât et sa Vitesse augmente." +78,27,9,"The Pokémon takes no damage when hit by Electric-type moves. Instead, its Speed stat is boosted." +79,8,5,Augmente l'Attaque si l'ennemi est du même sexe. 79,8,9,"Raises Attack if the foe is of the same gender." +79,9,5,Augmente l'Attaque si l'ennemi est du même sexe. 79,9,9,"Raises Attack if the foe is of the same gender." +79,10,5,Augmente l'Attaque si l'ennemi est du même sexe. 79,10,9,"Raises Attack if the foe is of the same gender." +79,11,5,Devient plus fort si l'ennemi est du même sexe. 79,11,5,"Devient plus fort si l’ennemi est du même sexe." 79,11,9,"Deals more damage to a Pokémon of same gender." +79,13,5,Devient plus fort si l'ennemi est du même sexe. +79,14,5,Devient plus fort si l'ennemi est du même sexe. 79,14,9,"Deals more damage to a Pokémon of same gender." 79,15,1,"あいてと せいべつが @@ -10059,6 +11179,7 @@ of the same gender." おなじだと つよくなる。" 79,16,3,"상대와 성별이 같으면 강해진다." +79,16,5,Devient plus fort si l'ennemi est du même sexe. 79,16,5,"Devient plus fort si l’ennemi est du même sexe." 79,16,6,"Erhöht den Schaden, wenn das @@ -10080,6 +11201,7 @@ of the same gender." 79,17,4,"面對性別相同的對手, 會燃起鬥爭心,變得更強。 面對性別不同的對手時則會變弱。" +79,17,5,"Le Pokémon déteste la concurrence et inflige plus de dégâts si l'ennemi est du même sexe. Par contre, il en inflige moins si l'ennemi est du sexe opposé." 79,17,5,"Le Pokémon déteste la concurrence et inflige plus de dégâts si l’ennemi est du même sexe. Par contre, il en inflige moins si l’ennemi est du sexe opposé." @@ -10109,6 +11231,7 @@ Pokémon of the opposite gender." 79,18,4,"面對性別相同的對手, 會燃起鬥爭心,變得更強。 面對性別不同的對手時則會變弱。" +79,18,5,"Le Pokémon déteste la concurrence et inflige plus de dégâts si l'ennemi est du même sexe. Par contre, il en inflige moins si l'ennemi est du sexe opposé." 79,18,5,"Le Pokémon déteste la concurrence et inflige plus de dégâts si l’ennemi est du même sexe. Par contre, il en inflige moins si l’ennemi est du sexe opposé." @@ -10167,6 +11290,7 @@ Pokémon of the opposite gender." 79,20,4,"面對性別相同的對手, 會燃起鬥爭心,變得更強。 面對性別不同的對手時則會變弱。" +79,20,5,"Le Pokémon déteste la concurrence et inflige plus de dégâts si l'ennemi est du même sexe. Par contre, il en inflige moins si l'ennemi est du sexe opposé." 79,20,5,"Le Pokémon déteste la concurrence et inflige plus de dégâts si l’ennemi est du même sexe. Par contre, il en inflige moins si l’ennemi est du sexe opposé." @@ -10187,22 +11311,31 @@ Pokémon of the opposite gender." 79,20,12,"面对性别相同的对手, 会燃起斗争心,变得更强。 而面对性别不同的,则会变弱。" +79,25,5,"Le Pokémon déteste la concurrence et inflige plus de dégâts si sa cible est du même sexe. Par contre, il en inflige moins si sa cible est du sexe opposé." +79,25,9,"The Pokémon's competitive spirit makes it deal more damage to Pokémon of the same gender, but less damage to Pokémon of the opposite gender." +80,8,5,Augmente la Vitesse quand le Pokémon a peur. 80,8,9,"Raises Speed each time the Pokémon flinches." +80,9,5,Augmente la Vitesse quand le Pokémon a peur. 80,9,9,"Raises Speed each time the Pokémon flinches." +80,10,5,Augmente la Vitesse quand le Pokémon a peur. 80,10,9,"Raises Speed each time the Pokémon flinches." +80,11,5,Augmente la Vitesse quand le Pokémon a peur. 80,11,5,"Augmente la Vitesse quand le Pokémon a peur." 80,11,9,"Raises Speed each time the Pokémon flinches." +80,13,5,Augmente la Vitesse quand le Pokémon a peur. +80,14,5,Augmente la Vitesse quand le Pokémon a peur. 80,14,9,"Raises Speed each time the Pokémon flinches." 80,15,1,"ひるむ たびに すばやさが あがる。" 80,15,3,"풀죽을 때마다 스피드가 올라간다." +80,15,5,Augmente la Vitesse du Pokémon quand il a peur. 80,15,5,"Augmente la Vitesse quand le Pokémon a peur." 80,15,6,"Erhöht die Initiative, sobald @@ -10219,6 +11352,8 @@ the Pokémon flinches." すばやさが あがる。" 80,16,3,"풀죽을 때마다 스피드가 올라간다." +80,16,5,Augmente la Vitesse du Pokémon quand il a peur. +80,16,5,Augmente la Vitesse quand le Pokémon a peur. 80,16,5,"Augmente la Vitesse quand le Pokémon a peur." 80,16,6,"Erhöht die Initiative, sobald @@ -10241,6 +11376,7 @@ the Pokémon flinches." 不屈之心就會燃起, 速度也會提高。" 80,17,5,Augmente la Vitesse du Pokémon quand il a peur. +80,17,5,Augmente la Vitesse du Pokémon quand il a peur. 80,17,6,"Sein eiserner Wille erhöht die Initiative, wann immer das Pokémon zurückschreckt." 80,17,7,"Cada vez que retrocede sube su Velocidad, debido @@ -10265,6 +11401,7 @@ stat each time the Pokémon flinches." 不屈之心就會燃起, 速度也會提高。" 80,18,5,Augmente la Vitesse du Pokémon quand il a peur. +80,18,5,Augmente la Vitesse du Pokémon quand il a peur. 80,18,6,"Sein eiserner Wille erhöht die Initiative, wann immer das Pokémon zurückschreckt." 80,18,7,"Cada vez que retrocede sube su Velocidad, debido @@ -10313,6 +11450,7 @@ stat each time the Pokémon flinches." 不屈之心就會燃起, 速度也會提高。" 80,20,5,Augmente la Vitesse du Pokémon quand il a peur. +80,20,5,Augmente la Vitesse du Pokémon quand il a peur. 80,20,6,"Sein eiserner Wille erhöht die Initiative, wann immer das Pokémon zurückschreckt." 80,20,7,"Cada vez que se amedrenta sube su Velocidad, debido @@ -10327,16 +11465,24 @@ stat each time the Pokémon flinches." 80,20,12,"每次畏缩时, 不屈之心就会燃起, 速度也会提高。" +80,25,5,Augmente la Vitesse du Pokémon quand il a peur. +80,25,9,The Pokémon's determination boosts its Speed stat every time it flinches. +81,8,5,Augmente l'Esquive durant les tempêtes de grêle. 81,8,9,"Raises evasion in a hailstorm." +81,9,5,Augmente l'Esquive durant les tempêtes de grêle. 81,9,9,"Raises evasion in a hailstorm." +81,10,5,Augmente l'Esquive durant les tempêtes de grêle. 81,10,9,"Raises evasion in a hailstorm." +81,11,5,Augmente l'Esquive durant les tempêtes de grêle. 81,11,5,"Augmente l’Esquive durant les tempêtes de grêle." 81,11,9,"Raises evasion in a hailstorm." +81,13,5,Augmente l'Esquive durant les tempêtes de grêle. +81,14,5,Augmente l'Esquive durant les tempêtes de grêle. 81,14,9,"Raises evasion in a hailstorm." 81,15,1,"てんきが あられのとき @@ -10358,6 +11504,7 @@ hailstorm." かいひりつが あがる。" 81,16,3,"날씨가 싸라기눈일 때 회피율이 올라간다." +81,16,5,Augmente l'Esquive durant les tempêtes de grêle. 81,16,5,"Augmente l’Esquive durant les tempêtes de grêle." 81,16,6,Erhöht bei Hagel den Fluchtwert. @@ -10374,6 +11521,7 @@ grandina." 회피율이 올라간다." 81,17,4,"天氣是冰雹時, 閃避率會提高。" +81,17,5,Augmente l'Esquive du Pokémon durant les tempêtes de grêle. 81,17,5,"Augmente l’Esquive du Pokémon durant les tempêtes de grêle." 81,17,6,Erhöht bei Hagel den Fluchtwert. @@ -10390,6 +11538,7 @@ de grêle." 회피율이 올라간다." 81,18,4,"天氣是冰雹時, 閃避率會提高。" +81,18,5,Augmente l'Esquive du Pokémon durant les tempêtes de grêle. 81,18,5,"Augmente l’Esquive du Pokémon durant les tempêtes de grêle." 81,18,6,Erhöht bei Hagel den Fluchtwert. @@ -10422,6 +11571,7 @@ de grêle." 회피율이 올라간다." 81,20,4,"天氣為冰雹時, 閃避率會提高。" +81,20,5,Augmente l'Esquive du Pokémon durant les tempêtes de grêle. 81,20,5,"Augmente l’Esquive du Pokémon durant les tempêtes de grêle." 81,20,6,Erhöht bei Hagel den Ausweichwert. @@ -10432,22 +11582,31 @@ de grêle." 回避率が 上がる。" 81,20,12,"冰雹天气时, 闪避率会提高。" +81,25,5,Augmente l'Esquive du Pokémon quand il neige. +81,25,9,Boosts the Pokémon's evasiveness in snow. +82,8,5,Encourage l'utilisation d'une Baie tenue. 82,8,9,"Encourages the early use of a held Berry." +82,9,5,Encourage l'utilisation d'une Baie tenue. 82,9,9,"Encourages the early use of a held Berry." +82,10,5,Encourage l'utilisation d'une Baie tenue. 82,10,9,"Encourages the early use of a held Berry." +82,11,5,Encourage l'utilisation d'une Baie tenue. 82,11,5,"Encourage l’utilisation d’une Baie tenue." 82,11,9,"Encourages the early use of a held Berry." +82,14,5,Encourage l'utilisation d'une Baie tenue. 82,14,9,"Encourages the early use of a held Berry." 82,15,1,"きのみを いつもより はやく つかう。" 82,15,3,"나무열매를 여느 때보다 빨리 사용한다." +82,15,5,Permet d'utiliser plus rapidement une Baie tenue. +82,15,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu'il a perdu la moitié de ses PV." 82,15,5,"Permet d’utiliser plus rapidement une Baie tenue." 82,15,6,"Ermutigt zum frühzeitigen Einsatz @@ -10464,6 +11623,8 @@ Berry earlier than usual." はやく つかう。" 82,16,3,"나무열매를 여느 때보다 빨리 사용한다." +82,16,5,Permet d'utiliser plus rapidement une Baie tenue. +82,16,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu'il a perdu la moitié de ses PV." 82,16,5,"Permet d’utiliser plus rapidement une Baie tenue." 82,16,6,"Ermutigt zum frühzeitigen Einsatz @@ -10484,6 +11645,7 @@ Berry earlier than usual." 절반일 때 먹어버린다." 82,17,4,"原本HP變得很少時才會吃的樹果, 在HP還有一半時就會把它吃掉。" +82,17,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu'il a perdu la moitié de ses PV." 82,17,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu’il a perdu la moitié de ses PV." 82,17,6,"Setzt bestimmte Beeren nicht erst in einer Notlage @@ -10510,6 +11672,7 @@ drops to half or less, which is sooner than usual." 절반일 때 먹어버린다." 82,18,4,"原本HP變得很少時才會吃的樹果, 在HP還有一半時就會把它吃掉。" +82,18,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu'il a perdu la moitié de ses PV." 82,18,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu’il a perdu la moitié de ses PV." 82,18,6,"Setzt bestimmte Beeren nicht erst in einer Notlage @@ -10562,6 +11725,7 @@ drops to half or less, which is sooner than usual." 절반일 때 먹어버린다." 82,20,4,"原本HP變得很少時才會吃的樹果, 在HP還有一半時就會把它吃掉。" +82,20,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu'il a perdu la moitié de ses PV." 82,20,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu’il a perdu la moitié de ses PV." 82,20,6,"Setzt bestimmte Beeren nicht erst in einer Notlage ein, @@ -10580,6 +11744,8 @@ drops to half or less, which is sooner than usual." 時に 食べてしまう。" 82,20,12,"原本HP变得很少时才会吃树果, 在HP还有一半时就会把它吃掉。" +82,25,5,"Si le Pokémon tient une Baie à manger en cas de PV bas, il la mange dès qu'il a perdu la moitié de ses PV." +82,25,9,"If the Pokémon is holding a Berry to be eaten when its HP is low, it will instead eat the Berry when its HP drops to half or less." 83,8,9,"Raises Attack upon taking a critical hit." 83,9,9,"Raises Attack upon taking @@ -10724,22 +11890,31 @@ and that maxes its Attack stat." 83,20,12,"要害被击中时, 会大发雷霆, 攻击力变为最大。" +83,25,5,"Si le Pokémon subit un coup critique, il entre\ndans une colère noire qui augmente son Attaque\nau maximum." +83,25,9,"The Pokémon is angered when it takes a critical hit, and that maxes its Attack stat." +84,8,5,Augmente la Vit. si l'objet tenu est utilisé ou perdu. 84,8,9,"Raises Speed if a held item is used." +84,9,5,Augmente la Vit. si l'objet tenu est utilisé ou perdu. 84,9,9,"Raises Speed if a held item is used." +84,10,5,Augmente la Vit. si l'objet tenu est utilisé ou perdu. 84,10,9,"Raises Speed if a held item is used." +84,11,5,Augmente la Vit. si l'objet tenu est utilisé ou perdu. 84,11,5,"Augmente la Vit. si l’objet tenu est utilisé ou perdu." 84,11,9,"Raises Speed if a held item is used." +84,13,5,Augmente la Vit. si l'objet tenu est utilisé ou perdu. +84,14,5,Augmente la Vit. si l'objet tenu est utilisé ou perdu. 84,14,9,"Raises Speed if a held item is used." 84,15,1,"どうぐが なくなると すばやさが あがる。" 84,15,3,"도구가 없어지면 스피드가 올라간다." +84,15,5,Augmente la Vitesse du Pokémon s'il perd ou utilise l'objet qu'il tenait au début du combat. 84,15,5,"Augmente la Vitesse si l’objet tenu est utilisé ou perdu." 84,15,6,"Erhöht Initiative, wenn ein Item @@ -10756,6 +11931,8 @@ held item is used or lost." すばやさが あがる。" 84,16,3,"도구가 없어지면 스피드가 올라간다." +84,16,5,Augmente la Vitesse du Pokémon s'il perd ou utilise l'objet qu'il tenait au début du combat. +84,16,5,Augmente la Vit. si l'objet tenu est utilisé ou perdu. 84,16,5,"Augmente la Vitesse si l’objet tenu est utilisé ou perdu." 84,16,6,"Erhöht Initiative, wenn ein Item @@ -10774,6 +11951,7 @@ held item is used or lost." 스피드가 올라간다." 84,17,4,"失去所持有的道具時, 速度會提高。" +84,17,5,Augmente la Vitesse du Pokémon s'il perd ou utilise l'objet qu'il tenait au début du combat. 84,17,5,"Augmente la Vitesse du Pokémon s’il perd ou utilise l’objet qu’il tenait au début du combat." 84,17,6,"Wenn das von ihm getragene Item verwendet wird @@ -10793,6 +11971,7 @@ used or lost." 스피드가 올라간다." 84,18,4,"失去所持有的道具時, 速度會提高。" +84,18,5,Augmente la Vitesse du Pokémon s'il perd ou utilise l'objet qu'il tenait au début du combat. 84,18,5,"Augmente la Vitesse du Pokémon s’il perd ou utilise l’objet qu’il tenait au début du combat." 84,18,6,"Wenn das von ihm getragene Item verwendet wird @@ -10831,6 +12010,7 @@ used or lost." 스피드가 올라간다." 84,20,4,"失去所持有的道具時, 速度會提高。" +84,20,5,Augmente la Vitesse du Pokémon s'il perd ou utilise l'objet qu'il tenait au début du combat. 84,20,5,"Augmente la Vitesse du Pokémon s’il perd ou utilise l’objet qu’il tenait au début du combat." 84,20,6,"Wenn das von ihm getragene Item verwendet wird @@ -10844,16 +12024,24 @@ used or lost." 素早さが 上がる。" 84,20,12,"失去所持有的道具时, 速度会提高。" +84,25,5,Augmente la Vitesse du Pokémon s'il perd ou utilise l'objet qu'il tenait au début du combat. +84,25,9,Boosts the Speed stat if the Pokémon's held item is used or lost. +85,8,5,Réduit la puissance des capacités de type Feu. 85,8,9,"Weakens the power of Fire-type moves." +85,9,5,Réduit la puissance des capacités de type Feu. 85,9,9,"Weakens the power of Fire-type moves." +85,10,5,Réduit la puissance des capacités de type Feu. 85,10,9,"Weakens the power of Fire-type moves." +85,11,5,Réduit la puissance des capacités de type Feu. 85,11,5,"Réduit la puissance des capacités de type Feu." 85,11,9,"Weakens the power of Fire-type moves." +85,13,5,Réduit la puissance des capacités de type Feu. +85,14,5,Réduit la puissance des capacités de type Feu. 85,14,9,"Weakens the power of Fire-type moves." 85,15,1,"ほのお わざの @@ -10876,6 +12064,7 @@ Fire-type moves." いりょくを よわめる。" 85,16,3,"불꽃타입 공격의 위력을 약하게 한다." +85,16,5,Réduit la puissance des capacités de type Feu. 85,16,5,"Réduit la puissance des attaques de type Feu." 85,16,6,"Senkt die Stärke von @@ -10896,6 +12085,7 @@ Fire-type moves." 데미지를 반감한다." 85,17,4,"靠著耐熱的體質, 讓火屬性的招式威力減半。" +85,17,5,Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu. 85,17,5,"Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu." 85,17,6,"Sein Hitze abweisender Körper halbiert den durch @@ -10919,6 +12109,7 @@ damage from Fire-type moves that hit it." 데미지를 반감한다." 85,18,4,"靠著耐熱的體質, 讓火屬性的招式威力減半。" +85,18,5,Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu. 85,18,5,"Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu." 85,18,6,"Sein Hitze abweisender Körper halbiert den durch @@ -10965,6 +12156,7 @@ damage from Fire-type moves that hit it." 데미지를 반감한다." 85,20,4,"靠著耐熱的體質, 讓火屬性的招式威力減半。" +85,20,5,Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu. 85,20,5,"Diminue de moitié les dégâts infligés au Pokémon par les capacités de type Feu." 85,20,6,"Sein Hitze abweisender Körper halbiert den durch @@ -10980,22 +12172,31 @@ damage from Fire-type moves that hit it." 威力を 半減させる。" 85,20,12,"耐热的体质会 让火属性的招式威力减半。" +85,25,5,Diminue de moitié les dégâts infligés au Pokémon\npar les capacités de type Feu. +85,25,9,The Pokémon's heatproof body halves the damage taken from Fire-type moves. +86,8,5,Le Pokémon est sujet à des variations de stats. 86,8,9,"The Pokémon is prone to wild stat changes." +86,9,5,Le Pokémon est sujet à des variations de stats. 86,9,9,"The Pokémon is prone to wild stat changes." +86,10,5,Le Pokémon est sujet à des variations de stats. 86,10,9,"The Pokémon is prone to wild stat changes." +86,11,5,Le Pokémon est sujet à des variations de stats. 86,11,5,"Le Pokémon est sujet à des variations de stats." 86,11,9,"The Pokémon is prone to wild stat changes." +86,13,5,Le Pokémon est sujet à des variations de stats. +86,14,5,Le Pokémon est sujet à des variations de stats. 86,14,9,"The Pokémon is prone to wild stat changes." 86,15,1,"のうりょく へんかが いつもより はげしい。" 86,15,3,"능력 변화가 여느 때보다 심하다." +86,15,5,Les variations de stats sont deux fois plus importantes pour le Pokémon. 86,15,5,"Le Pokémon est sujet à des variations de stats." 86,15,6,"Das Pokémon ist anfällig @@ -11012,6 +12213,8 @@ wild stat changes." いつもより はげしい。" 86,16,3,"능력 변화가 여느 때보다 심하다." +86,16,5,Les variations de stats sont deux fois plus importantes pour le Pokémon. +86,16,5,Le Pokémon est sujet à des variations de stats. 86,16,5,"Le Pokémon est sujet à des variations de stats." 86,16,6,"Verdoppelt den Effekt eigener @@ -11029,6 +12232,7 @@ wild stat changes." 86,17,3,"능력 변화가 평소의 2배가 된다." 86,17,4,能力變化會變為平時的2倍。 +86,17,5,Les variations de stats sont deux fois plus importantes pour le Pokémon. 86,17,5,"Les variations de stats sont deux fois plus importantes pour le Pokémon." 86,17,6,"Verdoppelt die Wirkung eigener @@ -11044,6 +12248,7 @@ Statusveränderungen." 86,18,3,"능력 변화가 평소의 2배가 된다." 86,18,4,能力變化會變為平時的2倍。 +86,18,5,Les variations de stats sont deux fois plus importantes pour le Pokémon. 86,18,5,"Les variations de stats sont deux fois plus importantes pour le Pokémon." 86,18,6,"Verdoppelt die Wirkung eigener @@ -11074,6 +12279,7 @@ Statusveränderungen." 86,20,3,"능력 변화가 평소의 2배가 된다." 86,20,4,能力變化會變為平時的2倍。 +86,20,5,Les variations de stats sont deux fois plus importantes pour le Pokémon. 86,20,5,"Les variations de stats sont deux fois plus importantes pour le Pokémon." 86,20,6,Verdoppelt die Wirkung eigener Statusveränderungen. @@ -11083,16 +12289,24 @@ pour le Pokémon." 86,20,11,"能力 変化が いつもの 2倍に なる。" 86,20,12,能力变化会变为平时的2倍。 +86,25,5,Les changements de stats sont deux fois plus importants\npour le Pokémon. +86,25,9,Doubles the effects of the Pokémon's stat changes. +87,8,5,Perd des PV à la chaleur. L'eau les restaure. 87,8,9,"Reduces HP if it is hot. Water restores HP." +87,9,5,Perd des PV à la chaleur. L'eau les restaure. 87,9,9,"Reduces HP if it is hot. Water restores HP." +87,10,5,Perd des PV à la chaleur. L'eau les restaure. 87,10,9,"Reduces HP if it is hot. Water restores HP." +87,11,5,Perd des PV à la chaleur. L'eau les restaure. 87,11,5,"Perd des PV à la chaleur. L’eau les restaure." 87,11,9,"Reduces HP if it is hot. Water restores HP." +87,13,5,Perd des PV à la chaleur. L'eau les restaure. +87,14,5,Perd des PV à la chaleur. L'eau les restaure. 87,14,9,"Reduces HP if it is hot. Water restores HP." 87,15,1,"あついと HPが へる。 @@ -11115,6 +12329,7 @@ Water restores HP."  ずで HPを かいふく。" 87,16,3,"더우면 HP가 줄어든다. 물로 HP를 회복한다." +87,16,5,Perd des PV à la chaleur. L'eau les restaure. 87,16,5,"Perd des PV à la chaleur. L’eau les restaure." 87,16,6,"Bei heißem Wetter verliert das @@ -11136,6 +12351,7 @@ Water restores HP." 87,17,4,"下雨天氣時和受到水屬性的招式攻擊時, HP會回復。晴朗天氣時和受到火屬性的 招式攻擊時,HP會減少。" +87,17,5,"Le Pokémon regagne des PV sous la pluie ou s'il est touché par une capacité Eau, mais il déteste les capacités Feu ou quand le soleil brille." 87,17,5,"Le Pokémon regagne des PV sous la pluie ou s’il est touché par une capacité Eau, mais il déteste les capacités Feu ou quand le soleil brille." @@ -11166,6 +12382,7 @@ damage received from Fire-type moves." 87,18,4,"下雨天氣時和受到水屬性的招式攻擊時, HP會回復。晴朗天氣時和受到火屬性的 招式攻擊時,HP會減少。" +87,18,5,"Le Pokémon regagne des PV sous la pluie ou s'il est touché par une capacité Eau, mais il déteste les capacités Feu ou quand le soleil brille." 87,18,5,"Le Pokémon regagne des PV sous la pluie ou s’il est touché par une capacité Eau, mais il déteste les capacités Feu ou quand le soleil brille." @@ -11226,6 +12443,7 @@ HP会回复。晴朗天气时和受到火属性的 87,20,4,"下雨天氣時和受到水屬性的招式攻擊時, HP會回復。晴朗天氣時和受到火屬性的 招式攻擊時,HP會減少。" +87,20,5,"Le Pokémon perd des PV quand le soleil brille, mais il en regagne lorsqu'il pleut ou s'il est touché par une capacité Eau. Il subit aussi plus de dégâts de Feu." 87,20,5,"Le Pokémon perd des PV quand le soleil brille, mais il en regagne lorsqu’il pleut ou s’il est touché par une capacité Eau. Il subit aussi plus de dégâts de Feu." @@ -11247,16 +12465,24 @@ the damage received from Fire-type moves." 87,20,12,"下雨天气时和受到水属性的招式时, HP会回复。晴朗天气时和受到火属性的 招式时,HP会减少。" +87,25,5,"Quand le soleil brille, le Pokémon perd des PV et subit plus de dégâts des capacités Feu, mais il regagne des PV lorsqu'il pleut ou s'il est touché par une capacité Eau." +87,25,9,"Restores the Pokémon's HP in rain or when it is hit by Water-type moves. Reduces HP in harsh sunlight, and increases the damage received from Fire-type moves." +88,8,5,Ajuste la puissance selon l'ennemi. 88,8,9,"Adjusts power according to the foe’s ability." +88,9,5,Ajuste la puissance selon l'ennemi. 88,9,9,"Adjusts power according to the foe’s ability." +88,10,5,Ajuste la puissance selon l'ennemi. 88,10,9,"Adjusts power according to the foe’s ability." +88,11,5,Ajuste la puissance selon l'ennemi. 88,11,5,"Ajuste la puissance selon l’ennemi." 88,11,9,"Adjusts power according to a foe’s defenses." +88,13,5,Ajuste la puissance selon l'ennemi. +88,14,5,Ajuste la puissance selon l'ennemi. 88,14,9,"Adjusts power according to a foe’s defenses." 88,15,1,"あいての のうりょくを @@ -11278,6 +12504,7 @@ opposing Pokémon’s stats."  て つよさを かえる。" 88,16,3,"상대의 능력을 보고 능력치를 바꾼다." +88,16,5,Ajuste la puissance selon l'ennemi. 88,16,5,"Ajuste la puissance selon l’ennemi." 88,16,6,"Passt Kraft entsprechend den @@ -11298,6 +12525,7 @@ opposing Pokémon’s stats." 88,17,4,"比較對手的防禦和特防, 根據較低的那項能力 相應地提高自己的攻擊或特攻。" +88,17,5,Le Pokémon compare la Défense et la Défense Spéciale de l'adversaire et augmente son Attaque ou son Attaque Spéciale en conséquence. 88,17,5,"Le Pokémon compare la Défense et la Défense Spéciale de l’adversaire et augmente son Attaque ou son Attaque Spéciale en conséquence." @@ -11328,6 +12556,7 @@ Sp. Atk stat—whichever will be more effective." 88,18,4,"比較對手的防禦和特防, 根據較低的那項能力 相應地提高自己的攻擊或特攻。" +88,18,5,Le Pokémon compare la Défense et la Défense Spéciale de l'adversaire et augmente son Attaque ou son Attaque Spéciale en conséquence. 88,18,5,"Le Pokémon compare la Défense et la Défense Spéciale de l’adversaire et augmente son Attaque ou son Attaque Spéciale en conséquence." @@ -11388,6 +12617,7 @@ Sp. Atk stat—whichever will be more effective." 88,20,4,"比較對手的防禦和特防, 根據較低的那項能力 相應地提高自己的攻擊或特攻。" +88,20,5,Le Pokémon compare la Défense et la Défense Spéciale de l'adversaire et augmente son Attaque ou son Attaque Spéciale en conséquence. 88,20,5,"Le Pokémon compare la Défense et la Défense Spéciale de l’adversaire et augmente son Attaque ou son Attaque Spéciale en conséquence." @@ -11409,16 +12639,24 @@ Sp. Atk stat—whichever will be more effective." 88,20,12,"比较对手的防御和特防, 根据较低的那项能力 相应地提高自己的攻击或特攻。" +88,27,5,"Le Pokémon compare la Défense et la Défense Spéciale\nde l’adversaire et, en fonction de la stat la plus basse,\nil augmente sa propre Attaque ou Attaque Spéciale." +88,27,9,The Pokémon compares an opposing Pokémon's Defense and Sp. Def stats before raising its own Attack or Sp. Atk stat—whichever will be more effective. +89,8,5,Augmente la puissance des capacités coups de poing. 89,8,9,"Boosts the power of punching moves." +89,9,5,Augmente la puissance des capacités coups de poing. 89,9,9,"Boosts the power of punching moves." +89,10,5,Augmente la puissance des capacités coups de poing. 89,10,9,"Boosts the power of punching moves." +89,11,5,Augmente la puissance des capacités coups de poing. 89,11,5,"Augmente la puissance des capacités coups de poing." 89,11,9,"Boosts the power of punching moves." +89,13,5,Augmente la puissance des capacités coups de poing. +89,14,5,Augmente la puissance des capacités coups de poing. 89,14,9,"Boosts the power of punching moves." 89,15,1,"パンチを つかう わざの @@ -11440,6 +12678,7 @@ utilizzano pugni." いりょくが あがる。" 89,16,3,"펀치를 사용하는 기술의 위력이 올라간다." +89,16,5,Augmente la puissance des capacités coups de poing. 89,16,5,"Augmente la puissance des capacités coups de poing." 89,16,6,"Steigert die Effektivität von @@ -11457,6 +12696,7 @@ utilizzano pugni." 위력이 올라간다." 89,17,4,"使用到拳頭的招式 威力會提高。" +89,17,5,Augmente la puissance des capacités coups de poing. 89,17,5,"Augmente la puissance des capacités coups de poing." 89,17,6,"Erhöht die Stärke von Hieb-, Punch-, Faust- und @@ -11473,6 +12713,7 @@ Schlag-Attacken." 위력이 올라간다." 89,18,4,"使用到拳頭的招式 威力會提高。" +89,18,5,Augmente la puissance des capacités coups de poing. 89,18,5,"Augmente la puissance des capacités coups de poing." 89,18,6,"Erhöht die Stärke von Hieb-, Punch-, Faust- und @@ -11506,6 +12747,7 @@ Schlag-Attacken." 89,20,4,"使用到拳頭的招式 威力會提高。" 89,20,5,Augmente la puissance des capacités coups de poing. +89,20,5,Augmente la puissance des capacités coups de poing. 89,20,6,"Erhöht die Stärke von Hieb-, Punch-, Faust- und Schlag-Attacken." 89,20,7,Aumenta la potencia de los puñetazos. @@ -11514,16 +12756,24 @@ Schlag-Attacken." 89,20,11,"パンチを 使う 技の 威力が 上がる。" 89,20,12,使用拳类招式的威力会提高。 +89,25,5,Augmente la puissance des capacités coups de poing. +89,25,9,Powers up punching moves. +90,8,5,Restaure des PV si le Pokémon est empoisonné. 90,8,9,"Restores HP if the Pokémon is poisoned." +90,9,5,Restaure des PV si le Pokémon est empoisonné. 90,9,9,"Restores HP if the Pokémon is poisoned." +90,10,5,Restaure des PV si le Pokémon est empoisonné. 90,10,9,"Restores HP if the Pokémon is poisoned." +90,11,5,Restaure des PV si le Pokémon est empoisonné. 90,11,5,"Restaure des PV si le Pokémon est empoisonné." 90,11,9,"Restores HP if the Pokémon is poisoned." +90,13,5,Restaure des PV si le Pokémon est empoisonné. +90,14,5,Restaure des PV si le Pokémon est empoisonné. 90,14,9,"Restores HP if the Pokémon is poisoned." 90,15,1,"どくじょうたいに なると @@ -11545,6 +12795,7 @@ Pokémon is poisoned." HPを かいふくする。" 90,16,3,"독 상태가 되면 HP를 회복한다." +90,16,5,Restaure des PV si le Pokémon est empoisonné. 90,16,5,"Restaure des PV si le Pokémon est empoisonné." 90,16,6,Heilt bei Vergiftungen KP. @@ -11562,6 +12813,7 @@ Pokémon is poisoned." HP가 줄지 않고 증가한다." 90,17,4,"陷入中毒狀態時, HP不會減少,反而會漸漸增加。" +90,17,5,"Quand le Pokémon est empoisonné, il regagne des PV au lieu d'en perdre." 90,17,5,"Quand le Pokémon est empoisonné, il regagne des PV au lieu d’en perdre." 90,17,6,"Das Pokémon erleidet keinen Schaden durch @@ -11582,6 +12834,7 @@ losing HP." HP가 줄지 않고 증가한다." 90,18,4,"陷入中毒狀態時, HP不會減少,反而會漸漸增加。" +90,18,5,"Quand le Pokémon est empoisonné, il regagne des PV au lieu d'en perdre." 90,18,5,"Quand le Pokémon est empoisonné, il regagne des PV au lieu d’en perdre." 90,18,6,"Das Pokémon erleidet keinen Schaden durch @@ -11622,6 +12875,7 @@ HP不会减少,反而会增加起来。" HP가 줄지 않고 증가한다." 90,20,4,"陷入中毒狀態時, HP不會減少,反而會漸漸增加。" +90,20,5,"Quand le Pokémon est empoisonné, il regagne des PV au lieu d'en perdre." 90,20,5,"Quand le Pokémon est empoisonné, il regagne des PV au lieu d’en perdre." 90,20,6,"Das Pokémon erleidet keinen Schaden durch Vergiftung, @@ -11635,22 +12889,31 @@ losing HP." HPが 減らずに 増えていく。" 90,20,12,"变为中毒状态时, HP不会减少,反而会增加起来。" +90,25,5,"Quand le Pokémon est empoisonné, il regagne des PV\nau lieu d’en perdre." +90,25,9,"If poisoned, the Pokémon has its HP restored instead of taking damage." +91,8,5,Augmente la puissance des capacités de même type. 91,8,9,"Powers up moves of the same type." +91,9,5,Augmente la puissance des capacités de même type. 91,9,9,"Powers up moves of the same type." +91,10,5,Augmente la puissance des capacités de même type. 91,10,9,"Powers up moves of the same type." +91,11,5,Augmente la puissance des capacités de même type. 91,11,5,"Augmente la puissance des capacités de même type." 91,11,9,"Powers up moves of the same type." +91,13,5,Augmente la puissance des capacités de même type. +91,14,5,Augmente la puissance des capacités de même type. 91,14,9,"Powers up moves of the same type." 91,15,1,"タイプが おなじ わざの いりょくが あがる。" 91,15,3,"타입이 같은 기술의 위력이 올라간다." +91,15,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu'elle reçoit est encore plus important que normalement." 91,15,5,"Augmente la puissance des capacités de même type." 91,15,6,"Erhöht die Stärke von Attacken @@ -11667,6 +12930,8 @@ same type as the Pokémon." いりょくが あがる。" 91,16,3,"타입이 같은 기술의 위력이 올라간다." +91,16,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu'elle reçoit est encore plus important que normalement." +91,16,5,Augmente la puissance des capacités de même type. 91,16,5,"Augmente la puissance des capacités de même type." 91,16,6,"Erhöht die Stärke von Attacken @@ -11685,6 +12950,7 @@ same type as the Pokémon." 기술 위력이 올라간다." 91,17,4,"與自身同屬性的招式 威力會提高。" +91,17,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu'elle reçoit est encore plus important que normalement." 91,17,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu’elle reçoit est encore plus important que normalement." @@ -11705,6 +12971,7 @@ del Pokémon." 기술 위력이 올라간다." 91,18,4,"與自身同屬性的招式 威力會提高。" +91,18,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu'elle reçoit est encore plus important que normalement." 91,18,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu’elle reçoit est encore plus important que normalement." @@ -11745,6 +13012,7 @@ del Pokémon." 기술 위력이 올라간다." 91,20,4,"與自身同屬性的招式 威力會提高。" +91,20,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu'elle reçoit est encore plus important que normalement." 91,20,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu’elle reçoit est encore plus important que normalement." @@ -11759,16 +13027,24 @@ del Pokémon." 技の 威力が 上がる。" 91,20,12,"与自身同属性的招式 威力会提高。" +91,25,5,"Quand le Pokémon utilise une capacité du même type que lui, le bonus de puissance qu'elle reçoit est encore plus important que normalement." +91,25,9,Powers up moves of the same type as the Pokémon. +92,8,5,Augmente la fréquence des attaques multiples. 92,8,9,"Increases the frequency of multi-strike moves." +92,9,5,Augmente la fréquence des attaques multiples. 92,9,9,"Increases the frequency of multi-strike moves." +92,10,5,Augmente la fréquence des attaques multiples. 92,10,9,"Increases the frequency of multi-strike moves." +92,11,5,Augmente la fréquence des attaques multiples. 92,11,5,"Augmente la fréquence des attaques multiples." 92,11,9,"Increases the frequency of multi-strike moves." +92,13,5,Augmente la fréquence des attaques multiples. +92,14,5,Augmente la fréquence des attaques multiples. 92,14,9,"Increases the frequency of multi-strike moves." 92,15,1,"れんぞく わざを @@ -11791,6 +13067,7 @@ multi-strike moves hit." たくさん だせる。" 92,16,3,"연속 기술을 많이 쓸 수 있다." +92,16,5,Augmente la fréquence des attaques multiples. 92,16,5,"Augmente la fréquence des attaques multiples." 92,16,6,"Ermöglicht längere Trefferserien @@ -11809,6 +13086,7 @@ multi-strike moves hit." 최고 횟수를 사용할 수 있다." 92,17,4,"若使用連續招式, 總是可使出最高次數。" +92,17,5,Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximum de coups. 92,17,5,"Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximum de coups." 92,17,6,"Landet mit Serien-Attacken immer die maximale @@ -11829,6 +13107,7 @@ moves hit." 최고 횟수를 사용할 수 있다." 92,18,4,"若使用連續招式, 總是可使出最高次數。" +92,18,5,Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximum de coups. 92,18,5,"Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximum de coups." 92,18,6,"Landet mit Serien-Attacken immer die maximale @@ -11869,6 +13148,7 @@ moves hit." 최고 횟수를 사용할 수 있다." 92,20,4,"使用連續招式時, 每回都能以最多次數進行攻擊。" +92,20,5,Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximal de coups. 92,20,5,"Les capacités pouvant frapper plusieurs fois frappent toujours le nombre maximal de coups." 92,20,6,"Landet mit Serien-Attacken immer die maximale Anzahl @@ -11883,22 +13163,31 @@ moves hit." 最高回数 出すことが できる。" 92,20,12,"如果使用连续招式, 总是能使出最高次数。" +92,25,5,Les capacités pouvant frapper plusieurs fois frappent\ntoujours le nombre maximal de coups. +92,25,9,Maximizes the number of times multistrike moves hit. +93,8,5,Soigne les problèmes de statut s'il pleut. 93,8,9,"Heals status problems if it is raining." +93,9,5,Soigne les problèmes de statut s'il pleut. 93,9,9,"Heals status problems if it is raining." +93,10,5,Soigne les problèmes de statut s'il pleut. 93,10,9,"Heals status problems if it is raining." +93,11,5,Soigne les problèmes de statut s'il pleut. 93,11,5,"Soigne les problèmes de statut s’il pleut." 93,11,9,"Heals status problems if it is raining." +93,13,5,Soigne les problèmes de statut s'il pleut. +93,14,5,Soigne les problèmes de statut s'il pleut. 93,14,9,"Heals status problems if it is raining." 93,15,1,"じょうたい いじょうが あめの とき なおる。" 93,15,3,"비가 오면 상태 이상이 회복된다." +93,15,5,Soigne les altérations de statut du Pokémon quand il pleut. 93,15,5,"Soigne les problèmes de statut s’il pleut." 93,15,6,Heilt bei Regen Statusprobleme. @@ -11913,6 +13202,8 @@ it’s raining." あめの とき なおる。" 93,16,3,"비가 오면 상태 이상이 회복된다." +93,16,5,Soigne les altérations de statut du Pokémon quand il pleut. +93,16,5,Soigne les problèmes de statut s'il pleut. 93,16,5,"Soigne les problèmes de statut s’il pleut." 93,16,6,Heilt bei Regen Statusprobleme. @@ -11929,6 +13220,7 @@ it’s raining." 상태 이상이 회복된다." 93,17,4,"天氣為下雨時, 會治癒異常狀態。" +93,17,5,Soigne les altérations de statut du Pokémon quand il pleut. 93,17,5,"Soigne les altérations de statut du Pokémon quand il pleut." 93,17,6,Heilt bei Regen Statusprobleme. @@ -11945,6 +13237,7 @@ quand il pleut." 상태 이상이 회복된다." 93,18,4,"天氣為下雨時, 會治癒異常狀態。" +93,18,5,Soigne les altérations de statut du Pokémon quand il pleut. 93,18,5,"Soigne les altérations de statut du Pokémon quand il pleut." 93,18,6,Heilt bei Regen Statusprobleme. @@ -11977,6 +13270,7 @@ quand il pleut." 상태 이상이 회복된다." 93,20,4,"天氣為下雨時, 會治癒異常狀態。" +93,20,5,Soigne les altérations de statut du Pokémon quand il pleut. 93,20,5,"Soigne les altérations de statut du Pokémon quand il pleut." 93,20,6,Heilt bei Regen Statusprobleme. @@ -11987,22 +13281,31 @@ quand il pleut." 状態異常が 治る。" 93,20,12,"下雨天气时, 异常状态会治愈。" +93,25,5,Soigne les altérations de statut du Pokémon quand il pleut. +93,25,9,Cures the Pokémon's status conditions in rain. +94,8,5,Augmente l'Atq. Spé. mais baisse les PV au soleil. 94,8,9,"Boosts Sp. Atk, but lowers HP in sunshine." +94,9,5,Augmente l'Atq. Spé. mais baisse les PV au soleil. 94,9,9,"Boosts Sp. Atk, but lowers HP in sunshine." +94,10,5,Augmente l'Atq. Spé. mais baisse les PV au soleil. 94,10,9,"Boosts Sp. Atk, but lowers HP in sunshine." +94,11,5,Augmente l'Atq. Spé. mais baisse les PV au soleil. 94,11,5,"Augmente l’Atq. Spé. mais baisse les PV au soleil." 94,11,9,"In sunshine, Sp. Atk is boosted but HP decreases." +94,14,5,Augmente l'Atq. Spé. mais baisse les PV au soleil. 94,14,9,"In sunshine, Sp. Atk is boosted but HP decreases." 94,15,1,"はれると HPが へるが とくこうが あがる。" 94,15,3,"맑으면 HP가 줄지만 특수공격이 올라간다." +94,15,5,Augmente l'Attaque Spéciale mais baisse les PV au soleil. +94,15,5,"Quand le soleil brille, l'Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,15,5,"Augmente l’Attaque Spéciale mais baisse les PV au soleil." 94,15,6,"Führt bei Sonne zu KP-Verlusten, @@ -12019,6 +13322,8 @@ weather, but HP decreases." とくこうが あがる。" 94,16,3,"맑으면 HP가 줄지만 특수공격이 올라간다." +94,16,5,Augmente l'Attaque Spéciale mais baisse les PV au soleil. +94,16,5,"Quand le soleil brille, l'Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,16,5,"Augmente l’Attaque Spéciale mais baisse les PV au soleil." 94,16,6,"Führt bei Sonne zu KP-Verlusten, @@ -12039,6 +13344,7 @@ weather, but HP decreases." 매 턴 HP가 줄어든다." 94,17,4,"晴朗天氣時特攻會提高, 但每回合HP會減少。" +94,17,5,"Quand le soleil brille, l'Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,17,5,"Quand le soleil brille, l’Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,17,6,"Führt bei Sonnenschein in jeder Runde zu @@ -12063,6 +13369,7 @@ decreases every turn." 매 턴 HP가 줄어든다." 94,18,4,"晴朗天氣時特攻會提高, 但每回合HP會減少。" +94,18,5,"Quand le soleil brille, l'Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,18,5,"Quand le soleil brille, l’Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,18,6,"Führt bei Sonnenschein in jeder Runde zu @@ -12111,6 +13418,7 @@ decreases every turn." 매 턴 HP가 줄어든다." 94,20,4,"天氣為晴朗時特攻會提高, 但每回合HP會減少。" +94,20,5,"Quand le soleil brille, l'Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,20,5,"Quand le soleil brille, l’Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." 94,20,6,"Führt bei Sonnenschein in jeder Runde zu KP-Verlusten, @@ -12127,22 +13435,28 @@ decreases every turn." 94,20,12,"晴朗天气时, 特攻会提高, 而每回合HP会减少。" +94,25,5,"Quand le soleil brille, l'Attaque Spéciale du Pokémon augmente mais il perd des PV à chaque tour." +94,25,9,"In harsh sunlight, the Pokémon's Sp. Atk stat is boosted, but its HP decreases every turn." 95,8,9,"Boosts Speed if there is a status problem." 95,9,9,"Boosts Speed if there is a status problem." 95,10,9,"Boosts Speed if there is a status problem." +95,11,5,Augmente la Vitesse en cas de problème de statut. 95,11,5,"Augmente la Vitesse en cas de problème de statut." 95,11,9,"Boosts Speed if there is a status problem." +95,13,5,Augmente la Vitesse en cas de problème de statut. +95,14,5,Augmente la Vitesse en cas de problème de statut. 95,14,9,"Boosts Speed if there is a status problem." 95,15,1,"じょうたい いじょうで すばやさが あがる。" 95,15,3,"상태 이상이 되면 스피드가 올라간다." +95,15,5,Augmente la Vitesse du Pokémon en cas d'altération de statut. 95,15,5,"Augmente la Vitesse en cas de problème de statut." 95,15,6,"Erhöht bei Statusproblemen @@ -12159,6 +13473,8 @@ Pokémon has a status condition." すばやさが あがる。" 95,16,3,"상태 이상이 되면 스피드가 올라간다." +95,16,5,Augmente la Vitesse en cas de problème de statut. +95,16,5,Augmente la Vitesse du Pokémon en cas d'altération de statut. 95,16,5,"Augmente la Vitesse en cas de problème de statut." 95,16,6,"Erhöht bei Statusproblemen @@ -12177,6 +13493,7 @@ Pokémon has a status condition." 스피드가 올라간다." 95,17,4,"陷入異常狀態時, 速度會提高。" +95,17,5,Augmente la Vitesse du Pokémon en cas d'altération de statut. 95,17,5,"Augmente la Vitesse du Pokémon en cas d’altération de statut." 95,17,6,Erhöht bei Statusproblemen die Initiative. @@ -12195,6 +13512,7 @@ status condition." 스피드가 올라간다." 95,18,4,"陷入異常狀態時, 速度會提高。" +95,18,5,Augmente la Vitesse du Pokémon en cas d'altération de statut. 95,18,5,"Augmente la Vitesse du Pokémon en cas d’altération de statut." 95,18,6,Erhöht bei Statusproblemen die Initiative. @@ -12231,6 +13549,7 @@ status condition." 스피드가 올라간다." 95,20,4,"陷入異常狀態時, 速度會提高。" +95,20,5,Augmente la Vitesse du Pokémon en cas d'altération de statut. 95,20,5,"Augmente la Vitesse du Pokémon en cas d’altération de statut." 95,20,6,Erhöht bei Statusproblemen die Initiative. @@ -12243,16 +13562,24 @@ status condition." 素早さが 上がる。" 95,20,12,"变为异常状态时, 速度会提高。" +95,25,5,Augmente la Vitesse du Pokémon en cas d'altération de statut. +95,25,9,Boosts the Speed stat if the Pokémon has a status condition. +96,8,5,Toutes les capacités sont de type Normal. 96,8,9,"All the Pokémon’s moves become the Normal type." +96,9,5,Toutes les capacités sont de type Normal. 96,9,9,"All the Pokémon’s moves become the Normal type." +96,10,5,Toutes les capacités sont de type Normal. 96,10,9,"All the Pokémon’s moves become the Normal type." +96,11,5,Toutes les capacités sont de type Normal. 96,11,5,"Toutes les capacités sont de type Normal." 96,11,9,"All the Pokémon’s moves become the Normal type." +96,13,5,Toutes les capacités sont de type Normal. +96,14,5,Toutes les capacités sont de type Normal. 96,14,9,"All the Pokémon’s moves become the Normal type." 96,15,1,"だしたわざが すべて @@ -12275,6 +13602,7 @@ become Normal type." ノーマルタイプに なる。" 96,16,3,"쓴 기술이 모두 노말타입이 된다." +96,16,5,Toutes les capacités sont de type Normal. 96,16,5,"Toutes les capacités sont de type Normal." 96,16,6,"Alle Attacken des Pokémon @@ -12296,6 +13624,7 @@ become Normal type." 96,17,4,"無論是什麼屬性的招式, 全部都會變為一般屬性。 威力會少量提高。" +96,17,5,"Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement." 96,17,5,"Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement." @@ -12322,6 +13651,7 @@ The power of those moves is boosted a little." 96,18,4,"無論是什麼屬性的招式, 全部都會變為一般屬性。 威力會少量提高。" +96,18,5,"Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement." 96,18,5,"Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement." @@ -12374,6 +13704,7 @@ The power of those moves is boosted a little." 96,20,4,"無論是什麼屬性的招式, 全部都會變為一般屬性。 威力會少量提高。" +96,20,5,"Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement." 96,20,5,"Toutes les capacités du Pokémon deviennent de type Normal, quel que soit leur type original. Leur puissance augmente légèrement." @@ -12391,16 +13722,23 @@ The power of those moves is boosted a little." 96,20,12,"无论是什么属性的招式, 全部会变为一般属性。 威力会少量提高。" +96,25,5,"Toutes les capacités du Pokémon deviennent\nde type Normal, quel que soit leur type original.\nLeur puissance augmente légèrement." +97,8,5,Booste les capacités qui sont des coups critiques. 97,8,9,"Powers up moves if they become critical hits." +97,9,5,Booste les capacités qui sont des coups critiques. 97,9,9,"Powers up moves if they become critical hits." +97,10,5,Booste les capacités qui sont des coups critiques. 97,10,9,"Powers up moves if they become critical hits." +97,11,5,Augmente la puissance des coups critiques. 97,11,5,"Augmente la puissance des coups critiques." 97,11,9,"Powers up moves if they become critical hits." +97,13,5,Augmente la puissance des coups critiques. +97,14,5,Augmente la puissance des coups critiques. 97,14,9,"Powers up moves if they become critical hits." 97,15,1,"きゅうしょに あてたとき @@ -12423,6 +13761,7 @@ become critical hits." いりょくが あがる。" 97,16,3,"급소에 맞혔을 때 위력이 올라간다." +97,16,5,Augmente la puissance des coups critiques. 97,16,5,"Augmente la puissance des coups critiques." 97,16,6,"Steigert den Schaden @@ -12441,6 +13780,7 @@ become critical hits." 위력이 더욱 올라간다." 97,17,4,"擊中要害時, 威力會進一步提高。" +97,17,5,"Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d'habitude." 97,17,5,"Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d’habitude." @@ -12460,6 +13800,7 @@ when attacking." 위력이 더욱 올라간다." 97,18,4,"擊中要害時, 威力會進一步提高。" +97,18,5,"Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d'habitude." 97,18,5,"Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d’habitude." @@ -12498,6 +13839,7 @@ when attacking." 위력이 더욱 올라간다." 97,20,4,"擊中要害時, 威力會進一步提高。" +97,20,5,"Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d'habitude." 97,20,5,"Lorsque le Pokémon porte un coup critique, les dégâts infligés augmentent encore plus que d’habitude." 97,20,6,"Erhöht bei Volltreffern die Stärke der Attacke noch @@ -12511,16 +13853,24 @@ when attacking." 威力が さらに 上がる。" 97,20,12,"击中要害时, 威力会变得更强。" +97,26,5,"Lorsque le Pokémon porte un coup critique, les dégâts\ninfligés augmentent encore plus que d’habitude." +97,26,9,"If the Pokémon's attack lands a critical hit, the attack is powered up even further." +98,8,5,Seule une attaque directe peut blesser le Pokémon. 98,8,9,"The Pokémon only takes damage from attacks." +98,9,5,Seule une attaque directe peut blesser le Pokémon. 98,9,9,"The Pokémon only takes damage from attacks." +98,10,5,Seule une attaque directe peut blesser le Pokémon. 98,10,9,"The Pokémon only takes damage from attacks." +98,11,5,Seule une attaque directe peut blesser le Pokémon. 98,11,5,"Seule une attaque directe peut blesser le Pokémon." 98,11,9,"The Pokémon only takes damage from attacks." +98,13,5,Seule une attaque directe peut blesser le Pokémon. +98,14,5,Seule une attaque directe peut blesser le Pokémon. 98,14,9,"The Pokémon only takes damage from attacks." 98,15,1,"こうげき いがいでは @@ -12543,6 +13893,7 @@ damage from attacks." ダメージを うけない。" 98,16,3,"공격 이외에는 데미지를 입지 않는다." +98,16,5,Seule une attaque directe peut blesser le Pokémon. 98,16,5,"Seule une attaque directe peut blesser le Pokémon." 98,16,6,"Das Pokémon nimmt nur durch @@ -12561,6 +13912,7 @@ damage from attacks." 데미지를 입지 않는다." 98,17,4,不會受到攻擊以外的傷害。 98,17,5,Seules les attaques peuvent blesser le Pokémon. +98,17,5,Seules les attaques peuvent blesser le Pokémon. 98,17,6,"Das Pokémon nimmt nur durch Offensiv-Attacken Schaden." 98,17,7,El Pokémon solo recibe daño de ataques. @@ -12575,6 +13927,7 @@ Schaden." 데미지를 입지 않는다." 98,18,4,不會受到攻擊以外的傷害。 98,18,5,Seules les attaques peuvent blesser le Pokémon. +98,18,5,Seules les attaques peuvent blesser le Pokémon. 98,18,6,"Das Pokémon nimmt nur durch Offensiv-Attacken Schaden." 98,18,7,El Pokémon solo recibe daño de ataques. @@ -12603,6 +13956,7 @@ Schaden." 데미지를 입지 않는다." 98,20,4,不會受到攻擊以外的傷害。 98,20,5,Seules les attaques peuvent blesser le Pokémon. +98,20,5,Seules les attaques peuvent blesser le Pokémon. 98,20,6,"Das Pokémon nimmt nur durch Offensiv-Attacken Schaden." 98,20,7,Solo recibe daño de ataques. @@ -12611,22 +13965,30 @@ Schaden." 98,20,11,"攻撃 以外では ダメージを 受けない。" 98,20,12,不会受到攻击以外的伤害。 +98,26,5,Seules les attaques peuvent blesser le Pokémon. +98,26,9,The Pokémon only takes damage from attacks. +99,8,5,Attaques du Pokémon et de l'ennemi réussissent. 99,8,9,"Ensures the Pokémon and its foe’s attacks land." +99,9,5,Attaques du Pokémon et de l'ennemi réussissent. 99,9,9,"Ensures the Pokémon and its foe’s attacks land." +99,10,5,Attaques du Pokémon et de l'ennemi réussissent. 99,10,9,"Ensures both Pokémon’s and foe’s attacks land." +99,11,5,Attaques du Pokémon et de l'ennemi réussissent. 99,11,5,"Capacités du Pokémon et de l’ennemi réussissent." 99,11,9,"Ensures attacks by or against the Pokémon land." +99,14,5,Attaques du Pokémon et de l'ennemi réussissent. 99,14,9,"Ensures attacks by or against the Pokémon land." 99,15,1,"おたがいの わざが かならず あたる。" 99,15,3,"서로의 기술이 반드시 맞는다." +99,15,5,Les capacités du Pokémon et de l'ennemi touchent à coup sûr. 99,15,5,"Les capacités du Pokémon et de l’ennemi frappent à coup sûr." 99,15,6,"Alle Attacken des oder auf @@ -12643,6 +14005,7 @@ against the Pokémon land." かならず あたる。" 99,16,3,"서로의 기술이 반드시 맞는다." +99,16,5,Les capacités du Pokémon et de l'ennemi touchent à coup sûr. 99,16,5,"Les capacités du Pokémon et de l’ennemi touchent à coup sûr." 99,16,6,"Alle Attacken des oder auf @@ -12663,6 +14026,7 @@ against the Pokémon will land." 반드시 맞게 된다." 99,17,4,"由於無防守戰術, 雙方使出的招式都必定會擊中。" +99,17,5,"Les capacités du Pokémon touchent l'ennemi à coup sûr, et vice-versa." 99,17,5,"Les capacités du Pokémon touchent l’ennemi à coup sûr, et vice-versa." 99,17,6,"Alle Attacken des oder auf das Pokémon gelingen @@ -12686,6 +14050,7 @@ incoming and outgoing attacks always land." 반드시 맞게 된다." 99,18,4,"由於無防守戰術, 雙方使出的招式都必定會擊中。" +99,18,5,"Les capacités du Pokémon touchent l'ennemi à coup sûr, et vice-versa." 99,18,5,"Les capacités du Pokémon touchent l’ennemi à coup sûr, et vice-versa." 99,18,6,"Alle Attacken des oder auf das Pokémon gelingen @@ -12732,6 +14097,7 @@ incoming and outgoing attacks always land." 반드시 맞게 된다." 99,20,4,"由於無防守戰術, 雙方使出的招式都必定會擊中。" +99,20,5,"Les capacités du Pokémon touchent l'ennemi à coup sûr, mais les capacités de l'ennemi le touchent aussi à coup sûr." 99,20,5,"Les capacités du Pokémon touchent l’ennemi à coup sûr, mais les capacités de l’ennemi le touchent aussi à coup sûr." @@ -12748,16 +14114,24 @@ incoming and outgoing attacks always land." かならず 当たる ようになる。" 99,20,12,"由于无防守战术, 双方使出的招式都必定会击中。" +99,25,5,"Les capacités du Pokémon touchent leur cible à coup sûr, mais les capacités de l'ennemi le touchent aussi à coup sûr." +99,25,9,The Pokémon employs no-guard tactics to ensure incoming and outgoing attacks always land. +100,8,5,"Attaque toujours après l'ennemi, même plus lent." 100,8,9,"The Pokémon moves after even slower foes." +100,9,5,"Attaque toujours après l'ennemi, même plus lent." 100,9,9,"The Pokémon moves after even slower foes." +100,10,5,"Attaque toujours après l'ennemi, même plus lent." 100,10,9,"The Pokémon moves after even slower foes." +100,11,5,"Attaque toujours après l'ennemi, même plus lent." 100,11,5,"Attaque toujours après l’ennemi, même plus lent." 100,11,9,"The Pokémon moves after all other Pokémon do." +100,13,5,"Attaque toujours après l'ennemi, même plus lent." +100,14,5,"Attaque toujours après l'ennemi, même plus lent." 100,14,9,"The Pokémon moves after all other Pokémon do." 100,15,1,"あいてより すばやくても @@ -12780,6 +14154,7 @@ all other Pokémon do." こうどうが おそくなる。" 100,16,3,"상대보다 재빨라도 행동이 느려진다." +100,16,5,"Attaque toujours après l'ennemi, même plus lent." 100,16,5,"Agit toujours après les autres Pokémon, même plus lents." 100,16,6,"Handelt auch mit Initiative-Vorteil @@ -12799,6 +14174,7 @@ all other Pokémon do." 100,17,4,"使出招式的順序 必定會變為最後。" 100,17,5,Le Pokémon utilise toujours sa capacité en dernier. +100,17,5,Le Pokémon utilise toujours sa capacité en dernier. 100,17,6,"Handelt auch mit Initiative-Vorteil stets nach dem Gegner." 100,17,7,"El Pokémon ejecuta su movimiento tras todos los @@ -12816,6 +14192,7 @@ demás." 100,18,4,"使出招式的順序 必定會變為最後。" 100,18,5,Le Pokémon utilise toujours sa capacité en dernier. +100,18,5,Le Pokémon utilise toujours sa capacité en dernier. 100,18,6,"Handelt auch mit Initiative-Vorteil stets nach dem Gegner." 100,18,7,"El Pokémon ejecuta su movimiento tras todos los @@ -12850,6 +14227,7 @@ demás." 100,20,4,"使出招式的順序 必定會變為最後。" 100,20,5,Le Pokémon utilise toujours sa capacité en dernier. +100,20,5,Le Pokémon utilise toujours sa capacité en dernier. 100,20,6,Handelt auch mit Initiative-Vorteil stets als Letztes. 100,20,7,Ejecuta su movimiento tras todos los demás. 100,20,8,Il Pokémon agisce sempre per ultimo. @@ -12858,16 +14236,24 @@ demás." かならず 最後に なる。" 100,20,12,"使出招式的顺序 必定会变为最后。" +100,25,5,Le Pokémon utilise toujours sa capacité en dernier. +100,25,9,The Pokémon is always the last to use its moves. +101,8,5,Augmente la puissance des capacités les plus faibles. 101,8,9,"Powers up the Pokémon’s weaker moves." +101,9,5,Augmente la puissance des capacités les plus faibles. 101,9,9,"Powers up the Pokémon’s weaker moves." +101,10,5,Augmente la puissance des capacités les plus faibles. 101,10,9,"Powers up the Pokémon’s weaker moves." +101,11,5,Augmente la puissance des capacités les plus faibles. 101,11,5,"Augmente la puissance des capacités les plus faibles." 101,11,9,"Powers up the Pokémon’s weaker moves." +101,13,5,Augmente la puissance des capacités les plus faibles. +101,14,5,Augmente la puissance des capacités les plus faibles. 101,14,9,"Powers up the Pokémon’s weaker moves." 101,15,1,"よわい わざの @@ -12890,6 +14276,7 @@ weaker moves." いりょくが あがる。" 101,16,3,"약한 기술의 위력이 올라간다." +101,16,5,Augmente la puissance des capacités les plus faibles. 101,16,5,"Augmente la puissance des capacités les plus faibles." 101,16,6,"Steigert die Effektivität von @@ -12908,6 +14295,7 @@ weaker moves." 위력을 올려서 공격할 수 있다." 101,17,4,"可讓威力低的招式 提高威力來進行攻擊。" +101,17,5,Augmente la puissance des capacités les plus faibles. 101,17,5,"Augmente la puissance des capacités les plus faibles." 101,17,6,Erhöht die Stärke von schwächeren Attacken. @@ -12924,6 +14312,7 @@ les plus faibles." 위력을 올려서 공격할 수 있다." 101,18,4,"可讓威力低的招式 提高威力來進行攻擊。" +101,18,5,Augmente la puissance des capacités les plus faibles. 101,18,5,"Augmente la puissance des capacités les plus faibles." 101,18,6,Erhöht die Stärke von schwächeren Attacken. @@ -12957,6 +14346,7 @@ les plus faibles." 101,20,4,"可讓威力低的招式 提高威力來進行攻擊。" 101,20,5,Augmente la puissance des capacités les plus faibles. +101,20,5,Augmente la puissance des capacités les plus faibles. 101,20,6,Erhöht die Stärke von schwächeren Attacken. 101,20,7,Potencia sus movimientos más débiles. 101,20,8,Potenzia le mosse più deboli del Pokémon. @@ -12965,22 +14355,31 @@ les plus faibles." 威力を 高くして 攻撃できる。" 101,20,12,"攻击时可以将 低威力招式的威力提高。" +101,25,5,Augmente la puissance des capacités les plus faibles. +101,25,9,Powers up weak moves so the Pokémon can deal more damage with them. +102,8,5,Empêche les problèmes de statut au soleil. 102,8,9,"Prevents status problems in sunny weather." +102,9,5,Empêche les problèmes de statut au soleil. 102,9,9,"Prevents status problems in sunny weather." +102,10,5,Empêche les problèmes de statut au soleil. 102,10,9,"Prevents problems with status in sunny weather." +102,11,5,Empêche les problèmes de statut au soleil. 102,11,5,"Empêche les problèmes de statut au soleil." 102,11,9,"Prevents problems with status in sunny weather." +102,13,5,Empêche les problèmes de statut au soleil. +102,14,5,Empêche les problèmes de statut au soleil. 102,14,9,"Prevents problems with status in sunny weather." 102,15,1,"じょうたい いじょうに はれのとき ならない。" 102,15,3,"맑을 때는 상태 이상이 되지 않는다." +102,15,5,Protège le Pokémon contre les altérations de statut quand le soleil brille. 102,15,5,"Empêche les problèmes de statut au soleil." 102,15,6,"Verhindert bei Sonnenschein @@ -12997,6 +14396,8 @@ in sunny weather." はれのとき ならない。" 102,16,3,"맑을 때는 상태 이상이 되지 않는다." +102,16,5,Protège le Pokémon contre les altérations de statut quand le soleil brille. +102,16,5,Empêche les problèmes de statut au soleil. 102,16,5,"Empêche les problèmes de statut au soleil." 102,16,6,"Verhindert bei Sonnenschein @@ -13015,6 +14416,7 @@ in sunny weather." 상태 이상이 되지 않는다." 102,17,4,"天氣為晴朗時, 不會陷入異常狀態。" +102,17,5,Protège le Pokémon contre les altérations de statut quand le soleil brille. 102,17,5,"Protège le Pokémon contre les altérations de statut quand le soleil brille." 102,17,6,Verhindert bei Sonnenschein Statusprobleme. @@ -13032,6 +14434,7 @@ di stato." 상태 이상이 되지 않는다." 102,18,4,"天氣為晴朗時, 不會陷入異常狀態。" +102,18,5,Protège le Pokémon contre les altérations de statut quand le soleil brille. 102,18,5,"Protège le Pokémon contre les altérations de statut quand le soleil brille." 102,18,6,Verhindert bei Sonnenschein Statusprobleme. @@ -13066,6 +14469,7 @@ di stato." 상태 이상이 되지 않는다." 102,20,4,"天氣為晴朗時, 不會陷入異常狀態。" +102,20,5,Protège le Pokémon contre les altérations de statut quand le soleil brille. 102,20,5,"Protège le Pokémon contre les altérations de statut quand le soleil brille." 102,20,6,Verhindert bei Sonnenschein Statusprobleme. @@ -13077,6 +14481,8 @@ di stato." 状態異常に ならない。" 102,20,12,"晴朗天气时, 不会变为异常状态。" +102,25,5,Protège le Pokémon contre les altérations de statut quand le soleil brille. +102,25,9,Prevents status conditions in harsh sunlight. 103,8,9,"The Pokémon can’t use any held items." 103,9,9,"The Pokémon can’t use @@ -13127,6 +14533,7 @@ any held items." 쓸 수 없다." 103,17,4,無法使用持有的道具。 103,17,5,Le Pokémon ne peut utiliser aucun objet tenu. +103,17,5,Le Pokémon ne peut utiliser aucun objet tenu. 103,17,6,"Das Pokémon kann keine getragenen Items verwenden." 103,17,7,El Pokémon no puede usar objetos equipados. @@ -13141,6 +14548,7 @@ verwenden." 쓸 수 없다." 103,18,4,無法使用持有的道具。 103,18,5,Le Pokémon ne peut utiliser aucun objet tenu. +103,18,5,Le Pokémon ne peut utiliser aucun objet tenu. 103,18,6,"Das Pokémon kann keine getragenen Items verwenden." 103,18,7,El Pokémon no puede usar objetos equipados. @@ -13169,6 +14577,7 @@ verwenden." 쓸 수 없다." 103,20,4,無法使用持有的道具。 103,20,5,Le Pokémon ne peut utiliser aucun objet tenu. +103,20,5,Le Pokémon ne peut utiliser aucun objet tenu. 103,20,6,Das Pokémon kann keine getragenen Items verwenden. 103,20,7,No puede usar objetos equipados. 103,20,8,Il Pokémon non può usare lo strumento che ha con sé. @@ -13176,22 +14585,31 @@ verwenden." 103,20,11,"持っている 道具を 使うことが できない。" 103,20,12,无法使用持有的道具。 +103,25,5,Le Pokémon ne peut utiliser aucun objet tenu. +103,25,9,The Pokémon can't use any held items. +104,8,5,Cap. utilisables quelles que soient les cap. spé. 104,8,9,"Moves can be used regardless of abilities." +104,9,5,Cap. utilisables quelles que soient les cap. spé. 104,9,9,"Moves can be used regardless of abilities." +104,10,5,Cap. utilisables quelles que soient les cap. spé. 104,10,9,"Moves can be used regardless of abilities." +104,11,5,Les cap. spéc. adverses ne bloquent pas les cap. du Pokémon. 104,11,5,"Les cap. spé. adverses ne bloquent pas ses cap." 104,11,9,"Moves can be used regardless of Abilities." +104,14,5,Les cap. spéc. adverses ne bloquent pas les cap. du Pokémon. 104,14,9,"Moves can be used regardless of Abilities." 104,15,1,"とくせいに かんけいなく あいてに わざを だせる。" 104,15,3,"특성에 관계없이 상대에게 기술을 쓸 수 있다." +104,15,5,Les talents adverses ne bloquent pas ses capacités. +104,15,5,Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités. 104,15,5,"Les talents adverses ne bloquent pas ses capacités." 104,15,6,"Attacken können ungeachtet der @@ -13208,6 +14626,8 @@ regardless of its Abilities." あいてに わざを だせる。" 104,16,3,"특성에 관계없이 상대에게 기술을 쓸 수 있다." +104,16,5,Les talents adverses ne bloquent pas ses capacités. +104,16,5,Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités. 104,16,5,"Les talents adverses ne bloquent pas ses capacités." 104,16,6,"Attacken können ungeachtet der @@ -13228,6 +14648,7 @@ regardless of its Abilities." 기술을 쓸 수 있다." 104,17,4,"可不受特性影響, 向對手使出招式。" +104,17,5,Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités. 104,17,5,"Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités." 104,17,6,"Attacken können ungeachtet der Fähigkeiten des @@ -13251,6 +14672,7 @@ its Abilities." 기술을 쓸 수 있다." 104,18,4,"可不受特性影響, 向對手使出招式。" +104,18,5,Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités. 104,18,5,"Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités." 104,18,6,"Attacken können ungeachtet der Fähigkeiten des @@ -13297,6 +14719,7 @@ its Abilities." 기술을 쓸 수 있다." 104,20,4,"可不受特性影響, 向對手使出招式。" +104,20,5,Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités. 104,20,5,"Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités." 104,20,6,"Attacken können ungeachtet der Fähigkeiten des @@ -13312,22 +14735,31 @@ its Abilities." 技を 出すことが できる。" 104,20,12,"可以不受对手特性的干扰, 向对手使出招式。" +104,25,5,Le Pokémon ignore les talents adverses qui auraient un effet sur ses capacités. +104,25,9,The Pokémon's moves are unimpeded by the Ability of the target. +105,8,5,Augmente la fréquence des coups critiques. 105,8,9,"Heightens the critical-hit ratios of moves." +105,9,5,Augmente la fréquence des coups critiques. 105,9,9,"Heightens the critical-hit ratios of moves." +105,10,5,Augmente la fréquence des coups critiques. 105,10,9,"Heightens the critical- hit ratios of moves." +105,11,5,Augmente la fréquence des coups critiques. 105,11,5,"Augmente la fréquence des coups critiques." 105,11,9,"Heightens the critical- hit ratios of moves." +105,13,5,Augmente la fréquence des coups critiques. +105,14,5,Augmente la fréquence des coups critiques. 105,14,9,"Heightens the critical- hit ratios of moves." 105,15,1,"あいての きゅうしょに こうげきが あたりやすい。" 105,15,3,"상대의 급소에 공격이 맞기 쉽다." +105,15,5,Le Pokémon est tellement chanceux qu'il inflige plus fréquemment des coups critiques. 105,15,5,"Augmente la fréquence des coups critiques." 105,15,6,"Erhöht die Wahrscheinlichkeit, @@ -13344,6 +14776,8 @@ ratios of moves." こうげきが あたりやすい。" 105,16,3,"상대의 급소에 공격이 맞기 쉽다." +105,16,5,Le Pokémon est tellement chanceux qu'il inflige plus fréquemment des coups critiques. +105,16,5,Augmente la fréquence des coups critiques. 105,16,5,"Augmente la fréquence des coups critiques." 105,16,6,"Erhöht die Wahrscheinlichkeit, @@ -13364,6 +14798,7 @@ ratios of moves." 공격이 맞기 쉽다." 105,17,4,"因為非常幸運, 容易擊中對手的要害。" +105,17,5,Le Pokémon est tellement chanceux qu'il inflige plus fréquemment des coups critiques. 105,17,5,"Le Pokémon est tellement chanceux qu’il inflige plus fréquemment des coups critiques." 105,17,6,"Großes Glück erhöht die Wahrscheinlichkeit, @@ -13387,6 +14822,7 @@ of its moves are boosted." 공격이 맞기 쉽다." 105,18,4,"因為非常幸運, 容易擊中對手的要害。" +105,18,5,Le Pokémon est tellement chanceux qu'il inflige plus fréquemment des coups critiques. 105,18,5,"Le Pokémon est tellement chanceux qu’il inflige plus fréquemment des coups critiques." 105,18,6,"Großes Glück erhöht die Wahrscheinlichkeit, @@ -13433,6 +14869,7 @@ of its moves are boosted." 공격이 맞기 쉽다." 105,20,4,"因為非常幸運, 容易擊中對手的要害。" +105,20,5,Le Pokémon est tellement chanceux qu'il inflige plus fréquemment des coups critiques. 105,20,5,"Le Pokémon est tellement chanceux qu’il inflige plus fréquemment des coups critiques." 105,20,6,"Großes Glück erhöht die Wahrscheinlichkeit, @@ -13448,22 +14885,30 @@ of its moves are boosted." 攻撃が 当たりやすい。" 105,20,12,"因为拥有超幸运, 攻击容易击中对手的要害。" +105,25,5,Le Pokémon est tellement chanceux qu'il inflige plus fréquemment des coups critiques. +105,25,9,The Pokémon is so lucky that the critical-hit ratios of its moves are boosted. +106,8,5,Blesse l'ennemi qui porte le coup de grâce. 106,8,9,"Damages the foe landing the finishing hit." +106,9,5,Blesse l'ennemi qui porte le coup de grâce. 106,9,9,"Damages the foe landing the finishing hit." +106,10,5,Blesse l'ennemi qui porte le coup de grâce. 106,10,9,"Damages the foe landing the finishing hit." +106,11,5,Blesse l'ennemi qui porte le coup de grâce. 106,11,5,"Blesse l’ennemi qui porte le coup de grâce." 106,11,9,"Damages the attacker landing the finishing hit." +106,14,5,Blesse l'ennemi qui porte le coup de grâce. 106,14,9,"Damages the attacker landing the finishing hit." 106,15,1,"ひんしの ときに ふれた あいてに ダメージ。" 106,15,3,"기절할 때 스친 상대에게 데미지를 준다." +106,15,5,Blesse l'attaquant qui porte le coup de grâce. 106,15,5,"Blesse l’attaquant qui porte le coup de grâce." 106,15,6,"Fügt einem Angreifer, der das @@ -13480,6 +14925,7 @@ landing the finishing hit." あいてに ダメージ。" 106,16,3,"기절할 때 스친 상대에게 데미지를 준다." +106,16,5,Blesse l'attaquant qui porte le coup de grâce. 106,16,5,"Blesse l’attaquant qui porte le coup de grâce." 106,16,6,"Fügt einem Angreifer, der das @@ -13500,6 +14946,7 @@ landing the finishing hit." 데미지를 준다." 106,17,4,"瀕死時, 會對接觸到自己的對手造成傷害。" +106,17,5,"Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l'attaquant avant de s'évanouir." 106,17,5,"Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l’attaquant avant de s’évanouir." 106,17,6,"Wird das Pokémon durch eine direkte Attacke @@ -13523,6 +14970,7 @@ with a finishing hit." 데미지를 준다." 106,18,4,"瀕死時, 會對接觸到自己的對手造成傷害。" +106,18,5,"Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l'attaquant avant de s'évanouir." 106,18,5,"Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l’attaquant avant de s’évanouir." 106,18,6,"Wird das Pokémon durch eine direkte Attacke @@ -13569,6 +15017,7 @@ with a finishing hit." 데미지를 준다." 106,20,4,"瀕死時, 會對接觸到自己的對手造成傷害。" +106,20,5,"Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l'attaquant avant de s'évanouir." 106,20,5,"Si le Pokémon est mis K.O. par une attaque directe, il inflige des dégâts à l’attaquant avant de s’évanouir." 106,20,6,"Wird das Pokémon durch eine direkte Attacke besiegt, @@ -13584,22 +15033,31 @@ with a finishing hit." ダメージを あたえる。" 106,20,12,"变为濒死时, 会对接触到自己的对手造成伤害。" +106,25,5,"Si le Pokémon est mis K.O. par une attaque directe,\nil inflige des dégâts à l’attaquant avant de s’évanouir." +106,25,9,Damages the attacker if it knocks out the Pokémon with a move that makes direct contact. +107,8,5,Prévoit les capacités ennemies dangereuses. 107,8,9,"Senses the foe’s dangerous moves." +107,9,5,Prévoit les capacités ennemies dangereuses. 107,9,9,"Senses the foe’s dangerous moves." +107,10,5,Prévoit les capacités ennemies dangereuses. 107,10,9,"Senses the foe’s dangerous moves." +107,11,5,Prévoit les capacités ennemies dangereuses. 107,11,5,"Prévoit les capacités ennemies dangereuses." 107,11,9,"Senses a foe’s dangerous moves." +107,13,5,Prévoit les capacités ennemies dangereuses. +107,14,5,Prévoit les capacités ennemies dangereuses. 107,14,9,"Senses a foe’s dangerous moves." 107,15,1,"あいての もつ きけんな わざを さっちする。" 107,15,3,"상대가 지닌 위험한 기술을 감지한다." +107,15,5,Le Pokémon devine si l'adversaire connaît une capacité dangereuse pour lui. 107,15,5,"Prévoit les capacités ennemies dangereuses." 107,15,6,"Ahnt gefährliche Attacken @@ -13616,6 +15074,8 @@ dangerous moves." わざを さっちする。" 107,16,3,"상대가 지닌 위험한 기술을 감지한다." +107,16,5,Le Pokémon devine si l'adversaire connaît une capacité dangereuse pour lui. +107,16,5,Prévoit les capacités ennemies dangereuses. 107,16,5,"Prévoit les capacités ennemies dangereuses." 107,16,6,"Ahnt gefährliche Attacken @@ -13634,6 +15094,7 @@ dangerous moves." 감지할 수 있다." 107,17,4,"察覺對手持有的 危險招式。" +107,17,5,Le Pokémon devine si l'adversaire connaît une capacité dangereuse pour lui. 107,17,5,"Le Pokémon devine si l’adversaire connaît une capacité dangereuse pour lui." 107,17,6,Kann gefährliche Attacken des Gegners erahnen. @@ -13651,6 +15112,7 @@ dangerous moves." 감지할 수 있다." 107,18,4,"察覺對手持有的 危險招式。" +107,18,5,Le Pokémon devine si l'adversaire connaît une capacité dangereuse pour lui. 107,18,5,"Le Pokémon devine si l’adversaire connaît une capacité dangereuse pour lui." 107,18,6,Kann gefährliche Attacken des Gegners erahnen. @@ -13685,6 +15147,7 @@ dangerous moves." 감지할 수 있다." 107,20,4,"察覺對手持有的 危險招式。" +107,20,5,Le Pokémon devine si l'adversaire connaît une capacité dangereuse pour lui. 107,20,5,"Le Pokémon devine si l’adversaire connaît une capacité dangereuse pour lui." 107,20,6,Kann gefährliche gegnerische Attacken erahnen. @@ -13696,16 +15159,24 @@ dangerous moves." 察知する ことができる。" 107,20,12,"可以察觉到 对手拥有的危险招式。" +107,25,5,Le Pokémon devine si l'adversaire connaît une capacité dangereuse pour lui. +107,25,9,The Pokémon can sense an opposing Pokémon's dangerous moves. +108,8,5,Découvre la capacité ennemie la plus puissante. 108,8,9,"Determines what moves the foe has." +108,9,5,Découvre la capacité ennemie la plus puissante. 108,9,9,"Determines what moves the foe has." +108,10,5,Découvre la capacité ennemie la plus puissante. 108,10,9,"Determines what moves the foe has." +108,11,5,Découvre la capacité ennemie la plus puissante. 108,11,5,"Découvre la capacité ennemie la plus puissante." 108,11,9,"Determines what moves a foe has." +108,13,5,Découvre la capacité ennemie la plus puissante. +108,14,5,Découvre la capacité ennemie la plus puissante. 108,14,9,"Determines what moves a foe has." 108,15,1,"あいての もつ わざを @@ -13728,6 +15199,7 @@ an opposing Pokémon has." よ とることが できる。" 108,16,3,"상대가 지닌 기술을 꿰뚫어볼 수 있다." +108,16,5,Découvre la capacité ennemie la plus puissante. 108,16,5,"Découvre la capacité ennemie la plus puissante." 108,16,6,"Gibt Auskunft über das Attacken- @@ -13748,6 +15220,7 @@ an opposing Pokémon has." 하나만 꿰뚫어본다." 108,17,4,"出場時,預見1個 對手持有的招式。" +108,17,5,Révèle l'une des capacités de l'ennemi quand le combat commence. 108,17,5,"Révèle l’une des capacités de l’ennemi quand le combat commence." 108,17,6,"Gibt bei Kampfantritt Auskunft über eine Attacke @@ -13771,6 +15244,7 @@ the moves an opposing Pokémon has." 하나만 꿰뚫어본다." 108,18,4,"出場時,預見1個 對手持有的招式。" +108,18,5,Révèle l'une des capacités de l'ennemi quand le combat commence. 108,18,5,"Révèle l’une des capacités de l’ennemi quand le combat commence." 108,18,6,"Gibt bei Kampfantritt Auskunft über eine Attacke @@ -13817,6 +15291,7 @@ the moves an opposing Pokémon has." 하나만 꿰뚫어본다." 108,20,4,"出場時,預見1個 對手持有的招式。" +108,20,5,Révèle l'une des capacités de l'ennemi quand le combat commence. 108,20,5,"Révèle l’une des capacités de l’ennemi quand le combat commence." 108,20,6,"Gibt bei Kampfantritt Auskunft über eine Attacke aus @@ -13832,16 +15307,24 @@ the moves an opposing Pokémon has." ひとつだけ 読み取る。" 108,20,12,"出场时, 只读取1个对手拥有的招式。" +108,25,5,Révèle l’une des capacités de l’adversaire quand\nle combat commence. +108,25,9,"When it enters a battle, the Pokémon can tell one of the moves an opposing Pokémon has." +109,8,5,Ignore les changements de stats de l'ennemi. 109,8,9,"Ignores any change in ability by the foe." +109,9,5,Ignore les changements de stats de l'ennemi. 109,9,9,"Ignores any change in ability by the foe." +109,10,5,Ignore les changements de stats de l'ennemi. 109,10,9,"Ignores any change in ability by the foe." +109,11,5,Ignore les changements de stats de l'ennemi. 109,11,5,"Ignore les changements de stats de l’ennemi." 109,11,9,"Ignores any stat changes in the Pokémon." +109,13,5,Ignore les changements de stats de l'ennemi. +109,14,5,Ignore les changements de stats de l'ennemi. 109,14,9,"Ignores any stat changes in the Pokémon." 109,15,1,"あいての のうりょくの @@ -13864,6 +15347,7 @@ Pokémon’s stat changes." へんかを むしする。" 109,16,3,"상대의 능력 변화를 무시한다." +109,16,5,Ignore les changements de stats de l'ennemi. 109,16,5,"Ignore les changements de stats de l’ennemi." 109,16,6,"Ignoriert Statusveränderungen @@ -13882,6 +15366,7 @@ Pokémon’s stat changes." 무시하고 공격할 수 있다." 109,17,4,"可無視對手能力的變化, 進行攻擊。" +109,17,5,"Quand il attaque, le Pokémon ignore les changements de stats de l'ennemi." 109,17,5,"Quand il attaque, le Pokémon ignore les changements de stats de l’ennemi." 109,17,6,"Greift das Pokémon an, ignoriert es sämtliche @@ -13902,6 +15387,7 @@ Pokémon’s stat changes." 무시하고 공격할 수 있다." 109,18,4,"可無視對手能力的變化, 進行攻擊。" +109,18,5,"Quand il attaque, le Pokémon ignore les changements de stats de l'ennemi." 109,18,5,"Quand il attaque, le Pokémon ignore les changements de stats de l’ennemi." 109,18,6,"Greift das Pokémon an, ignoriert es sämtliche @@ -13942,6 +15428,7 @@ Pokémon’s stat changes." 무시하고 공격할 수 있다." 109,20,4,"可無視對手能力的變化, 進行攻擊。" +109,20,5,"Quand il attaque, le Pokémon ignore les changements de stats de l'ennemi." 109,20,5,"Quand il attaque, le Pokémon ignore les changements de stats de l’ennemi." 109,20,6,"Greift das Pokémon an, ignoriert es sämtliche @@ -13956,16 +15443,24 @@ Pokémon’s stat changes." 無視して 攻撃が できる。" 109,20,12,"可以无视对手能力的变化, 进行攻击。" +109,25,5,"Le Pokémon ignore les changements de stats des autres Pokémon, qu'il attaque ou soit attaqué." +109,25,9,"When attacking, the Pokémon ignores the target's stat changes." +110,8,5,Améliore les capacités “pas très efficaces”. 110,8,9,"Powers up “not very effective” moves." +110,9,5,Améliore les capacités “pas très efficaces”. 110,9,9,"Powers up “not very effective” moves." +110,10,5,Améliore les capacités “pas très efficaces”. 110,10,9,"Powers up “not very effective” moves." +110,11,5,Améliore les capacités “pas très efficaces”. 110,11,5,"Améliore les capacités “pas très efficaces”." 110,11,9,"Powers up “not very effective” moves." +110,13,5,Améliore les capacités “pas très efficaces”. +110,14,5,Améliore les capacités “pas très efficaces”. 110,14,9,"Powers up “not very effective” moves." 110,15,1,"こうかいまひとつ のとき @@ -13988,6 +15483,7 @@ effective” moves." わざを つよめる。" 110,16,3,"효과가 별로인 기술이 강해진다." +110,16,5,Améliore les capacités “pas très efficaces”. 110,16,5,"Améliore les capacités «pas très efficaces»." 110,16,6,"Verstärkt nicht sehr effektive @@ -14008,6 +15504,7 @@ effective” moves." 쓸 수 있다." 110,17,4,"可將效果不好的招式 以正常的威力使出。" +110,17,5,Permet à une capacité « pas très efficace » d'infliger des dégâts comme si elle était efficace normalement. 110,17,5,"Permet à une capacité « pas très efficace » d’infliger des dégâts comme si elle était efficace normalement." @@ -14032,6 +15529,7 @@ to deal regular damage. " 쓸 수 있다." 110,18,4,"可將效果不好的招式 以正常的威力使出。" +110,18,5,Permet à une capacité « pas très efficace » d'infliger des dégâts comme si elle était efficace normalement. 110,18,5,"Permet à une capacité « pas très efficace » d’infliger des dégâts comme si elle était efficace normalement." @@ -14080,6 +15578,7 @@ to deal regular damage." 쓸 수 있다." 110,20,4,"可將效果不好的招式 以正常的威力使出。" +110,20,5,Permet à une capacité « pas très efficace » d'infliger des dégâts comme si elle était efficace normalement. 110,20,5,"Permet à une capacité « pas très efficace » d’infliger des dégâts comme si elle était efficace normalement." 110,20,6,"Bewirkt, dass nicht sehr effektive Attacken dem Ziel @@ -14095,22 +15594,30 @@ to deal regular damage." 出すことが できる。" 110,20,12,"可以将效果不好的招式 以通常的威力使出。" +110,25,5,Permet à une capacité qui n'est pas très efficace d'infliger des dégâts comme si elle était efficace normalement. +110,25,9,The Pokémon can use “not very effective” moves to deal regular damage. +111,8,5,Affaiblit les capacités “super efficaces”. 111,8,9,"Powers down super­ effective moves." +111,9,5,Affaiblit les capacités “super efficaces”. 111,9,9,"Powers down super­ effective moves." +111,10,5,Affaiblit les capacités “super efficaces”. 111,10,9,"Reduces damage from supereffective attacks." +111,11,5,Affaiblit les capacités “super efficaces”. 111,11,5,"Affaiblit les capacités “super efficaces”." 111,11,9,"Reduces damage from supereffective attacks." +111,14,5,Affaiblit les capacités “super efficaces”. 111,14,9,"Reduces damage from supereffective attacks." 111,15,1,"こうかばつぐん のとき いりょくを よわめる。" 111,15,3,"효과가 굉장한 기술의 위력을 약하게 한다." +111,15,5,Réduit les dégâts des capacités « super efficaces » subies. 111,15,5,"Réduit les dégâts des capacités « super efficaces » subies." 111,15,6,"Senkt die Stärke sehr effektiver @@ -14127,6 +15634,7 @@ supereffective attacks." いりょくを よわめる。" 111,16,3,"효과가 굉장한 기술의 위력을 약하게 한다." +111,16,5,Réduit les dégâts des capacités « super efficaces » subies. 111,16,5,"Réduit les dégâts des capacités «super efficaces» subies." 111,16,6,"Senkt die Stärke sehr effektiver @@ -14147,6 +15655,7 @@ supereffective attacks." 약하게 만든다." 111,17,4,"受到效果絕佳的攻擊時, 可減弱其威力。" +111,17,5,Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace. 111,17,5,"Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace." 111,17,6,"Reduziert die Stärke von sehr effektiven Attacken @@ -14169,6 +15678,7 @@ supereficaces." 약하게 만든다." 111,18,4,"受到效果絕佳的攻擊時, 可減弱其威力。" +111,18,5,Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace. 111,18,5,"Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace." 111,18,6,"Reduziert die Stärke von sehr effektiven Attacken @@ -14213,6 +15723,7 @@ supereficaces." 약하게 만든다." 111,20,4,"受到效果絕佳的攻擊時, 可減弱其威力。" +111,20,5,Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace. 111,20,5,"Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace." 111,20,6,"Reduziert die Stärke von sehr effektiven Attacken und @@ -14227,6 +15738,8 @@ supereficaces." 弱める ことが できる。" 111,20,12,"受到效果绝佳的攻击时, 可以减弱其威力。" +111,25,5,Diminue la puissance des attaques super efficaces\nsubies. +111,25,9,Reduces the power of supereffective attacks that hit the Pokémon. 112,8,9,"Temporarily halves Attack and Speed." 112,9,9,"Temporarily halves Attack @@ -14359,22 +15872,30 @@ stats are halved." 半分に なる。" 112,20,12,"在5回合内, 攻击和速度减半。" +112,25,5,Divise la Vitesse et l’Attaque du Pokémon par deux\npendant les cinq premiers tours du combat. +112,25,9,"For five turns, the Pokémon's Attack and Speed stats are halved." +113,8,5,Les capacités touchent les Pokémon Spectre. 113,8,9,"Enables moves to hit Ghost-type foes." +113,9,5,Les capacités touchent les Pokémon Spectre. 113,9,9,"Enables moves to hit Ghost-type foes." +113,10,5,Les capacités touchent les Pokémon Spectre. 113,10,9,"Enables moves to hit Ghost-type foes." +113,11,5,Les cap. Normal touchent les Pokémon Spectre. 113,11,5,"Les cap. Normal touchent les Pokémon Spectre." 113,11,9,"Enables moves to hit Ghost-type Pokémon." +113,14,5,Les cap. Normal touchent les Pokémon Spectre. 113,14,9,"Enables moves to hit Ghost-type Pokémon." 113,15,1,"ゴーストタイプに ノーマルわざが あたる。" 113,15,3,"고스트타입에 노말 기술이 맞는다." +113,15,5,Les capacités Normal et Combat touchent les Pokémon Spectre. 113,15,5,"Les capacités Normal et Combat touchent les Pokémon Spectre." 113,15,6,"Normal- und Kampf-Attacken @@ -14391,6 +15912,7 @@ moves hit Ghost-type Pokémon." ノーマルわざが あたる。" 113,16,3,"고스트타입에 노말 기술이 맞는다." +113,16,5,Les capacités Normal et Combat touchent les Pokémon Spectre. 113,16,5,"Les capacités Normal et Combat touchent les Pokémon Spectre." 113,16,6,"Normal- und Kampf-Attacken @@ -14411,6 +15933,7 @@ moves hit Ghost-type Pokémon." 기술을 맞게 한다." 113,17,4,"一般屬性和格鬥屬性的招式 可擊中幽靈屬性的寶可夢。" +113,17,5,Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre. 113,17,5,"Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre." @@ -14435,6 +15958,7 @@ Normal- and Fighting-type moves." 기술을 맞게 한다." 113,18,4,"一般屬性和格鬥屬性的招式 可擊中幽靈屬性的寶可夢。" +113,18,5,Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre. 113,18,5,"Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre." @@ -14483,6 +16007,7 @@ Normal- and Fighting-type moves." 기술을 맞게 한다." 113,20,4,"一般屬性和格鬥屬性的招式 可擊中幽靈屬性的寶可夢。" +113,20,5,Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre. 113,20,5,"Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre." 113,20,6,"Bewirkt, dass Normal- und Kampf-Attacken auch @@ -14498,22 +16023,30 @@ Normal- and Fighting-type moves." 技を 当てることが できる。" 113,20,12,"一般属性和格斗属性的招式 可以击中幽灵属性的宝可梦。" +113,25,5,Permet aux capacités de type Normal ou Combat du Pokémon de toucher les Pokémon de type Spectre. Immunise aussi contre le talent Intimidation. +113,25,9,The Pokémon can hit Ghost-type Pokémon with Normal- and Fighting-type moves. It is also unaffected by Intimidate. +114,8,5,Attire les attaques Eau visant un Pokémon. 114,8,9,"The Pokémon draws in all Water-type moves." +114,9,5,Attire les attaques Eau visant un Pokémon. 114,9,9,"The Pokémon draws in all Water-type moves." +114,10,5,Attire les attaques Eau visant un Pokémon. 114,10,9,"The Pokémon draws in all Water-type moves." +114,11,5,Attire l'eau et augmente l'Atq. Spé. 114,11,5,"Attire l’eau et augmente l’Atq. Spé." 114,11,9,"Draws in all Water-type moves to up Sp. Attack." +114,14,5,Attire l'eau et augmente l'Atq. Spé. 114,14,9,"Draws in all Water-type moves to up Sp. Attack." 114,15,1,"みずを よびこんで とくこうを あげる。" 114,15,3,"물을 끌어모아 특수공격을 올린다." +114,15,5,"Attire et neutralise les attaques Eau, et monte l'Attaque Spéciale." 114,15,5,"Attire et neutralise les attaques Eau, et monte l’Attaque Spéciale." 114,15,6,"Absorbiert Wasser-Attacken @@ -14530,6 +16063,7 @@ to boost its Sp. Atk stat." とくこうを あげる。" 114,16,3,"물을 끌어모아 특수공격을 올린다." +114,16,5,"Attire et neutralise les attaques Eau, et monte l'Attaque Spéciale." 114,16,5,"Attire et neutralise les attaques Eau, et monte l’Attaque Spéciale." 114,16,6,"Absorbiert Wasser-Attacken @@ -14549,6 +16083,7 @@ to boost its Sp. Atk stat." 114,17,4,"將水屬性的招式引到自己身上, 不但不會受到傷害, 反而會提高特攻。" +114,17,5,"Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en montant son Attaque Spéciale." 114,17,5,"Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en montant son Attaque Spéciale." @@ -14572,6 +16107,7 @@ by Water-type moves, it boosts its Sp. Atk." 114,18,4,"將水屬性的招式引到自己身上, 不但不會受到傷害, 反而會提高特攻。" +114,18,5,"Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en montant son Attaque Spéciale." 114,18,5,"Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en montant son Attaque Spéciale." @@ -14618,6 +16154,7 @@ by Water-type moves, it boosts its Sp. Atk." 114,20,4,"將水屬性的招式引到自己身上, 不但不會受到傷害, 反而會提高特攻。" +114,20,5,"Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en montant son Attaque Spéciale." 114,20,5,"Le Pokémon détourne sur lui les capacités de type Eau et les neutralise, tout en montant son Attaque Spéciale." 114,20,6,"Zieht Wasser-Attacken an. Statt durch diese Schaden @@ -14632,16 +16169,24 @@ by Water-type moves, it boosts its Sp. Atk." ダメージは 受けずに 特攻が 上がる。" 114,20,12,"将水属性的招式引到自己身上, 不会受到伤害,而是会提高特攻。" +114,25,5,"Le Pokémon détourne sur lui les capacités de\ntype Eau et les neutralise, tout en augmentant\nson Attaque Spéciale." +114,25,9,"The Pokémon draws in all Water-type moves. Instead of taking damage from them, its Sp. Atk stat is boosted." +115,8,5,Récupère des PV lors des tempêtes de grêle. 115,8,9,"The Pokémon regains HP in a hailstorm." +115,9,5,Récupère des PV lors des tempêtes de grêle. 115,9,9,"The Pokémon regains HP in a hailstorm." +115,10,5,Récupère des PV lors des tempêtes de grêle. 115,10,9,"The Pokémon regains HP in a hailstorm." +115,11,5,Régénère ses PV lors des tempêtes de grêle. 115,11,5,"Régénère ses PV lors des tempêtes de grêle." 115,11,9,"The Pokémon gradually regains HP in a hailstorm." +115,13,5,Régénère ses PV lors des tempêtes de grêle. +115,14,5,Régénère ses PV lors des tempêtes de grêle. 115,14,9,"The Pokémon gradually regains HP in a hailstorm." 115,15,1,"あられのとき HPを @@ -14664,6 +16209,7 @@ regains HP in a hailstorm." すこしずつ かいふく。" 115,16,3,"싸라기눈일 때 HP를 조금씩 회복한다." +115,16,5,Régénère ses PV lors des tempêtes de grêle. 115,16,5,"Régénère ses PV lors des tempêtes de grêle." 115,16,6,"Regeneriert bei Hagel @@ -14682,6 +16228,7 @@ regains HP in a hailstorm." 조금씩 회복한다." 115,17,4,"天氣為冰雹時, 會漸漸回復HP。" +115,17,5,Régénère les PV du Pokémon lors des tempêtes de grêle. 115,17,5,"Régénère les PV du Pokémon lors des tempêtes de grêle." 115,17,6,Regeneriert bei Hagel nach und nach KP. @@ -14699,6 +16246,7 @@ de granizo." 조금씩 회복한다." 115,18,4,"天氣為冰雹時, 會漸漸回復HP。" +115,18,5,Régénère les PV du Pokémon lors des tempêtes de grêle. 115,18,5,"Régénère les PV du Pokémon lors des tempêtes de grêle." 115,18,6,Regeneriert bei Hagel nach und nach KP. @@ -14734,6 +16282,7 @@ de granizo." 115,20,4,"天氣為冰雹時, 會漸漸回復HP。" 115,20,5,Régénère les PV du Pokémon lors des tempêtes de grêle. +115,20,5,Régénère les PV du Pokémon lors des tempêtes de grêle. 115,20,6,Regeneriert bei Hagel nach und nach KP. 115,20,7,"Recupera PS de forma gradual cuando hay tormentas de granizo." @@ -14743,22 +16292,30 @@ de granizo." 少しずつ 回復 する。" 115,20,12,"冰雹天气时, 会缓缓回复HP。" +115,25,5,Régénère peu à peu les PV du Pokémon quand il neige. +115,25,9,The Pokémon gradually regains HP in snow. +116,8,5,Affaiblit les capacités “super efficaces”. 116,8,9,"Powers down super­ effective moves." +116,9,5,Affaiblit les capacités “super efficaces”. 116,9,9,"Powers down super­ effective moves." +116,10,5,Affaiblit les capacités “super efficaces”. 116,10,9,"Reduces damage from supereffective attacks" +116,11,5,Affaiblit les capacités “super efficaces”. 116,11,5,"Affaiblit les capacités “super efficaces”." 116,11,9,"Reduces damage from supereffective attacks." +116,14,5,Affaiblit les capacités “super efficaces”. 116,14,9,"Reduces damage from supereffective attacks." 116,15,1,"こうかばつぐん のとき いりょくを よわめる。" 116,15,3,"효과가 굉장한 기술의 위력을 약하게 한다." +116,15,5,Réduit les dégâts des capacités « super efficaces » subies. 116,15,5,"Réduit les dégâts des capacités « super efficaces » subies." 116,15,6,"Senkt die Stärke sehr effektiver @@ -14775,6 +16332,7 @@ supereffective attacks." いりょくを よわめる。" 116,16,3,"효과가 굉장한 기술의 위력을 약하게 한다." +116,16,5,Réduit les dégâts des capacités « super efficaces » subies. 116,16,5,"Réduit les dégâts des capacités «super efficaces» subies." 116,16,6,"Senkt die Stärke sehr effektiver @@ -14795,6 +16353,7 @@ supereffective attacks." 약하게 만든다." 116,17,4,"受到效果絕佳的攻擊時, 可減弱其威力。" +116,17,5,Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace. 116,17,5,"Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace." 116,17,6,"Reduziert die Stärke von sehr effektiven Attacken @@ -14817,6 +16376,7 @@ supereficaces." 약하게 만든다." 116,18,4,"受到效果絕佳的攻擊時, 可減弱其威力。" +116,18,5,Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace. 116,18,5,"Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace." 116,18,6,"Reduziert die Stärke von sehr effektiven Attacken @@ -14861,6 +16421,7 @@ supereficaces." 약하게 만든다." 116,20,4,"受到效果絕佳的攻擊時, 可減弱其威力。" +116,20,5,Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace. 116,20,5,"Réduit les dégâts subis lorsque le Pokémon est touché par une capacité super efficace." 116,20,6,"Reduziert die Stärke von sehr effektiven Attacken und @@ -14875,16 +16436,24 @@ supereficaces." 弱める ことが できる。" 116,20,12,"受到效果绝佳的攻击时, 可以减弱其威力。" +116,25,5,Diminue la puissance des attaques super efficaces\nsubies. +116,25,9,Reduces the power of supereffective attacks that hit the Pokémon. +117,8,5,Déclenche une tempête de grêle pendant un combat. 117,8,9,"The Pokémon summons a hailstorm in battle." +117,9,5,Déclenche une tempête de grêle pendant un combat. 117,9,9,"The Pokémon summons a hailstorm in battle." +117,10,5,Déclenche une tempête de grêle pendant un combat. 117,10,9,"The Pokémon summons a hailstorm in battle." +117,11,5,Déclenche une tempête de grêle pendant un combat. 117,11,5,"Déclenche une tempête de grêle pendant le combat." 117,11,9,"The Pokémon summons a hailstorm in battle." +117,13,5,Déclenche une tempête de grêle pendant un combat. +117,14,5,Déclenche une tempête de grêle pendant un combat. 117,14,9,"The Pokémon summons a hailstorm in battle." 117,15,1,"せんとうに でると @@ -14907,6 +16476,7 @@ hailstorm when it enters a battle." あられを ふらす。" 117,16,3,"배틀에 나가면 싸라기눈을 내리게 한다." +117,16,5,Déclenche une tempête de grêle pendant un combat. 117,16,5,"Déclenche une tempête de grêle pendant le combat." 117,16,6,"Das Pokémon beschwört im @@ -14925,6 +16495,7 @@ hailstorm when it enters a battle." 날씨를 싸라기눈으로 만든다." 117,17,4,"出場時, 會將天氣變為冰雹。" +117,17,5,Déclenche une tempête de grêle quand le Pokémon entre au combat. 117,17,5,"Déclenche une tempête de grêle quand le Pokémon entre au combat." 117,17,6,Löst bei Kampfantritt Hagel aus. @@ -14944,6 +16515,7 @@ a battle." 날씨를 싸라기눈으로 만든다." 117,18,4,"出場時, 會將天氣變為冰雹。" +117,18,5,Déclenche une tempête de grêle quand le Pokémon entre au combat. 117,18,5,"Déclenche une tempête de grêle quand le Pokémon entre au combat." 117,18,6,Löst bei Kampfantritt Hagel aus. @@ -14982,6 +16554,7 @@ a battle." 날씨를 싸라기눈으로 만든다." 117,20,4,"出場時, 會將天氣變為冰雹。" +117,20,5,Déclenche une tempête de grêle quand le Pokémon entre au combat. 117,20,5,"Déclenche une tempête de grêle quand le Pokémon entre au combat." 117,20,6,Löst bei Kampfantritt Hagel aus. @@ -14994,22 +16567,31 @@ a battle." 天気を あられに する。" 117,20,12,"出场时, 会将天气变为冰雹。" +117,25,5,Le Pokémon invoque la neige quand il entre au combat. +117,25,9,The Pokémon makes it snow when it enters a battle. +118,8,5,Le Pokémon peut parfois trouver du Miel. 118,8,9,"The Pokémon may gather Honey from somewhere." +118,9,5,Le Pokémon peut parfois trouver du Miel. 118,9,9,"The Pokémon may gather Honey from somewhere." +118,10,5,Le Pokémon peut parfois trouver du Miel. 118,10,9,"The Pokémon may gather Honey from somewhere." +118,11,5,Le Pokémon peut parfois trouver du Miel. 118,11,5,"Le Pokémon peut parfois trouver du Miel." 118,11,9,"The Pokémon may gather Honey from somewhere." +118,13,5,Le Pokémon peut parfois trouver du Miel. +118,14,5,Le Pokémon peut parfois trouver du Miel. 118,14,9,"The Pokémon may gather Honey from somewhere." 118,15,1,"あまいミツを あつめて くることが ある。" 118,15,3,"달콤한꿀을 모아서 올 때가 있다." +118,15,5,Le Pokémon peut parfois trouver du Miel après un combat. 118,15,5,"Le Pokémon peut parfois trouver du Miel." 118,15,6,"Das Pokémon sammelt @@ -15026,6 +16608,8 @@ Honey from somewhere." くることが ある。" 118,16,3,"달콤한꿀을 모아서 올 때가 있다." +118,16,5,Le Pokémon peut parfois trouver du Miel après un combat. +118,16,5,Le Pokémon peut parfois trouver du Miel. 118,16,5,"Le Pokémon peut parfois trouver du Miel." 118,16,6,"Das Pokémon sammelt @@ -15044,6 +16628,7 @@ Honey from somewhere." 달콤한꿀을 주울 때가 있다." 118,17,4,"戰鬥結束時, 有時候會撿來甜甜蜜。" +118,17,5,Le Pokémon peut parfois trouver du Miel après un combat. 118,17,5,"Le Pokémon peut parfois trouver du Miel après un combat." 118,17,6,"Das Pokémon sammelt nach Kämpfen eventuell @@ -15063,6 +16648,7 @@ della lotta." 달콤한꿀을 주울 때가 있다." 118,18,4,"戰鬥結束時, 有時候會撿來甜甜蜜。" +118,18,5,Le Pokémon peut parfois trouver du Miel après un combat. 118,18,5,"Le Pokémon peut parfois trouver du Miel après un combat." 118,18,6,"Das Pokémon sammelt nach Kämpfen eventuell @@ -15101,6 +16687,7 @@ della lotta." 달콤한꿀을 주울 때가 있다." 118,20,4,"戰鬥結束時, 有時候會撿來甜甜蜜。" +118,20,5,Le Pokémon peut parfois trouver du Miel après un combat. 118,20,5,"Le Pokémon peut parfois trouver du Miel après un combat." 118,20,6,"Das Pokémon sammelt nach Kämpfen eventuell @@ -15114,22 +16701,31 @@ della lotta." あまいミツを 拾うことが ある。" 118,20,12,"战斗结束时, 有时候会捡来甜甜蜜。" +118,25,5,Le Pokémon peut parfois trouver du Miel après un combat. +118,25,9,The Pokémon may gather Honey after a battle. +119,8,5,Permet de connaître l'objet tenu par l'ennemi. 119,8,9,"The Pokémon can check the foe’s held item." +119,9,5,Permet de connaître l'objet tenu par l'ennemi. 119,9,9,"The Pokémon can check the foe’s held item." +119,10,5,Permet de connaître l'objet tenu par l'ennemi. 119,10,9,"The Pokémon can check the foe’s held item." +119,11,5,Permet de connaître l'objet tenu par l'ennemi. 119,11,5,"Permet de connaître l’objet tenu par l’ennemi." 119,11,9,"The Pokémon can check a foe’s held item." +119,13,5,Permet de connaître l'objet tenu par l'ennemi. +119,14,5,Permet de connaître l'objet tenu par l'ennemi. 119,14,9,"The Pokémon can check a foe’s held item." 119,15,1,"あいての もちものを しることが できる。" 119,15,3,"상대가 지닌 물건을 알 수 있다." +119,15,5,Permet de connaître l'objet tenu par l'ennemi quand le combat commence. 119,15,5,"Permet de connaître l’objet tenu par l’ennemi." 119,15,6,"Gibt Auskunft über gegnerische @@ -15146,6 +16742,8 @@ opposing Pokémon’s held item." しることが できる。" 119,16,3,"상대가 지닌 물건을 알 수 있다." +119,16,5,Permet de connaître l'objet tenu par l'ennemi quand le combat commence. +119,16,5,Permet de connaître l'objet tenu par l'ennemi. 119,16,5,"Permet de connaître l’objet tenu par l’ennemi." 119,16,6,"Gibt Auskunft über gegnerische @@ -15166,6 +16764,7 @@ opposing Pokémon’s held item." 통찰할 수 있다." 119,17,4,"出場時, 可以察覺對手的持有物。" +119,17,5,Permet de connaître l'objet tenu par l'ennemi quand le combat commence. 119,17,5,"Permet de connaître l’objet tenu par l’ennemi quand le combat commence." 119,17,6,"Kann bei Kampfantritt Auskunft über das vom @@ -15189,6 +16788,7 @@ opposing Pokémon’s held item." 통찰할 수 있다." 119,18,4,"出場時, 可以察覺對手的持有物。" +119,18,5,Permet de connaître l'objet tenu par l'ennemi quand le combat commence. 119,18,5,"Permet de connaître l’objet tenu par l’ennemi quand le combat commence." 119,18,6,"Kann bei Kampfantritt Auskunft über das vom @@ -15235,6 +16835,7 @@ opposing Pokémon’s held item." 통찰할 수 있다." 119,20,4,"出場時, 可以察覺對手的持有物。" +119,20,5,Permet de connaître l'objet tenu par l'ennemi quand le combat commence. 119,20,5,"Permet de connaître l’objet tenu par l’ennemi quand le combat commence." 119,20,6,"Kann bei Kampfantritt Auskunft über das vom Gegner @@ -15250,22 +16851,31 @@ opposing Pokémon’s held item." 見通すことが できる。" 119,20,12,"出场时, 可以察觉对手的持有物。" +119,25,5,Permet de connaître l'objet tenu par l'ennemi quand le combat commence. +119,25,9,"When it enters a battle, the Pokémon can check an opposing Pokémon's held item." +120,8,5,Booste les cap. ayant des dégâts de contrecoups. 120,8,9,"Powers up moves that have recoil damage." +120,9,5,Booste les cap. ayant des dégâts de contrecoups. 120,9,9,"Powers up moves that have recoil damage." +120,10,5,Booste les cap. ayant des dégâts de contrecoups. 120,10,9,"Powers up moves that have recoil damage." +120,11,5,Booste les cap. ayant des dégâts de contrecoups. 120,11,5,"Booste les cap. ayant des dégâts de contrecoups." 120,11,9,"Powers up moves that have recoil damage." +120,14,5,Booste les cap. ayant des dégâts de contrecoups. 120,14,9,"Powers up moves that have recoil damage." 120,15,1,"はんどうで ダメージを うけるわざが つよくなる。" 120,15,3,"반동 데미지를 받는 기술이 강해진다." +120,15,5,Booste les capacités ayant des dégâts de contrecoups. +120,15,5,Augmente la puissance des capacités occasionnant un contrecoup. 120,15,5,"Booste les capacités ayant des dégâts de contrecoups." 120,15,6,"Verstärkt Attacken mit @@ -15282,6 +16892,8 @@ have recoil damage." うけるわざが つよくなる。" 120,16,3,"반동 데미지를 받는 기술이 강해진다." +120,16,5,Booste les capacités ayant des dégâts de contrecoups. +120,16,5,Augmente la puissance des capacités occasionnant un contrecoup. 120,16,5,"Booste les capacités ayant des dégâts de contrecoups." 120,16,6,"Verstärkt Attacken mit @@ -15300,6 +16912,7 @@ have recoil damage." 받는 기술의 위력이 올라간다." 120,17,4,"會讓自己因反作用力而受傷的招式 威力會提高。" +120,17,5,Augmente la puissance des capacités occasionnant un contrecoup. 120,17,5,"Augmente la puissance des capacités occasionnant un contrecoup." 120,17,6,"Erhöht die Stärke von Attacken mit @@ -15318,6 +16931,7 @@ usuario." 받는 기술의 위력이 올라간다." 120,18,4,"會讓自己因反作用力而受傷的招式 威力會提高。" +120,18,5,Augmente la puissance des capacités occasionnant un contrecoup. 120,18,5,"Augmente la puissance des capacités occasionnant un contrecoup." 120,18,6,"Erhöht die Stärke von Attacken mit @@ -15354,6 +16968,7 @@ usuario." 받는 기술의 위력이 올라간다." 120,20,4,"會讓自己因反作用力而受傷的招式 威力會提高。" +120,20,5,Augmente la puissance des capacités occasionnant un contrecoup. 120,20,5,"Augmente la puissance des capacités occasionnant un contrecoup." 120,20,6,Erhöht die Stärke von Attacken mit Rückstoßschaden. @@ -15364,6 +16979,8 @@ un contrecoup." 受ける 技の 威力が 上がる。" 120,20,12,"自己会因反作用力受伤的招式, 其威力会提高。" +120,25,5,Augmente la puissance des capacités occasionnant un contrecoup. +120,25,9,Powers up moves that have recoil damage. 121,8,9,"Changes type to match the held Plate." 121,9,9,"Changes type to match @@ -15500,22 +17117,30 @@ Z-Crystal it holds." 自分の タイプが 変わる。" 121,20,12,"自己的属性会根据持有的石板 或Z纯晶的属性而改变。" +121,25,5,Modifie le type du Pokémon en fonction de la plaque\nqu’il tient. +121,25,9,Changes the Pokémon's type to match the plate it holds. +122,8,5,Pokémon de l'équipe plus puissants au soleil. 122,8,9,"Powers up party Pokémon when it is sunny." +122,9,5,Pokémon de l'équipe plus puissants au soleil. 122,9,9,"Powers up party Pokémon when it is sunny." +122,10,5,Pokémon de l'équipe plus puissants au soleil. 122,10,9,"Powers up party Pokémon when it is sunny." +122,11,5,Pokémon de l'équipe plus puissants au soleil. 122,11,5,"Pokémon de l’équipe plus puissants au soleil." 122,11,9,"Powers up party Pokémon when it is sunny." +122,14,5,Pokémon de l'équipe plus puissants au soleil. 122,14,9,"Powers up party Pokémon when it is sunny." 122,15,1,"はれのとき じぶんと みかたが つよくなる。" 122,15,3,"맑을 때 자신과 같은 편이 강해진다." +122,15,5,Rend les Pokémon de l'équipe plus puissants au soleil. 122,15,5,"Rend les Pokémon de l’équipe plus puissants au soleil." 122,15,6,"Steigert bei Sonne die Effektivität @@ -15532,6 +17157,7 @@ when it is sunny."  かたが つよくなる。" 122,16,3,"맑을 때 자신과 같은 편이 강해진다." +122,16,5,Rend les Pokémon de l'équipe plus puissants au soleil. 122,16,5,"Rend les Pokémon de l’équipe plus puissants au soleil." 122,16,6,"Steigert bei Sonne die Effektivität @@ -15553,6 +17179,7 @@ when it is sunny." 122,17,4,"天氣為晴朗時, 自己和同伴的攻擊和 特防能力會提高。" +122,17,5,Augmente l'Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille. 122,17,5,"Augmente l’Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille." 122,17,6,"Erhöht bei Sonnenschein den Angriff und die @@ -15578,6 +17205,7 @@ and allies when it is sunny." 122,18,4,"天氣為晴朗時, 自己和同伴的攻擊和 特防能力會提高。" +122,18,5,Augmente l'Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille. 122,18,5,"Augmente l’Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille." 122,18,6,"Erhöht bei Sonnenschein den Angriff und die @@ -15628,6 +17256,7 @@ and allies in harsh sunlight." 122,20,4,"天氣為晴朗時, 自己和同伴的攻擊和 特防能力會提高。" +122,20,5,Augmente l'Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille. 122,20,5,"Augmente l’Attaque et la Défense Spéciale du Pokémon et de ses alliés lorsque le soleil brille." 122,20,6,"Erhöht bei Sonnenschein den Angriff und die @@ -15644,16 +17273,23 @@ and allies in harsh sunlight." 122,20,12,"晴朗天气时, 自己与同伴的攻击和 特防能力会提高。" +122,25,5,Augmente l’Attaque et la Défense Spéciale du Pokémon\net de ses alliés lorsque le soleil brille. +123,8,5,Réduit les PV d'un ennemi endormi. 123,8,9,"Reduces a sleeping foe’s HP." +123,9,5,Réduit les PV d'un ennemi endormi. 123,9,9,"Reduces a sleeping foe’s HP." +123,10,5,Réduit les PV d'un ennemi endormi. 123,10,9,"Reduces a sleeping foe’s HP." +123,11,5,Réduit les PV d'un ennemi endormi. 123,11,5,"Réduit les PV d’un ennemi endormi." 123,11,9,"Reduces a sleeping foe’s HP." +123,13,5,Réduit les PV d'un ennemi endormi. +123,14,5,Réduit les PV d'un ennemi endormi. 123,14,9,"Reduces a sleeping foe’s HP." 123,15,1,"ねむっている あいての @@ -15676,6 +17312,7 @@ opposing Pokémon." HPを へらす。" 123,16,3,"잠들어 있는 상대의 HP를 줄인다." +123,16,5,Réduit les PV d'un ennemi endormi. 123,16,5,"Réduit les PV d’un ennemi endormi." 123,16,6,"Senkt die KP eines @@ -15694,6 +17331,7 @@ opposing Pokémon." 데미지를 준다." 123,17,4,給予陷入睡眠狀態的對手傷害。 123,17,5,Inflige des dégâts aux ennemis endormis. +123,17,5,Inflige des dégâts aux ennemis endormis. 123,17,6,Fügt schlafenden Gegnern Schaden zu. 123,17,7,Inflige daño a cualquier rival que esté dormido. 123,17,8,Infligge danni ai nemici addormentati. @@ -15707,6 +17345,7 @@ opposing Pokémon." 데미지를 준다." 123,18,4,給予陷入睡眠狀態的對手傷害。 123,18,5,Inflige des dégâts aux ennemis endormis. +123,18,5,Inflige des dégâts aux ennemis endormis. 123,18,6,Fügt schlafenden Gegnern Schaden zu. 123,18,7,Inflige daño a cualquier rival que esté dormido. 123,18,8,Infligge danni ai nemici addormentati. @@ -15733,6 +17372,7 @@ opposing Pokémon." 데미지를 준다." 123,20,4,給予陷入睡眠狀態的對手傷害。 123,20,5,Inflige des dégâts aux ennemis endormis. +123,20,5,Inflige des dégâts aux ennemis endormis. 123,20,6,Fügt schlafenden Gegnern Schaden zu. 123,20,7,Inflige daño a cualquier rival que esté dormido. 123,20,8,Infligge danni ai nemici addormentati. @@ -15740,6 +17380,8 @@ opposing Pokémon." 123,20,11,"ねむり状態の 相手に ダメージを あたえる。" 123,20,12,给予睡眠状态的对手伤害。 +123,25,5,Inflige des dégâts aux ennemis endormis. +123,25,9,Damages opposing Pokémon that are asleep. 124,11,5,"Vole l’objet de l’ennemi si son attaque touche." 124,11,9,"Steals an item when hit @@ -15854,6 +17496,8 @@ direct contact." 盗んで しまう。" 124,20,12,"盗取接触到自己的 对手的道具。" +124,25,5,Vole l’objet que tient l’attaquant quand le Pokémon\nsubit une attaque directe. +124,25,9,The Pokémon steals the held item from attackers that made direct contact with it. 125,11,5,"Frappe plus fort mais annule les effets cumulés." 125,11,9,"Removes added effects to @@ -15984,6 +17628,8 @@ of moves when attacking." 技を 出すことが できる。" 125,20,12,"招式的追加效果消失, 但因此能以更高的威力使出招式。" +125,25,5,"Les capacités ayant un effet additionnel le perdent,\nmais leur puissance augmente." +125,25,9,"Removes any additional effects from the Pokémon's moves, but increases the moves' power." 126,11,5,"Inverse les variations de stats." 126,11,9,"Makes stat changes have @@ -16128,6 +17774,8 @@ e viceversa." 126,20,12,"能力的变化发生逆转, 原本提高时会降低, 而原本降低时会提高。" +126,25,5,"Inverse les changements de stats : les augmentations\nde stats se transforment en baisses, et vice-versa." +126,25,9,Reverses any stat changes affecting the Pokémon so that attempts to boost its stats instead lower them—and attempts to lower its stats will boost them. 127,11,5,"L’ennemi stresse et ne peut plus manger de Baies." 127,11,9,"Makes the foe nervous and @@ -16242,10 +17890,15 @@ to eat Berries." きのみを 食べられなく させる。" 127,20,12,"让对手紧张, 使其无法食用树果。" +127,25,5,"Fait stresser l’adversaire, ce qui l’empêche de manger\ndes Baies." +127,25,9,Unnerves opposing Pokémon and makes them unable to eat Berries. +128,11,5,Monte l'Attaque quand les stats baissent. 128,11,5,"Monte l’Attaque quand les stats baissent." 128,11,9,"When its stats are lowered its Attack increases." +128,13,5,Monte l'Attaque quand les stats baissent. +128,14,5,Monte l'Attaque quand les stats baissent. 128,14,9,"When its stats are lowered its Attack increases." 128,15,1,"のうりょくが さがると @@ -16268,6 +17921,7 @@ when its stats are lowered." こうげきが あがる。" 128,16,3,"능력이 떨어지면 공격이 올라간다." +128,16,5,Monte l'Attaque quand les stats baissent. 128,16,5,"Monte l’Attaque quand les stats baissent." 128,16,6,"Senkt der Gegner die Status- @@ -16286,6 +17940,7 @@ when its stats are lowered." 공격이 크게 올라간다." 128,17,4,"能力被降低時, 攻擊會大幅提高。" +128,17,5,Augmente beaucoup l'Attaque du Pokémon quand ses stats baissent. 128,17,5,"Augmente beaucoup l’Attaque du Pokémon quand ses stats baissent." 128,17,6,"Werden die Statuswerte des Pokémon gesenkt, @@ -16306,6 +17961,7 @@ stats are lowered." 공격이 크게 올라간다." 128,18,4,"能力被降低時, 攻擊會大幅提高。" +128,18,5,Augmente beaucoup l'Attaque du Pokémon quand ses stats baissent. 128,18,5,"Augmente beaucoup l’Attaque du Pokémon quand ses stats baissent." 128,18,6,"Werden die Statuswerte des Pokémon gesenkt, @@ -16346,6 +18002,7 @@ stats are lowered." 공격이 크게 올라간다." 128,20,4,"能力被降低時, 攻擊會大幅提高。" +128,20,5,Augmente beaucoup l'Attaque du Pokémon quand ses stats baissent. 128,20,5,"Augmente beaucoup l’Attaque du Pokémon quand ses stats baissent." 128,20,6,"Erhöht den Angriff stark, wenn ein Statuswert @@ -16360,6 +18017,8 @@ stats are lowered." 攻撃が ぐーんと 上がる。" 128,20,12,"能力被降低时, 攻击会大幅提高。" +128,25,5,Augmente beaucoup l'Attaque du Pokémon quand ses stats sont baissées par l'adversaire. +128,25,9,"If the Pokémon has any stat lowered by an opposing Pokémon, its Attack stat will be boosted sharply." 129,11,5,"Baisse les stats quand les PV tombent à la moitié." 129,11,9,"Lowers stats when HP @@ -16510,6 +18169,7 @@ when its HP becomes half or less." 129,20,12,"HP减半时, 会变得软弱, 攻击和特攻会减半。" +129,25,5,"Le Pokémon devient défaitiste quand ses PV tombent\nà la moitié, et son Attaque et son Attaque Spéciale\nsont divisées par deux." 130,11,5,"Peut empêcher l’ennemi de réutiliser une attaque." 130,11,9,"May disable a move used @@ -16634,6 +18294,8 @@ Angreifer es getroffen hat." 130,20,12,"受到攻击时, 有时会把对手的招式 变为定身法状态。" +130,25,5,"Quand le Pokémon est touché par une capacité adverse,\nil inflige parfois Entrave sur celle-ci." +130,25,9,May disable a move that has dealt damage to the Pokémon. 131,11,5,"Guérit parfois le statut des alliés alentour." 131,11,9,"May heal an ally’s status @@ -16727,6 +18389,8 @@ proche." 131,20,11,"状態異常の 味方を たまに 治してあげる。" 131,20,12,有时会治愈异常状态的同伴。 +131,25,5,Soigne parfois une altération de statut d’un allié proche. +131,25,9,Sometimes cures the status conditions of the Pokémon's allies. 132,11,5,"Diminue les dégâts subis par les alliés." 132,11,9,"Reduces damage done @@ -16823,6 +18487,8 @@ vengono ridotti." 132,20,11,"味方の ダメージを 減らすことが できる。" 132,20,12,可以减少我方的伤害。 +132,25,5,Diminue les dégâts subis par les alliés. +132,25,9,Reduces damage dealt to allies. 133,11,5,"Un coup physique baisse la Défense, monte la Vitesse." 133,11,9,"Physical attacks lower @@ -16969,6 +18635,8 @@ stat but sharply raise its Speed stat." 133,20,12,"如果因物理招式受到伤害, 防御会降低, 速度会大幅提高。" +133,25,5,"Quand le Pokémon est touché par une capacité\nphysique, sa Défense baisse mais sa Vitesse\naugmente beaucoup." +133,25,9,"The Pokémon's Defense stat is lowered when it takes damage from physical moves, but its Speed stat is sharply boosted." 134,11,5,"Double le poids du Pokémon." 134,11,9,"Doubles the Pokémon’s @@ -17049,6 +18717,8 @@ weight." 134,20,11,"自分の 重さが 2倍に なる。" 134,20,12,自身的重量会变为2倍。 +134,25,5,Double le poids du Pokémon. +134,25,9,Doubles the Pokémon's weight. 135,11,5,"Divise par deux le poids du Pokémon." 135,11,9,"Halves the Pokémon’s @@ -17133,6 +18803,8 @@ Pokémon." 135,20,11,"自分の 重さが 半分に なる。" 135,20,12,自身的重量会减半。 +135,25,5,Divise par deux le poids du Pokémon. +135,25,9,Halves the Pokémon's weight. 136,11,5,"Reçoit moins de dégâts si les PV sont au maximum." 136,11,9,"Reduces damage when HP @@ -17239,6 +18911,8 @@ while its HP is full." 受ける ダメージが 少なくなる。" 136,20,12,"HP全满时, 受到的伤害会变少。" +136,25,5,Le Pokémon subit moins de dégâts quand ses PV\nsont au maximum. +136,25,9,Reduces the amount of damage the Pokémon takes while its HP is full. 137,11,5,"Booste les att. physiques si le statut est poison." 137,11,9,"Powers up physical @@ -17357,6 +19031,8 @@ is poisoned." 物理技の 威力が 上がる。" 137,20,12,"变为中毒状态时, 物理招式的威力会提高。" +137,25,5,Augmente la puissance des capacités physiques\nquand le Pokémon est empoisonné. +137,25,9,Powers up physical moves when the Pokémon is poisoned. 138,11,5,"Booste les att. spéciales si le statut est brûlure." 138,11,9,"Powers up special attacks @@ -17475,6 +19151,8 @@ is burned." 特殊技の 威力が 上がる。" 138,20,12,"变为灼伤状态时, 特殊招式的威力会提高。" +138,25,5,Augmente la puissance des capacités spéciales\nquand le Pokémon est brûlé. +138,25,9,Powers up special moves when the Pokémon is burned. 139,11,5,"Les Baies utilisées peuvent repousser." 139,11,9,"May create another @@ -17571,6 +19249,8 @@ Berry after one is used." 何回も 作りだす。" 139,20,12,"可以多次制作出 已被使用掉的树果。" +139,25,5,Permet de réutiliser une même Baie plusieurs fois. +139,25,9,May create another Berry after one is used. 140,11,5,"Anticipe et évite les attaques de ses alliés." 140,11,9,"Anticipates an ally’s @@ -17672,6 +19352,8 @@ ses alliés." 技を 回避する。" 140,20,12,"读取我方的攻击, 并闪避其招式伤害。" +140,25,5,Le Pokémon anticipe et évite les attaques de ses alliés. +140,25,9,The Pokémon anticipates and dodges the attacks of its allies. 141,11,5,"Monte une stat tout en en baissant une autre." 141,11,9,"Raises one stat and @@ -17790,6 +19472,8 @@ every turn." ぐーんと 上がって どれかが 下がる。" 141,20,12,"每一回合,能力中的某项 会大幅提高,而某项会降低。" +141,25,5,Augmente beaucoup une stat du Pokémon\net en baisse une autre au hasard à chaque tour. +141,25,9,"Every turn, one of the Pokémon's stats will be boosted sharply but another stat will be lowered." 142,11,5,"Neutralise les dégâts dus à la météo." 142,11,9,"Protects the Pokémon from @@ -17928,6 +19612,8 @@ and powder." 粉の 技を 受けない。" 142,20,12,"不会受到沙暴或冰雹等的伤害。 不会受到粉末类招式的攻击。" +142,25,5,"Protège des dégâts occasionnés par les tempêtes\nde sable, ainsi que des effets des capacités\nqui libèrent de la poudre et des spores." +142,25,9,The Pokémon takes no damage from sandstorms. It is also protected from the effects of powders and spores. 143,11,5,"Peut empoisonner l’ennemi par simple contact." 143,11,9,"May poison targets when a @@ -18030,6 +19716,8 @@ makes contact." どく 状態に することがある。" 143,20,12,"只通过接触就有可能 让对手变为中毒状态。" +143,25,5,Peut empoisonner l’ennemi par simple contact. +143,25,9,May poison a target when the Pokémon makes contact. 144,11,5,"Restaure un peu de PV si le Pokémon est retiré." 144,11,9,"Restores a little HP when @@ -18141,6 +19829,8 @@ il campo." HPが 少し 回復する。" 144,20,12,"退回同行队伍后, HP会少量回复。" +144,25,5,Restaure un peu de PV si le Pokémon est retiré\ndu combat. +144,25,9,The Pokémon has a little of its HP restored when withdrawn from battle. 145,11,5,"Empêche la Déf. de baisser à cause d’attaques." 145,11,9,"Protects the Pokémon from @@ -18240,6 +19930,8 @@ Defense-lowering effects." 145,20,11,"防御を 下げる 効果を 受けない。" 145,20,12,不会受到防御降低的效果。 +145,25,5,Protège des effets qui baissent la Défense. +145,25,9,Prevents the Pokémon from having its Defense stat lowered. 146,11,5,"Augmente la Vitesse lors des tempêtes de sable." 146,11,9,"Boosts the Pokémon’s @@ -18341,6 +20033,8 @@ arena." 素早さが 上がる。" 146,20,12,"沙暴天气时, 速度会提高。" +146,25,5,Augmente la Vitesse lors des tempêtes de sable. +146,25,9,Boosts the Pokémon's Speed stat in a sandstorm. 147,11,5,"Son corps résiste mieux aux attaques de statut." 147,11,9,"Makes status-changing @@ -18443,6 +20137,8 @@ estado." 体に なっている。" 147,20,12,"成为不易受到变化招式 攻击的身体。" +147,25,5,Le Pokémon résiste mieux aux capacités de statut. +147,25,9,Makes status moves more likely to miss the Pokémon. 148,11,5,"Booste les capacités s’il attaque en dernier." 148,11,9,"Boosts move power when @@ -18557,6 +20253,8 @@ della mossa aumenta." 技の 威力が 上がる。" 148,20,12,"如果在最后使出招式, 招式的威力会提高。" +148,25,5,Augmente la puissance des capacités du Pokémon\ns’il attaque en dernier. +148,25,9,Boosts the power of the Pokémon's move if it is the last to act that turn. 149,11,5,"Prend l’apparence du der- nier Pokémon de l’équipe." 149,11,9,"Comes out disguised as @@ -18703,6 +20401,8 @@ last spot." 149,20,12,"假扮成同行队伍中的 最后一只宝可梦出场, 迷惑对手。" +149,25,5,Le Pokémon prend l’apparence du dernier membre\nde l’équipe pour tromper l’adversaire. +149,25,9,The Pokémon fools opponents by entering battle disguised as the last Pokémon in its Trainer's party. 150,11,5,"Adopte l’apparence du Pokémon adverse." 150,11,9,"It transforms itself into @@ -18797,6 +20497,8 @@ it’s facing." 150,20,11,"目の前の ポケモンに 変身 してしまう。" 150,20,12,变身为当前面对的宝可梦。 +150,25,5,Le Pokémon prend l’apparence du Pokémon adverse. +150,25,9,The Pokémon transforms itself into the Pokémon it's facing. 151,11,5,"Traverse les barrières de l’ennemi pour attaquer." 151,11,9,"Passes through the foe’s @@ -18911,6 +20613,8 @@ substitute, and the like and strikes." すりぬけて 攻撃 できる" 151,20,12,"可以穿透对手的壁障 或替身进行攻击。" +151,25,5,Traverse les barrières et les clones adverses\npour attaquer directement. +151,25,9,"The Pokémon's moves are unaffected by the target's barriers, substitutes, and the like." 152,11,5,"Momifie la cap. spé. de l’ennemi qui le touche." 152,11,9,"Contact with this Pokémon @@ -19029,6 +20733,7 @@ Ability to Mummy." 相手を ミイラに してしまう。" 152,20,12,"被对手接触到后, 会将对手变为木乃伊。" +152,25,5,"Lorsque le Pokémon subit une attaque directe, le talent\nde l’attaquant est remplacé par Momie." 153,11,5,"Monte l’Attaque quand il met un ennemi K.O." 153,11,9,"Boosts Attack after @@ -19163,6 +20868,8 @@ Attack stat after knocking out any Pokémon." 攻撃が 上がる。" 153,20,12,"如果打倒对手, 就会充满自信,攻击会提高。" +153,25,5,"Quand le Pokémon met un ennemi K.O.,\nsa confiance en lui ne connaît plus de limite\net son Attaque augmente." +153,25,9,"When the Pokémon knocks out a target, it shows moxie, which boosts its Attack stat." 154,11,5,"Monte l’Attaque si une att. Ténèbres le touche." 154,11,9,"Raises Attack when hit by @@ -19293,6 +21000,8 @@ stat of the Pokémon, for justice." 正義感で 攻撃が 上がる。" 154,20,12,"受到恶属性的招式攻击时, 因为正义感,攻击会提高。" +154,25,5,"Réveille la noblesse du Pokémon lorsqu’il subit\nune attaque de type Ténèbres, ce qui augmente\nson Attaque." +154,25,9,"When the Pokémon is hit by a Dark-type attack, its Attack stat is boosted by its sense of justice." 155,11,5,"Sa peur de certains types augmente sa Vitesse." 155,11,9,"Some move types scare @@ -19438,6 +21147,8 @@ Pokémon and boost its Speed stat." 155,20,12,"受到恶属性、幽灵属性 和虫属性的招式攻击时, 会因胆怯而速度提高。" +155,25,5,"Si le Pokémon est touché par le talent Intimidation ou\nune attaque de type Ténèbres, Spectre ou Insecte,\nsa phobie se révèle et sa Vitesse augmente." +155,25,9,"The Pokémon gets scared when hit by a Dark-, Ghost-, or Bug-type attack or if intimidated, which boosts its Speed stat." 156,11,5,"Renvoie les attaques de statut." 156,11,9,"Reflects status- @@ -19552,6 +21263,8 @@ by them." そのまま 返す ことが できる。" 156,20,12,"可以不受到由对手使出的 变化招式影响,并将其反弹。" +156,25,5,Annule les effets des capacités de statut subies\npar le Pokémon et les retourne à l’envoyeur. +156,25,9,The Pokémon reflects status moves instead of getting hit by them. 157,11,5,"Augmente l’Attaque après une attaque Plante." 157,11,9,"Boosts Attack when hit by @@ -19685,6 +21398,8 @@ instead of taking damage." 攻撃が 上がる。" 157,20,12,"受到草属性的招式攻击时, 不会受到伤害,而是攻击会提高。" +157,25,5,Annule les attaques de type Plante subies\npar le Pokémon et augmente son Attaque. +157,25,9,"The Pokémon takes no damage when hit by Grass-type moves. Instead, its Attack stat is boosted." 158,11,5,"Utilise les attaques de statut en premier." 158,11,9,"Gives priority to a @@ -19778,6 +21493,8 @@ priorità alta." 158,20,11,"変化技を 先制で 出すことが できる。" 158,20,12,可以率先使出变化招式。 +158,25,5,Rend les capacités de statut du Pokémon prioritaires. +158,25,9,Gives priority to the Pokémon's status moves. 159,11,5,"Renforce des capacités en cas de tempête de sable." 159,11,9,"Boosts certain moves’ @@ -19916,6 +21633,8 @@ moves in a sandstorm." 159,20,12,"沙暴天气时, 岩石属性、地面属性 和钢属性的招式威力会提高。" +159,25,5,"Augmente la puissance des capacités de types Roche,\nSol et Acier en cas de tempête de sable." +159,25,9,"Boosts the power of Rock-, Ground-, and Steel-type moves in a sandstorm. " 160,11,5,"Blesse l’ennemi au moindre contact." 160,11,9,"Inflicts damage to the @@ -20032,6 +21751,7 @@ iron barbs." 鉄のトゲで ダメージを あたえる。" 160,20,12,"用铁刺给予接触到自己的 对手伤害。" +160,25,5,Inflige des dégâts à l’attaquant lorsque le Pokémon\nsubit une attaque directe. 161,11,5,"Transforme le Pokémon dans les moments délicats." 161,11,9,"Changes the Pokémon’s @@ -20147,6 +21867,7 @@ or less." 姿が 変化する。" 161,20,12,"HP变为一半以下时, 样子会改变。" +161,25,5,Le Pokémon change de forme quand il lui reste moins\nde la moitié de ses PV. 162,11,5,"Monte la Précision des Pokémon de l’équipe." 162,11,9,"Boosts the accuracy of its @@ -20237,6 +21958,7 @@ allies and itself." 162,20,11,"自分や 味方の 命中率が 上がる。" 162,20,12,自己和同伴的命中率会提高。 +162,25,5,Augmente la Précision du Pokémon et de ses alliés. 163,11,5,"Les cap. spé. adverses ne bloquent pas ses cap." 163,11,9,"Moves can be used @@ -20355,6 +22077,8 @@ its Abilities." 相手に 技を 出すことが できる。" 163,20,12,"可以不受对手特性的干扰, 向对手使出招式。" +163,27,5,Le Pokémon ignore les talents adverses qui auraient\nun effet sur ses capacités. +163,27,9,The Pokémon's moves are unimpeded by the Ability of the target. 164,11,5,"Les cap. spé. adverses ne bloquent pas ses cap." 164,11,9,"Moves can be used @@ -20473,6 +22197,8 @@ its Abilities." 相手に 技を 出すことが できる。" 164,20,12,"可以不受对手特性的干扰, 向对手使出招式。" +164,27,5,Le Pokémon ignore les talents adverses qui auraient\nun effet sur ses capacités. +164,27,9,The Pokémon's moves are unimpeded by the Ability of the target. 165,15,1,"みかたへの メンタル こうげきを ふせぐ。" 165,15,3,"같은 편으로 향하는 @@ -20581,6 +22307,8 @@ their move choices." 攻撃を 防ぐことが できる。" 165,20,12,"可以防住向自己和同伴 发出的心灵攻击。" +165,25,5,Protège le Pokémon et ses alliés des effets limitant\nle libre arbitre. +165,25,9,Protects the Pokémon and its allies from effects that prevent the use of moves. 166,15,1,"みかたの くさポケモンは のうりょくが さがらない。" 166,15,3,"같은 편의 풀타입 포켓몬은 @@ -20716,6 +22444,8 @@ status conditions and the lowering of their stats." 166,20,12,"我方的草属性宝可梦 能力不会降低, 也不会变为异常状态。" +166,25,5,Empêche les alliés de type Plante de subir des baisses\nde stats et des altérations de statut. +166,25,9,Ally Grass-type Pokémon are protected from status conditions and the lowering of their stats. 167,15,1,"きのみを たべると HPも かいふくする。" 167,15,3,"나무열매를 먹으면 @@ -20818,6 +22548,8 @@ dei PS." 食べると HPも 回復する。" 167,20,12,"无论是哪种树果, 食用后,HP都会回复。" +167,25,5,Le Pokémon récupère des PV lorsqu’il consomme\nn’importe quelle Baie en plus de bénéficier de\nses effets habituels. +167,25,9,"The Pokémon's HP is restored when it eats any Berry, in addition to the Berry's usual effect." 168,15,1,"だした わざと おなじ タイプに へんかする。" 168,15,3,"사용한 기술과 같은 @@ -20922,10 +22654,13 @@ move it’s about to use." 同じ タイプに 変化する。" 168,20,12,"变为与自己使出的招式 相同的属性。" +168,25,5,Le Pokémon prend le type de la capacité qu’il utilise.\nCe talent ne peut se déclencher qu’une fois par entrée\nau combat du Pokémon. +168,25,9,Changes the Pokémon's type to the type of the move it's about to use. This works only once each time the Pokémon enters battle. 169,15,1,"ぶつりわざの ダメージが はんぶんになる。" 169,15,3,"물리 기술의 데미지가 절반이 된다." +169,15,5,Divise les dégâts des attaques physiques par deux. 169,15,5,"Divise les dégâts des attaques physiques par deux." 169,15,6,"Halbiert den Schaden durch @@ -20942,6 +22677,7 @@ physical moves." はんぶんになる。" 169,16,3,"물리 기술의 데미지가 절반이 된다." +169,16,5,Divise les dégâts des attaques physiques par deux. 169,16,5,"Divise les dégâts des attaques physiques par deux." 169,16,6,"Halbiert den Schaden durch @@ -20960,6 +22696,7 @@ physical moves." 데미지가 절반이 된다." 169,17,4,"對手的物理招式造成的 傷害會減半。" +169,17,5,Divise par deux les dégâts des capacités physiques subies par le Pokémon. 169,17,5,"Divise par deux les dégâts des capacités physiques subies par le Pokémon." 169,17,6,"Halbiert den Schaden, den das Pokémon durch @@ -20978,6 +22715,7 @@ físicos del rival." 데미지가 절반이 된다." 169,18,4,"對手的物理招式造成的 傷害會減半。" +169,18,5,Divise par deux les dégâts des capacités physiques subies par le Pokémon. 169,18,5,"Divise par deux les dégâts des capacités physiques subies par le Pokémon." 169,18,6,"Halbiert den Schaden, den das Pokémon durch @@ -21014,6 +22752,7 @@ físicos del rival." 데미지가 절반이 된다." 169,20,4,"對手的物理招式造成的 傷害會減半。" +169,20,5,Divise par deux les dégâts des capacités physiques subies par le Pokémon. 169,20,5,"Divise par deux les dégâts des capacités physiques subies par le Pokémon." 169,20,6,"Halbiert den Schaden, den das Pokémon durch @@ -21026,6 +22765,8 @@ físicos del rival." ダメージが 半分に なる。" 169,20,12,"对手给予的物理招式的 伤害会减半。" +169,25,5,Divise par deux les dégâts des capacités physiques\nsubies par le Pokémon. +169,25,9,Halves the damage from physical moves. 170,15,1,"わざを あてた あいての どうぐを うばってしまう。" 170,15,3,"기술을 맞은 상대의 @@ -21134,6 +22875,8 @@ hits with a move." 道具を 奪ってしまう。" 170,20,12,"夺走被自己的招式 击中的对手的道具。" +170,25,5,Les capacités volent aussi l’objet tenu par la cible. +170,25,9,The Pokémon steals the held item from any target it hits with a move. 171,15,1,"たまや ばくだんに あたらない。" 171,15,3,"구슬이나 폭탄에 @@ -21242,6 +22985,8 @@ bomb moves." 技を 防ぐことが できる。" 171,20,12,"可以防住对手的 球和弹类招式。" +171,25,5,Protège de certaines capacités lançant des projectiles\ncomme des bombes et des balles. +171,25,9,Protects the Pokémon from ball and bomb moves. 172,15,1,"のうりょくが さがると とくこうが あがる。" 172,15,3,"능력이 떨어지면 @@ -21354,6 +23099,8 @@ is lowered." 特攻が ぐーんと 上がる。" 172,20,12,"如果能力被降低, 特攻就会大幅提高。" +172,25,5,Augmente beaucoup l’Attaque Spéciale du Pokémon\nquand ses stats ont été baissées par l’adversaire. +172,25,9,Boosts the Pokémon's Sp. Atk stat sharply when its stats are lowered by an opposing Pokémon. 173,15,1,"あごが がんじょうで かむ ちからが つよい。" 173,15,3,"턱이 튼튼하여 @@ -21478,6 +23225,8 @@ biting moves." 高くなる。" 173,20,12,"因为颚部强壮, 啃咬类招式的威力会提高。" +173,25,5,Le Pokémon a une mâchoire robuste qui augmente\nla puissance de ses capacités de morsure. +173,25,9,The Pokémon's strong jaw boosts the power of its biting moves. 174,15,1,"ノーマルタイプの わざが こおりタイプになる。" 174,15,3,"노말타입의 기술이 @@ -21610,6 +23359,7 @@ The power of those moves is boosted a little." 174,20,12,"一般属性的招式 会变为冰属性。 威力会少量提高。" +174,25,5,Les capacités de type Normal deviennent de type Glace.\nLeur puissance augmente légèrement. 175,15,1,"みかたの ポケモンは ねむらなくなる。" 175,15,3,"같은 편의 포켓몬이 @@ -21703,6 +23453,8 @@ duerman." 眠らなくなる。" 175,20,12,"我方的宝可梦 不会变为睡眠状态。" +175,25,5,Le Pokémon et ses alliés ne peuvent pas s’endormir. +175,25,9,Prevents the Pokémon and its allies from falling asleep. 176,15,1,"せんとうモードで すがたが かわる。" 176,15,3,"배틀모드에서 @@ -21847,6 +23599,7 @@ when it uses King’s Shield." 176,20,12,"如果使出攻击招式,会变为刀剑形态, 如果使出招式“王者盾牌”, 会变为盾牌形态。" +176,25,5,"Le Pokémon prend la Forme Assaut lorsqu’il utilise\nune capacité offensive, et la Forme Parade lorsqu’il\nutilise Bouclier Royal." 177,15,1,"ひこうタイプの わざが せんせいで だせる。" 177,15,3,"비행타입의 기술이 @@ -21975,6 +23728,8 @@ the Pokémon’s HP is full." 先制で 出すことが できる。" 177,20,12,"HP全满时, 飞行属性的招式可以率先使出。" +177,25,5,"Quand les PV du Pokémon sont au maximum,\nses capacités de type Vol sont prioritaires." +177,25,9,Gives priority to the Pokémon's Flying-type moves while its HP is full. 178,15,1,"はどうの わざの いりょくが たかい。" 178,15,3,"파동 기술의 @@ -22081,6 +23836,8 @@ e Ondasana." 威力が 高くなる。" 178,20,12,"波动和波导类招式的 威力会提高。" +178,25,5,Augmente la puissance des capacités qui projettent\nune aura. +178,25,9,Powers up pulse moves. 179,15,1,"グラスフィールドのとき ぼうぎょが あがる。" 179,15,3,"그래스필드일 때 @@ -22189,6 +23946,8 @@ Grassy Terrain." 防御が 上がる。" 179,20,12,"在青草场地时, 防御会提高。" +179,25,5,Augmente la Défense du Pokémon si un champ herbu\nest actif. +179,25,9,Boosts the Pokémon's Defense stat on Grassy Terrain. 180,15,1,"みかたに どうぐを わたせるように なる。" 180,15,3,"같은 편에게 도구를 @@ -22316,6 +24075,8 @@ used up an item." 味方に 渡す。" 180,20,12,"同伴使用道具时, 会把自己持有的道具传递给同伴。" +180,25,5,"Quand les alliés utilisent l’objet qu’ils tiennent,\nle Pokémon leur donne l’objet qu’il tient\nen remplacement." +180,25,9,The Pokémon passes its held item to an ally that has used up an item. 181,15,1,"せっしょくする わざの いりょくが あがる。" 181,15,3,"접촉하는 기술의 @@ -22412,6 +24173,8 @@ du Pokémon." 威力が 高くなる。" 181,20,12,"接触到对手的招式 威力会提高。" +181,25,5,Augmente la puissance des attaques directes\ndu Pokémon. +181,25,9,Powers up moves that make direct contact. 182,15,1,"ノーマルタイプの わざが フェアリータイプになる。" 182,15,3,"노말타입의 기술이 @@ -22544,6 +24307,8 @@ The power of those moves is boosted a little." 182,20,12,"一般属性的招式 会变为妖精属性。 威力会少量提高。" +182,25,5,Les capacités de type Normal deviennent de type Fée.\nLeur puissance augmente légèrement. +182,25,9,Normal-type moves become Fairy-type moves. The power of those moves is boosted a little. 183,15,1,"ふれた あいての すばやさを さげる。" 183,15,3,"접촉한 상대의 @@ -22656,6 +24421,8 @@ Speed stat." 素早さを 下げる。" 183,20,12,"对于用攻击接触到自己的对手, 会降低其速度。" +183,25,5,Baisse la Vitesse de l’attaquant lorsque le Pokémon\nsubit une attaque directe. +183,25,9,Contact with the Pokémon lowers the attacker's Speed stat. 184,15,1,"ノーマルタイプの わざが ひこうタイプになる。" 184,15,3,"노말타입의 기술이 @@ -22788,6 +24555,7 @@ The power of those moves is boosted a little." 184,20,12,"一般属性的招式 会变为飞行属性。 威力会少量提高。" +184,25,5,Les capacités de type Normal deviennent de type Vol.\nLeur puissance augmente légèrement. 185,15,1,"おやこ 2ひきで こうげきする。" 185,15,3,"부모와 자식 2마리가 @@ -22875,6 +24643,7 @@ Angriff an." 185,20,11,"親子 2匹で 2回 攻撃することが できる。" 185,20,12,亲子俩可以合计攻击2次。 +185,25,5,La mère et son petit unissent leurs forces pour\nattaquer deux fois d’affilée. 186,15,1,"ぜんいんの あくタイプの わざが つよくなる。" 186,15,3,"전원의 악타입 @@ -22967,6 +24736,7 @@ Siniestro." 186,20,11,"全員の あくタイプの 技が 強くなる。" 186,20,12,全体的恶属性招式变强。 +186,25,5,Augmente la puissance des capacités de type Ténèbres\nde tous les Pokémon. 187,15,1,"ぜんいんの フェアリー わざが つよくなる。" 187,15,3,"전원의 페어리타입 @@ -23059,6 +24829,7 @@ Hada." 187,20,11,"全員の フェアリータイプの 技が 強くなる。" 187,20,12,全体的妖精属性招式变强。 +187,25,5,Augmente la puissance des capacités de type Fée\nde tous les Pokémon. 188,15,1,"オーラの こうかが ぎゃくに なる。" 188,15,3,"오라의 효과가 @@ -23163,6 +24934,7 @@ to lower the power of affected moves." 威力を 下げる。" 188,20,12,"让气场的效果发生逆转, 降低威力。" +188,25,5,Inverse l’effet des talents « Aura » afin que ceux-ci\nbaissent la puissance des capacités affectées au lieu\nde l’augmenter. 189,16,1,"ほのおタイプの こうげきを うけない てんきにする。" 189,16,3,"불꽃타입의 공격을 @@ -23255,6 +25027,7 @@ Fire-type attacks." 受けない 天気にする。" 189,20,12,"变为不会受到 火属性攻击的天气。" +189,25,5,Altère les conditions météo pour neutraliser\nles attaques de type Feu. 190,16,1," ずタイプの こうげきを うけない てんきに する。" 190,16,3,"물타입의 공격을 @@ -23347,6 +25120,7 @@ Water-type attacks." 受けない 天気にする。" 190,20,12,"变为不会受到 水属性攻击的天气。" +190,25,5,Altère les conditions météo pour neutraliser\nles attaques de type Eau. 191,16,1,"ひこうの じゃくてんが なくなる てんきにする。" 191,16,3,"비행타입의 약점이 @@ -23443,6 +25217,7 @@ of the Flying type’s weaknesses." なくなる 天気にする。" 191,20,12,"变为令飞行属性的弱点 消失的天气。" +191,25,5,Altère les conditions météo pour annuler les faiblesses\ndu type Vol. 192,17,1,"こうげきを うけると ぼうぎょが あがる。" 192,17,3,"공격을 받으면 @@ -23515,6 +25290,8 @@ aumenta." 防御が 上がる。" 192,20,12,"受到攻击时, 防御会提高。" +192,25,5,Augmente la Défense du Pokémon lorsqu’il subit\nune attaque. +192,25,9,Boosts the Defense stat when the Pokémon is hit by an attack. 193,17,1,"HPが はんぶんに なると あわてて にげだして てもちに ひっこんで しまう。" @@ -23619,6 +25396,7 @@ becomes half or less." 193,20,12,"HP变为一半时, 会慌慌张张逃走, 退回同行队伍中。" +193,25,5,Le Pokémon perd confiance quand ses PV tombent\nà la moitié et s’enfuit dans sa Poké Ball. 194,17,1,"HPが はんぶんに なると きけんを かいひするため てもちに ひっこんで しまう。" @@ -23723,6 +25501,7 @@ HP becomes half or less." 194,20,12,"HP变为一半时, 为了回避危险, 会退回到同行队伍中。" +194,25,5,"Le Pokémon évite les situations inutilement\ndangereuses. Quand ses PV tombent à la moitié,\nil se réfugie dans sa Poké Ball." 195,17,1,"みずタイプの わざを うけると ぼうぎょが ぐーんと あがる。" 195,17,3,"물타입의 기술을 받으면 @@ -23803,6 +25582,8 @@ by a Water-type move." 防御が ぐーんと 上がる。" 195,20,12,"受到水属性的招式攻击时, 防御会大幅提高。" +195,25,5,Augmente beaucoup la Défense du Pokémon\nquand il subit une capacité de type Eau. +195,25,9,Boosts the Defense stat sharply when the Pokémon is hit by a Water-type move. 196,17,1,"どく じょうたいの あいてを こうげきすると かならず きゅうしょに あたる。" @@ -23895,6 +25676,8 @@ target is poisoned." かならず 急所に 当たる。" 196,20,12,"攻击中毒状态的对手时, 必定会击中要害。" +196,25,5,"Lorsque le Pokémon attaque un adversaire empoisonné,\nle coup est forcément critique." +196,25,9,The Pokémon's attacks become critical hits if the target is poisoned. 197,17,1,"HPが はんぶんに なると からが こわれて こうげきてきに なる。" @@ -23995,6 +25778,8 @@ shell breaks and it becomes aggressive." 攻撃的に なる。" 197,20,12,"HP变为一半时, 壳会坏掉,变得有攻击性。" +197,27,5,"Lorsque le Pokémon perd la moitié de ses PV,\nson enveloppe se brise et il adopte une posture\noffensive." +197,27,9,"When its HP drops to half or less, the Pokémon's shell breaks and it becomes aggressive." 198,17,1,"こうたいで でてきた あいてに 2ばいの ダメージで こうげき できる。" 198,17,3,"교체로 나온 상대에게 @@ -24083,6 +25868,8 @@ replacement if the target switches out." 2倍の ダメージで 攻撃 できる。" 198,20,12,"可以对替换出场的对手 以2倍的伤害进行攻击。" +198,25,5,"Lorsque le Pokémon attaque une cible qui vient d’entrer\nsur le terrain en remplacement d’un autre Pokémon,\nles dégâts infligés sont doublés." +198,25,9,Doubles the damage dealt to a target that has just switched into battle. 199,17,1,"じぶんに たいする ほのおタイプの わざの いりょくを さげる。 やけど しない。" @@ -24183,6 +25970,8 @@ a burn." やけど しない。" 199,20,12,"降低自己受到的火属性 招式的威力,不会灼伤。" +199,27,5,Réduit la puissance des capacités de type Feu subies\npar le Pokémon. Il est également immunisé contre\nles brûlures. +199,27,9,Lowers the power of Fire-type moves that hit the Pokémon and prevents it from being burned. 200,17,1,"はがねタイプの わざの いりょくが あがる。" 200,17,3,"강철타입 기술의 @@ -24235,6 +26024,7 @@ a burn." 200,20,11,"はがねタイプの 技の 威力が 上がる。" 200,20,12,钢属性的招式威力会提高。 +200,25,5,Augmente la puissance des attaques de type Acier. 201,17,1,"あいての こうげきで HPが はんぶんに なると とくこうが あがる。" @@ -24244,6 +26034,7 @@ HP가 절반이 되면 201,17,4,"HP因對手的攻擊 降到一半時, 特攻會提高。" +201,17,5,Augmente l'Attaque Spéciale du Pokémon lorsqu'il tombe à la moitié de ses PV à cause d'une attaque. 201,17,5,"Augmente l’Attaque Spéciale du Pokémon lorsqu’il tombe à la moitié de ses PV à cause d’une attaque." @@ -24271,6 +26062,7 @@ HP가 절반이 되면 201,18,4,"HP因對手的攻擊 降到一半時, 特攻會提高。" +201,18,5,Augmente l'Attaque Spéciale du Pokémon lorsqu'il tombe à la moitié de ses PV à cause d'une attaque. 201,18,5,"Augmente l’Attaque Spéciale du Pokémon lorsqu’il tombe à la moitié de ses PV à cause d’une attaque." @@ -24325,6 +26117,7 @@ HP가 절반이 되면 201,20,4,"HP因對手的攻擊 降到一半時, 特攻會提高。" +201,20,5,Augmente l'Attaque Spéciale du Pokémon lorsqu'il tombe à la moitié de ses PV à cause d'une attaque. 201,20,5,"Augmente l’Attaque Spéciale du Pokémon lorsqu’il tombe à la moitié de ses PV à cause d’une attaque." 201,20,6,"Fallen seine KP nach einem Angriff auf die Hälfte des @@ -24341,6 +26134,8 @@ a hit that causes its HP to become half or less." 201,20,12,"因对手的攻击 HP变为一半时, 特攻会提高。" +201,25,5,Augmente l’Attaque Spéciale du Pokémon lorsque\nses PV tombent à la moitié à cause d’une attaque\nde l’adversaire. +201,25,9,Boosts the Pokémon's Sp. Atk stat when it takes a hit that causes its HP to drop to half or less. 202,17,1,"てんきが あられ のとき すばやさが あがる。" 202,17,3,"날씨가 싸라기눈일 때 @@ -24401,6 +26196,8 @@ a hit that causes its HP to become half or less." 素早さが 上がる。" 202,20,12,"冰雹天气时, 速度会提高。" +202,25,5,Augmente la Vitesse du Pokémon quand il neige. +202,25,9,Boosts the Pokémon's Speed stat in snow. 203,17,1,"すべての わざを あいてに せっしょく しないで だすことが できる。" @@ -24496,6 +26293,8 @@ with the target." 出すことが できる。" 203,20,12,"可以不接触对手 就使出所有的招式。" +203,25,5,Le Pokémon est capable d’utiliser toutes ses capacités\nsans entrer en contact direct avec sa cible. +203,25,9,The Pokémon uses its moves without making contact with the target. 204,17,1,"すべての おとわざが みずタイプに なる。" 204,17,3,"모든 소리 기술이 @@ -24572,6 +26371,8 @@ di tipo Acqua." みずタイプに なる。" 204,20,12,"所有的声音招式 都变为水属性。" +204,27,5,Toutes les attaques sonores du Pokémon prennent\nle type Eau. +204,27,9,Sound-based moves become Water-type moves. 205,17,1,"かいふくわざを せんせいで だすことが できる。" 205,17,3,"회복 기술을 먼저 @@ -24639,6 +26440,8 @@ del Pokémon acquistano priorità alta." 205,20,11,"回復技を 先制で 出すことが できる。" 205,20,12,可以率先使出回复招式。 +205,27,5,Rend les capacités de soin prioritaires. +205,27,9,Gives priority to the Pokémon's healing moves. 206,17,1,"ノーマルタイプの わざが でんきタイプになる。 いりょくが すこし あがる。" @@ -24739,6 +26542,8 @@ The power of those moves is boosted a little." 206,20,12,"一般属性的招式 会变为电属性。 威力会少量提高。" +206,26,5,Les capacités de type Normal deviennent de type\nÉlectrik. Leur puissance augmente légèrement. +206,26,9,Normal-type moves become Electric-type moves. The power of those moves is boosted a little. 207,17,1,"エレキフィールド のとき すばやさが 2ばいに なる。" 207,17,3,"일렉트릭필드일 때 @@ -24819,6 +26624,8 @@ Electric Terrain." 素早さが 2倍に なる。" 207,20,12,"电气场地时, 速度会变为2倍。" +207,25,5,La Vitesse du Pokémon est doublée sur\nun champ électrifié. +207,25,9,Doubles the Pokémon's Speed stat on Electric Terrain. 208,17,1,"HPが おおいときは むれて つよくなる。 HPの のこりが すくなくなると むれは ちりぢりに なってしまう。" @@ -24939,6 +26746,7 @@ is low." 208,20,12,"HP多的时候会聚起来变强。 HP剩余量变少时, 群体会分崩离析。" +208,25,5,"Le Pokémon se rassemble avec ses congénères\nquand ses PV sont élevés. Quand il ne lui reste\nplus beaucoup de PV, le banc se disperse." 209,17,1,"からだを おおう ばけのかわで  1かい こうげきを ふせぐことが できる。" 209,17,3,"몸을 덮는 탈로 @@ -25019,6 +26827,8 @@ Pokémon can protect it from an attack." 1回 攻撃を 防ぐことが できる。" 209,20,12,"通过画皮覆盖住身体, 可以防住1次攻击。" +209,25,5,Le déguisement qui recouvre le corps du Pokémon\nest capable de le protéger d’une attaque. +209,25,9,"Once per battle, the shroud that covers the Pokémon can protect it from an attack." 210,17,1,"あいてを たおすと トレーナーとの きずなが ふかまり サトシゲッコウガに へんげする。みずしゅりけんが つよくなる。" @@ -25139,6 +26949,8 @@ Ash-Greninja. Water Shuriken gets more powerful." 210,20,12,"打倒对手时,与训练家的牵绊会增强, 变为小智版甲贺忍蛙。 飞水手里剑的招式威力会增强。" +210,25,5,"En battant un ennemi, ce Pokémon renforce ses liens\navec son Dresseur, ce qui augmente son Attaque,\nson Attaque Spéciale et sa Vitesse." +210,25,9,"When the Pokémon knocks out a target, its bond with its Trainer is strengthened, and its Attack, Sp. Atk, and Speed stats are boosted." 211,17,1,"HPが はんぶんに なると セルたちが おうえんに かけつけ パーフェクトフォルムに すがたを かえる。" @@ -25255,6 +27067,7 @@ its form to Complete Forme." 211,20,12,"HP变为一半时, 细胞们会赶来支援, 变为完全体形态。" +211,25,5,"Lorsque le Pokémon perd la moitié de ses PV,\nses Cellules se rassemblent pour l’encourager,\nce qui lui permet de prendre sa Forme Parfaite." 212,17,1,"はがねタイプや どくタイプも どく じょうたいに することが できる。" 212,17,3,"강철타입이나 독타입도 @@ -25334,6 +27147,8 @@ a Steel or Poison type." どく状態に することが できる。" 212,20,12,"可以使钢属性和毒属性的宝可梦 也陷入中毒状态。" +212,25,5,Permet d’empoisonner les Pokémon de type Acier\nou Poison. +212,25,9,The Pokémon can poison the target even if it's a Steel or Poison type. 213,17,1,"つねに ゆめうつつの じょうたいで ぜったいに めざめない。 ねむったまま こうげきが できる。" @@ -25446,6 +27261,8 @@ It can attack without waking up." 213,20,12,"总是半梦半醒的状态, 绝对不会醒来。 可以就这么睡着进行攻击。" +213,25,5,Le Pokémon rêve en permanence et ne se réveille\njamais. Il est capable d’attaquer normalement\ntout en dormant. +213,25,9,The Pokémon is always drowsing and will never wake up. It can attack while in its sleeping state. 214,17,1,"あいてに いあつかんを あたえ こちらに むかって せんせいわざを だせない ようにする。" @@ -25541,6 +27358,9 @@ making it unable to attack using priority moves." 出せない ようにする。" 214,20,12,"向对手施加威慑力, 使其无法对我方使出先制招式。" +214,25,9,The Pokémon's majesty pressures opponents and makes them unable to use priority moves against the Pokémon or its allies. +214,26,5,"L’adversaire est impressionné par la majesté\ndu Pokémon, ce qui l’empêche de viser ce dernier\net ses alliés avec une capacité prioritaire." +214,26,9,"When the Pokémon uses Surf or Dive, it will come back with prey. When it takes damage, it will spit out the prey to attack." 215,17,1,"あいてに たおされたとき HPの のこりの ぶんだけ あいてに ダメージを あたえる。" @@ -25653,6 +27473,7 @@ by the amount equal to its last HP." 215,20,12,"被对手打倒的时候, 会给予对手相当于 HP剩余量的伤害。" +215,25,5,Le Pokémon inflige à l’adversaire l’ayant mis K.O.\ndes dégâts égaux au nombre de PV qu’il lui restait\navant le coup de grâce. 216,17,1,"だれかが おどりわざを つかうと じぶんも それに つづいて おどりわざを だすことが できる。" @@ -25661,6 +27482,7 @@ by the amount equal to its last HP." 춤 기술을 쓸 수 있다." 216,17,4,"當有誰使出跳舞招式時, 自己也能接著使出跳舞招式。" +216,17,5,Augmente l'Attaque Spéciale du Pokémon lorsqu'il tombe à la moitié de ses PV à cause d'une attaque. 216,17,5,"Si n’importe quel Pokémon utilise une capacité dansante, ce Pokémon peut se mettre aussi à danser." @@ -25689,6 +27511,7 @@ of its Speed." 춤 기술을 쓸 수 있다." 216,18,4,"當有誰使出跳舞招式時, 自己也能接著使出跳舞招式。" +216,18,5,Augmente l'Attaque Spéciale du Pokémon lorsqu'il tombe à la moitié de ses PV à cause d'une attaque. 216,18,5,"Si n’importe quel Pokémon utilise une capacité dansante, ce Pokémon peut se mettre aussi à danser." @@ -25745,6 +27568,7 @@ of its Speed." 춤 기술을 쓸 수 있다." 216,20,4,"當有誰使出跳舞招式時, 自己也能接著使出跳舞招式。" +216,20,5,Augmente l'Attaque Spéciale du Pokémon lorsqu'il tombe à la moitié de ses PV à cause d'une attaque. 216,20,5,"Si n’importe quel Pokémon utilise une capacité dansante, ce Pokémon peut se mettre aussi à danser." 216,20,6,"Kann direkt im Anschluss an die Tanz-Attacke eines @@ -25763,6 +27587,8 @@ of its Speed." 踊り技を 出すことが できる。" 216,20,12,"有谁使出跳舞招式时, 自己也能就这么接着使出跳舞招式。" +216,25,5,"Si n’importe quel Pokémon utilise une capacité dansante,\nle Pokémon utilise immédiatement cette danse lui aussi." +216,25,9,"Whenever a dance move is used in battle, the Pokémon will copy the user to immediately perform that dance move itself." 217,17,1,"みかたの とくしゅわざの いりょくを あげる。" 217,17,3,"같은 편 특수 기술의 @@ -25834,6 +27660,8 @@ degli alleati." 威力を 上げる。" 217,20,12,"会提高我方的 特殊招式的威力。" +217,26,5,Augmente la puissance des capacités spéciales des alliés. +217,26,9,Powers up ally Pokémon's special moves. 218,17,1,"あいてから うけた せっしょくする わざの ダメージを はんげんするが ほのおタイプの わざの ダメージは 2ばいになる。" @@ -25942,6 +27770,8 @@ direct contact, but doubles that of Fire-type moves." 技の ダメージは 2倍になる。" 218,20,12,"会将对手所给予的接触类招式的伤害减半, 但火属性招式的伤害会变为2倍。" +218,25,5,"Divise par deux les dégâts des attaques directes\nsubies par le Pokémon, mais double les dégâts\ndes capacités de type Feu." +218,25,9,"Halves the damage taken from moves that make direct contact, but doubles that of Fire-type moves." 219,17,1,"あいてを びっくり させて こちらに むかって せんせいわざを だせない ようにする。" @@ -26034,6 +27864,8 @@ to attack using priority moves." 出せない ようにする。" 219,20,12,"让对手吓一跳, 使其无法对我方使出先制招式。" +219,25,5,"L’adversaire est abasourdi par le Pokémon,\nce qui l’empêche de viser ce dernier et\nses alliés avec une capacité prioritaire." +219,25,9,"The Pokémon dazzles its opponents, making them unable to use priority moves against the Pokémon or its allies." 220,17,1,"ポケモンが ひんしに なるたびに とくこうが あがる。" 220,17,3,"포켓몬이 기절할 때마다 @@ -26114,6 +27946,8 @@ un Pokémon va KO." 特攻が 上がる。" 220,20,12,"宝可梦每次变为濒死状态时, 特攻会提高。" +220,25,5,Augmente l’Attaque Spéciale du Pokémon\nlorsqu’un autre Pokémon est mis K.O. +220,25,9,Boosts the Pokémon's Sp. Atk stat every time another Pokémon faints. 221,17,1,"こうげきで じぶんに ふれた あいての すばやさを さげる。" 221,17,3,"공격으로 자신과 접촉한 상대의 @@ -26194,6 +28028,8 @@ Speed stat." 素早さを 下げる。" 221,20,12,"对于用攻击接触到自己的对手, 会降低其速度。" +221,25,5,Baisse la Vitesse de l’attaquant lorsque le Pokémon\nsubit une attaque directe. +221,25,9,Contact with the Pokémon lowers the attacker's Speed stat. 222,17,1,"たおされた みかたの とくせいを うけついで おなじ とくせいに なる。" 222,17,3,"쓰러진 같은 편의 특성을 @@ -26262,6 +28098,8 @@ andato KO." 受け継いで 同じ 特性に なる。" 222,20,12,"继承被打倒的同伴的特性, 变为相同的特性。" +222,25,5,Le Pokémon reçoit le talent d’un allié mis K.O. +222,25,9,The Pokémon copies the Ability of a defeated ally. 223,17,1,"たおされた みかたの とくせいを うけつぎ おなじ とくせいに かわる。" 223,17,3,"쓰러진 같은 편의 특성을 @@ -26334,6 +28172,8 @@ di un alleato andato KO." 同じ 特性に 変わる。" 223,20,12,"继承被打倒的同伴的特性, 变为相同的特性。" +223,25,5,Le Pokémon acquiert le talent d’un allié mis K.O. +223,25,9,The Pokémon copies the Ability of a defeated ally. 224,17,1,"あいてを たおしたとき じぶんの いちばん たかい のうりょくが あがる。 " @@ -26429,6 +28269,7 @@ time it knocks out a Pokémon." 能力が 上がる。" 224,20,12,"打倒对手的时候, 自己最高的那项能力会提高。" +224,25,5,Augmente la stat la plus élevée du Pokémon\nquand il met K.O. un autre Pokémon. 225,17,1,"もっている メモリで じぶんの タイプが かわる。" 225,17,3,"지니고 있는 메모리로 @@ -26504,6 +28345,7 @@ memory disc it holds." 自分の タイプが 変わる。" 225,20,12,"根据持有的存储碟, 自己的属性会改变。" +225,25,5,Change le type du Pokémon en fonction\nde la ROM équipée. 226,17,1,"とうじょう したときに エレキフィールドを はりめぐらせる。" 226,17,3,"등장했을 때 @@ -26576,6 +28418,8 @@ Pokémon enters a battle." エレキフィールドを はりめぐらせる。" 226,20,12,"出场时, 会布下电气场地。" +226,25,5,Le Pokémon crée un champ électrifié au moment\noù il entre au combat. +226,25,9,Turns the ground into Electric Terrain when the Pokémon enters a battle. 227,17,1,"とうじょう したときに サイコフィールドを はりめぐらせる。" 227,17,3,"등장했을 때 @@ -26648,6 +28492,8 @@ the Pokémon enters a battle." サイコフィールドを はりめぐらせる。" 227,20,12,"出场时, 会布下精神场地。" +227,25,5,Le Pokémon crée un champ psychique au moment\noù il entre au combat. +227,25,9,Turns the ground into Psychic Terrain when the Pokémon enters a battle. 228,17,1,"とうじょう したときに ミストフィールドを はりめぐらせる。" 228,17,3,"등장했을 때 @@ -26720,6 +28566,8 @@ the Pokémon enters a battle." ミストフィールドを はりめぐらせる。" 228,20,12,"出场时, 会布下薄雾场地。" +228,25,5,Le Pokémon crée un champ brumeux au moment\noù il entre au combat. +228,25,9,Turns the ground into Misty Terrain when the Pokémon enters a battle. 229,17,1,"とうじょう したときに グラスフィールドを はりめぐらせる。" 229,17,3,"등장했을 때 @@ -26792,6 +28640,8 @@ the Pokémon enters a battle." グラスフィールドを はりめぐらせる。" 229,20,12,"出场时, 会布下青草场地。" +229,25,5,Le Pokémon crée un champ herbu au moment\noù il entre au combat. +229,25,9,Turns the ground into Grassy Terrain when the Pokémon enters a battle. 230,17,1,"あいての わざや とくせいで のうりょくを さげられない。" 230,17,3,"상대 기술이나 특성으로 @@ -26872,6 +28722,7 @@ lowering the Pokémon’s stats." 能力を 下げられない。" 230,20,12,"不会因为对手的招式或特性 而被降低能力。" +230,25,5,Empêche les stats du Pokémon de baisser à cause\ndu talent ou d’une capacité de l’adversaire. 231,17,1,"HPが まんたんの ときに うける ダメージが すくなくなる。" 231,17,3,"HP가 꽉 찼을 때 @@ -26940,6 +28791,7 @@ while its HP is full." 受ける ダメージが 少なくなる。" 231,20,12,"HP全满时, 受到的伤害会变少。" +231,25,5,Le Pokémon subit moins de dégâts quand ses PV\nsont au maximum. 232,17,1,"こうかばつぐんに なってしまう こうげきの いりょくを よわめる ことが できる。" @@ -27028,6 +28880,7 @@ supereficaces." 弱める ことが できる。" 232,20,12,"受到效果绝佳的攻击时, 可以减弱其威力。" +232,25,5,Diminue la puissance des attaques super efficaces\nsubies. 233,18,1,"こうかばつぐんの こうげきで いりょくが さらに あがる。" 233,18,3,"효과가 굉장한 공격의 @@ -27076,6 +28929,7 @@ par les attaques super efficaces." 威力が さらに 上がる。" 233,20,12,"效果绝佳的攻击, 威力会变得更强。" +233,25,5,Augmente encore plus la puissance des attaques\nsuper efficaces. 234,20,1,"とうじょう したときに こうげきが あがる。" 234,20,3,"등장했을 때 @@ -27094,6 +28948,8 @@ enters a battle." 攻撃が 上がる。" 234,20,12,"出场时, 攻击会提高。" +234,25,5,Augmente l’Attaque du Pokémon la première fois\nqu’il entre au combat. +234,25,9,Boosts the Pokémon’s Attack stat the first time the Pokémon enters a battle. 235,20,1,"とうじょう したときに ぼうぎょが あがる。" 235,20,3,"등장했을 때 @@ -27112,6 +28968,8 @@ enters a battle." 防御が 上がる。" 235,20,12,"出场时, 防御会提高。" +235,25,5,Augmente la Défense du Pokémon la première fois\nqu’il entre au combat. +235,25,9,Boosts the Pokémon’s Defense stat the first time the Pokémon enters a battle. 236,20,1,"じぶんが だす わざと おなじ タイプに へんかする。" 236,20,3,"자신이 사용한 기술과 @@ -27130,6 +28988,8 @@ move it’s about to use." 同じ タイプに 変化する。" 236,20,12,"变为与自己使出的招式 相同的属性。" +236,25,5,Le Pokémon prend le type de la capacité qu’il utilise.\nCe talent ne peut se déclencher qu’une fois par entrée\nau combat du Pokémon. +236,25,9,Changes the Pokémon's type to the type of the move it's about to use. This works only once each time the Pokémon enters battle. 237,20,1,"どうぐを もっていない ばあい 1かいめに なげて しっぱい した モンスターボールを ひろってくる。" @@ -27158,6 +29018,7 @@ of the battle." 237,20,12,"没有携带道具时, 会拾取第1个投出后 捕捉失败的精灵球。" +237,25,5,"Si le Pokémon ne tient aucun objet, il ramassera\nla Poké Ball lors du premier lancer raté du combat." 238,20,1,"こうげきを うけると わたげを ばらまいて じぶんいがいの ポケモン すべての すばやさを さげる。" @@ -27188,6 +29049,7 @@ all Pokémon except itself." 238,20,12,"受到攻击后撒下棉絮, 降低除自己以外的 所有宝可梦的速度。" +238,25,5,"Quand le Pokémon est touché par une attaque,\nil dissémine des aigrettes qui diminuent la Vitesse\nde tout le monde, sauf la sienne." 239,20,1,"あいての わざを ひきうける とくせいや わざの えいきょうを むし できる。" @@ -27213,6 +29075,8 @@ moves that draw in moves." 239,20,12,"能无视具有吸引 对手招式效果的 特性或招式的影响。" +239,25,5,Permet d’ignorer l’effet des capacités ou des talents qui\nattirent les capacités. +239,25,9,Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves. 240,20,1,"じぶんが うけた のうりょく ダウンの こうか だけを はねかえす。" @@ -27235,6 +29099,8 @@ the Pokémon receives." 効果 だけを 跳ね返す。" 240,20,12,"只反弹自己受到的 能力降低效果。" +240,25,5,Le Pokémon renvoie les effets réducteurs de stats\nqu’il reçoit. +240,25,9,Bounces back only the stat-lowering effects that the Pokémon receives. 241,20,1,"なみのりか ダイビングを すると えものを くわえてくる。 ダメージを うけると えものを はきだして こうげき。" @@ -27263,6 +29129,7 @@ to attack." 241,20,12,"冲浪或潜水时会叼来猎物。 受到伤害时, 会吐出猎物进行攻击。" +241,25,5,"Quand le Pokémon utilise Surf ou Plongée, il revient\navec une proie. Lorsqu’il subit des dégâts par la suite,\nil attaque en recrachant sa proie." 242,20,1,"あいての わざを ひきうける とくせいや わざの えいきょうを むし できる。" @@ -27288,6 +29155,8 @@ moves that draw in moves." 242,20,12,"能无视具有吸引 对手招式效果的 特性或招式的影响。" +242,27,5,Permet d’ignorer l’effet des capacités ou des talents qui\nattirent les capacités. +242,27,9,Ignores the effects of opposing Pokémon's Abilities and moves that draw in moves. 243,20,1,"みずタイプ ほのおタイプの わざを うけると すばやさが ぐぐーんと あがる。" @@ -27313,6 +29182,8 @@ Fire- or Water-type move." 243,20,12,"受到水属性或 火属性的招式攻击时, 速度会巨幅提高。" +243,25,5,"Lorsque le Pokémon est touché par des capacités\nde type Eau ou Feu, sa Vitesse augmente énormément." +243,25,9,Boosts the Speed stat drastically when the Pokémon is hit by a Fire- or Water-type move. 244,20,1,"おとわざの いりょくが あがる。 うけた おとわざの ダメージは はんぶんに なる。" @@ -27340,6 +29211,8 @@ these kinds of moves." ダメージは 半分に なる。" 244,20,12,"声音招式的威力会提高。 受到的声音招式伤害会减半。" +244,25,5,Augmente la puissance des capacités basées sur le son.\nLe Pokémon ne subit que la moitié des dégâts quand\nil est touché par ce genre de capacités. +244,25,9,Boosts the power of sound-based moves. The Pokémon also takes half the damage from these kinds of moves. 245,20,1,"こうげきを うけると すなあらしを おこす。" 245,20,3,"공격을 받으면 @@ -27359,6 +29232,8 @@ an attack." 砂あらしを 起こす。" 245,20,12,"受到攻击时, 会刮起沙暴。" +245,25,5,Le Pokémon déclenche une tempête de sable\nquand il subit une attaque. +245,25,9,The Pokémon creates a sandstorm when it's hit by an attack. 246,20,1,"こおりのりんぷんに まもられて とくしゅこうげきで うける ダメージが はんげん する。" @@ -27384,6 +29259,8 @@ the damage taken from special moves." ダメージが 半減 する。" 246,20,12,"由于有冰鳞粉的守护, 受到的特殊攻击伤害会减半。" +246,25,5,Le Pokémon est protégé par des écailles de glace.\nLes dégâts qu’il subit par des capacités spéciales\nsont divisés par deux. +246,25,9,"The Pokémon is protected by ice scales, which halve the damage taken from special moves." 247,20,1,"じゅくせい させることで きのみの こうかが ばいに なる。" @@ -27404,6 +29281,8 @@ heranreifen lässt." 倍に なる。" 247,20,12,"使树果成熟, 效果变为2倍。" +247,25,5,Le Pokémon fait mûrir la Baie qu’il tient\net double ainsi son effet. +247,25,9,Ripens Berries and doubles their effect. 248,20,1,"ぶつりこうげきは あたまの こおりが みがわりに なるが すがたも かわる。 こおりは あられが ふると もとにもどる。" @@ -27434,6 +29313,8 @@ appearance. The ice will be restored when it hails." 248,20,12,"头部的冰会代替自己承受 物理攻击,但是样子会改变。 下冰雹时,冰会恢复原状。" +248,25,5,"Le glaçon sur sa tête encaisse les attaques physiques\nà la place du Pokémon, mais sa destruction modifie\nson apparence. Le glaçon se reforme quand il neige." +248,25,9,"The Pokémon's ice head can take a physical attack as a substitute, but the attack also changes the Pokémon's appearance. The ice will be restored when it snows." 249,20,1,"となりに いるだけで わざの いりょくが あがる。" 249,20,3,"옆에 있기만 해도 @@ -27452,6 +29333,8 @@ vicinanze." 技の 威力が 上がる。" 249,20,12,"只要处在相邻位置, 招式的威力就会提高。" +249,25,5,Augmente la puissance des capacités des Pokémon\nqui se trouvent à proximité. +249,25,9,Just being next to the Pokémon powers up moves. 250,20,1,"フィールドの じょうたいに あわせて ポケモンの タイプが かわる。" 250,20,3,"필드의 상태에 따라 @@ -27471,6 +29354,7 @@ del campo." ポケモンの タイプが 変わる。" 250,20,12,"宝可梦的属性会根据 场地的状态而变化。" +250,25,5,Le Pokémon adopte le même type que le terrain\nlorsqu’un champ est actif. 251,20,1,"とうじょう したときに てきと みかたの ひかりのかべ リフレクター オーロラベールの こうかが きえる。" @@ -27499,6 +29383,7 @@ both opposing and ally Pokémon." オーロラベールの 効果が 消える。" 251,20,12,"出场时,敌方和我方的光墙、 反射壁和极光幕的效果会消失。" +251,25,5,"Quand le Pokémon entre au combat, les effets de\nMur Lumière, Protection et Voile Aurore disparaissent\npour les alliés comme pour les adversaires." 252,20,1,"みかたの はがねタイプの こうげきの いりょくが あがる。" 252,20,3,"같은 편의 강철타입 @@ -27516,6 +29401,8 @@ Mitstreiterseite." 攻撃の 威力が 上がる。" 252,20,12,"我方的钢属性 攻击威力会提高。" +252,25,5,Augmente la puissance des attaques de type Acier\ndu Pokémon et de ses alliés. +252,25,9,Powers up the Steel-type moves of the Pokémon and its allies. 253,20,1,"せっしょくする わざを うけると おたがい 3ターン たつと ひんしになる。 こうたいすると こうかは なくなる。" @@ -27546,6 +29433,7 @@ unless they switch out of battle." 253,20,12,"受到接触类招式攻击时, 双方都会在3回合后变为濒死状态。 替换后效果消失。" +253,25,5,"Lorsque le Pokémon est directement touché par\nune capacité, l’assaillant et lui tomberont K.O. dans trois\ntours, à moins qu’ils ne soient remplacés entre temps." 254,20,1,"せっしょくする わざで こうげき してきた ポケモンと とくせいを いれかえる。" @@ -27571,6 +29459,7 @@ that hits it with a move that makes direct contact." 特性を 入れ替える。" 254,20,12,"与使用接触类招式 攻击自己的宝可梦互换特性。" +254,25,5,"Lorsque le Pokémon est directement touché\npar une capacité, il échange son talent avec\ncelui de l’assaillant." 255,20,1,"こうげきは あがるが さいしょに えらんだ わざしか だせなくなる。" @@ -27597,6 +29486,7 @@ the use of the first selected move." 255,20,12,"虽然攻击会提高, 但是只能使出 一开始所选的招式。" +255,25,5,"Augmente l’Attaque, mais empêche d’utiliser\ntoute autre capacité que celle utilisée en premier\npar le Pokémon." 256,20,1,"かがくへんかガスの ポケモンが ばにいると すべての ポケモンの とくせいの こうかが きえたり はつどう しなくなる。" @@ -27627,6 +29517,8 @@ or will not be triggered." 256,20,12,"特性为化学变化气体的宝可梦在场时, 场上所有宝可梦的 特性效果都会消失或者无法生效。" +256,26,5,"Si un Pokémon avec Gaz Inhibiteur est sur le terrain,\nles effets des talents de tous les autres Pokémon ne\ns’activent pas ou sont neutralisés." +256,26,9,"While the Pokémon is in the battle, the effects of all other Pokémon's Abilities will be nullified or will not be triggered." 257,20,1,"じぶんも みかたも どくの じょうたいいじょうを うけなくなる。" @@ -27650,6 +29542,7 @@ being poisoned." 受けなくなる。" 257,20,12,"自己和同伴都不会 陷入中毒的异常状态。" +257,25,5,Protège le Pokémon et ses alliés contre toutes\nles altérations de statut liées à l’empoisonnement. 258,20,1,"ターンの おわりに まんぷくもよう はらぺこもよう まんぷくもよう……と こうごに すがたを かえる。" @@ -27677,6 +29570,8 @@ each turn." 258,20,12,"每回合结束时会在 满腹花纹与空腹花纹之间 交替改变样子。" +258,26,5,"À la fin de chaque tour, le Pokémon alterne\nentre ses formes Mode Rassasié et Mode Affamé." +258,26,9,"The Pokémon changes its form, alternating between its Full Belly Mode and Hangry Mode after the end of every turn." 259,20,1,"あいてより さきに こうどう できることが ある。" 259,20,3,"상대보다 먼저 @@ -27690,6 +29585,8 @@ each turn." 259,20,11,"相手より 先に 行動できることが ある。" 259,20,12,有时能比对手先一步行动。 +259,25,5,Permet parfois au Pokémon d’agir en premier. +259,25,9,Enables the Pokémon to move first occasionally. 260,20,1,"あいてに せっしょくする わざなら まもりの こうかを むしして こうげき することが できる。" @@ -27713,6 +29610,8 @@ it can attack the target even if the target protects itself." 無視して 攻撃することが できる。" 260,20,12,"如果使出的是接触到对手的招式, 就可以无视守护效果进行攻击。" +260,27,5,"Si le Pokémon utilise une attaque directe, celle-ci\npourra toucher la cible même si elle se protège." +260,27,9,"If the Pokémon uses moves that make direct contact, it can attack the target even if the target protects itself." 261,20,1,"とうじょう したときに かいがらから くすりを ふりまいて みかたの のうりょくへんかを もとにもどす。" @@ -27741,6 +29640,8 @@ from allies." 味方の 能力変化を 元に戻す。" 261,20,12,"出场时会从贝壳撒药, 将我方的能力变化复原。" +261,25,5,"Quand il entre au combat, le Pokémon répand\nune substance qui annule les changements de stats\nde ses alliés." +261,25,9,"When the Pokémon enters a battle, it scatters medicine from its shell, which removes all stat changes from allies." 262,20,1,"でんきタイプの わざの いりょくが あがる。" 262,20,3,"전기타입 기술의 @@ -27754,6 +29655,8 @@ from allies." 262,20,11,"でんきタイプの 技の 威力が 上がる。" 262,20,12,电属性的招式威力会提高。 +262,25,5,Augmente la puissance des capacités de type Électrik. +262,25,9,Powers up Electric-type moves. 263,20,1,"ドラゴンタイプの わざの いりょくが あがる。" 263,20,3,"드래곤타입 기술의 @@ -27767,6 +29670,8 @@ from allies." 263,20,11,"ドラゴンタイプの 技の 威力が 上がる。" 263,20,12,龙属性的招式威力会提高。 +263,25,5,Augmente la puissance des capacités de type Dragon. +263,25,9,Powers up Dragon-type moves. 264,20,1,"あいてを たおすと つめたい こえで いなないて こうげきが あがる。" @@ -27792,6 +29697,8 @@ chilling neigh, which boosts its Attack stat." 264,20,12,"打倒对手时 会用冰冷的声音嘶鸣 并提高攻击。" +264,25,5,"Quand le Pokémon met un ennemi K.O., il émet\nun hennissement glaçant, ce qui augmente son Attaque." +264,25,9,"When the Pokémon knocks out a target, it utters a chilling neigh, which boosts its Attack stat." 265,20,1,"あいてを たおすと おそろしい こえで いなないて とくこうが あがる。" @@ -27818,6 +29725,8 @@ terrifying neigh, which boosts its Sp. Atk stat." 265,20,12,"打倒对手时 会用恐怖的声音嘶鸣 并提高特攻。" +265,25,5,"Quand le Pokémon met un ennemi K.O., il émet\nun hennissement terrifiant qui augmente\nson Attaque Spéciale." +265,25,9,"When the Pokémon knocks out a target, it utters a terrifying neigh, which boosts its Sp. Atk stat." 266,20,1,"バドレックスの きんちょうかんと ブリザポスの しろのいななきの ふたつの とくせいを あわせもつ。" @@ -27842,6 +29751,9 @@ Unnerve Ability and Glastrier’s Chilling Neigh Ability." 二つの 特性を あわせ持つ。" 266,20,12,"兼备蕾冠王的紧张感和 雪暴马的苍白嘶鸣这两种特性。" +266,25,5,Les talents Tension de Sylveroy et Blanche Ruade\nde Blizzeval sont cumulés. +266,25,5,Les talents Tension de Sylveroy et Sombre Ruade\nde Spectreval sont cumulés. +266,25,9,This Ability combines the effects of both Calyrex's Unnerve Ability and Glastrier's Chilling Neigh Ability. 267,20,1,"バドレックスの きんちょうかんと レイスポスの くろのいななきの ふたつの とくせいを あわせもつ。" @@ -27866,7 +29778,84 @@ Unnerve Ability and Spectrier’s Grim Neigh Ability." 二つの 特性を あわせ持つ。" 267,20,12,"兼备蕾冠王的紧张感和 灵幽马的漆黑嘶鸣这两种特性。" +267,25,9,This Ability combines the effects of both Calyrex's Unnerve Ability and Spectrier's Grim Neigh Ability. +268,25,5,"Lorsque le Pokémon subit une attaque directe, le talent\nde l’attaquant est remplacé par Odeur Tenace." +268,25,9,Contact with the Pokémon changes the attacker's Ability to Lingering Aroma. +269,25,5,Le Pokémon crée un champ herbu quand\nil subit une attaque. +269,25,9,Turns the ground into Grassy Terrain when the Pokémon is hit by an attack. +270,25,5,"Lorsque le Pokémon est touché par une capacité de type\nFeu, son Attaque augmente. Il ne peut pas être brûlé." +270,25,9,Boosts the Attack stat when the Pokémon is hit by a Fire-type move. The Pokémon also cannot be burned. +271,25,5,"Le Pokémon enrage s’il a moins de la moitié de ses PV\naprès avoir subi une attaque. Sa Déf. et sa Déf. Spé.\nbaissent, et son Atq., son Atq. Spé. et sa Vit. augmentent." +271,25,9,"When an attack causes its HP to drop to half or less, the Pokémon gets angry. This lowers its Defense and Sp. Def stats but boosts its Attack, Sp. Atk, and Speed stats." +272,25,5,"Le sel pur immunise le Pokémon contre les altérations\nde statut, et diminue de moitié les dégâts des capacités\nde type Spectre." +272,25,9,The Pokémon's pure salt protects it from status conditions and halves the damage taken from Ghost-type moves. +273,25,5,"Si le Pokémon est touché par une capacité de type Feu,\nil ne subit aucun dégât et sa Défense augmente\nbeaucoup." +273,25,9,"The Pokémon takes no damage when hit by Fire-type moves. Instead, its Defense stat is sharply boosted." +274,25,5,"L’Attaque du Pokémon augmente si un vent arrière souffle\nou s’il est touché par une capacité faisant appel au vent.\nDans ce dernier cas, il ne subit aucun dégât." +274,25,9,Boosts the Pokémon's Attack stat if Tailwind takes effect or if the Pokémon is hit by a wind move. The Pokémon also takes no damage from wind moves. +275,25,5,L’Attaque du Pokémon augmente s’il subit l’effet du\ntalent Intimidation. Les capacités ou objets qui font\nchanger de Pokémon n’ont aucun effet sur lui. +275,25,9,Boosts the Pokémon’s Attack stat if intimidated. Moves and items that would force the Pokémon to switch out also fail to work. +276,25,5,Augmente la puissance des capacités de type Roche. +276,25,9,Powers up Rock-type moves. +277,25,5,"Si le Pokémon est touché par une capacité faisant appel\nau vent, il se charge en électricité." +277,25,9,"The Pokémon becomes charged when it is hit by a wind move, boosting the power of the next Electric-type move the Pokémon uses." +278,25,5,Le Pokémon prend sa Forme Super en quittant\nle combat. +278,25,9,The Pokémon transforms into its Hero Form when it switches out. +279,25,5,"Si un Oyacata allié est sur le terrain quand ce Pokémon\nrejoint le combat, ce dernier entre dans sa bouche et\ndevient son commandant." +279,25,9,"When the Pokémon enters a battle, it goes inside the mouth of an ally Dondozo if one is on the field. The Pokémon then issues commands from there." +280,25,5,"Si le Pokémon subit des dégâts, il se charge\nen électricité." +280,25,9,"The Pokémon becomes charged when it takes damage, boosting the power of the next Electric-type move the Pokémon uses." +281,25,5,"Quand le soleil brille ou que le Pokémon tient\nune capsule d’Énergie Booster, sa stat la plus élevée\naugmente." +281,25,9,Boosts the Pokémon's most proficient stat in harsh sunlight or if the Pokémon is holding Booster Energy. +282,25,5,"Quand un champ électrifié est actif ou que le Pokémon\ntient une capsule d’Énergie Booster, sa stat la plus élevée\naugmente." +282,25,9,Boosts the Pokémon's most proficient stat on Electric Terrain or if the Pokémon is holding Booster Energy. +283,25,5,Le corps en or pur et robuste du Pokémon l’immunise\ncontre les capacités de statut des autres Pokémon. +283,25,9,"A body of pure, solid gold gives the Pokémon full immunity to other Pokémon's status moves." +284,25,5,Le pouvoir de l’urne qui appelle le fléau affaiblit\nl’Attaque Spéciale de tous les autres Pokémon. +284,25,9,The power of the Pokémon's ruinous vessel lowers the Sp. Atk stats of all Pokémon except itself. +285,25,5,Le pouvoir de l’épée qui appelle le fléau affaiblit\nla Défense de tous les autres Pokémon. +285,25,9,The power of the Pokémon's ruinous sword lowers the Defense stats of all Pokémon except itself. +286,25,5,Le pouvoir du bois qui appelle le fléau affaiblit\nl’Attaque de tous les autres Pokémon. +286,25,9,The power of the Pokémon's ruinous wooden tablets lowers the Attack stats of all Pokémon except itself. +287,25,5,Le pouvoir des perles qui appellent le fléau affaiblit\nla Défense Spéciale de tous les autres Pokémon. +287,25,9,The power of the Pokémon's ruinous beads lowers the Sp. Def stats of all Pokémon except itself. +288,25,5,"Le Pokémon invoque le soleil quand il rejoint le combat.\nQuand le soleil brille, une pulsation primitive augmente\nson Attaque." +288,25,9,Turns the sunlight harsh when the Pokémon enters a battle. The ancient pulse thrumming through the Pokémon also boosts its Attack stat in harsh sunlight. +289,25,5,Le Pokémon crée un champ électrifié quand il rejoint\nle combat. Une machine du futur fait monter son Attaque\nSpéciale si un champ électrifié est actif. +289,25,9,Turns the ground into Electric Terrain when the Pokémon enters a battle. The futuristic engine within the Pokémon also boosts its Sp. Atk stat on Electric Terrain. +290,25,5,"Quand les stats de l’ennemi augmentent, le Pokémon\nen profite pour augmenter ses stats de la même manière." +290,25,9,"If an opponent's stat is boosted, the Pokémon seizes the opportunity to boost the same stat for itself." +291,25,5,"Quand le Pokémon mange une Baie, il la régurgite\nà la fin du tour suivant et la mange une nouvelle fois." +291,25,9,"When the Pokémon eats a Berry, it will regurgitate that Berry at the end of the next turn and eat it one more time." +292,25,5,Augmente la puissance des capacités tranchantes. +292,25,9,Powers up slicing moves. +293,25,5,"Quand le Pokémon entre sur le terrain, son Attaque\net son Attaque Spéciale augmentent légèrement\npour chaque allié mis K.O. auparavant." +293,25,9,"When the Pokémon enters a battle, its Attack and Sp. Atk stats are slightly boosted for each of the allies in its party that have already been defeated." +294,25,5,"Quand le Pokémon entre sur le terrain, il copie\nles changements de stats de son allié." +294,25,9,"When the Pokémon enters a battle, it copies an ally's stat changes." +295,25,5,"Quand le Pokémon est touché par une capacité\nphysique, il répand des pics toxiques dans le camp\nadverse." +295,25,9,Scatters poison spikes at the feet of the opposing team when the Pokémon takes damage from physical moves. +296,25,5,"Une étrange queue recouvre la tête du Pokémon,\nce qui empêche ce dernier et ses alliés d’être visés\npar une capacité prioritaire." +296,25,9,The mysterious tail covering the Pokémon's head makes opponents unable to use priority moves against the Pokémon or its allies. +297,25,5,"Si le Pokémon est touché par une capacité de type Sol,\nil regagne des PV au lieu de subir des dégâts." +297,25,9,"If hit by a Ground-type move, the Pokémon has its HP restored instead of taking damage." +298,25,5,"Le Pokémon agit toujours plus lentement quand il utilise\nune capacité de statut, mais il ignore les talents adverses." +298,25,9,"The Pokémon will always act more slowly when using status moves, but these moves will be unimpeded by the Ability of the target." +299,26,5,Le Pokémon ignore les changements d’Esquive des cibles\net peut toucher les Pokémon Spectre avec des capacités\nNormal ou Combat. Sa Précision ne peut pas baisser. 299,26,9,"The Pokémon ignores changes to opponents' evasiveness, its accuracy can't be lowered, and it can hit Ghost types with Normal-type and Fighting-type moves" -300,26,9,Lowers the evasion of opposing Pok�mon by 1 stage when first sent into battle -301,26,9,"When the Pok�mon enters a battle, it showers its ally with hospitality, restoring a small amount of the ally's HP" -302,26,9,The power of the Pok�mon's toxic chain may badly poison any target the Pok�mon hits with a move +300,26,5,"La première fois que le Pokémon entre au combat,\nune odeur de nectar sucré se répand sur le terrain,\nce qui baisse l’Esquive de l’adversaire." +300,26,9,Lowers the evasion of opposing Pokémon by 1 stage when first sent into battle +301,26,5,"Quand il rejoint le combat, ce Pokémon est aux petits\nsoins avec son allié et restaure quelques PV." +301,26,9,"When the Pokémon enters a battle, it showers its ally with hospitality, restoring a small amount of the ally's HP" +302,25,5,"Grâce aux pouvoirs de sa chaîne imprégnée de toxines,\nle Pokémon peut empoisonner gravement sa cible\nen la touchant avec une capacité." +302,26,9,The power of the Pokémon's toxic chain may badly poison any target the Pokémon hits with a move +303,25,5,"Le Pokémon fait briller le Masque en puisant dans ses souvenirs, ce qui augmente ses stats." +303,26,9,"The Pokémon's heart fills with memories, causing the Mask to shine and one of the Pokémon's stats to be boosted." +304,27,5,"Quand le Pokémon rejoint le combat, il absorbe\nl’énergie alentour et prend sa Forme Téracristal." +304,27,9,"When the Pokémon enters a battle, it absorbs the energy around itself and transforms into its Terastal Form." +305,27,5,"Grâce à sa carapace qui renferme l’énergie de tous\nles types, les capacités subies par ce Pokémon quand\nses PV sont au maximum ne sont pas très efficaces." +305,27,9,The Pokémon's shell contains the powers of each type. All damage-dealing moves that hit the Pokémon when its HP is full will not be very effective. +306,27,5,"Lorsque Terapagos prend sa Forme Stellaire, il utilise\nson pouvoir enfoui pour annuler les effets de la météo\net des champs actifs." +306,27,9,"When Terapagos changes into its Stellar Form, it uses its hidden powers to eliminate all effects of weather and terrain, reducing them to zero." +307,27,5,"Lorsque Pêchaminus empoisonne un Pokémon grâce\nà l’une de ses capacités, ce dernier devient également\nconfus." +307,27,9,Pokémon poisoned by Pecharunt's moves will also become confused. diff --git a/data/v2/csv/ability_names.csv b/data/v2/csv/ability_names.csv index ba3671f9..4db126d4 100644 --- a/data/v2/csv/ability_names.csv +++ b/data/v2/csv/ability_names.csv @@ -2002,7 +2002,7 @@ ability_id,local_language_id,name 201,1,ぎゃくじょう 201,3,발끈 201,4,怒火沖天 -201,5,Dracolère +201,5,Folle Furie 201,6,Wutausbruch 201,7,Cólera 201,8,Furore @@ -2889,7 +2889,7 @@ ability_id,local_language_id,name 299,1,しんがん 299,3,심안 299,4,心眼 -299,5,Œil Révélateur +299,5,Œil Révélateur 299,7,Ojo Mental 299,8,Occhio Interiore 299,9,Mind’s Eye diff --git a/data/v2/csv/encounter_condition_value_prose.csv b/data/v2/csv/encounter_condition_value_prose.csv index e861e414..39f9ad0d 100644 --- a/data/v2/csv/encounter_condition_value_prose.csv +++ b/data/v2/csv/encounter_condition_value_prose.csv @@ -159,5 +159,5 @@ encounter_condition_value_id,local_language_id,name 69,5,Après avoir parlé à 32 personnes dans les souterrains 70,9,Returned Machine Part to Power Plant 70,5,Après avoir rapporté la pièce de machine à la centrale -10,9,Have an Event Arceus in the party -10,5,En ayant un Arceus événementiel dans l’équipe +71,9,Have an Event Arceus in the party +71,5,En ayant un Arceus événementiel dans l’équipe diff --git a/data/v2/csv/encounter_method_prose.csv b/data/v2/csv/encounter_method_prose.csv index 0db8c54f..2dd0f0f0 100644 --- a/data/v2/csv/encounter_method_prose.csv +++ b/data/v2/csv/encounter_method_prose.csv @@ -61,9 +61,9 @@ encounter_method_id,local_language_id,name 22,9,Headbutting a low encounter rate tree 22,5,En utilisant Coup d’Boule sur un arbre à taux bas 23,9,Headbutting a normal encounter rate tree -22,5,En utilisant Coup d’Boule sur un arbre à taux normal +23,5,En utilisant Coup d’Boule sur un arbre à taux normal 24,9,Headbutting a high encounter rate tree -22,5,En utilisant Coup d’Boule sur un arbre à taux élevé +24,5,En utilisant Coup d’Boule sur un arbre à taux élevé 25,9,Using the Squirt Bottle on a Sudowoodo 25,5,En utilisant la Carapuce à O sur Simularbre 26,9,Using the Wailmer Pail on a Sudowoodo diff --git a/data/v2/csv/encounter_methods.csv b/data/v2/csv/encounter_methods.csv index dddf7c7d..e0089172 100644 --- a/data/v2/csv/encounter_methods.csv +++ b/data/v2/csv/encounter_methods.csv @@ -30,3 +30,9 @@ id,identifier,order 29,roaming-water,29 30,devon-scope,30 31,feebas-tile-fishing,31 +32,island-scan,32 +33,sos-encounter,33 +34,bubbling-spots,34 +35,berry-piles,35 +36,npc-trade,36 +37,sos-from-bubbling-spot,37 diff --git a/data/v2/csv/encounter_slots.csv b/data/v2/csv/encounter_slots.csv index e026010e..8e9d4e58 100644 --- a/data/v2/csv/encounter_slots.csv +++ b/data/v2/csv/encounter_slots.csv @@ -711,3 +711,430 @@ id,version_group_id,encounter_method_id,slot,rarity 710,6,30,1,100 711,5,31,1,50 712,6,31,1,50 +713,17,18,1,100 +714,17,32,1,100 +715,17,1,1,50 +716,17,1,2,30 +717,17,1,3,30 +718,17,1,4,15 +719,17,1,5,5 +720,18,34,1,40 +721,18,34,2,35 +722,18,34,3,25 +723,18,32,1,100 +724,18,33,1,15 +725,18,33,2,15 +726,18,33,3,15 +727,18,37,1,15 +728,18,37,2,15 +729,18,4,1,55 +730,18,4,2,40 +731,18,4,3,5 +732,18,1,1,50 +733,18,1,2,30 +734,18,1,3,20 +735,18,1,4,20 +736,18,1,5,20 +737,18,1,6,15 +738,18,1,7,15 +739,17,1,1,30 +740,17,1,4,20 +741,17,1,5,20 +742,17,1,6,20 +743,18,1,1,20 +744,18,1,2,20 +745,18,1,7,10 +746,18,1,8,10 +747,18,1,9,5 +748,17,5,1,40 +749,17,5,2,40 +750,17,5,3,20 +751,17,1,2,50 +752,17,1,4,30 +753,17,1,5,30 +754,17,1,7,20 +755,17,33,1,15 +756,17,33,2,15 +757,17,33,3,15 +758,17,33,4,15 +759,17,33,5,15 +760,17,1,3,20 +761,17,1,5,10 +762,17,1,6,10 +763,17,1,7,10 +764,17,1,8,10 +765,17,1,9,5 +766,18,1,1,30 +767,18,1,6,10 +768,18,20,1,100 +769,18,20,2,100 +770,18,1,3,10 +771,18,1,4,10 +772,17,1,5,15 +773,18,18,1,100 +774,18,18,2,100 +775,18,18,3,100 +776,18,1,1,35 +777,18,1,2,35 +778,18,1,3,35 +779,18,1,4,30 +780,17,35,1,100 +781,17,34,1,80 +782,17,34,2,20 +783,18,35,1,100 +784,18,34,1,50 +785,18,34,2,30 +786,18,34,3,20 +787,18,1,3,30 +788,17,1,1,20 +789,17,1,2,20 +790,17,1,9,10 +791,17,1,1,40 +792,17,1,4,10 +793,17,4,1,79 +794,17,4,2,20 +795,17,4,3,1 +796,17,34,1,50 +797,17,34,2,30 +798,17,34,3,20 +799,17,37,1,15 +800,18,5,1,30 +801,18,5,2,30 +802,18,5,3,20 +803,18,5,4,20 +804,18,1,5,10 +805,18,34,1,35 +806,18,34,4,10 +807,18,33,4,15 +808,18,37,3,15 +809,18,4,1,50 +810,18,4,4,5 +811,18,5,1,40 +812,18,5,2,40 +813,17,18,2,100 +814,17,18,3,100 +815,17,18,4,100 +816,17,1,1,100 +817,17,33,1,10 +818,17,33,2,10 +819,17,33,3,100 +820,18,33,1,10 +821,18,33,2,10 +822,18,33,3,100 +823,18,1,7,5 +824,17,33,3,1 +825,18,33,3,1 +826,18,1,1,40 +827,18,1,6,20 +828,18,33,5,15 +829,17,36,1,100 +830,18,36,1,100 +831,17,34,1,70 +832,17,34,2,70 +833,17,34,3,30 +834,18,34,3,30 +835,18,34,4,15 +836,18,34,5,5 +837,18,34,6,5 +838,18,1,9,10 +839,18,1,10,10 +840,18,1,11,10 +841,18,34,1,70 +842,17,1,1,49 +843,17,1,6,1 +844,18,1,3,29 +845,18,1,5,1 +846,17,1,2,25 +847,18,1,2,25 +848,18,1,10,5 +849,17,34,1,100 +850,17,1,6,9 +851,17,1,7,1 +852,18,34,1,100 +853,18,1,6,9 +854,18,1,7,1 +855,17,5,1,30 +856,17,5,2,30 +857,17,5,4,20 +858,18,34,2,45 +859,18,34,3,35 +860,18,34,4,20 +861,18,18,4,100 +862,18,18,5,100 +863,18,18,6,100 +864,18,18,7,100 +865,18,18,8,100 +866,18,18,9,100 +867,18,18,10,100 +868,17,34,1,60 +869,17,20,1,100 +870,17,1,6,5 +871,18,34,4,5 +872,18,33,6,15 +873,18,4,2,30 +874,18,4,3,15 +875,18,1,4,15 +876,18,1,5,15 +877,17,4,1,70 +878,17,4,2,15 +879,17,4,3,10 +880,17,4,4,5 +881,18,4,2,20 +882,18,4,4,15 +883,18,4,1,49 +884,18,4,3,10 +885,18,4,4,1 +886,18,5,2,25 +887,18,5,5,5 +888,18,33,7,15 +889,17,34,2,45 +890,17,34,3,5 +891,17,37,2,15 +892,17,4,2,29 +893,17,5,3,40 +894,18,34,2,25 +895,18,4,1,44 +896,18,4,3,25 +897,18,5,3,40 +898,18,1,7,20 +899,17,1,1,70 +900,17,1,3,100 +901,18,1,1,60 +902,17,33,1,11 +903,18,33,1,11 +904,17,34,3,10 +905,17,37,1,10 +906,17,37,2,10 +907,17,37,3,1 +908,18,34,2,20 +909,18,34,3,10 +910,18,37,1,11 +911,18,37,2,10 +912,18,37,3,1 +913,18,37,4,15 +914,18,37,5,15 +915,18,37,6,15 +916,18,1,1,70 +917,17,1,1,80 +918,18,5,3,30 +919,18,5,4,10 +920,18,1,2,40 +921,18,1,3,40 +922,18,34,2,15 +923,18,34,3,15 +924,18,34,5,15 +925,18,4,1,25 +926,18,4,2,25 +927,18,4,5,5 +928,18,4,6,5 +929,18,5,2,20 +930,17,1,1,25 +931,17,1,8,5 +932,18,1,1,25 +933,18,4,1,35 +934,18,4,2,35 +935,18,1,1,39 +936,18,1,4,1 +937,17,1,7,5 +938,18,33,8,15 +939,18,33,9,15 +940,18,1,1,21 +941,18,1,11,4 +942,18,1,12,1 +943,17,33,6,15 +944,17,33,7,15 +945,17,33,8,15 +946,17,33,9,15 +947,17,33,4,1 +948,17,4,1,60 +949,17,4,2,40 +950,17,1,9,100 +951,18,33,4,1 +952,18,4,1,40 +953,17,1,5,9 +954,17,1,7,100 +955,17,34,1,40 +956,17,34,4,20 +957,17,4,1,78 +958,17,4,4,1 +959,18,34,6,15 +960,18,34,7,15 +961,18,34,8,5 +962,17,1,4,100 +963,18,33,2,11 +964,17,1,2,40 +965,17,1,3,5 +966,17,1,4,5 +967,18,1,4,5 +968,18,1,5,5 +969,17,34,2,50 +970,17,4,1,99 +971,17,4,2,1 +972,18,34,1,60 +973,18,34,2,40 +974,18,4,1,90 +975,18,4,2,10 +976,17,18,1,7 +977,17,18,2,7 +978,17,18,3,7 +979,17,18,4,4 +980,17,18,5,4 +981,17,18,6,4 +982,17,18,7,4 +983,17,18,8,4 +984,17,18,9,4 +985,17,18,10,4 +986,17,18,11,4 +987,17,18,12,4 +988,17,18,13,4 +989,17,18,14,4 +990,17,18,15,4 +991,17,18,16,4 +992,17,18,17,4 +993,17,18,18,2 +994,17,18,19,2 +995,17,18,20,2 +996,17,18,21,2 +997,17,18,22,2 +998,17,18,23,2 +999,17,18,24,2 +1000,17,18,25,2 +1001,17,18,18,4 +1002,18,18,1,7 +1003,18,18,2,7 +1004,18,18,3,7 +1005,18,18,4,4 +1006,18,18,5,4 +1007,18,18,6,4 +1008,18,18,7,4 +1009,18,18,8,4 +1010,18,18,9,4 +1011,18,18,10,4 +1012,18,18,11,4 +1013,18,18,12,4 +1014,18,18,13,4 +1015,18,18,14,4 +1016,18,18,15,4 +1017,18,18,16,4 +1018,18,18,17,4 +1019,18,18,18,2 +1020,18,18,19,2 +1021,18,18,20,2 +1022,18,18,21,2 +1023,18,18,22,2 +1024,18,18,23,2 +1025,18,18,24,2 +1026,18,18,25,2 +1027,18,18,18,4 +1028,17,18,1,8 +1029,17,18,2,8 +1030,17,18,3,5 +1031,17,18,4,5 +1032,17,18,5,5 +1033,17,18,6,5 +1034,17,18,7,5 +1035,17,18,8,5 +1036,17,18,9,5 +1037,17,18,10,5 +1038,17,18,11,5 +1039,17,18,12,5 +1040,17,18,13,5 +1041,17,18,14,5 +1042,17,18,15,5 +1043,17,18,16,3 +1044,17,18,17,3 +1045,17,18,18,3 +1046,17,18,19,3 +1047,17,18,20,3 +1048,17,18,21,3 +1049,18,18,1,8 +1050,18,18,2,5 +1051,18,18,3,5 +1052,18,18,4,5 +1053,18,18,5,5 +1054,18,18,6,5 +1055,18,18,7,5 +1056,18,18,8,5 +1057,18,18,9,5 +1058,18,18,10,5 +1059,18,18,11,5 +1060,18,18,12,5 +1061,18,18,13,5 +1062,18,18,14,5 +1063,18,18,15,5 +1064,18,18,16,3 +1065,18,18,17,3 +1066,18,18,18,3 +1067,18,18,19,3 +1068,18,18,20,3 +1069,18,18,21,3 +1070,17,18,3,8 +1071,17,18,4,8 +1072,17,18,5,8 +1073,17,18,6,6 +1074,17,18,7,6 +1075,17,18,8,6 +1076,17,18,9,6 +1077,17,18,10,6 +1078,17,18,11,6 +1079,17,18,12,6 +1080,17,18,13,6 +1081,17,18,14,3 +1082,17,18,15,3 +1083,18,18,2,8 +1084,18,18,3,8 +1085,18,18,4,8 +1086,18,18,5,8 +1087,18,18,6,8 +1088,18,18,15,3 +1089,17,34,2,40 +1090,18,34,4,40 +1091,18,34,5,30 +1092,18,34,6,20 +1093,18,34,7,10 +1094,17,37,3,15 +1095,17,37,4,15 +1096,17,4,1,59 +1097,18,4,1,59 +1098,18,4,3,1 +1099,18,1,8,100 +1100,17,34,3,70 +1101,17,34,4,30 +1102,17,34,5,30 +1103,18,34,2,70 +1104,18,34,3,50 +1105,18,34,4,30 +1106,17,34,1,90 +1107,17,34,2,10 +1108,17,34,3,50 +1109,17,34,4,40 +1110,17,34,5,10 +1111,17,5,2,25 +1112,17,5,5,5 +1113,18,1,3,15 +1114,17,5,1,80 +1115,17,5,2,20 +1116,18,5,1,55 +1117,18,5,3,10 +1118,18,5,4,5 +1119,17,1,6,100 +1120,17,1,3,15 +1121,18,20,3,100 +1122,18,20,4,100 +1123,18,20,5,100 +1124,18,20,6,100 +1125,18,20,7,15 +1126,18,20,8,15 +1127,18,20,9,15 +1128,18,20,10,15 +1129,18,20,11,15 +1130,18,20,7,100 +1131,18,20,8,100 +1132,18,20,12,15 +1133,18,20,13,15 +1134,18,4,1,45 +1135,18,5,1,80 +1136,18,1,8,5 +1137,17,1,3,24 +1138,17,1,5,1 +1139,18,1,3,24 diff --git a/data/v2/csv/encounters.csv b/data/v2/csv/encounters.csv index ed488a02..0965f74b 100644 --- a/data/v2/csv/encounters.csv +++ b/data/v2/csv/encounters.csv @@ -57029,3 +57029,4098 @@ id,version_id,location_area_id,encounter_slot_id,pokemon_id,min_level,max_level 62508,9,388,566,101,30,30 62509,7,388,565,101,30,30 62510,7,388,565,101,30,30 +62511,28,1067,713,772,40,40 +62512,27,1067,713,772,40,40 +62513,28,1068,714,679,23,23 +62514,28,1068,715,278,20,23 +62515,28,1068,716,735,20,23 +62516,28,1068,717,10092,20,23 +62517,28,1068,718,299,20,23 +62518,28,1068,719,759,20,23 +62519,27,1068,714,679,23,23 +62520,27,1068,715,278,20,23 +62521,27,1068,716,735,20,23 +62522,27,1068,717,10092,20,23 +62523,27,1068,718,299,20,23 +62524,27,1068,719,759,20,23 +62525,30,1068,720,129,10,29 +62526,30,1068,721,170,10,29 +62527,30,1068,722,746,10,29 +62528,30,1068,723,679,24,24 +62529,30,1068,724,178,21,24 +62530,30,1068,725,130,10,24 +62531,30,1068,726,171,10,24 +62532,30,1068,727,130,10,29 +62533,30,1068,728,171,10,29 +62534,30,1068,729,129,10,24 +62535,30,1068,730,746,10,24 +62536,30,1068,731,170,10,24 +62537,30,1068,732,278,21,24 +62538,30,1068,733,278,21,24 +62539,30,1068,734,177,21,24 +62540,30,1068,735,735,21,24 +62541,30,1068,736,10092,21,24 +62542,30,1068,737,299,21,24 +62543,30,1068,738,759,21,24 +62544,29,1068,720,129,10,29 +62545,29,1068,721,170,10,29 +62546,29,1068,722,746,10,29 +62547,29,1068,723,679,24,24 +62548,29,1068,724,178,21,24 +62549,29,1068,725,130,10,24 +62550,29,1068,726,171,10,24 +62551,29,1068,727,130,10,29 +62552,29,1068,728,171,10,29 +62553,29,1068,729,129,10,24 +62554,29,1068,730,746,10,24 +62555,29,1068,731,170,10,24 +62556,29,1068,732,278,21,24 +62557,29,1068,733,278,21,24 +62558,29,1068,734,177,21,24 +62559,29,1068,735,735,21,24 +62560,29,1068,736,10092,21,24 +62561,29,1068,737,299,21,24 +62562,29,1068,738,759,21,24 +62563,28,1035,739,731,2,3 +62564,28,1035,716,734,2,3 +62565,28,1035,717,10091,2,3 +62566,28,1035,740,10,2,3 +62567,28,1035,741,165,2,3 +62568,28,1035,742,167,2,3 +62569,27,1035,739,731,2,3 +62570,27,1035,716,734,2,3 +62571,27,1035,717,10091,2,3 +62572,27,1035,740,10,2,3 +62573,27,1035,741,165,2,3 +62574,27,1035,742,167,2,3 +62575,30,1035,724,25,2,3 +62576,30,1035,725,440,2,3 +62577,30,1035,743,165,2,3 +62578,30,1035,744,167,2,3 +62579,30,1035,734,731,2,3 +62580,30,1035,735,734,2,3 +62581,30,1035,736,10091,2,3 +62582,30,1035,737,736,2,3 +62583,30,1035,745,10,2,3 +62584,30,1035,746,427,2,3 +62585,30,1035,747,172,2,3 +62586,29,1035,724,25,2,3 +62587,29,1035,725,440,2,3 +62588,29,1035,743,165,2,3 +62589,29,1035,744,167,2,3 +62590,29,1035,734,731,2,3 +62591,29,1035,735,734,2,3 +62592,29,1035,736,10091,2,3 +62593,29,1035,737,736,2,3 +62594,29,1035,745,10,2,3 +62595,29,1035,746,427,2,3 +62596,29,1035,747,172,2,3 +62597,28,1036,748,72,15,18 +62598,28,1036,749,456,15,18 +62599,28,1036,750,278,15,18 +62600,28,1036,715,81,6,8 +62601,28,1036,751,278,5,7 +62602,28,1036,717,734,5,7 +62603,28,1036,752,10107,6,8 +62604,28,1036,753,10091,5,7 +62605,28,1036,742,79,5,7 +62606,28,1036,754,10112,6,8 +62607,27,1036,748,72,15,18 +62608,27,1036,749,456,15,18 +62609,27,1036,750,278,15,18 +62610,27,1036,715,81,6,8 +62611,27,1036,751,278,5,7 +62612,27,1036,717,734,5,7 +62613,27,1036,752,10107,6,8 +62614,27,1036,753,10091,5,7 +62615,27,1036,742,79,5,7 +62616,27,1036,754,10112,6,8 +62617,30,1036,732,278,4,7 +62618,30,1036,733,686,4,7 +62619,30,1036,734,79,4,7 +62620,29,1036,732,278,4,7 +62621,29,1036,733,686,4,7 +62622,29,1036,734,79,4,7 +62623,28,1037,755,10,10,13 +62624,28,1037,756,143,10,13 +62625,28,1037,757,185,10,13 +62626,28,1037,758,440,10,13 +62627,28,1037,759,440,10,13 +62628,28,1037,739,734,10,13 +62629,28,1037,716,10091,10,13 +62630,28,1037,760,731,10,13 +62631,28,1037,718,438,10,13 +62632,28,1037,761,10,10,13 +62633,28,1037,762,11,10,13 +62634,28,1037,763,165,10,13 +62635,28,1037,764,167,10,13 +62636,28,1037,765,446,10,13 +62637,27,1037,755,10,10,13 +62638,27,1037,756,143,10,13 +62639,27,1037,757,185,10,13 +62640,27,1037,758,440,10,13 +62641,27,1037,759,440,10,13 +62642,27,1037,739,734,10,13 +62643,27,1037,716,10091,10,13 +62644,27,1037,760,731,10,13 +62645,27,1037,718,438,10,13 +62646,27,1037,761,10,10,13 +62647,27,1037,762,11,10,13 +62648,27,1037,763,165,10,13 +62649,27,1037,764,167,10,13 +62650,27,1037,765,446,10,13 +62651,30,1037,766,438,11,14 +62652,30,1037,744,19,11,14 +62653,30,1037,734,731,11,14 +62654,30,1037,735,734,11,14 +62655,30,1037,736,744,11,14 +62656,30,1037,767,446,11,14 +62657,29,1037,766,438,11,14 +62658,29,1037,744,19,11,14 +62659,29,1037,734,731,11,14 +62660,29,1037,735,734,11,14 +62661,29,1037,736,744,11,14 +62662,29,1037,767,446,11,14 +62663,30,1038,768,92,19,19 +62664,30,1038,769,425,19,19 +62665,30,1038,732,10107,5,8 +62666,30,1038,733,570,5,8 +62667,30,1038,770,81,5,8 +62668,30,1038,771,10112,5,8 +62669,29,1038,768,92,19,19 +62670,29,1038,769,425,19,19 +62671,29,1038,732,10107,5,8 +62672,29,1038,733,570,5,8 +62673,29,1038,770,81,5,8 +62674,29,1038,771,10112,5,8 +62675,28,1039,755,10,3,5 +62676,28,1039,756,25,3,5 +62677,28,1039,757,440,3,5 +62678,28,1039,739,734,3,5 +62679,28,1039,716,10091,3,5 +62680,28,1039,760,731,3,5 +62681,28,1039,718,165,3,5 +62682,28,1039,772,167,3,5 +62683,28,1039,762,10,3,5 +62684,28,1039,763,11,3,5 +62685,28,1039,764,736,3,5 +62686,28,1039,765,172,3,5 +62687,27,1039,755,10,3,5 +62688,27,1039,756,25,3,5 +62689,27,1039,757,440,3,5 +62690,27,1039,739,734,3,5 +62691,27,1039,716,10091,3,5 +62692,27,1039,760,731,3,5 +62693,27,1039,718,165,3,5 +62694,27,1039,772,167,3,5 +62695,27,1039,762,10,3,5 +62696,27,1039,763,11,3,5 +62697,27,1039,764,736,3,5 +62698,27,1039,765,172,3,5 +62699,30,1039,773,722,5,5 +62700,30,1039,774,725,5,5 +62701,30,1039,775,728,5,5 +62702,30,1039,776,10,2,3 +62703,30,1039,777,734,2,3 +62704,30,1039,778,10091,2,3 +62705,30,1039,779,427,2,3 +62706,29,1039,773,722,5,5 +62707,29,1039,774,725,5,5 +62708,29,1039,775,728,5,5 +62709,29,1039,776,10,2,3 +62710,29,1039,777,734,2,3 +62711,29,1039,778,10091,2,3 +62712,29,1039,779,427,2,3 +62713,28,1055,780,739,24,27 +62714,28,1055,781,22,24,27 +62715,28,1055,782,227,24,27 +62716,28,1055,714,397,27,27 +62717,28,1055,755,675,24,27 +62718,28,1055,739,22,24,27 +62719,28,1055,716,735,24,27 +62720,28,1055,717,10092,24,27 +62721,28,1055,740,166,24,27 +62722,28,1055,741,168,24,27 +62723,28,1055,762,227,24,27 +62724,28,1055,763,674,24,27 +62725,27,1055,780,739,24,27 +62726,27,1055,781,22,24,27 +62727,27,1055,782,227,24,27 +62728,27,1055,714,397,27,27 +62729,27,1055,755,675,24,27 +62730,27,1055,739,22,24,27 +62731,27,1055,716,735,24,27 +62732,27,1055,717,10092,24,27 +62733,27,1055,740,166,24,27 +62734,27,1055,741,168,24,27 +62735,27,1055,762,227,24,27 +62736,27,1055,763,674,24,27 +62737,30,1055,783,739,26,29 +62738,30,1055,784,22,26,29 +62739,30,1055,785,204,26,29 +62740,30,1055,786,227,26,29 +62741,30,1055,723,18,29,29 +62742,30,1055,724,675,26,29 +62743,30,1055,766,22,26,29 +62744,30,1055,733,735,26,29 +62745,30,1055,787,10092,26,29 +62746,30,1055,735,166,26,29 +62747,30,1055,736,168,26,29 +62748,30,1055,767,227,26,29 +62749,30,1055,745,674,26,29 +62750,29,1055,783,739,26,29 +62751,29,1055,784,22,26,29 +62752,29,1055,785,204,26,29 +62753,29,1055,786,227,26,29 +62754,29,1055,723,18,29,29 +62755,29,1055,724,675,26,29 +62756,29,1055,766,22,26,29 +62757,29,1055,733,735,26,29 +62758,29,1055,787,10092,26,29 +62759,29,1055,735,166,26,29 +62760,29,1055,736,168,26,29 +62761,29,1055,767,227,26,29 +62762,29,1055,745,674,26,29 +62763,28,1056,714,288,27,27 +62764,28,1056,755,675,24,27 +62765,28,1056,788,166,24,27 +62766,28,1056,789,168,24,27 +62767,28,1056,760,674,24,27 +62768,28,1056,740,732,24,27 +62769,28,1056,741,735,24,27 +62770,28,1056,742,10092,24,27 +62771,28,1056,763,46,24,27 +62772,28,1056,764,755,24,27 +62773,28,1056,790,775,24,27 +62774,27,1056,714,288,27,27 +62775,27,1056,755,675,24,27 +62776,27,1056,788,166,24,27 +62777,27,1056,789,168,24,27 +62778,27,1056,760,674,24,27 +62779,27,1056,740,732,24,27 +62780,27,1056,741,735,24,27 +62781,27,1056,742,10092,24,27 +62782,27,1056,763,46,24,27 +62783,27,1056,764,755,24,27 +62784,27,1056,790,775,24,27 +62785,30,1056,723,391,29,29 +62786,30,1056,724,675,26,29 +62787,30,1056,725,733,26,29 +62788,30,1056,766,775,26,29 +62789,30,1056,744,166,26,29 +62790,30,1056,734,168,26,29 +62791,30,1056,735,674,26,29 +62792,30,1056,736,732,26,29 +62793,30,1056,767,47,26,29 +62794,30,1056,745,756,26,29 +62795,29,1056,723,391,29,29 +62796,29,1056,724,675,26,29 +62797,29,1056,725,733,26,29 +62798,29,1056,766,775,26,29 +62799,29,1056,744,166,26,29 +62800,29,1056,734,168,26,29 +62801,29,1056,735,674,26,29 +62802,29,1056,736,732,26,29 +62803,29,1056,767,47,26,29 +62804,29,1056,745,756,26,29 +62805,28,1057,780,739,27,30 +62806,28,1057,755,113,26,29 +62807,28,1057,756,125,26,29 +62808,28,1057,791,10109,26,29 +62809,28,1057,716,749,26,29 +62810,28,1057,760,324,26,29 +62811,28,1057,792,239,26,29 +62812,27,1057,780,739,27,30 +62813,27,1057,755,113,26,29 +62814,27,1057,756,125,26,29 +62815,27,1057,791,10109,26,29 +62816,27,1057,716,749,26,29 +62817,27,1057,760,324,26,29 +62818,27,1057,792,239,26,29 +62819,30,1057,724,750,29,32 +62820,30,1057,766,749,29,32 +62821,30,1057,733,10110,29,32 +62822,30,1057,734,310,29,32 +62823,30,1057,735,324,29,32 +62824,29,1057,724,750,29,32 +62825,29,1057,766,749,29,32 +62826,29,1057,733,10110,29,32 +62827,29,1057,734,229,29,32 +62828,29,1057,735,324,29,32 +62829,28,1058,755,130,10,30 +62830,28,1058,793,129,10,30 +62831,28,1058,794,746,10,30 +62832,28,1058,795,779,10,30 +62833,27,1058,755,130,10,30 +62834,27,1058,793,129,10,30 +62835,27,1058,794,746,10,30 +62836,27,1058,795,779,10,30 +62837,30,1058,724,130,10,33 +62838,30,1058,729,129,10,33 +62839,30,1058,730,746,10,33 +62840,30,1058,731,779,10,33 +62841,29,1058,724,130,10,33 +62842,29,1058,729,129,10,33 +62843,29,1058,730,746,10,33 +62844,29,1058,731,779,10,33 +62845,28,1059,796,129,10,31 +62846,28,1059,797,746,10,31 +62847,28,1059,798,779,10,31 +62848,28,1059,755,130,10,31 +62849,28,1059,799,130,10,31 +62850,28,1059,793,129,10,31 +62851,28,1059,794,746,10,31 +62852,28,1059,795,779,10,31 +62853,28,1059,748,72,28,31 +62854,28,1059,749,456,28,31 +62855,28,1059,750,279,28,31 +62856,28,1059,739,279,28,31 +62857,28,1059,716,735,28,31 +62858,28,1059,717,10092,28,31 +62859,28,1059,740,361,28,31 +62860,28,1059,761,359,28,31 +62861,28,1059,762,10101,28,31 +62862,27,1059,796,129,10,31 +62863,27,1059,797,746,10,31 +62864,27,1059,798,779,10,31 +62865,27,1059,755,130,10,31 +62866,27,1059,799,130,10,31 +62867,27,1059,793,129,10,31 +62868,27,1059,794,746,10,31 +62869,27,1059,795,779,10,31 +62870,27,1059,748,72,28,31 +62871,27,1059,749,456,28,31 +62872,27,1059,750,279,28,31 +62873,27,1059,739,279,28,31 +62874,27,1059,716,735,28,31 +62875,27,1059,717,10092,28,31 +62876,27,1059,740,361,28,31 +62877,27,1059,761,359,28,31 +62878,27,1059,762,10103,28,31 +62879,30,1059,720,129,10,39 +62880,30,1059,721,779,10,39 +62881,30,1059,722,746,10,39 +62882,30,1059,768,592,34,34 +62883,30,1059,724,130,10,34 +62884,30,1059,727,130,10,39 +62885,30,1059,729,129,10,34 +62886,30,1059,730,746,10,34 +62887,30,1059,731,779,10,34 +62888,30,1059,800,73,30,33 +62889,30,1059,801,456,30,33 +62890,30,1059,802,279,30,33 +62891,30,1059,803,592,30,33 +62892,30,1059,766,279,30,33 +62893,30,1059,733,735,30,33 +62894,30,1059,787,10092,30,33 +62895,30,1059,735,361,30,33 +62896,30,1059,804,359,30,33 +62897,30,1059,767,10101,30,33 +62898,29,1059,720,129,10,39 +62899,29,1059,721,779,10,39 +62900,29,1059,722,746,10,39 +62901,29,1059,768,592,34,34 +62902,29,1059,724,130,10,34 +62903,29,1059,727,130,10,39 +62904,29,1059,729,129,10,34 +62905,29,1059,730,746,10,34 +62906,29,1059,731,779,10,34 +62907,29,1059,800,73,30,33 +62908,29,1059,801,456,30,33 +62909,29,1059,802,279,30,33 +62910,29,1059,803,592,30,33 +62911,29,1059,766,279,30,33 +62912,29,1059,733,735,30,33 +62913,29,1059,787,10092,30,33 +62914,29,1059,735,361,30,33 +62915,29,1059,804,359,30,33 +62916,29,1059,767,10103,30,33 +62917,28,1061,713,137,30,30 +62918,27,1061,713,137,30,30 +62919,30,1061,773,137,30,30 +62920,29,1061,773,137,30,30 +62921,28,1060,780,739,30,33 +62922,28,1060,796,129,10,33 +62923,28,1060,797,746,10,33 +62924,28,1060,798,779,10,33 +62925,28,1060,755,130,10,33 +62926,28,1060,799,130,10,33 +62927,28,1060,793,129,10,33 +62928,28,1060,794,746,10,33 +62929,28,1060,795,779,10,33 +62930,28,1060,748,72,30,33 +62931,28,1060,749,456,30,33 +62932,28,1060,750,279,30,33 +62933,28,1060,715,279,30,33 +62934,28,1060,716,735,30,33 +62935,28,1060,717,10092,30,33 +62936,28,1060,740,79,30,33 +62937,27,1060,780,739,30,33 +62938,27,1060,796,129,10,33 +62939,27,1060,797,746,10,33 +62940,27,1060,798,779,10,33 +62941,27,1060,755,130,10,33 +62942,27,1060,799,130,10,33 +62943,27,1060,793,129,10,33 +62944,27,1060,794,746,10,33 +62945,27,1060,795,779,10,33 +62946,27,1060,748,72,30,33 +62947,27,1060,749,456,30,33 +62948,27,1060,750,279,30,33 +62949,27,1060,715,279,30,33 +62950,27,1060,716,735,30,33 +62951,27,1060,717,10092,30,33 +62952,27,1060,740,79,30,33 +62953,30,1060,805,366,10,40 +62954,30,1060,721,779,10,40 +62955,30,1060,786,129,10,40 +62956,30,1060,806,746,10,40 +62957,30,1060,768,769,30,30 +62958,30,1060,724,457,32,35 +62959,30,1060,725,130,10,35 +62960,30,1060,726,367,10,35 +62961,30,1060,807,368,10,35 +62962,30,1060,727,130,10,40 +62963,30,1060,728,367,10,40 +62964,30,1060,808,368,10,40 +62965,30,1060,809,129,10,35 +62966,30,1060,730,746,10,35 +62967,30,1060,731,366,10,35 +62968,30,1060,810,779,10,35 +62969,30,1060,811,73,32,35 +62970,30,1060,812,456,32,35 +62971,30,1060,802,279,32,35 +62972,30,1060,732,279,30,33 +62973,30,1060,733,735,30,33 +62974,30,1060,787,10092,30,33 +62975,30,1060,735,79,30,33 +62976,29,1060,805,366,10,40 +62977,29,1060,721,779,10,40 +62978,29,1060,786,129,10,40 +62979,29,1060,806,746,10,40 +62980,29,1060,724,457,32,35 +62981,29,1060,725,130,10,35 +62982,29,1060,726,367,10,35 +62983,29,1060,807,368,10,35 +62984,29,1060,727,130,10,40 +62985,29,1060,728,367,10,40 +62986,29,1060,808,368,10,40 +62987,29,1060,809,129,10,35 +62988,29,1060,730,746,10,35 +62989,29,1060,731,366,10,35 +62990,29,1060,810,779,10,35 +62991,29,1060,811,73,32,35 +62992,29,1060,812,456,32,35 +62993,29,1060,802,279,32,35 +62994,29,1060,732,279,30,33 +62995,29,1060,733,735,30,33 +62996,29,1060,787,10092,30,33 +62997,29,1060,735,79,30,33 +62998,30,1063,732,279,32,35 +62999,30,1063,733,735,32,35 +63000,30,1063,787,10092,32,35 +63001,30,1063,735,79,32,35 +63002,29,1063,732,279,32,35 +63003,29,1063,733,735,32,35 +63004,29,1063,787,10092,32,35 +63005,29,1063,735,79,32,35 +63006,28,1062,780,739,30,33 +63007,28,1062,713,718,50,50 +63008,28,1062,813,718,30,30 +63009,28,1062,814,10181,50,50 +63010,28,1062,815,10181,30,30 +63011,28,1062,714,578,33,33 +63012,28,1062,715,279,30,33 +63013,28,1062,716,735,30,33 +63014,28,1062,717,10092,30,33 +63015,28,1062,740,79,30,33 +63016,27,1062,780,739,30,33 +63017,27,1062,713,718,50,50 +63018,27,1062,813,718,30,30 +63019,27,1062,814,10181,50,50 +63020,27,1062,815,10181,30,30 +63021,27,1062,714,578,33,33 +63022,27,1062,715,279,30,33 +63023,27,1062,716,735,30,33 +63024,27,1062,717,10092,30,33 +63025,27,1062,740,79,30,33 +63026,30,1062,783,739,32,35 +63027,30,1062,773,10181,63,63 +63028,30,1062,723,394,35,35 +63029,29,1062,783,739,32,35 +63030,29,1062,773,10181,63,63 +63031,29,1062,723,394,35,35 +63032,30,1064,766,279,32,35 +63033,30,1064,733,559,32,35 +63034,30,1064,734,79,32,35 +63035,30,1064,735,735,32,35 +63036,30,1064,736,10092,32,35 +63037,29,1064,766,279,32,35 +63038,29,1064,733,559,32,35 +63039,29,1064,734,79,32,35 +63040,29,1064,735,735,32,35 +63041,29,1064,736,10092,32,35 +63042,27,1164,816,798,60,60 +63043,28,1065,817,351,31,34 +63044,28,1065,818,704,31,34 +63045,28,1065,819,351,31,34 +63046,28,1065,758,675,31,34 +63047,28,1065,739,22,31,34 +63048,28,1065,716,735,31,34 +63049,28,1065,717,10092,31,34 +63050,28,1065,740,10110,31,34 +63051,28,1065,761,227,31,34 +63052,28,1065,762,674,31,34 +63053,27,1065,817,351,31,34 +63054,27,1065,818,704,31,34 +63055,27,1065,819,351,31,34 +63056,27,1065,758,675,31,34 +63057,27,1065,739,22,31,34 +63058,27,1065,716,735,31,34 +63059,27,1065,717,10092,31,34 +63060,27,1065,740,10110,31,34 +63061,27,1065,761,227,31,34 +63062,27,1065,762,674,31,34 +63063,30,1065,820,351,33,36 +63064,30,1065,821,704,33,36 +63065,30,1065,822,351,33,36 +63066,30,1065,807,624,33,36 +63067,30,1065,743,22,33,36 +63068,30,1065,744,559,33,36 +63069,30,1065,734,735,33,36 +63070,30,1065,735,10092,33,36 +63071,30,1065,736,10110,33,36 +63072,30,1065,737,227,33,36 +63073,30,1065,823,625,33,36 +63074,29,1065,820,351,33,36 +63075,29,1065,821,704,33,36 +63076,29,1065,822,351,33,36 +63077,29,1065,807,624,33,36 +63078,29,1065,743,22,33,36 +63079,29,1065,744,559,33,36 +63080,29,1065,734,735,33,36 +63081,29,1065,735,10092,33,36 +63082,29,1065,736,10110,33,36 +63083,29,1065,737,227,33,36 +63084,29,1065,823,625,33,36 +63085,28,1066,780,739,31,34 +63086,28,1066,817,351,31,34 +63087,28,1066,818,704,31,34 +63088,28,1066,824,351,31,34 +63089,28,1066,758,675,31,34 +63090,28,1066,739,22,31,34 +63091,28,1066,716,735,31,34 +63092,28,1066,717,10092,31,34 +63093,28,1066,740,166,31,34 +63094,28,1066,741,168,31,34 +63095,28,1066,742,674,31,34 +63096,27,1066,780,739,31,34 +63097,27,1066,817,351,31,34 +63098,27,1066,818,704,31,34 +63099,27,1066,824,351,31,34 +63100,27,1066,758,675,31,34 +63101,27,1066,739,22,31,34 +63102,27,1066,716,735,31,34 +63103,27,1066,717,10092,31,34 +63104,27,1066,740,166,31,34 +63105,27,1066,741,168,31,34 +63106,27,1066,742,674,31,34 +63107,30,1066,783,739,33,36 +63108,30,1066,820,351,33,36 +63109,30,1066,821,704,33,36 +63110,30,1066,825,351,33,36 +63111,30,1066,826,559,33,36 +63112,30,1066,744,22,33,36 +63113,30,1066,734,166,33,36 +63114,30,1066,735,168,33,36 +63115,30,1066,736,735,33,36 +63116,30,1066,827,10092,33,36 +63117,29,1066,783,739,33,36 +63118,29,1066,820,351,33,36 +63119,29,1066,821,704,33,36 +63120,29,1066,825,351,33,36 +63121,29,1066,807,22,33,36 +63122,29,1066,828,168,33,36 +63123,29,1066,826,559,33,36 +63124,29,1066,744,22,33,36 +63125,29,1066,734,166,33,36 +63126,29,1066,735,168,33,36 +63127,29,1066,736,735,33,36 +63128,29,1066,827,10092,33,36 +63129,28,1040,714,152,10,10 +63130,28,1040,829,66,9,9 +63131,27,1040,714,152,10,10 +63132,27,1040,829,66,9,9 +63133,30,1040,723,1,10,10 +63134,30,1040,830,701,8,8 +63135,29,1040,723,1,10,10 +63136,29,1040,830,701,8,8 +63137,28,1041,831,734,9,10 +63138,28,1041,832,10091,9,10 +63139,28,1041,833,296,9,10 +63140,28,1041,791,21,7,10 +63141,28,1041,789,58,7,10 +63142,28,1041,760,742,7,10 +63143,28,1041,792,235,7,10 +63144,28,1041,761,734,7,10 +63145,28,1041,762,10091,7,10 +63146,27,1041,831,734,9,10 +63147,27,1041,832,10091,9,10 +63148,27,1041,833,296,9,10 +63149,27,1041,791,21,7,10 +63150,27,1041,789,58,7,10 +63151,27,1041,760,742,7,10 +63152,27,1041,792,235,7,10 +63153,27,1041,761,734,7,10 +63154,27,1041,762,10091,7,10 +63155,30,1041,784,23,8,11 +63156,30,1041,785,96,8,11 +63157,30,1041,834,296,8,11 +63158,30,1041,835,206,8,11 +63159,30,1041,836,96,8,11 +63160,30,1041,837,296,8,11 +63161,30,1041,743,23,7,10 +63162,30,1041,744,96,7,10 +63163,30,1041,734,296,7,10 +63164,30,1041,771,235,7,10 +63165,30,1041,804,734,7,10 +63166,30,1041,767,10091,7,10 +63167,30,1041,745,21,7,10 +63168,30,1041,746,58,7,10 +63169,30,1041,838,96,7,10 +63170,30,1041,839,296,7,10 +63171,30,1041,840,742,7,10 +63172,29,1041,784,23,8,11 +63173,29,1041,785,96,8,11 +63174,29,1041,834,296,8,11 +63175,29,1041,835,206,8,11 +63176,29,1041,836,96,8,11 +63177,29,1041,837,296,8,11 +63178,29,1041,743,23,7,10 +63179,29,1041,744,96,7,10 +63180,29,1041,734,296,7,10 +63181,29,1041,771,235,7,10 +63182,29,1041,804,734,7,10 +63183,29,1041,767,10091,7,10 +63184,29,1041,745,21,7,10 +63185,29,1041,746,58,7,10 +63186,29,1041,838,96,7,10 +63187,29,1041,839,296,7,10 +63188,29,1041,840,742,7,10 +63189,28,1042,780,739,7,10 +63190,28,1042,831,734,9,10 +63191,28,1042,832,10091,9,10 +63192,28,1042,833,296,9,10 +63193,28,1042,739,10107,7,10 +63194,28,1042,789,63,7,10 +63195,28,1042,760,96,7,10 +63196,28,1042,740,235,7,10 +63197,28,1042,761,734,7,10 +63198,28,1042,762,10091,7,10 +63199,27,1042,780,739,7,10 +63200,27,1042,831,734,9,10 +63201,27,1042,832,10091,9,10 +63202,27,1042,833,296,9,10 +63203,27,1042,739,10107,7,10 +63204,27,1042,789,63,7,10 +63205,27,1042,760,96,7,10 +63206,27,1042,740,235,7,10 +63207,27,1042,761,734,7,10 +63208,27,1042,762,10091,7,10 +63209,30,1042,783,739,8,11 +63210,30,1042,784,23,7,10 +63211,30,1042,785,96,7,10 +63212,30,1042,834,296,7,10 +63213,30,1042,835,206,7,10 +63214,30,1042,836,96,7,10 +63215,30,1042,837,296,7,10 +63216,30,1042,743,23,6,9 +63217,30,1042,744,96,6,9 +63218,30,1042,734,296,6,9 +63219,30,1042,771,63,6,9 +63220,30,1042,804,96,6,9 +63221,30,1042,767,235,6,9 +63222,30,1042,745,296,6,9 +63223,30,1042,746,676,6,9 +63224,30,1042,838,734,6,9 +63225,30,1042,839,10107,6,9 +63226,30,1042,840,10091,6,9 +63227,29,1042,783,739,8,11 +63228,29,1042,784,23,7,10 +63229,29,1042,785,96,7,10 +63230,29,1042,834,296,7,10 +63231,29,1042,835,206,7,10 +63232,29,1042,836,96,7,10 +63233,29,1042,837,296,7,10 +63234,29,1042,743,23,6,9 +63235,29,1042,744,96,6,9 +63236,29,1042,734,296,6,9 +63237,29,1042,771,63,6,9 +63238,29,1042,804,96,6,9 +63239,29,1042,767,235,6,9 +63240,29,1042,745,296,6,9 +63241,29,1042,746,676,6,9 +63242,29,1042,838,734,6,9 +63243,29,1042,839,10107,6,9 +63244,29,1042,840,10091,6,9 +63245,28,1043,714,155,12,12 +63246,27,1043,714,155,12,12 +63247,30,1043,723,4,12,12 +63248,29,1043,723,4,12,12 +63249,28,1044,831,21,11,12 +63250,28,1044,797,629,11,12 +63251,28,1044,791,21,9,12 +63252,28,1044,789,56,9,12 +63253,28,1044,760,742,9,12 +63254,28,1044,792,225,9,12 +63255,28,1044,761,734,9,12 +63256,28,1044,762,10091,9,12 +63257,27,1044,831,21,11,12 +63258,27,1044,797,627,11,12 +63259,27,1044,791,21,9,12 +63260,27,1044,789,56,9,12 +63261,27,1044,760,742,9,12 +63262,27,1044,792,225,9,12 +63263,27,1044,761,734,9,12 +63264,27,1044,762,10091,9,12 +63265,30,1044,841,21,10,13 +63266,30,1044,785,629,10,13 +63267,30,1044,766,21,9,12 +63268,30,1044,733,56,9,12 +63269,30,1044,787,742,9,12 +63270,30,1044,771,701,9,12 +63271,29,1044,841,21,10,13 +63272,29,1044,785,627,10,13 +63273,29,1044,766,21,9,12 +63274,29,1044,733,56,9,12 +63275,29,1044,787,742,9,12 +63276,29,1044,771,701,9,12 +63277,28,1045,780,739,9,12 +63278,28,1045,755,373,9,12 +63279,28,1045,842,21,9,12 +63280,28,1045,789,56,9,12 +63281,28,1045,760,742,9,12 +63282,28,1045,792,734,9,12 +63283,28,1045,761,10091,9,12 +63284,28,1045,843,371,9,12 +63285,27,1045,780,739,9,12 +63286,27,1045,755,373,9,12 +63287,27,1045,842,21,9,12 +63288,27,1045,789,56,9,12 +63289,27,1045,760,742,9,12 +63290,27,1045,792,734,9,12 +63291,27,1045,761,10091,9,12 +63292,27,1045,843,371,9,12 +63293,30,1045,783,739,10,13 +63294,30,1045,724,373,9,12 +63295,30,1045,766,56,9,12 +63296,30,1045,733,742,9,12 +63297,30,1045,844,21,9,12 +63298,30,1045,771,701,9,12 +63299,30,1045,845,371,9,12 +63300,29,1045,783,739,10,13 +63301,29,1045,724,373,9,12 +63302,29,1045,766,56,9,12 +63303,29,1045,733,742,9,12 +63304,29,1045,844,21,9,12 +63305,29,1045,771,701,9,12 +63306,29,1045,845,371,9,12 +63307,28,1046,780,739,11,14 +63308,28,1046,714,543,14,14 +63309,28,1046,755,39,11,14 +63310,28,1046,756,196,11,14 +63311,28,1046,757,197,11,14 +63312,28,1046,758,440,11,14 +63313,28,1046,739,506,11,14 +63314,28,1046,846,731,11,14 +63315,28,1046,760,749,11,14 +63316,28,1046,718,731,11,14 +63317,28,1046,761,174,11,14 +63318,28,1046,762,734,11,14 +63319,28,1046,763,736,11,14 +63320,28,1046,764,10091,11,14 +63321,28,1046,765,133,11,14 +63322,27,1046,780,739,11,14 +63323,27,1046,714,543,14,14 +63324,27,1046,755,39,11,14 +63325,27,1046,756,196,11,14 +63326,27,1046,757,197,11,14 +63327,27,1046,758,440,11,14 +63328,27,1046,739,506,11,14 +63329,27,1046,846,731,11,14 +63330,27,1046,760,749,11,14 +63331,27,1046,718,731,11,14 +63332,27,1046,761,174,11,14 +63333,27,1046,762,734,11,14 +63334,27,1046,763,736,11,14 +63335,27,1046,764,10091,11,14 +63336,27,1046,765,133,11,14 +63337,30,1046,783,739,11,14 +63338,30,1046,723,15,14,14 +63339,30,1046,724,39,11,14 +63340,30,1046,725,196,11,14 +63341,30,1046,726,197,11,14 +63342,30,1046,807,440,11,14 +63343,30,1046,766,506,11,14 +63344,30,1046,847,731,11,14 +63345,30,1046,734,749,11,14 +63346,30,1046,735,174,11,14 +63347,30,1046,736,506,11,14 +63348,30,1046,737,731,11,14 +63349,30,1046,745,734,11,14 +63350,30,1046,746,736,11,14 +63351,30,1046,838,10091,11,14 +63352,30,1046,848,133,11,14 +63353,29,1046,783,739,11,14 +63354,29,1046,723,15,14,14 +63355,29,1046,724,39,11,14 +63356,29,1046,725,196,11,14 +63357,29,1046,726,197,11,14 +63358,29,1046,807,440,11,14 +63359,29,1046,766,506,11,14 +63360,29,1046,847,731,11,14 +63361,29,1046,734,749,11,14 +63362,29,1046,735,174,11,14 +63363,29,1046,736,506,11,14 +63364,29,1046,737,731,11,14 +63365,29,1046,745,734,11,14 +63366,29,1046,746,736,11,14 +63367,29,1046,838,10091,11,14 +63368,29,1046,848,133,11,14 +63369,28,1047,780,739,13,16 +63370,28,1047,849,10105,18,21 +63371,28,1047,714,69,16,16 +63372,28,1047,829,761,16,16 +63373,28,1047,755,10,13,16 +63374,28,1047,756,12,13,16 +63375,28,1047,757,12,13,16 +63376,28,1047,739,506,13,16 +63377,28,1047,789,731,13,16 +63378,28,1047,760,753,13,16 +63379,28,1047,792,10,13,16 +63380,28,1047,761,736,13,16 +63381,28,1047,850,11,13,16 +63382,28,1047,851,12,13,16 +63383,27,1047,780,739,13,16 +63384,27,1047,849,10105,18,21 +63385,27,1047,714,69,16,16 +63386,27,1047,829,761,16,16 +63387,27,1047,755,10,13,16 +63388,27,1047,756,12,13,16 +63389,27,1047,757,12,13,16 +63390,27,1047,739,506,13,16 +63391,27,1047,789,731,13,16 +63392,27,1047,760,753,13,16 +63393,27,1047,792,10,13,16 +63394,27,1047,761,736,13,16 +63395,27,1047,850,11,13,16 +63396,27,1047,851,12,13,16 +63397,30,1047,783,739,13,16 +63398,30,1047,852,10105,18,21 +63399,30,1047,723,253,16,16 +63400,30,1047,830,714,19,19 +63401,30,1047,724,10,13,16 +63402,30,1047,725,12,13,16 +63403,30,1047,726,12,13,16 +63404,30,1047,743,731,13,16 +63405,30,1047,744,753,13,16 +63406,30,1047,734,506,13,16 +63407,30,1047,735,736,13,16 +63408,30,1047,804,10,13,16 +63409,30,1047,853,11,13,16 +63410,30,1047,854,12,13,16 +63411,29,1047,783,739,13,16 +63412,29,1047,852,10105,18,21 +63413,29,1047,723,253,16,16 +63414,29,1047,830,714,19,19 +63415,29,1047,724,10,13,16 +63416,29,1047,725,12,13,16 +63417,29,1047,726,12,13,16 +63418,29,1047,743,731,13,16 +63419,29,1047,744,753,13,16 +63420,29,1047,734,506,13,16 +63421,29,1047,735,736,13,16 +63422,29,1047,804,10,13,16 +63423,29,1047,853,11,13,16 +63424,29,1047,854,12,13,16 +63425,28,1048,714,574,17,17 +63426,28,1048,755,39,14,17 +63427,28,1048,756,196,14,17 +63428,28,1048,757,197,14,17 +63429,28,1048,758,440,14,17 +63430,28,1048,739,506,14,17 +63431,28,1048,846,731,14,17 +63432,28,1048,760,749,14,17 +63433,28,1048,718,731,14,17 +63434,28,1048,761,174,14,17 +63435,28,1048,762,734,14,17 +63436,28,1048,763,736,14,17 +63437,28,1048,764,10091,14,17 +63438,28,1048,765,133,14,17 +63439,27,1048,714,574,17,17 +63440,27,1048,755,39,14,17 +63441,27,1048,756,196,14,17 +63442,27,1048,757,197,14,17 +63443,27,1048,758,440,14,17 +63444,27,1048,739,506,14,17 +63445,27,1048,846,731,14,17 +63446,27,1048,760,749,14,17 +63447,27,1048,718,731,14,17 +63448,27,1048,761,174,14,17 +63449,27,1048,762,734,14,17 +63450,27,1048,763,736,14,17 +63451,27,1048,764,10091,14,17 +63452,27,1048,765,133,14,17 +63453,30,1048,723,280,17,17 +63454,30,1048,724,39,14,17 +63455,30,1048,725,196,14,17 +63456,30,1048,726,197,14,17 +63457,30,1048,807,440,14,17 +63458,30,1048,766,506,14,17 +63459,30,1048,847,731,14,17 +63460,30,1048,734,749,14,17 +63461,30,1048,735,174,14,17 +63462,30,1048,736,506,14,17 +63463,30,1048,737,731,14,17 +63464,30,1048,745,734,14,17 +63465,30,1048,746,736,14,17 +63466,30,1048,838,10091,14,17 +63467,30,1048,848,133,14,17 +63468,29,1048,723,280,17,17 +63469,29,1048,724,39,14,17 +63470,29,1048,725,196,14,17 +63471,29,1048,726,197,14,17 +63472,29,1048,807,440,14,17 +63473,29,1048,766,506,14,17 +63474,29,1048,847,731,14,17 +63475,29,1048,734,749,14,17 +63476,29,1048,735,174,14,17 +63477,29,1048,736,506,14,17 +63478,29,1048,737,731,14,17 +63479,29,1048,745,734,14,17 +63480,29,1048,746,736,14,17 +63481,29,1048,838,10091,14,17 +63482,29,1048,848,133,14,17 +63483,28,1049,755,39,14,17 +63484,28,1049,756,196,14,17 +63485,28,1049,757,197,14,17 +63486,28,1049,758,440,14,17 +63487,28,1049,739,506,14,17 +63488,28,1049,846,731,14,17 +63489,28,1049,760,10124,14,17 +63490,28,1049,718,731,14,17 +63491,28,1049,761,174,14,17 +63492,28,1049,762,734,14,17 +63493,28,1049,763,736,14,17 +63494,28,1049,764,10091,14,17 +63495,28,1049,765,133,14,17 +63496,27,1049,755,39,14,17 +63497,27,1049,756,196,14,17 +63498,27,1049,757,197,14,17 +63499,27,1049,758,440,14,17 +63500,27,1049,739,506,14,17 +63501,27,1049,846,731,14,17 +63502,27,1049,760,10124,14,17 +63503,27,1049,718,731,14,17 +63504,27,1049,761,174,14,17 +63505,27,1049,762,734,14,17 +63506,27,1049,763,736,14,17 +63507,27,1049,764,10091,14,17 +63508,27,1049,765,133,14,17 +63509,30,1049,724,39,14,17 +63510,30,1049,725,196,14,17 +63511,30,1049,726,197,14,17 +63512,30,1049,807,440,14,17 +63513,30,1049,766,506,14,17 +63514,30,1049,847,731,14,17 +63515,30,1049,734,10124,14,17 +63516,30,1049,735,174,14,17 +63517,30,1049,736,506,14,17 +63518,30,1049,737,731,14,17 +63519,30,1049,745,734,14,17 +63520,30,1049,746,736,14,17 +63521,30,1049,838,10091,14,17 +63522,30,1049,848,133,14,17 +63523,29,1049,724,39,14,17 +63524,29,1049,725,196,14,17 +63525,29,1049,726,197,14,17 +63526,29,1049,807,440,14,17 +63527,29,1049,766,506,14,17 +63528,29,1049,847,731,14,17 +63529,29,1049,734,10124,14,17 +63530,29,1049,735,174,14,17 +63531,29,1049,736,506,14,17 +63532,29,1049,737,731,14,17 +63533,29,1049,745,734,14,17 +63534,29,1049,746,736,14,17 +63535,29,1049,838,10091,14,17 +63536,29,1049,848,133,14,17 +63537,28,1050,849,10105,16,19 +63538,28,1050,714,363,19,19 +63539,28,1050,755,121,10,19 +63540,28,1050,756,130,10,19 +63541,28,1050,793,129,10,19 +63542,28,1050,794,746,10,19 +63543,28,1050,795,120,10,19 +63544,28,1050,855,72,16,19 +63545,28,1050,856,456,16,19 +63546,28,1050,750,278,16,19 +63547,28,1050,857,771,16,19 +63548,27,1050,849,10105,16,19 +63549,27,1050,714,363,19,19 +63550,27,1050,755,121,10,19 +63551,27,1050,756,130,10,19 +63552,27,1050,793,129,10,19 +63553,27,1050,794,746,10,19 +63554,27,1050,795,120,10,19 +63555,27,1050,855,72,16,19 +63556,27,1050,856,456,16,19 +63557,27,1050,750,278,16,19 +63558,27,1050,857,771,16,19 +63559,30,1050,852,10105,16,19 +63560,30,1050,858,129,10,23 +63561,30,1050,859,120,10,23 +63562,30,1050,860,746,10,23 +63563,30,1050,723,363,19,19 +63564,30,1050,724,121,10,18 +63565,30,1050,725,130,10,18 +63566,30,1050,727,121,10,23 +63567,30,1050,728,130,10,23 +63568,30,1050,729,129,10,18 +63569,30,1050,730,746,10,18 +63570,30,1050,731,120,10,18 +63571,30,1050,800,72,16,19 +63572,30,1050,801,456,16,19 +63573,30,1050,802,278,16,19 +63574,30,1050,803,771,16,19 +63575,29,1050,852,10105,16,19 +63576,29,1050,858,129,10,23 +63577,29,1050,859,120,10,23 +63578,29,1050,860,746,10,23 +63579,29,1050,723,363,19,19 +63580,29,1050,724,121,10,18 +63581,29,1050,725,130,10,18 +63582,29,1050,727,121,10,23 +63583,29,1050,728,130,10,23 +63584,29,1050,729,129,10,18 +63585,29,1050,730,746,10,18 +63586,29,1050,731,120,10,18 +63587,29,1050,800,72,16,19 +63588,29,1050,801,456,16,19 +63589,29,1050,802,278,16,19 +63590,29,1050,803,771,16,19 +63591,28,1052,713,408,15,15 +63592,28,1052,813,410,15,15 +63593,28,1052,814,564,15,15 +63594,28,1052,815,566,15,15 +63595,27,1052,713,408,15,15 +63596,27,1052,813,410,15,15 +63597,27,1052,814,564,15,15 +63598,27,1052,815,566,15,15 +63599,30,1052,773,408,15,15 +63600,30,1052,774,410,15,15 +63601,30,1052,775,564,15,15 +63602,30,1052,861,566,15,15 +63603,30,1052,862,138,15,15 +63604,30,1052,863,140,15,15 +63605,30,1052,864,345,15,15 +63606,30,1052,865,347,15,15 +63607,30,1052,866,696,15,15 +63608,30,1052,867,698,15,15 +63609,29,1052,773,408,15,15 +63610,29,1052,774,410,15,15 +63611,29,1052,775,564,15,15 +63612,29,1052,861,566,15,15 +63613,29,1052,862,138,15,15 +63614,29,1052,863,140,15,15 +63615,29,1052,864,345,15,15 +63616,29,1052,865,347,15,15 +63617,29,1052,866,696,15,15 +63618,29,1052,867,698,15,15 +63619,28,1051,780,739,17,20 +63620,28,1051,868,129,10,25 +63621,28,1051,782,170,10,25 +63622,28,1051,798,746,10,25 +63623,28,1051,714,404,20,20 +63624,28,1051,869,767,17,20 +63625,28,1051,755,731,17,20 +63626,28,1051,756,130,10,20 +63627,28,1051,799,130,10,25 +63628,28,1051,793,129,10,20 +63629,28,1051,794,746,10,20 +63630,28,1051,795,170,10,20 +63631,28,1051,739,732,17,20 +63632,28,1051,716,734,17,20 +63633,28,1051,717,10091,17,20 +63634,28,1051,740,757,17,20 +63635,28,1051,772,662,17,20 +63636,28,1051,870,759,17,20 +63637,27,1051,780,739,17,20 +63638,27,1051,868,129,10,25 +63639,27,1051,782,170,10,25 +63640,27,1051,798,746,10,25 +63641,27,1051,714,404,20,20 +63642,27,1051,869,767,17,20 +63643,27,1051,755,731,17,20 +63644,27,1051,756,130,10,20 +63645,27,1051,799,130,10,25 +63646,27,1051,793,129,10,20 +63647,27,1051,794,746,10,20 +63648,27,1051,795,170,10,20 +63649,27,1051,739,732,17,20 +63650,27,1051,716,734,17,20 +63651,27,1051,717,10091,17,20 +63652,27,1051,740,757,17,20 +63653,27,1051,772,662,17,20 +63654,27,1051,870,759,17,20 +63655,30,1051,783,739,17,20 +63656,30,1051,720,129,10,25 +63657,30,1051,721,170,10,25 +63658,30,1051,786,746,10,25 +63659,30,1051,871,223,10,25 +63660,30,1051,723,256,20,20 +63661,30,1051,830,24,22,22 +63662,30,1051,768,767,17,20 +63663,30,1051,724,662,17,20 +63664,30,1051,725,735,17,20 +63665,30,1051,726,10092,17,20 +63666,30,1051,807,130,10,20 +63667,30,1051,828,171,10,20 +63668,30,1051,872,224,10,20 +63669,30,1051,727,130,10,25 +63670,30,1051,728,171,10,25 +63671,30,1051,808,224,10,25 +63672,30,1051,809,129,10,20 +63673,30,1051,873,746,10,20 +63674,30,1051,874,223,10,20 +63675,30,1051,810,170,10,20 +63676,30,1051,766,732,17,20 +63677,30,1051,733,734,17,20 +63678,30,1051,787,10091,17,20 +63679,30,1051,875,661,17,20 +63680,30,1051,876,757,17,20 +63681,30,1051,767,759,17,20 +63682,29,1051,783,739,17,20 +63683,29,1051,720,129,10,25 +63684,29,1051,721,170,10,25 +63685,29,1051,786,746,10,25 +63686,29,1051,871,223,10,25 +63687,29,1051,723,256,20,20 +63688,29,1051,830,24,22,22 +63689,29,1051,768,767,17,20 +63690,29,1051,724,662,17,20 +63691,29,1051,725,735,17,20 +63692,29,1051,726,10092,17,20 +63693,29,1051,807,130,10,20 +63694,29,1051,828,171,10,20 +63695,29,1051,872,224,10,20 +63696,29,1051,727,130,10,25 +63697,29,1051,728,171,10,25 +63698,29,1051,808,224,10,25 +63699,29,1051,809,129,10,20 +63700,29,1051,873,746,10,20 +63701,29,1051,874,223,10,20 +63702,29,1051,810,170,10,20 +63703,29,1051,766,732,17,20 +63704,29,1051,733,734,17,20 +63705,29,1051,787,10091,17,20 +63706,29,1051,875,661,17,20 +63707,29,1051,876,757,17,20 +63708,29,1051,767,759,17,20 +63709,28,1053,755,130,10,23 +63710,28,1053,756,747,10,23 +63711,28,1053,877,370,10,23 +63712,28,1053,878,129,10,23 +63713,28,1053,879,746,10,23 +63714,28,1053,880,222,10,23 +63715,27,1053,755,130,10,23 +63716,27,1053,756,747,10,23 +63717,27,1053,877,370,10,23 +63718,27,1053,878,129,10,23 +63719,27,1053,879,746,10,23 +63720,27,1053,880,222,10,23 +63721,30,1053,724,130,10,23 +63722,30,1053,725,747,10,23 +63723,30,1053,809,370,10,23 +63724,30,1053,881,129,10,23 +63725,30,1053,874,222,10,23 +63726,30,1053,882,746,10,23 +63727,29,1053,724,130,10,23 +63728,29,1053,725,747,10,23 +63729,29,1053,809,370,10,23 +63730,29,1053,881,129,10,23 +63731,29,1053,874,222,10,23 +63732,29,1053,882,746,10,23 +63733,30,1054,768,132,29,29 +63734,29,1054,768,132,29,29 +63735,28,1069,869,792,55,55 +63736,27,1070,869,791,55,55 +63737,28,1071,714,500,43,43 +63738,28,1071,739,279,40,43 +63739,28,1071,716,735,40,43 +63740,28,1071,717,10092,40,43 +63741,28,1071,740,210,40,43 +63742,28,1071,761,102,40,43 +63743,28,1071,762,423,40,43 +63744,27,1071,714,500,43,43 +63745,27,1071,739,279,40,43 +63746,27,1071,716,735,40,43 +63747,27,1071,717,10092,40,43 +63748,27,1071,740,210,40,43 +63749,27,1071,761,102,40,43 +63750,27,1071,762,423,40,43 +63751,30,1071,720,129,10,49 +63752,30,1071,785,320,10,49 +63753,30,1071,786,318,10,49 +63754,30,1071,806,369,10,49 +63755,30,1071,773,772,60,60 +63756,30,1071,723,655,44,44 +63757,30,1071,724,130,10,44 +63758,30,1071,725,319,10,44 +63759,30,1071,726,321,10,44 +63760,30,1071,727,130,10,49 +63761,30,1071,728,319,10,49 +63762,30,1071,808,321,10,49 +63763,30,1071,883,129,10,44 +63764,30,1071,730,320,10,44 +63765,30,1071,884,318,10,44 +63766,30,1071,885,369,10,44 +63767,30,1071,800,73,41,44 +63768,30,1071,886,457,41,44 +63769,30,1071,802,279,41,44 +63770,30,1071,803,423,41,44 +63771,30,1071,887,131,41,44 +63772,30,1071,766,279,41,44 +63773,30,1071,744,210,41,44 +63774,30,1071,734,676,41,44 +63775,30,1071,735,686,41,44 +63776,30,1071,804,423,41,44 +63777,29,1071,720,129,10,49 +63778,29,1071,785,320,10,49 +63779,29,1071,786,318,10,49 +63780,29,1071,806,369,10,49 +63781,29,1071,773,772,60,60 +63782,29,1071,723,655,44,44 +63783,29,1071,724,130,10,44 +63784,29,1071,725,319,10,44 +63785,29,1071,726,321,10,44 +63786,29,1071,727,130,10,49 +63787,29,1071,728,319,10,49 +63788,29,1071,808,321,10,49 +63789,29,1071,883,129,10,44 +63790,29,1071,730,320,10,44 +63791,29,1071,884,318,10,44 +63792,29,1071,885,369,10,44 +63793,29,1071,800,73,41,44 +63794,29,1071,886,457,41,44 +63795,29,1071,802,279,41,44 +63796,29,1071,803,423,41,44 +63797,29,1071,887,131,41,44 +63798,29,1071,766,279,41,44 +63799,29,1071,744,210,41,44 +63800,29,1071,734,676,41,44 +63801,29,1071,735,686,41,44 +63802,29,1071,804,423,41,44 +63803,28,1072,780,739,7,10 +63804,27,1072,780,739,7,10 +63805,30,1072,783,739,7,10 +63806,29,1072,783,739,7,10 +63807,28,1073,714,111,30,30 +63808,28,1073,755,113,26,29 +63809,28,1073,756,125,26,29 +63810,28,1073,739,10109,26,29 +63811,28,1073,789,324,26,29 +63812,28,1073,760,749,26,29 +63813,28,1073,792,239,26,29 +63814,28,1073,761,737,26,29 +63815,28,1073,762,777,26,29 +63816,27,1073,714,111,30,30 +63817,27,1073,755,113,26,29 +63818,27,1073,756,125,26,29 +63819,27,1073,739,10109,26,29 +63820,27,1073,789,324,26,29 +63821,27,1073,760,749,26,29 +63822,27,1073,792,239,26,29 +63823,27,1073,761,737,26,29 +63824,27,1073,762,776,26,29 +63825,27,1073,763,777,26,29 +63826,30,1073,723,111,32,32 +63827,30,1073,724,125,29,32 +63828,30,1073,725,440,29,32 +63829,30,1073,726,702,29,32 +63830,30,1073,807,736,29,32 +63831,30,1073,828,738,29,32 +63832,30,1073,872,750,29,32 +63833,30,1073,888,777,29,32 +63834,30,1073,743,324,29,32 +63835,30,1073,744,749,29,32 +63836,30,1073,734,10110,29,32 +63837,30,1073,771,239,29,32 +63838,30,1073,804,702,29,32 +63839,30,1073,767,737,29,32 +63840,30,1073,745,777,29,32 +63841,29,1073,723,111,32,32 +63842,29,1073,724,125,29,32 +63843,29,1073,725,440,29,32 +63844,29,1073,726,702,29,32 +63845,29,1073,807,736,29,32 +63846,29,1073,828,738,29,32 +63847,29,1073,872,750,29,32 +63848,29,1073,888,777,29,32 +63849,29,1073,743,749,29,32 +63850,29,1073,744,10110,29,32 +63851,29,1073,770,239,29,32 +63852,29,1073,771,324,29,32 +63853,29,1073,804,702,29,32 +63854,29,1073,767,737,29,32 +63855,29,1073,745,776,29,32 +63856,29,1073,746,777,29,32 +63857,28,1074,714,183,17,17 +63858,27,1074,714,183,17,17 +63859,30,1074,723,259,17,17 +63860,29,1074,723,259,17,17 +63861,28,1075,796,129,10,15 +63862,28,1075,889,118,10,15 +63863,28,1075,890,349,10,15 +63864,28,1075,755,119,10,15 +63865,28,1075,756,130,10,15 +63866,28,1075,799,119,10,15 +63867,28,1075,891,130,10,15 +63868,28,1075,877,129,10,15 +63869,28,1075,892,118,10,15 +63870,28,1075,795,349,10,15 +63871,28,1075,748,60,14,17 +63872,28,1075,749,283,14,17 +63873,28,1075,893,751,14,17 +63874,28,1075,857,54,14,17 +63875,28,1075,739,54,14,17 +63876,28,1075,789,46,14,17 +63877,28,1075,760,506,14,17 +63878,28,1075,740,755,14,17 +63879,28,1075,761,60,14,17 +63880,28,1075,762,278,14,17 +63881,28,1075,763,283,14,17 +63882,28,1075,764,751,14,17 +63883,27,1075,796,129,10,15 +63884,27,1075,889,118,10,15 +63885,27,1075,890,349,10,15 +63886,27,1075,755,119,10,15 +63887,27,1075,756,130,10,15 +63888,27,1075,799,119,10,15 +63889,27,1075,891,130,10,15 +63890,27,1075,877,129,10,15 +63891,27,1075,892,118,10,15 +63892,27,1075,795,349,10,15 +63893,27,1075,748,60,14,17 +63894,27,1075,749,283,14,17 +63895,27,1075,893,751,14,17 +63896,27,1075,857,54,14,17 +63897,27,1075,739,54,14,17 +63898,27,1075,789,46,14,17 +63899,27,1075,760,506,14,17 +63900,27,1075,740,755,14,17 +63901,27,1075,761,60,14,17 +63902,27,1075,762,278,14,17 +63903,27,1075,763,283,14,17 +63904,27,1075,764,751,14,17 +63905,30,1075,720,129,10,21 +63906,30,1075,894,118,10,21 +63907,30,1075,722,550,10,21 +63908,30,1075,806,349,10,21 +63909,30,1075,724,119,10,16 +63910,30,1075,725,130,10,16 +63911,30,1075,727,119,10,21 +63912,30,1075,728,130,10,21 +63913,30,1075,895,129,10,16 +63914,30,1075,873,118,10,16 +63915,30,1075,896,550,10,16 +63916,30,1075,885,349,10,16 +63917,30,1075,811,60,14,17 +63918,30,1075,812,283,14,17 +63919,30,1075,897,751,14,17 +63920,30,1075,803,54,14,17 +63921,30,1075,743,46,14,17 +63922,30,1075,744,755,14,17 +63923,30,1075,734,54,14,17 +63924,30,1075,735,60,14,17 +63925,30,1075,736,278,14,17 +63926,30,1075,827,283,14,17 +63927,30,1075,898,751,14,17 +63928,29,1075,720,129,10,21 +63929,29,1075,894,118,10,21 +63930,29,1075,722,550,10,21 +63931,29,1075,806,349,10,21 +63932,29,1075,724,119,10,16 +63933,29,1075,725,130,10,16 +63934,29,1075,727,119,10,21 +63935,29,1075,728,130,10,21 +63936,29,1075,895,129,10,16 +63937,29,1075,873,118,10,16 +63938,29,1075,896,550,10,16 +63939,29,1075,885,349,10,16 +63940,29,1075,811,60,14,17 +63941,29,1075,812,283,14,17 +63942,29,1075,897,751,14,17 +63943,29,1075,803,54,14,17 +63944,29,1075,743,46,14,17 +63945,29,1075,744,755,14,17 +63946,29,1075,734,54,14,17 +63947,29,1075,735,60,14,17 +63948,29,1075,736,278,14,17 +63949,29,1075,827,283,14,17 +63950,29,1075,898,751,14,17 +63951,28,1076,796,129,10,15 +63952,28,1076,889,118,10,15 +63953,28,1076,890,349,10,15 +63954,28,1076,755,119,10,15 +63955,28,1076,756,130,10,15 +63956,28,1076,799,119,10,15 +63957,28,1076,891,130,10,15 +63958,28,1076,877,129,10,15 +63959,28,1076,892,118,10,15 +63960,28,1076,795,349,10,15 +63961,28,1076,748,60,14,17 +63962,28,1076,749,283,14,17 +63963,28,1076,893,751,14,17 +63964,28,1076,857,54,14,17 +63965,28,1076,739,54,14,17 +63966,28,1076,716,278,14,17 +63967,28,1076,760,60,14,17 +63968,28,1076,740,283,14,17 +63969,28,1076,741,751,14,17 +63970,27,1076,796,129,10,15 +63971,27,1076,889,118,10,15 +63972,27,1076,890,349,10,15 +63973,27,1076,755,119,10,15 +63974,27,1076,756,130,10,15 +63975,27,1076,799,119,10,15 +63976,27,1076,891,130,10,15 +63977,27,1076,877,129,10,15 +63978,27,1076,892,118,10,15 +63979,27,1076,795,349,10,15 +63980,27,1076,748,60,14,17 +63981,27,1076,749,283,14,17 +63982,27,1076,893,751,14,17 +63983,27,1076,857,54,14,17 +63984,27,1076,739,54,14,17 +63985,27,1076,716,278,14,17 +63986,27,1076,760,60,14,17 +63987,27,1076,740,283,14,17 +63988,27,1076,741,751,14,17 +63989,30,1076,720,129,10,21 +63990,30,1076,894,118,10,21 +63991,30,1076,722,550,10,21 +63992,30,1076,806,349,10,21 +63993,30,1076,724,119,10,16 +63994,30,1076,725,130,10,16 +63995,30,1076,727,119,10,21 +63996,30,1076,728,130,10,21 +63997,30,1076,895,129,10,16 +63998,30,1076,873,118,10,16 +63999,30,1076,896,550,10,16 +64000,30,1076,885,349,10,16 +64001,30,1076,811,60,14,17 +64002,30,1076,812,283,14,17 +64003,30,1076,897,751,14,17 +64004,30,1076,803,54,14,17 +64005,30,1076,743,60,14,17 +64006,30,1076,744,283,14,17 +64007,30,1076,734,751,14,17 +64008,30,1076,735,46,14,17 +64009,30,1076,736,54,14,17 +64010,30,1076,827,278,14,17 +64011,30,1076,898,755,14,17 +64012,29,1076,720,129,10,21 +64013,29,1076,894,118,10,21 +64014,29,1076,722,550,10,21 +64015,29,1076,806,349,10,21 +64016,29,1076,724,119,10,16 +64017,29,1076,725,130,10,16 +64018,29,1076,727,119,10,21 +64019,29,1076,728,130,10,21 +64020,29,1076,895,129,10,16 +64021,29,1076,873,118,10,16 +64022,29,1076,896,550,10,16 +64023,29,1076,885,349,10,16 +64024,29,1076,811,60,14,17 +64025,29,1076,812,283,14,17 +64026,29,1076,897,751,14,17 +64027,29,1076,803,54,14,17 +64028,29,1076,743,60,14,17 +64029,29,1076,744,283,14,17 +64030,29,1076,734,751,14,17 +64031,29,1076,735,46,14,17 +64032,29,1076,736,54,14,17 +64033,29,1076,827,278,14,17 +64034,29,1076,898,755,14,17 +64035,28,1077,796,129,10,15 +64036,28,1077,797,746,10,15 +64037,28,1077,798,594,10,15 +64038,28,1077,755,130,10,15 +64039,28,1077,799,130,10,15 +64040,28,1077,793,129,10,15 +64041,28,1077,794,746,10,15 +64042,28,1077,795,594,10,15 +64043,28,1077,748,72,14,17 +64044,28,1077,749,456,14,17 +64045,28,1077,750,278,14,17 +64046,27,1077,796,129,10,15 +64047,27,1077,797,746,10,15 +64048,27,1077,798,594,10,15 +64049,27,1077,755,130,10,15 +64050,27,1077,799,130,10,15 +64051,27,1077,793,129,10,15 +64052,27,1077,794,746,10,15 +64053,27,1077,795,594,10,15 +64054,27,1077,748,72,14,17 +64055,27,1077,749,456,14,17 +64056,27,1077,750,278,14,17 +64057,30,1077,720,129,10,21 +64058,30,1077,721,594,10,21 +64059,30,1077,722,746,10,21 +64060,30,1077,724,130,10,16 +64061,30,1077,727,130,10,21 +64062,30,1077,729,129,10,16 +64063,30,1077,730,746,10,16 +64064,30,1077,731,594,10,16 +64065,30,1077,811,72,14,17 +64066,30,1077,812,456,14,17 +64067,30,1077,802,278,14,17 +64068,29,1077,720,129,10,21 +64069,29,1077,721,594,10,21 +64070,29,1077,722,746,10,21 +64071,29,1077,724,130,10,16 +64072,29,1077,727,130,10,21 +64073,29,1077,729,129,10,16 +64074,29,1077,730,746,10,16 +64075,29,1077,731,594,10,16 +64076,29,1077,811,72,14,17 +64077,29,1077,812,456,14,17 +64078,29,1077,802,278,14,17 +64079,28,1078,849,10105,19,22 +64080,28,1078,899,41,19,22 +64081,28,1078,716,10105,19,22 +64082,28,1078,900,793,55,55 +64083,27,1078,849,10105,19,22 +64084,27,1078,899,41,19,22 +64085,27,1078,716,10105,19,22 +64086,27,1078,900,793,55,55 +64087,30,1078,852,10105,20,23 +64088,30,1078,724,42,20,23 +64089,30,1078,901,41,20,23 +64090,30,1078,733,10105,20,23 +64091,30,1078,770,246,20,23 +64092,29,1078,852,10105,20,23 +64093,29,1078,724,42,20,23 +64094,29,1078,901,41,20,23 +64095,29,1078,733,10105,20,23 +64096,29,1078,770,246,20,23 +64097,30,1079,852,352,17,20 +64098,30,1079,768,767,17,20 +64099,29,1079,852,352,17,20 +64100,29,1079,768,767,17,20 +64101,28,1080,714,497,43,43 +64102,28,1080,902,351,40,43 +64103,28,1080,818,705,40,43 +64104,28,1080,824,351,40,43 +64105,28,1080,791,102,40,43 +64106,28,1080,716,279,40,43 +64107,28,1080,760,10114,40,43 +64108,28,1080,792,423,40,43 +64109,27,1080,714,497,43,43 +64110,27,1080,902,351,40,43 +64111,27,1080,818,705,40,43 +64112,27,1080,824,351,40,43 +64113,27,1080,791,102,40,43 +64114,27,1080,716,279,40,43 +64115,27,1080,760,10114,40,43 +64116,27,1080,792,423,40,43 +64117,30,1080,723,652,45,45 +64118,30,1080,903,351,42,45 +64119,30,1080,821,705,42,45 +64120,30,1080,825,351,42,45 +64121,30,1080,743,102,42,45 +64122,30,1080,744,279,42,45 +64123,30,1080,734,357,42,45 +64124,30,1080,735,10114,42,45 +64125,30,1080,804,127,42,45 +64126,30,1080,767,423,42,45 +64127,29,1080,723,652,45,45 +64128,29,1080,903,351,42,45 +64129,29,1080,821,705,42,45 +64130,29,1080,825,351,42,45 +64131,29,1080,743,102,42,45 +64132,29,1080,744,279,42,45 +64133,29,1080,734,357,42,45 +64134,29,1080,735,10114,42,45 +64135,29,1080,804,127,42,45 +64136,29,1080,767,423,42,45 +64137,28,1081,831,551,28,31 +64138,28,1081,782,10106,28,31 +64139,28,1081,904,328,28,31 +64140,28,1081,817,351,28,31 +64141,28,1081,818,444,28,31 +64142,28,1081,824,351,28,31 +64143,28,1081,905,351,28,31 +64144,28,1081,906,444,28,31 +64145,28,1081,907,351,28,31 +64146,28,1081,899,551,28,31 +64147,28,1081,716,10106,28,31 +64148,28,1081,900,797,65,65 +64149,27,1081,831,551,28,31 +64150,27,1081,782,10106,28,31 +64151,27,1081,904,328,28,31 +64152,27,1081,817,351,28,31 +64153,27,1081,818,444,28,31 +64154,27,1081,824,351,28,31 +64155,27,1081,905,351,28,31 +64156,27,1081,906,444,28,31 +64157,27,1081,907,351,28,31 +64158,27,1081,899,551,28,31 +64159,27,1081,716,10106,28,31 +64160,30,1081,841,552,32,35 +64161,30,1081,908,10106,32,35 +64162,30,1081,909,328,32,35 +64163,30,1081,903,351,32,35 +64164,30,1081,821,444,32,35 +64165,30,1081,825,351,32,35 +64166,30,1081,807,343,32,35 +64167,30,1081,828,343,32,35 +64168,30,1081,910,351,32,35 +64169,30,1081,911,444,32,35 +64170,30,1081,912,351,32,35 +64171,30,1081,913,343,32,35 +64172,30,1081,914,343,32,35 +64173,30,1081,915,343,32,35 +64174,30,1081,916,552,32,35 +64175,30,1081,733,10106,32,35 +64176,29,1081,841,552,32,35 +64177,29,1081,908,10106,32,35 +64178,29,1081,909,328,32,35 +64179,29,1081,903,351,32,35 +64180,29,1081,821,444,32,35 +64181,29,1081,825,351,32,35 +64182,29,1081,807,622,32,35 +64183,29,1081,828,622,32,35 +64184,29,1081,910,351,32,35 +64185,29,1081,911,444,32,35 +64186,29,1081,912,351,32,35 +64187,29,1081,913,622,32,35 +64188,29,1081,914,622,32,35 +64189,29,1081,915,622,32,35 +64190,29,1081,916,552,32,35 +64191,29,1081,733,10106,32,35 +64192,28,1082,849,72,21,24 +64193,28,1082,855,72,21,24 +64194,28,1082,856,456,21,24 +64195,28,1082,750,278,21,24 +64196,28,1082,857,771,21,24 +64197,28,1082,917,120,21,24 +64198,28,1082,789,769,21,24 +64199,27,1082,849,72,21,24 +64200,27,1082,855,72,21,24 +64201,27,1082,856,456,21,24 +64202,27,1082,750,278,21,24 +64203,27,1082,857,771,21,24 +64204,27,1082,917,120,21,24 +64205,27,1082,789,769,21,24 +64206,30,1082,852,72,22,25 +64207,30,1082,724,121,22,25 +64208,30,1082,725,72,22,25 +64209,30,1082,726,456,22,25 +64210,30,1082,807,771,22,25 +64211,30,1082,800,72,22,25 +64212,30,1082,801,456,22,25 +64213,30,1082,918,771,22,25 +64214,30,1082,919,278,22,25 +64215,30,1082,916,120,22,25 +64216,30,1082,733,769,22,25 +64217,29,1082,852,72,22,25 +64218,29,1082,724,121,22,25 +64219,29,1082,725,72,22,25 +64220,29,1082,726,456,22,25 +64221,29,1082,807,771,22,25 +64222,29,1082,800,72,22,25 +64223,29,1082,801,456,22,25 +64224,29,1082,918,771,22,25 +64225,29,1082,919,278,22,25 +64226,29,1082,916,120,22,25 +64227,29,1082,733,769,22,25 +64228,28,1083,714,607,10,10 +64229,28,1083,715,92,7,10 +64230,28,1083,716,200,7,10 +64231,28,1083,717,425,7,10 +64232,28,1083,740,41,7,10 +64233,27,1083,714,607,10,10 +64234,27,1083,715,92,7,10 +64235,27,1083,716,200,7,10 +64236,27,1083,717,425,7,10 +64237,27,1083,740,41,7,10 +64238,30,1083,723,607,9,9 +64239,30,1083,826,92,6,9 +64240,30,1083,920,198,6,9 +64241,30,1083,921,425,6,9 +64242,30,1083,735,41,6,9 +64243,29,1083,723,607,9,9 +64244,29,1083,826,92,6,9 +64245,29,1083,920,198,6,9 +64246,29,1083,921,425,6,9 +64247,29,1083,735,41,6,9 +64248,30,1086,805,222,10,22 +64249,30,1086,922,129,10,22 +64250,30,1086,923,223,10,22 +64251,30,1086,835,370,10,22 +64252,30,1086,924,746,10,22 +64253,30,1086,837,366,10,22 +64254,30,1086,724,223,15,18 +64255,30,1086,725,130,10,17 +64256,30,1086,726,224,10,17 +64257,30,1086,807,367,10,17 +64258,30,1086,828,368,10,17 +64259,30,1086,872,747,10,17 +64260,30,1086,727,130,10,22 +64261,30,1086,728,224,10,22 +64262,30,1086,808,367,10,22 +64263,30,1086,913,368,10,22 +64264,30,1086,914,747,10,22 +64265,30,1086,925,129,10,17 +64266,30,1086,926,370,10,17 +64267,30,1086,896,746,10,17 +64268,30,1086,882,223,10,17 +64269,30,1086,927,222,10,17 +64270,30,1086,928,366,10,17 +64271,30,1086,811,72,15,18 +64272,30,1086,929,278,15,18 +64273,30,1086,802,456,15,18 +64274,30,1086,803,458,15,18 +64275,29,1086,805,222,10,22 +64276,29,1086,922,129,10,22 +64277,29,1086,923,223,10,22 +64278,29,1086,835,370,10,22 +64279,29,1086,924,746,10,22 +64280,29,1086,837,366,10,22 +64281,29,1086,724,223,15,18 +64282,29,1086,725,130,10,17 +64283,29,1086,726,224,10,17 +64284,29,1086,807,367,10,17 +64285,29,1086,828,368,10,17 +64286,29,1086,872,747,10,17 +64287,29,1086,727,130,10,22 +64288,29,1086,728,224,10,22 +64289,29,1086,808,367,10,22 +64290,29,1086,913,368,10,22 +64291,29,1086,914,747,10,22 +64292,29,1086,925,129,10,17 +64293,29,1086,926,370,10,17 +64294,29,1086,896,746,10,17 +64295,29,1086,882,223,10,17 +64296,29,1086,927,222,10,17 +64297,29,1086,928,366,10,17 +64298,29,1086,811,72,15,18 +64299,29,1086,929,278,15,18 +64300,29,1086,802,456,15,18 +64301,29,1086,803,458,15,18 +64302,28,1084,714,599,8,8 +64303,27,1084,714,599,8,8 +64304,30,1084,723,664,9,9 +64305,29,1084,723,664,9,9 +64306,28,1085,755,25,5,8 +64307,28,1085,756,440,5,8 +64308,28,1085,930,63,5,8 +64309,28,1085,789,278,5,8 +64310,28,1085,760,734,5,8 +64311,28,1085,740,10091,5,8 +64312,28,1085,761,81,5,8 +64313,28,1085,762,10107,5,8 +64314,28,1085,763,10112,5,8 +64315,28,1085,931,172,5,8 +64316,27,1085,755,25,5,8 +64317,27,1085,756,440,5,8 +64318,27,1085,930,63,5,8 +64319,27,1085,789,278,5,8 +64320,27,1085,760,734,5,8 +64321,27,1085,740,10091,5,8 +64322,27,1085,761,81,5,8 +64323,27,1085,762,10107,5,8 +64324,27,1085,763,10112,5,8 +64325,27,1085,931,172,5,8 +64326,30,1085,768,97,29,29 +64327,30,1085,769,760,28,28 +64328,30,1085,724,122,6,9 +64329,30,1085,725,440,6,9 +64330,30,1085,932,676,6,9 +64331,30,1085,744,63,6,9 +64332,30,1085,734,439,6,9 +64333,30,1085,771,81,6,9 +64334,30,1085,804,10107,6,9 +64335,30,1085,767,10112,6,9 +64336,30,1085,823,278,6,9 +64337,29,1085,768,97,29,29 +64338,29,1085,769,760,28,28 +64339,29,1085,724,122,6,9 +64340,29,1085,725,440,6,9 +64341,29,1085,932,676,6,9 +64342,29,1085,744,63,6,9 +64343,29,1085,734,439,6,9 +64344,29,1085,771,81,6,9 +64345,29,1085,804,10107,6,9 +64346,29,1085,767,10112,6,9 +64347,29,1085,823,278,6,9 +64348,30,1087,773,20,20,20 +64349,30,1087,774,752,25,25 +64350,30,1087,775,758,30,30 +64351,30,1087,861,777,35,35 +64352,30,1087,862,778,40,40 +64353,30,1087,863,784,50,50 +64354,29,1087,773,105,25,25 +64355,29,1087,774,735,20,20 +64356,29,1087,775,738,35,35 +64357,29,1087,861,743,50,50 +64358,29,1087,862,754,30,30 +64359,29,1087,863,778,40,40 +64360,30,1088,773,25,40,40 +64361,29,1088,773,25,40,40 +64362,28,1089,713,722,5,5 +64363,28,1089,813,725,5,5 +64364,28,1089,814,728,5,5 +64365,27,1089,713,722,5,5 +64366,27,1089,813,725,5,5 +64367,27,1089,814,728,5,5 +64368,28,1090,796,129,10,15 +64369,28,1090,797,746,10,15 +64370,28,1090,798,90,10,15 +64371,28,1090,714,116,18,18 +64372,28,1090,755,80,15,18 +64373,28,1090,756,372,15,18 +64374,28,1090,757,130,10,15 +64375,28,1090,799,130,10,15 +64376,28,1090,793,129,10,15 +64377,28,1090,794,746,10,15 +64378,28,1090,795,90,10,15 +64379,28,1090,748,72,15,18 +64380,28,1090,749,456,15,18 +64381,28,1090,750,278,15,18 +64382,28,1090,791,278,15,18 +64383,28,1090,716,734,15,18 +64384,28,1090,717,10091,15,18 +64385,28,1090,740,79,15,18 +64386,28,1090,761,371,15,18 +64387,27,1090,796,129,10,15 +64388,27,1090,797,746,10,15 +64389,27,1090,798,90,10,15 +64390,27,1090,714,116,18,18 +64391,27,1090,755,80,15,18 +64392,27,1090,756,372,15,18 +64393,27,1090,757,130,10,15 +64394,27,1090,799,130,10,15 +64395,27,1090,793,129,10,15 +64396,27,1090,794,746,10,15 +64397,27,1090,795,90,10,15 +64398,27,1090,748,72,15,18 +64399,27,1090,749,456,15,18 +64400,27,1090,750,278,15,18 +64401,27,1090,791,278,15,18 +64402,27,1090,716,734,15,18 +64403,27,1090,717,10091,15,18 +64404,27,1090,740,79,15,18 +64405,27,1090,761,371,15,18 +64406,30,1090,805,90,10,22 +64407,30,1090,894,129,10,22 +64408,30,1090,722,746,10,22 +64409,30,1090,835,223,10,22 +64410,30,1090,723,116,18,18 +64411,30,1090,724,80,15,18 +64412,30,1090,725,372,15,18 +64413,30,1090,726,199,15,18 +64414,30,1090,807,223,15,18 +64415,30,1090,828,130,10,17 +64416,30,1090,872,224,10,17 +64417,30,1090,727,130,10,22 +64418,30,1090,728,224,10,22 +64419,30,1090,933,129,10,17 +64420,30,1090,934,746,10,17 +64421,30,1090,896,223,10,17 +64422,30,1090,810,90,10,17 +64423,30,1090,811,72,15,18 +64424,30,1090,929,278,15,18 +64425,30,1090,802,456,15,18 +64426,30,1090,803,458,15,18 +64427,30,1090,826,278,15,18 +64428,30,1090,733,734,15,18 +64429,30,1090,787,10091,15,18 +64430,30,1090,735,79,15,18 +64431,30,1090,804,371,15,18 +64432,29,1090,805,90,10,22 +64433,29,1090,894,129,10,22 +64434,29,1090,722,746,10,22 +64435,29,1090,835,223,10,22 +64436,29,1090,723,116,18,18 +64437,29,1090,724,80,15,18 +64438,29,1090,725,372,15,18 +64439,29,1090,726,199,15,18 +64440,29,1090,807,223,15,18 +64441,29,1090,828,130,10,17 +64442,29,1090,872,224,10,17 +64443,29,1090,727,130,10,22 +64444,29,1090,728,224,10,22 +64445,29,1090,933,129,10,17 +64446,29,1090,934,746,10,17 +64447,29,1090,896,223,10,17 +64448,29,1090,810,90,10,17 +64449,29,1090,811,72,15,18 +64450,29,1090,929,278,15,18 +64451,29,1090,802,456,15,18 +64452,29,1090,803,458,15,18 +64453,29,1090,826,278,15,18 +64454,29,1090,733,734,15,18 +64455,29,1090,787,10091,15,18 +64456,29,1090,735,79,15,18 +64457,29,1090,804,371,15,18 +64458,28,1091,829,61,22,22 +64459,27,1091,829,61,22,22 +64460,30,1091,768,132,29,29 +64461,29,1091,768,132,29,29 +64462,28,1092,713,789,5,5 +64463,30,1092,773,789,5,5 +64464,27,1093,713,789,5,5 +64465,29,1093,773,789,5,5 +64466,28,1163,816,796,65,65 +64467,27,1163,816,796,65,65 +64468,28,1094,899,41,18,21 +64469,28,1094,716,10105,18,21 +64470,27,1094,899,41,18,21 +64471,27,1094,716,10105,18,21 +64472,30,1094,724,169,41,44 +64473,30,1094,725,637,41,44 +64474,30,1094,726,758,41,44 +64475,30,1094,935,42,41,44 +64476,30,1094,733,51,41,44 +64477,30,1094,787,757,41,44 +64478,30,1094,936,636,41,44 +64479,29,1094,724,169,41,44 +64480,29,1094,725,637,41,44 +64481,29,1094,726,758,41,44 +64482,29,1094,935,42,41,44 +64483,29,1094,733,51,41,44 +64484,29,1094,787,757,41,44 +64485,29,1094,936,636,41,44 +64486,28,1095,902,351,18,21 +64487,28,1095,818,704,18,21 +64488,28,1095,824,351,18,21 +64489,28,1095,758,732,18,21 +64490,28,1095,739,46,18,21 +64491,28,1095,716,753,18,21 +64492,28,1095,717,755,18,21 +64493,28,1095,740,732,18,21 +64494,28,1095,761,127,18,21 +64495,28,1095,870,764,18,21 +64496,28,1095,937,765,18,21 +64497,27,1095,902,351,18,21 +64498,27,1095,818,704,18,21 +64499,27,1095,824,351,18,21 +64500,27,1095,758,732,18,21 +64501,27,1095,739,46,18,21 +64502,27,1095,716,753,18,21 +64503,27,1095,717,755,18,21 +64504,27,1095,740,732,18,21 +64505,27,1095,761,127,18,21 +64506,27,1095,870,764,18,21 +64507,27,1095,937,766,18,21 +64508,30,1095,903,351,19,22 +64509,30,1095,821,704,19,22 +64510,30,1095,825,351,19,22 +64511,30,1095,807,10,19,22 +64512,30,1095,828,12,19,22 +64513,30,1095,872,164,19,22 +64514,30,1095,888,185,19,22 +64515,30,1095,938,440,19,22 +64516,30,1095,939,732,19,22 +64517,30,1095,940,732,19,22 +64518,30,1095,744,163,19,22 +64519,30,1095,734,753,19,22 +64520,30,1095,771,11,19,22 +64521,30,1095,804,46,19,22 +64522,30,1095,767,438,19,22 +64523,30,1095,745,755,19,22 +64524,30,1095,746,762,19,22 +64525,30,1095,838,764,19,22 +64526,30,1095,848,765,19,22 +64527,30,1095,941,127,19,22 +64528,30,1095,942,732,19,22 +64529,29,1095,903,351,19,22 +64530,29,1095,821,704,19,22 +64531,29,1095,825,351,19,22 +64532,29,1095,807,10,19,22 +64533,29,1095,828,12,19,22 +64534,29,1095,872,164,19,22 +64535,29,1095,888,185,19,22 +64536,29,1095,938,440,19,22 +64537,29,1095,939,732,19,22 +64538,29,1095,940,732,19,22 +64539,29,1095,744,163,19,22 +64540,29,1095,734,753,19,22 +64541,29,1095,771,11,19,22 +64542,29,1095,804,46,19,22 +64543,29,1095,767,438,19,22 +64544,29,1095,745,755,19,22 +64545,29,1095,746,762,19,22 +64546,29,1095,838,764,19,22 +64547,29,1095,848,766,19,22 +64548,29,1095,941,127,19,22 +64549,29,1095,942,732,19,22 +64550,28,1096,902,351,18,21 +64551,28,1096,818,704,18,21 +64552,28,1096,824,351,18,21 +64553,28,1096,758,10,18,21 +64554,28,1096,759,12,18,21 +64555,28,1096,943,12,18,21 +64556,28,1096,944,185,18,21 +64557,28,1096,945,440,18,21 +64558,28,1096,946,732,18,21 +64559,28,1096,788,46,18,21 +64560,28,1096,789,732,18,21 +64561,28,1096,760,753,18,21 +64562,28,1096,740,755,18,21 +64563,28,1096,761,10,18,21 +64564,28,1096,762,11,18,21 +64565,28,1096,763,438,18,21 +64566,28,1096,931,764,18,21 +64567,28,1096,765,765,18,21 +64568,27,1096,902,351,18,21 +64569,27,1096,818,704,18,21 +64570,27,1096,824,351,18,21 +64571,27,1096,758,10,18,21 +64572,27,1096,759,12,18,21 +64573,27,1096,943,12,18,21 +64574,27,1096,944,185,18,21 +64575,27,1096,945,440,18,21 +64576,27,1096,946,732,18,21 +64577,27,1096,788,46,18,21 +64578,27,1096,789,732,18,21 +64579,27,1096,760,753,18,21 +64580,27,1096,740,755,18,21 +64581,27,1096,761,10,18,21 +64582,27,1096,762,11,18,21 +64583,27,1096,763,438,18,21 +64584,27,1096,931,764,18,21 +64585,27,1096,765,766,18,21 +64586,30,1096,841,762,19,22 +64587,30,1096,785,765,19,22 +64588,30,1096,903,351,19,22 +64589,30,1096,821,704,19,22 +64590,30,1096,825,351,19,22 +64591,30,1096,807,10,19,22 +64592,30,1096,828,12,19,22 +64593,30,1096,872,164,19,22 +64594,30,1096,888,185,19,22 +64595,30,1096,938,440,19,22 +64596,30,1096,939,732,19,22 +64597,30,1096,727,732,19,22 +64598,30,1096,940,732,19,22 +64599,30,1096,744,163,19,22 +64600,30,1096,734,753,19,22 +64601,30,1096,771,11,19,22 +64602,30,1096,804,46,19,22 +64603,30,1096,767,438,19,22 +64604,30,1096,745,755,19,22 +64605,30,1096,746,762,19,22 +64606,30,1096,838,764,19,22 +64607,30,1096,848,765,19,22 +64608,30,1096,941,127,19,22 +64609,30,1096,942,732,19,22 +64610,29,1096,841,762,19,22 +64611,29,1096,785,766,19,22 +64612,29,1096,903,351,19,22 +64613,29,1096,821,704,19,22 +64614,29,1096,825,351,19,22 +64615,29,1096,807,10,19,22 +64616,29,1096,828,12,19,22 +64617,29,1096,872,164,19,22 +64618,29,1096,888,185,19,22 +64619,29,1096,938,440,19,22 +64620,29,1096,939,732,19,22 +64621,29,1096,727,732,19,22 +64622,29,1096,940,732,19,22 +64623,29,1096,744,163,19,22 +64624,29,1096,734,753,19,22 +64625,29,1096,771,11,19,22 +64626,29,1096,804,46,19,22 +64627,29,1096,767,438,19,22 +64628,29,1096,745,755,19,22 +64629,29,1096,746,762,19,22 +64630,29,1096,838,764,19,22 +64631,29,1096,848,766,19,22 +64632,29,1096,941,127,19,22 +64633,29,1096,942,732,19,22 +64634,28,1097,849,753,18,21 +64635,28,1097,902,351,18,21 +64636,28,1097,818,704,18,21 +64637,28,1097,824,351,18,21 +64638,28,1097,758,732,18,21 +64639,28,1097,791,761,18,21 +64640,28,1097,789,732,18,21 +64641,28,1097,760,753,18,21 +64642,28,1097,792,46,18,21 +64643,28,1097,761,755,18,21 +64644,28,1097,870,764,18,21 +64645,28,1097,937,765,18,21 +64646,27,1097,849,753,18,21 +64647,27,1097,902,351,18,21 +64648,27,1097,818,704,18,21 +64649,27,1097,824,351,18,21 +64650,27,1097,758,732,18,21 +64651,27,1097,791,761,18,21 +64652,27,1097,789,732,18,21 +64653,27,1097,760,753,18,21 +64654,27,1097,792,46,18,21 +64655,27,1097,761,755,18,21 +64656,27,1097,870,764,18,21 +64657,27,1097,937,766,18,21 +64658,30,1097,841,762,19,22 +64659,30,1097,785,765,19,22 +64660,30,1097,903,351,19,22 +64661,30,1097,821,704,19,22 +64662,30,1097,825,351,19,22 +64663,30,1097,807,10,19,22 +64664,30,1097,828,12,19,22 +64665,30,1097,872,164,19,22 +64666,30,1097,888,185,19,22 +64667,30,1097,938,440,19,22 +64668,30,1097,939,732,19,22 +64669,30,1097,727,732,19,22 +64670,30,1097,940,732,19,22 +64671,30,1097,744,163,19,22 +64672,30,1097,734,753,19,22 +64673,30,1097,771,11,19,22 +64674,30,1097,804,46,19,22 +64675,30,1097,767,438,19,22 +64676,30,1097,745,755,19,22 +64677,30,1097,746,762,19,22 +64678,30,1097,838,764,19,22 +64679,30,1097,848,765,19,22 +64680,30,1097,941,127,19,22 +64681,30,1097,942,732,19,22 +64682,29,1097,841,762,19,22 +64683,29,1097,785,766,19,22 +64684,29,1097,903,351,19,22 +64685,29,1097,821,704,19,22 +64686,29,1097,825,351,19,22 +64687,29,1097,807,10,19,22 +64688,29,1097,828,12,19,22 +64689,29,1097,872,164,19,22 +64690,29,1097,888,185,19,22 +64691,29,1097,938,440,19,22 +64692,29,1097,939,732,19,22 +64693,29,1097,727,732,19,22 +64694,29,1097,940,732,19,22 +64695,29,1097,744,163,19,22 +64696,29,1097,734,753,19,22 +64697,29,1097,771,11,19,22 +64698,29,1097,804,46,19,22 +64699,29,1097,767,438,19,22 +64700,29,1097,745,755,19,22 +64701,29,1097,746,762,19,22 +64702,29,1097,838,764,19,22 +64703,29,1097,848,766,19,22 +64704,29,1097,941,127,19,22 +64705,29,1097,942,732,19,22 +64706,30,1098,773,792,60,60 +64707,29,1098,773,791,60,60 +64708,28,1099,829,440,27,27 +64709,27,1099,829,440,27,27 +64710,28,1100,755,569,24,27 +64711,28,1100,739,568,24,27 +64712,28,1100,716,10112,24,27 +64713,28,1100,760,81,24,27 +64714,28,1100,740,735,24,27 +64715,28,1100,741,10092,24,27 +64716,27,1100,755,569,24,27 +64717,27,1100,739,568,24,27 +64718,27,1100,716,10112,24,27 +64719,27,1100,760,81,24,27 +64720,27,1100,740,735,24,27 +64721,27,1100,741,10092,24,27 +64722,30,1100,766,568,25,28 +64723,30,1100,733,10112,25,28 +64724,30,1100,734,81,25,28 +64725,30,1100,735,572,25,28 +64726,29,1100,766,568,25,28 +64727,29,1100,733,10112,25,28 +64728,29,1100,734,81,25,28 +64729,29,1100,735,572,25,28 +64730,28,1101,902,351,24,27 +64731,28,1101,818,61,24,27 +64732,28,1101,824,62,24,27 +64733,28,1101,947,186,24,27 +64734,28,1101,759,119,10,27 +64735,28,1101,943,130,10,27 +64736,28,1101,948,129,10,27 +64737,28,1101,949,118,10,27 +64738,28,1101,788,60,24,27 +64739,28,1101,789,166,24,27 +64740,28,1101,760,168,24,27 +64741,28,1101,740,284,24,27 +64742,28,1101,741,752,24,27 +64743,28,1101,742,10107,24,27 +64744,28,1101,763,54,24,27 +64745,28,1101,764,548,24,27 +64746,28,1101,950,797,65,65 +64747,27,1101,902,351,24,27 +64748,27,1101,818,61,24,27 +64749,27,1101,824,62,24,27 +64750,27,1101,947,186,24,27 +64751,27,1101,759,119,10,27 +64752,27,1101,943,130,10,27 +64753,27,1101,948,129,10,27 +64754,27,1101,949,118,10,27 +64755,27,1101,788,60,24,27 +64756,27,1101,789,166,24,27 +64757,27,1101,760,168,24,27 +64758,27,1101,740,284,24,27 +64759,27,1101,741,752,24,27 +64760,27,1101,742,10107,24,27 +64761,27,1101,763,54,24,27 +64762,27,1101,764,546,24,27 +64763,27,1101,950,798,60,60 +64764,30,1101,805,130,10,33 +64765,30,1101,785,129,10,33 +64766,30,1101,786,118,10,33 +64767,30,1101,835,550,10,33 +64768,30,1101,903,351,25,28 +64769,30,1101,821,61,25,28 +64770,30,1101,825,62,25,28 +64771,30,1101,951,186,25,28 +64772,30,1101,828,10108,25,28 +64773,30,1101,872,119,10,28 +64774,30,1101,888,130,10,28 +64775,30,1101,727,119,10,33 +64776,30,1101,728,130,10,33 +64777,30,1101,952,129,10,28 +64778,30,1101,873,118,10,28 +64779,30,1101,896,550,10,28 +64780,30,1101,810,130,10,28 +64781,30,1101,743,61,25,28 +64782,30,1101,744,166,25,28 +64783,30,1101,734,168,25,28 +64784,30,1101,735,284,25,28 +64785,30,1101,736,752,25,28 +64786,30,1101,827,10107,25,28 +64787,30,1101,745,54,25,28 +64788,30,1101,746,548,25,28 +64789,29,1101,805,130,10,33 +64790,29,1101,785,129,10,33 +64791,29,1101,786,118,10,33 +64792,29,1101,835,550,10,33 +64793,29,1101,903,351,25,28 +64794,29,1101,821,61,25,28 +64795,29,1101,825,62,25,28 +64796,29,1101,951,186,25,28 +64797,29,1101,828,10108,25,28 +64798,29,1101,872,119,10,28 +64799,29,1101,888,130,10,28 +64800,29,1101,727,119,10,33 +64801,29,1101,728,130,10,33 +64802,29,1101,952,129,10,28 +64803,29,1101,873,118,10,28 +64804,29,1101,896,550,10,28 +64805,29,1101,810,130,10,28 +64806,29,1101,743,61,25,28 +64807,29,1101,744,166,25,28 +64808,29,1101,734,168,25,28 +64809,29,1101,735,284,25,28 +64810,29,1101,736,752,25,28 +64811,29,1101,827,10107,25,28 +64812,29,1101,745,54,25,28 +64813,29,1101,746,546,25,28 +64814,28,1102,755,10,9,12 +64815,28,1102,756,12,9,12 +64816,28,1102,757,12,9,12 +64817,28,1102,739,548,9,12 +64818,28,1102,716,742,9,12 +64819,28,1102,760,10123,9,12 +64820,28,1102,792,10,9,12 +64821,28,1102,953,11,9,12 +64822,28,1102,843,12,9,12 +64823,27,1102,755,10,9,12 +64824,27,1102,756,12,9,12 +64825,27,1102,757,12,9,12 +64826,27,1102,739,546,9,12 +64827,27,1102,716,742,9,12 +64828,27,1102,760,10123,9,12 +64829,27,1102,792,10,9,12 +64830,27,1102,953,11,9,12 +64831,27,1102,843,12,9,12 +64832,27,1102,954,794,65,65 +64833,30,1102,724,10,10,12 +64834,30,1102,725,12,10,12 +64835,30,1102,726,12,10,12 +64836,30,1102,743,548,10,12 +64837,30,1102,744,669,10,12 +64838,30,1102,734,742,10,12 +64839,30,1102,735,10123,10,12 +64840,30,1102,804,10,10,12 +64841,30,1102,853,11,10,12 +64842,30,1102,854,12,10,12 +64843,29,1102,724,10,9,12 +64844,29,1102,725,12,9,12 +64845,29,1102,726,12,9,12 +64846,29,1102,743,10123,9,12 +64847,29,1102,744,546,9,12 +64848,29,1102,734,669,9,12 +64849,29,1102,735,742,9,12 +64850,29,1102,804,10,9,12 +64851,29,1102,853,11,9,12 +64852,29,1102,854,12,9,12 +64853,28,1103,955,370,10,18 +64854,28,1103,782,129,10,18 +64855,28,1103,798,222,10,18 +64856,28,1103,956,746,10,18 +64857,28,1103,755,130,10,18 +64858,28,1103,756,747,10,18 +64859,28,1103,799,130,10,18 +64860,28,1103,891,747,10,18 +64861,28,1103,957,129,10,18 +64862,28,1103,794,746,10,18 +64863,28,1103,795,222,10,18 +64864,28,1103,958,370,10,18 +64865,28,1103,748,72,15,18 +64866,28,1103,749,456,15,18 +64867,28,1103,750,278,15,18 +64868,27,1103,955,370,10,18 +64869,27,1103,782,129,10,18 +64870,27,1103,798,222,10,18 +64871,27,1103,956,746,10,18 +64872,27,1103,755,130,10,18 +64873,27,1103,756,747,10,18 +64874,27,1103,799,130,10,18 +64875,27,1103,891,747,10,18 +64876,27,1103,957,129,10,18 +64877,27,1103,794,746,10,18 +64878,27,1103,795,222,10,18 +64879,27,1103,958,370,10,18 +64880,27,1103,748,72,15,18 +64881,27,1103,749,456,15,18 +64882,27,1103,750,278,15,18 +64883,30,1103,805,366,10,22 +64884,30,1103,908,222,10,22 +64885,30,1103,786,366,10,22 +64886,30,1103,835,129,10,22 +64887,30,1103,924,223,10,22 +64888,30,1103,959,370,10,22 +64889,30,1103,960,746,10,22 +64890,30,1103,961,222,10,22 +64891,30,1103,724,223,15,18 +64892,30,1103,725,130,10,17 +64893,30,1103,726,224,10,17 +64894,30,1103,807,367,10,17 +64895,30,1103,828,368,10,17 +64896,30,1103,872,747,10,17 +64897,30,1103,727,130,10,22 +64898,30,1103,728,224,10,22 +64899,30,1103,808,367,10,22 +64900,30,1103,913,368,10,22 +64901,30,1103,914,747,10,22 +64902,30,1103,925,129,10,17 +64903,30,1103,926,370,10,17 +64904,30,1103,896,746,10,17 +64905,30,1103,882,223,10,17 +64906,30,1103,927,222,10,17 +64907,30,1103,928,366,10,17 +64908,30,1103,811,72,15,18 +64909,30,1103,929,278,15,18 +64910,30,1103,802,456,15,18 +64911,30,1103,803,458,15,18 +64912,29,1103,805,366,10,22 +64913,29,1103,908,222,10,22 +64914,29,1103,786,366,10,22 +64915,29,1103,835,129,10,22 +64916,29,1103,924,223,10,22 +64917,29,1103,959,370,10,22 +64918,29,1103,960,746,10,22 +64919,29,1103,961,222,10,22 +64920,29,1103,724,223,15,18 +64921,29,1103,725,130,10,17 +64922,29,1103,726,224,10,17 +64923,29,1103,807,367,10,17 +64924,29,1103,828,368,10,17 +64925,29,1103,872,747,10,17 +64926,29,1103,727,130,10,22 +64927,29,1103,728,224,10,22 +64928,29,1103,808,367,10,22 +64929,29,1103,913,368,10,22 +64930,29,1103,914,747,10,22 +64931,29,1103,925,129,10,17 +64932,29,1103,926,370,10,17 +64933,29,1103,896,746,10,17 +64934,29,1103,882,223,10,17 +64935,29,1103,927,222,10,17 +64936,29,1103,928,366,10,17 +64937,29,1103,811,72,15,18 +64938,29,1103,929,278,15,18 +64939,29,1103,802,456,15,18 +64940,29,1103,803,458,15,18 +64941,28,1104,715,92,20,23 +64942,28,1104,716,708,20,23 +64943,28,1104,760,41,20,23 +64944,28,1104,962,796,65,65 +64945,27,1104,715,92,20,23 +64946,27,1104,716,708,20,23 +64947,27,1104,760,41,20,23 +64948,27,1104,962,796,65,65 +64949,30,1104,724,42,21,24 +64950,30,1104,732,92,21,24 +64951,30,1104,733,708,21,24 +64952,30,1104,734,41,21,24 +64953,29,1104,724,42,21,24 +64954,29,1104,732,92,21,24 +64955,29,1104,733,708,21,24 +64956,29,1104,734,41,21,24 +64957,30,1106,724,35,27,30 +64958,30,1106,725,440,27,30 +64959,30,1106,826,774,27,30 +64960,30,1106,733,605,27,30 +64961,30,1106,787,774,27,30 +64962,30,1106,735,173,27,30 +64963,30,1106,736,374,27,30 +64964,30,1106,827,605,27,30 +64965,30,1106,745,132,27,30 +64966,29,1106,724,35,27,30 +64967,29,1106,725,440,27,30 +64968,29,1106,826,774,27,30 +64969,29,1106,733,605,27,30 +64970,29,1106,787,774,27,30 +64971,29,1106,735,173,27,30 +64972,29,1106,736,374,27,30 +64973,29,1106,827,605,27,30 +64974,29,1106,745,132,27,30 +64975,28,1105,714,610,28,28 +64976,28,1105,755,35,25,28 +64977,28,1105,756,113,25,28 +64978,28,1105,791,22,25,28 +64979,28,1105,716,22,25,28 +64980,28,1105,717,774,25,28 +64981,28,1105,792,132,25,28 +64982,28,1105,761,173,25,28 +64983,28,1105,762,227,25,28 +64984,28,1105,763,374,25,28 +64985,27,1105,714,610,28,28 +64986,27,1105,755,35,25,28 +64987,27,1105,756,113,25,28 +64988,27,1105,791,22,25,28 +64989,27,1105,716,22,25,28 +64990,27,1105,717,774,25,28 +64991,27,1105,792,132,25,28 +64992,27,1105,761,173,25,28 +64993,27,1105,762,227,25,28 +64994,27,1105,763,374,25,28 +64995,30,1105,723,610,30,30 +64996,29,1105,723,610,30,30 +64997,30,1107,724,35,27,30 +64998,30,1107,725,125,27,30 +64999,30,1107,726,440,27,30 +65000,30,1107,807,440,27,30 +65001,30,1107,766,22,27,30 +65002,30,1107,744,173,27,30 +65003,30,1107,734,605,27,30 +65004,30,1107,771,22,27,30 +65005,30,1107,804,132,27,30 +65006,30,1107,767,227,27,30 +65007,30,1107,745,239,27,30 +65008,30,1107,746,374,27,30 +65009,30,1107,838,774,27,30 +65010,29,1107,724,35,27,30 +65011,29,1107,725,125,27,30 +65012,29,1107,726,440,27,30 +65013,29,1107,807,440,27,30 +65014,29,1107,766,22,27,30 +65015,29,1107,744,173,27,30 +65016,29,1107,734,605,27,30 +65017,29,1107,771,22,27,30 +65018,29,1107,804,132,27,30 +65019,29,1107,767,227,27,30 +65020,29,1107,745,239,27,30 +65021,29,1107,746,374,27,30 +65022,29,1107,838,774,27,30 +65023,30,1108,903,351,30,33 +65024,30,1108,963,582,30,33 +65025,30,1108,766,361,30,33 +65026,30,1108,733,10101,30,33 +65027,30,1108,734,359,30,33 +65028,30,1108,735,735,30,33 +65029,30,1108,736,10092,30,33 +65030,29,1108,903,351,30,33 +65031,29,1108,963,582,30,33 +65032,29,1108,766,361,30,33 +65033,29,1108,733,10103,30,33 +65034,29,1108,734,359,30,33 +65035,29,1108,735,735,30,33 +65036,29,1108,736,10092,30,33 +65037,28,1109,755,362,42,45 +65038,28,1109,739,42,42,45 +65039,28,1109,716,361,42,45 +65040,28,1109,760,215,42,45 +65041,28,1109,792,359,42,45 +65042,28,1109,761,780,42,45 +65043,27,1109,755,362,42,45 +65044,27,1109,739,42,42,45 +65045,27,1109,716,361,42,45 +65046,27,1109,760,215,42,45 +65047,27,1109,792,359,42,45 +65048,30,1109,766,42,48,51 +65049,30,1109,733,362,48,51 +65050,30,1109,734,215,48,51 +65051,30,1109,771,359,48,51 +65052,30,1109,804,780,48,51 +65053,29,1109,766,42,48,51 +65054,29,1109,733,362,48,51 +65055,29,1109,734,215,48,51 +65056,29,1109,735,359,48,51 +65057,28,1110,902,351,42,45 +65058,28,1110,818,583,42,45 +65059,28,1110,824,351,42,45 +65060,28,1110,758,362,42,45 +65061,28,1110,739,361,42,45 +65062,28,1110,716,10101,42,45 +65063,28,1110,760,215,42,45 +65064,28,1110,740,359,42,45 +65065,27,1110,902,351,42,45 +65066,27,1110,818,583,42,45 +65067,27,1110,824,351,42,45 +65068,27,1110,758,362,42,45 +65069,27,1110,739,361,42,45 +65070,27,1110,716,10103,42,45 +65071,27,1110,760,215,42,45 +65072,27,1110,740,359,42,45 +65073,30,1110,768,800,65,65 +65074,30,1110,903,351,42,45 +65075,30,1110,821,583,47,50 +65076,30,1110,825,584,42,45 +65077,30,1110,766,362,47,50 +65078,30,1110,733,10101,47,50 +65079,30,1110,734,215,47,50 +65080,30,1110,735,359,47,50 +65081,29,1110,768,800,65,65 +65082,29,1110,903,351,42,45 +65083,29,1110,821,583,47,50 +65084,29,1110,825,584,42,45 +65085,29,1110,766,362,47,50 +65086,29,1110,733,10103,47,50 +65087,29,1110,734,215,47,50 +65088,29,1110,735,359,47,50 +65089,28,1111,713,133,1,1 +65090,28,1111,755,128,12,15 +65091,28,1111,756,241,12,15 +65092,28,1111,715,749,12,15 +65093,28,1111,964,506,12,15 +65094,28,1111,965,128,12,15 +65095,28,1111,966,241,12,15 +65096,27,1111,713,133,1,1 +65097,27,1111,755,128,12,15 +65098,27,1111,756,241,12,15 +65099,27,1111,715,749,12,15 +65100,27,1111,964,506,12,15 +65101,27,1111,965,128,12,15 +65102,27,1111,966,241,12,15 +65103,30,1111,773,133,1,1 +65104,30,1111,724,128,12,15 +65105,30,1111,725,241,12,15 +65106,30,1111,826,749,12,15 +65107,30,1111,733,179,12,15 +65108,30,1111,734,506,12,15 +65109,30,1111,967,128,12,15 +65110,30,1111,968,241,12,15 +65111,29,1111,773,133,1,1 +65112,29,1111,724,128,12,15 +65113,29,1111,725,241,12,15 +65114,29,1111,826,749,12,15 +65115,29,1111,733,179,12,15 +65116,29,1111,734,506,12,15 +65117,29,1111,967,128,12,15 +65118,29,1111,968,241,12,15 +65119,28,1112,796,129,10,18 +65120,28,1112,969,339,10,18 +65121,28,1112,755,130,10,18 +65122,28,1112,756,340,10,18 +65123,28,1112,799,130,10,18 +65124,28,1112,891,340,10,18 +65125,28,1112,970,129,10,18 +65126,28,1112,971,339,10,18 +65127,27,1112,796,129,10,18 +65128,27,1112,969,339,10,18 +65129,27,1112,755,130,10,18 +65130,27,1112,756,340,10,18 +65131,27,1112,799,130,10,18 +65132,27,1112,891,340,10,18 +65133,27,1112,970,129,10,18 +65134,27,1112,971,339,10,18 +65135,30,1112,972,339,10,22 +65136,30,1112,973,129,10,22 +65137,30,1112,724,130,10,17 +65138,30,1112,725,340,10,17 +65139,30,1112,727,130,10,22 +65140,30,1112,728,340,10,22 +65141,30,1112,974,129,10,17 +65142,30,1112,975,339,10,17 +65143,29,1112,972,339,10,22 +65144,29,1112,973,129,10,22 +65145,29,1112,724,130,10,17 +65146,29,1112,725,340,10,17 +65147,29,1112,727,130,10,22 +65148,29,1112,728,340,10,22 +65149,29,1112,974,129,10,17 +65150,29,1112,975,339,10,17 +65151,28,1160,976,123,49,55 +65152,28,1160,977,131,49,55 +65153,28,1160,978,587,49,55 +65154,28,1160,979,21,49,55 +65155,28,1160,980,41,49,55 +65156,28,1160,981,60,49,55 +65157,28,1160,982,81,49,55 +65158,28,1160,983,90,49,55 +65159,28,1160,984,92,49,55 +65160,28,1160,985,120,49,55 +65161,28,1160,986,127,49,55 +65162,28,1160,987,227,49,55 +65163,28,1160,988,278,49,55 +65164,28,1160,989,661,49,55 +65165,28,1160,990,707,49,55 +65166,28,1160,991,731,49,55 +65167,28,1160,992,771,49,55 +65168,28,1160,993,64,49,55 +65169,28,1160,994,198,49,55 +65170,28,1160,995,375,49,55 +65171,28,1160,996,426,49,55 +65172,28,1160,997,429,49,55 +65173,28,1160,998,629,49,55 +65174,28,1160,999,703,49,55 +65175,28,1160,1000,709,49,55 +65176,27,1160,976,123,49,55 +65177,27,1160,977,131,49,55 +65178,27,1160,978,587,49,55 +65179,27,1160,979,21,49,55 +65180,27,1160,980,41,49,55 +65181,27,1160,981,60,49,55 +65182,27,1160,982,81,49,55 +65183,27,1160,983,90,49,55 +65184,27,1160,984,92,49,55 +65185,27,1160,985,120,49,55 +65186,27,1160,986,127,49,55 +65187,27,1160,987,227,49,55 +65188,27,1160,988,278,49,55 +65189,27,1160,989,661,49,55 +65190,27,1160,990,703,49,55 +65191,27,1160,991,707,49,55 +65192,27,1160,992,731,49,55 +65193,27,1160,1001,771,49,55 +65194,27,1160,994,64,49,55 +65195,27,1160,995,198,49,55 +65196,27,1160,996,375,49,55 +65197,27,1160,997,426,49,55 +65198,27,1160,998,429,49,55 +65199,27,1160,999,627,49,55 +65200,27,1160,1000,709,49,55 +65201,30,1160,1002,209,49,55 +65202,30,1160,1003,357,49,55 +65203,30,1160,1004,667,49,55 +65204,30,1160,1005,41,49,55 +65205,30,1160,1006,120,49,55 +65206,30,1160,1007,127,49,55 +65207,30,1160,1008,278,49,55 +65208,30,1160,1009,731,49,55 +65209,30,1160,1010,771,49,55 +65210,30,1160,1011,86,49,55 +65211,30,1160,1012,131,49,55 +65212,30,1160,1013,163,49,55 +65213,30,1160,1014,177,49,55 +65214,30,1160,1015,222,49,55 +65215,30,1160,1016,701,49,55 +65216,30,1160,1017,742,49,55 +65217,30,1160,1018,764,49,55 +65218,30,1160,1019,79,49,55 +65219,30,1160,1020,122,49,55 +65220,30,1160,1021,124,49,55 +65221,30,1160,1022,180,49,55 +65222,30,1160,1023,200,49,55 +65223,30,1160,1024,309,49,55 +65224,30,1160,1025,354,49,55 +65225,30,1160,1026,430,49,55 +65226,29,1160,1002,209,49,55 +65227,29,1160,1003,357,49,55 +65228,29,1160,1004,667,49,55 +65229,29,1160,1005,41,49,55 +65230,29,1160,1006,120,49,55 +65231,29,1160,1007,127,49,55 +65232,29,1160,1008,278,49,55 +65233,29,1160,1009,731,49,55 +65234,29,1160,1010,771,49,55 +65235,29,1160,1011,79,49,55 +65236,29,1160,1012,86,49,55 +65237,29,1160,1013,131,49,55 +65238,29,1160,1014,163,49,55 +65239,29,1160,1015,177,49,55 +65240,29,1160,1016,222,49,55 +65241,29,1160,1017,701,49,55 +65242,29,1160,1018,742,49,55 +65243,29,1160,1027,764,49,55 +65244,29,1160,1020,122,49,55 +65245,29,1160,1021,124,49,55 +65246,29,1160,1022,180,49,55 +65247,29,1160,1023,200,49,55 +65248,29,1160,1024,228,49,55 +65249,29,1160,1025,354,49,55 +65250,29,1160,1026,430,49,55 +65251,28,1158,1028,227,37,43 +65252,28,1158,1029,707,37,43 +65253,28,1158,1030,21,37,43 +65254,28,1158,1031,41,37,43 +65255,28,1158,1032,60,37,43 +65256,28,1158,1033,81,37,43 +65257,28,1158,1034,90,37,43 +65258,28,1158,1035,92,37,43 +65259,28,1158,1036,120,37,43 +65260,28,1158,1037,127,37,43 +65261,28,1158,1038,278,37,43 +65262,28,1158,1039,661,37,43 +65263,28,1158,1040,703,37,43 +65264,28,1158,1041,731,37,43 +65265,28,1158,1042,771,37,43 +65266,28,1158,1043,64,37,43 +65267,28,1158,1044,198,37,43 +65268,28,1158,1045,375,37,43 +65269,28,1158,1046,426,37,43 +65270,28,1158,1047,629,37,43 +65271,28,1158,1048,709,37,43 +65272,27,1158,1028,227,37,43 +65273,27,1158,1029,707,37,43 +65274,27,1158,1030,21,37,43 +65275,27,1158,1031,41,37,43 +65276,27,1158,1032,60,37,43 +65277,27,1158,1033,81,37,43 +65278,27,1158,1034,90,37,43 +65279,27,1158,1035,92,37,43 +65280,27,1158,1036,120,37,43 +65281,27,1158,1037,127,37,43 +65282,27,1158,1038,278,37,43 +65283,27,1158,1039,661,37,43 +65284,27,1158,1040,703,37,43 +65285,27,1158,1041,731,37,43 +65286,27,1158,1042,771,37,43 +65287,27,1158,1043,64,37,43 +65288,27,1158,1044,198,37,43 +65289,27,1158,1045,375,37,43 +65290,27,1158,1046,426,37,43 +65291,27,1158,1047,627,37,43 +65292,27,1158,1048,709,37,43 +65293,30,1158,1049,131,37,43 +65294,30,1158,1050,41,37,43 +65295,30,1158,1051,120,37,43 +65296,30,1158,1052,127,37,43 +65297,30,1158,1053,278,37,43 +65298,30,1158,1054,731,37,43 +65299,30,1158,1055,771,37,43 +65300,30,1158,1056,79,37,43 +65301,30,1158,1057,86,37,43 +65302,30,1158,1058,163,37,43 +65303,30,1158,1059,177,37,43 +65304,30,1158,1060,222,37,43 +65305,30,1158,1061,701,37,43 +65306,30,1158,1062,742,37,43 +65307,30,1158,1063,764,37,43 +65308,30,1158,1064,122,37,43 +65309,30,1158,1065,124,37,43 +65310,30,1158,1066,180,37,43 +65311,30,1158,1067,200,37,43 +65312,30,1158,1068,309,37,43 +65313,30,1158,1069,354,37,43 +65314,29,1158,1049,131,37,43 +65315,29,1158,1050,41,37,43 +65316,29,1158,1051,120,37,43 +65317,29,1158,1052,127,37,43 +65318,29,1158,1053,278,37,43 +65319,29,1158,1054,731,37,43 +65320,29,1158,1055,771,37,43 +65321,29,1158,1056,79,37,43 +65322,29,1158,1057,86,37,43 +65323,29,1158,1058,163,37,43 +65324,29,1158,1059,177,37,43 +65325,29,1158,1060,222,37,43 +65326,29,1158,1061,701,37,43 +65327,29,1158,1062,742,37,43 +65328,29,1158,1063,764,37,43 +65329,29,1158,1064,122,37,43 +65330,29,1158,1065,124,37,43 +65331,29,1158,1066,180,37,43 +65332,29,1158,1067,200,37,43 +65333,29,1158,1068,228,37,43 +65334,29,1158,1069,354,37,43 +65335,28,1159,1028,60,21,27 +65336,28,1159,1029,120,21,27 +65337,28,1159,1070,127,21,27 +65338,28,1159,1071,661,21,27 +65339,28,1159,1072,771,21,27 +65340,28,1159,1073,21,21,27 +65341,28,1159,1074,41,21,27 +65342,28,1159,1075,81,21,27 +65343,28,1159,1076,90,21,27 +65344,28,1159,1077,92,21,27 +65345,28,1159,1078,278,21,27 +65346,28,1159,1079,703,21,27 +65347,28,1159,1080,731,21,27 +65348,28,1159,1081,64,21,27 +65349,28,1159,1082,198,21,27 +65350,28,1159,1043,426,21,27 +65351,28,1159,1044,629,21,27 +65352,28,1159,1045,709,21,27 +65353,27,1159,1028,60,21,27 +65354,27,1159,1029,120,21,27 +65355,27,1159,1070,127,21,27 +65356,27,1159,1071,661,21,27 +65357,27,1159,1072,771,21,27 +65358,27,1159,1073,21,21,27 +65359,27,1159,1074,41,21,27 +65360,27,1159,1075,81,21,27 +65361,27,1159,1076,90,21,27 +65362,27,1159,1077,92,21,27 +65363,27,1159,1078,278,21,27 +65364,27,1159,1079,703,21,27 +65365,27,1159,1080,731,21,27 +65366,27,1159,1081,64,21,27 +65367,27,1159,1082,198,21,27 +65368,27,1159,1043,426,21,27 +65369,27,1159,1044,627,21,27 +65370,27,1159,1045,709,21,27 +65371,30,1159,1049,127,21,27 +65372,30,1159,1083,771,21,27 +65373,30,1159,1084,163,21,27 +65374,30,1159,1085,177,21,27 +65375,30,1159,1086,701,21,27 +65376,30,1159,1087,764,21,27 +65377,30,1159,1055,41,21,27 +65378,30,1159,1056,79,21,27 +65379,30,1159,1057,86,21,27 +65380,30,1159,1058,120,21,27 +65381,30,1159,1059,222,21,27 +65382,30,1159,1060,278,21,27 +65383,30,1159,1061,731,21,27 +65384,30,1159,1062,742,21,27 +65385,30,1159,1088,122,21,27 +65386,30,1159,1064,124,21,27 +65387,30,1159,1065,180,21,27 +65388,29,1159,1049,127,21,27 +65389,29,1159,1083,771,21,27 +65390,29,1159,1084,163,21,27 +65391,29,1159,1085,177,21,27 +65392,29,1159,1086,701,21,27 +65393,29,1159,1087,764,21,27 +65394,29,1159,1055,41,21,27 +65395,29,1159,1056,79,21,27 +65396,29,1159,1057,86,21,27 +65397,29,1159,1058,120,21,27 +65398,29,1159,1059,222,21,27 +65399,29,1159,1060,278,21,27 +65400,29,1159,1061,731,21,27 +65401,29,1159,1062,742,21,27 +65402,29,1159,1088,122,21,27 +65403,29,1159,1064,124,21,27 +65404,29,1159,1065,180,21,27 +65405,28,1113,796,129,10,43 +65406,28,1113,1089,320,10,43 +65407,28,1113,904,319,10,43 +65408,28,1113,869,767,40,43 +65409,28,1113,755,130,10,43 +65410,28,1113,756,321,10,43 +65411,28,1113,799,130,10,43 +65412,28,1113,891,321,10,43 +65413,28,1113,793,129,10,43 +65414,28,1113,794,320,10,43 +65415,28,1113,795,319,10,43 +65416,27,1113,796,129,10,43 +65417,27,1113,1089,320,10,43 +65418,27,1113,904,319,10,43 +65419,27,1113,869,767,40,43 +65420,27,1113,755,130,10,43 +65421,27,1113,756,321,10,43 +65422,27,1113,799,130,10,43 +65423,27,1113,891,321,10,43 +65424,27,1113,793,129,10,43 +65425,27,1113,794,320,10,43 +65426,27,1113,795,319,10,43 +65427,30,1113,841,320,41,44 +65428,30,1113,908,691,41,44 +65429,30,1113,909,321,41,44 +65430,30,1113,1090,129,10,49 +65431,30,1113,1091,320,10,49 +65432,30,1113,1092,318,10,49 +65433,30,1113,1093,369,10,49 +65434,30,1113,768,767,41,44 +65435,30,1113,724,130,10,44 +65436,30,1113,725,319,10,44 +65437,30,1113,726,321,10,44 +65438,30,1113,727,130,10,49 +65439,30,1113,728,319,10,49 +65440,30,1113,808,321,10,49 +65441,30,1113,883,129,10,44 +65442,30,1113,730,320,10,44 +65443,30,1113,884,318,10,44 +65444,30,1113,885,369,10,44 +65445,30,1113,800,73,41,44 +65446,30,1113,886,457,41,44 +65447,30,1113,802,279,41,44 +65448,30,1113,803,423,41,44 +65449,30,1113,887,131,41,44 +65450,29,1113,841,320,41,44 +65451,29,1113,908,693,41,44 +65452,29,1113,909,321,41,44 +65453,29,1113,1090,129,10,49 +65454,29,1113,1091,320,10,49 +65455,29,1113,1092,318,10,49 +65456,29,1113,1093,369,10,49 +65457,29,1113,768,767,41,44 +65458,29,1113,724,130,10,44 +65459,29,1113,725,319,10,44 +65460,29,1113,726,321,10,44 +65461,29,1113,727,130,10,49 +65462,29,1113,728,319,10,49 +65463,29,1113,808,321,10,49 +65464,29,1113,883,129,10,44 +65465,29,1113,730,320,10,44 +65466,29,1113,884,318,10,44 +65467,29,1113,885,369,10,44 +65468,29,1113,800,73,41,44 +65469,29,1113,886,457,41,44 +65470,29,1113,802,279,41,44 +65471,29,1113,803,423,41,44 +65472,29,1113,887,131,41,44 +65473,28,1114,849,10106,56,59 +65474,27,1114,849,10106,56,59 +65475,30,1114,852,10106,56,59 +65476,29,1114,852,10106,56,59 +65477,28,1115,796,129,10,59 +65478,28,1115,1089,339,10,59 +65479,28,1115,904,147,10,59 +65480,28,1115,714,468,59,59 +65481,28,1115,829,663,59,59 +65482,28,1115,755,130,10,59 +65483,28,1115,756,148,10,59 +65484,28,1115,757,149,10,59 +65485,28,1115,758,340,10,59 +65486,28,1115,799,130,10,59 +65487,28,1115,891,148,10,59 +65488,28,1115,1094,149,10,59 +65489,28,1115,1095,340,10,59 +65490,28,1115,1096,129,10,59 +65491,28,1115,949,339,10,59 +65492,28,1115,795,147,10,59 +65493,28,1115,739,279,56,59 +65494,28,1115,716,735,56,59 +65495,28,1115,717,10092,56,59 +65496,28,1115,740,210,56,59 +65497,28,1115,772,55,56,59 +65498,28,1115,870,760,56,59 +65499,27,1115,796,129,10,59 +65500,27,1115,1089,339,10,59 +65501,27,1115,904,147,10,59 +65502,27,1115,714,468,59,59 +65503,27,1115,829,663,59,59 +65504,27,1115,755,130,10,59 +65505,27,1115,756,148,10,59 +65506,27,1115,757,149,10,59 +65507,27,1115,758,340,10,59 +65508,27,1115,799,130,10,59 +65509,27,1115,891,148,10,59 +65510,27,1115,1094,149,10,59 +65511,27,1115,1095,340,10,59 +65512,27,1115,1096,129,10,59 +65513,27,1115,949,339,10,59 +65514,27,1115,795,147,10,59 +65515,27,1115,739,279,56,59 +65516,27,1115,716,735,56,59 +65517,27,1115,717,10092,56,59 +65518,27,1115,740,210,56,59 +65519,27,1115,772,55,56,59 +65520,27,1115,870,760,56,59 +65521,30,1115,784,129,10,66 +65522,30,1115,973,339,10,66 +65523,30,1115,909,147,10,66 +65524,30,1115,723,479,61,61 +65525,30,1115,830,128,59,59 +65526,30,1115,724,130,10,61 +65527,30,1115,725,148,10,61 +65528,30,1115,726,149,10,61 +65529,30,1115,807,340,10,61 +65530,30,1115,727,130,10,66 +65531,30,1115,728,148,10,66 +65532,30,1115,808,149,10,66 +65533,30,1115,913,340,10,66 +65534,30,1115,1097,129,10,61 +65535,30,1115,730,339,10,61 +65536,30,1115,1098,147,10,61 +65537,30,1115,932,279,58,61 +65538,30,1115,744,108,58,61 +65539,30,1115,734,210,58,61 +65540,30,1115,875,686,58,61 +65541,30,1115,804,55,58,61 +65542,30,1115,767,760,58,61 +65543,29,1115,784,129,10,66 +65544,29,1115,973,339,10,66 +65545,29,1115,909,147,10,66 +65546,29,1115,723,479,61,61 +65547,29,1115,830,128,59,59 +65548,29,1115,724,130,10,61 +65549,29,1115,725,148,10,61 +65550,29,1115,726,149,10,61 +65551,29,1115,807,340,10,61 +65552,29,1115,727,130,10,66 +65553,29,1115,728,148,10,66 +65554,29,1115,808,149,10,66 +65555,29,1115,913,340,10,66 +65556,29,1115,1097,129,10,61 +65557,29,1115,730,339,10,61 +65558,29,1115,1098,147,10,61 +65559,29,1115,932,279,58,61 +65560,29,1115,744,108,58,61 +65561,29,1115,734,210,58,61 +65562,29,1115,875,686,58,61 +65563,29,1115,804,55,58,61 +65564,29,1115,767,760,58,61 +65565,28,1116,714,604,55,55 +65566,28,1116,755,113,52,55 +65567,28,1116,756,448,52,55 +65568,28,1116,739,732,52,55 +65569,28,1116,716,735,52,55 +65570,28,1116,717,10092,52,55 +65571,28,1116,740,210,52,55 +65572,28,1116,761,127,52,55 +65573,28,1116,762,447,52,55 +65574,27,1116,714,604,55,55 +65575,27,1116,755,113,52,55 +65576,27,1116,756,448,52,55 +65577,27,1116,739,732,52,55 +65578,27,1116,716,735,52,55 +65579,27,1116,717,10092,52,55 +65580,27,1116,740,210,52,55 +65581,27,1116,761,127,52,55 +65582,27,1116,762,447,52,55 +65583,30,1116,723,604,55,55 +65584,30,1116,724,448,52,55 +65585,30,1116,725,428,52,55 +65586,30,1116,726,440,52,55 +65587,30,1116,807,733,52,55 +65588,30,1116,766,732,52,55 +65589,30,1116,733,427,52,55 +65590,30,1116,734,427,52,55 +65591,30,1116,735,571,52,55 +65592,30,1116,804,127,52,55 +65593,30,1116,767,447,52,55 +65594,30,1116,745,214,52,55 +65595,30,1116,1099,805,60,60 +65596,29,1116,723,604,55,55 +65597,29,1116,724,448,52,55 +65598,29,1116,725,428,52,55 +65599,29,1116,726,440,52,55 +65600,29,1116,807,733,52,55 +65601,29,1116,766,732,52,55 +65602,29,1116,733,427,52,55 +65603,29,1116,734,427,52,55 +65604,29,1116,735,571,52,55 +65605,29,1116,804,127,52,55 +65606,29,1116,767,447,52,55 +65607,29,1116,745,214,52,55 +65608,29,1116,1099,806,60,60 +65609,28,1117,796,129,10,57 +65610,28,1117,1089,339,10,57 +65611,28,1117,904,147,10,57 +65612,28,1117,714,542,57,57 +65613,28,1117,755,130,10,57 +65614,28,1117,756,148,10,57 +65615,28,1117,757,340,10,57 +65616,28,1117,799,130,10,57 +65617,28,1117,891,148,10,57 +65618,28,1117,1094,340,10,57 +65619,28,1117,1096,129,10,57 +65620,28,1117,949,339,10,57 +65621,28,1117,795,147,10,57 +65622,28,1117,715,548,54,57 +65623,28,1117,716,743,54,57 +65624,28,1117,760,10125,54,57 +65625,27,1117,796,129,10,57 +65626,27,1117,1089,339,10,57 +65627,27,1117,904,147,10,57 +65628,27,1117,714,542,57,57 +65629,27,1117,755,130,10,57 +65630,27,1117,756,148,10,57 +65631,27,1117,757,340,10,57 +65632,27,1117,799,130,10,57 +65633,27,1117,891,148,10,57 +65634,27,1117,1094,340,10,57 +65635,27,1117,1096,129,10,57 +65636,27,1117,949,339,10,57 +65637,27,1117,795,147,10,57 +65638,27,1117,715,546,54,57 +65639,27,1117,716,743,54,57 +65640,27,1117,760,10125,54,57 +65641,30,1117,784,129,10,62 +65642,30,1117,973,339,10,62 +65643,30,1117,909,147,10,62 +65644,30,1117,723,542,57,57 +65645,30,1117,724,130,10,57 +65646,30,1117,725,148,10,57 +65647,30,1117,726,340,10,57 +65648,30,1117,727,130,10,62 +65649,30,1117,728,148,10,62 +65650,30,1117,808,340,10,62 +65651,30,1117,1097,129,10,57 +65652,30,1117,730,339,10,57 +65653,30,1117,1098,147,10,57 +65654,30,1117,766,743,54,57 +65655,30,1117,733,548,54,57 +65656,30,1117,734,10125,54,57 +65657,30,1117,735,670,54,57 +65658,30,1117,736,743,54,57 +65659,30,1117,767,200,54,57 +65660,29,1117,784,129,10,62 +65661,29,1117,973,339,10,62 +65662,29,1117,909,147,10,62 +65663,29,1117,723,542,57,57 +65664,29,1117,724,130,10,57 +65665,29,1117,725,148,10,57 +65666,29,1117,726,340,10,57 +65667,29,1117,727,130,10,62 +65668,29,1117,728,148,10,62 +65669,29,1117,808,340,10,62 +65670,29,1117,1097,129,10,57 +65671,29,1117,730,339,10,57 +65672,29,1117,1098,147,10,57 +65673,29,1117,766,743,54,57 +65674,29,1117,733,546,54,57 +65675,29,1117,734,10125,54,57 +65676,29,1117,735,670,54,57 +65677,29,1117,736,743,54,57 +65678,29,1117,767,200,54,57 +65679,28,1118,831,548,54,57 +65680,28,1118,832,735,54,57 +65681,28,1118,1100,10092,54,57 +65682,28,1118,1101,123,54,57 +65683,28,1118,1102,297,54,57 +65684,28,1118,714,534,57,57 +65685,28,1118,755,128,54,57 +65686,28,1118,756,241,54,57 +65687,28,1118,739,732,54,57 +65688,28,1118,716,735,54,57 +65689,28,1118,717,10092,54,57 +65690,28,1118,740,548,54,57 +65691,28,1118,761,128,54,57 +65692,28,1118,762,241,54,57 +65693,27,1118,831,546,54,57 +65694,27,1118,832,735,54,57 +65695,27,1118,1100,10092,54,57 +65696,27,1118,1101,123,54,57 +65697,27,1118,1102,297,54,57 +65698,27,1118,714,534,57,57 +65699,27,1118,755,128,54,57 +65700,27,1118,756,241,54,57 +65701,27,1118,739,732,54,57 +65702,27,1118,716,735,54,57 +65703,27,1118,717,10092,54,57 +65704,27,1118,740,546,54,57 +65705,27,1118,761,128,54,57 +65706,27,1118,762,241,54,57 +65707,30,1118,841,735,54,57 +65708,30,1118,1103,10092,54,57 +65709,30,1118,1104,548,54,57 +65710,30,1118,1105,123,54,57 +65711,30,1118,1091,668,54,57 +65712,30,1118,1092,113,54,57 +65713,30,1118,723,306,57,57 +65714,30,1118,724,128,54,57 +65715,30,1118,725,241,54,57 +65716,30,1118,726,733,54,57 +65717,30,1118,727,242,54,57 +65718,30,1118,766,732,54,57 +65719,30,1118,733,735,54,57 +65720,30,1118,787,10092,54,57 +65721,30,1118,735,548,54,57 +65722,30,1118,804,128,54,57 +65723,30,1118,767,241,54,57 +65724,29,1118,841,735,54,57 +65725,29,1118,1103,10092,54,57 +65726,29,1118,1104,546,54,57 +65727,29,1118,1105,123,54,57 +65728,29,1118,1091,668,54,57 +65729,29,1118,1092,113,54,57 +65730,29,1118,723,306,57,57 +65731,29,1118,724,128,54,57 +65732,29,1118,725,241,54,57 +65733,29,1118,726,733,54,57 +65734,29,1118,727,242,54,57 +65735,29,1118,766,732,54,57 +65736,29,1118,733,735,54,57 +65737,29,1118,787,10092,54,57 +65738,29,1118,735,546,54,57 +65739,29,1118,804,128,54,57 +65740,29,1118,767,241,54,57 +65741,28,1119,755,128,54,57 +65742,28,1119,756,241,54,57 +65743,28,1119,739,735,54,57 +65744,28,1119,716,10092,54,57 +65745,28,1119,760,279,54,57 +65746,28,1119,740,548,54,57 +65747,28,1119,761,128,54,57 +65748,28,1119,762,241,54,57 +65749,28,1119,763,732,54,57 +65750,27,1119,755,128,54,57 +65751,27,1119,756,241,54,57 +65752,27,1119,739,735,54,57 +65753,27,1119,716,10092,54,57 +65754,27,1119,760,279,54,57 +65755,27,1119,740,546,54,57 +65756,27,1119,761,128,54,57 +65757,27,1119,762,241,54,57 +65758,27,1119,763,732,54,57 +65759,30,1119,724,128,54,57 +65760,30,1119,725,241,54,57 +65761,30,1119,726,733,54,57 +65762,30,1119,766,735,54,57 +65763,30,1119,733,10092,54,57 +65764,30,1119,734,279,54,57 +65765,30,1119,735,548,54,57 +65766,30,1119,804,128,54,57 +65767,30,1119,767,241,54,57 +65768,30,1119,745,732,54,57 +65769,29,1119,724,128,54,57 +65770,29,1119,725,241,54,57 +65771,29,1119,726,733,54,57 +65772,29,1119,766,735,54,57 +65773,29,1119,733,10092,54,57 +65774,29,1119,734,279,54,57 +65775,29,1119,735,546,54,57 +65776,29,1119,804,128,54,57 +65777,29,1119,767,241,54,57 +65778,29,1119,745,732,54,57 +65779,28,1120,831,22,54,57 +65780,28,1120,797,630,54,57 +65781,28,1120,755,128,54,57 +65782,28,1120,756,241,54,57 +65783,28,1120,739,735,54,57 +65784,28,1120,716,10092,54,57 +65785,28,1120,760,97,54,57 +65786,28,1120,740,548,54,57 +65787,28,1120,761,128,54,57 +65788,28,1120,762,241,54,57 +65789,28,1120,763,732,54,57 +65790,27,1120,831,22,54,57 +65791,27,1120,797,628,54,57 +65792,27,1120,755,128,54,57 +65793,27,1120,756,241,54,57 +65794,27,1120,739,735,54,57 +65795,27,1120,716,10092,54,57 +65796,27,1120,760,97,54,57 +65797,27,1120,740,546,54,57 +65798,27,1120,761,128,54,57 +65799,27,1120,762,241,54,57 +65800,27,1120,763,732,54,57 +65801,30,1120,841,22,54,57 +65802,30,1120,785,630,54,57 +65803,30,1120,724,128,54,57 +65804,30,1120,725,241,54,57 +65805,30,1120,726,733,54,57 +65806,30,1120,766,735,54,57 +65807,30,1120,733,10092,54,57 +65808,30,1120,734,97,54,57 +65809,30,1120,735,297,54,57 +65810,30,1120,804,128,54,57 +65811,30,1120,767,241,54,57 +65812,30,1120,745,732,54,57 +65813,30,1120,746,97,54,57 +65814,30,1120,838,297,54,57 +65815,30,1120,839,548,54,57 +65816,29,1120,841,22,54,57 +65817,29,1120,785,628,54,57 +65818,29,1120,724,128,54,57 +65819,29,1120,725,241,54,57 +65820,29,1120,726,733,54,57 +65821,29,1120,766,735,54,57 +65822,29,1120,733,10092,54,57 +65823,29,1120,734,97,54,57 +65824,29,1120,735,297,54,57 +65825,29,1120,804,128,54,57 +65826,29,1120,767,241,54,57 +65827,29,1120,745,732,54,57 +65828,29,1120,746,97,54,57 +65829,29,1120,838,297,54,57 +65830,29,1120,839,546,54,57 +65831,28,1121,780,739,54,57 +65832,28,1121,781,57,54,57 +65833,28,1121,782,587,54,57 +65834,28,1121,755,128,54,57 +65835,28,1121,756,241,54,57 +65836,28,1121,788,22,54,57 +65837,28,1121,789,548,54,57 +65838,28,1121,760,750,54,57 +65839,28,1121,792,128,54,57 +65840,28,1121,761,241,54,57 +65841,28,1121,762,732,54,57 +65842,28,1121,763,735,54,57 +65843,28,1121,764,10092,54,57 +65844,27,1121,780,739,54,57 +65845,27,1121,781,57,54,57 +65846,27,1121,782,587,54,57 +65847,27,1121,755,128,54,57 +65848,27,1121,756,241,54,57 +65849,27,1121,788,22,54,57 +65850,27,1121,789,546,54,57 +65851,27,1121,760,750,54,57 +65852,27,1121,792,128,54,57 +65853,27,1121,761,241,54,57 +65854,27,1121,762,732,54,57 +65855,27,1121,763,735,54,57 +65856,27,1121,764,10092,54,57 +65857,30,1121,783,739,54,57 +65858,30,1121,972,57,54,57 +65859,30,1121,908,587,54,57 +65860,30,1121,786,190,54,57 +65861,30,1121,724,128,54,57 +65862,30,1121,725,241,54,57 +65863,30,1121,726,733,54,57 +65864,30,1121,727,424,54,57 +65865,30,1121,743,22,54,57 +65866,30,1121,744,548,54,57 +65867,30,1121,734,750,54,57 +65868,30,1121,771,128,54,57 +65869,30,1121,804,241,54,57 +65870,30,1121,767,732,54,57 +65871,30,1121,745,735,54,57 +65872,30,1121,746,10092,54,57 +65873,29,1121,783,739,54,57 +65874,29,1121,972,57,54,57 +65875,29,1121,908,587,54,57 +65876,29,1121,786,190,54,57 +65877,29,1121,724,128,54,57 +65878,29,1121,725,241,54,57 +65879,29,1121,726,733,54,57 +65880,29,1121,727,424,54,57 +65881,29,1121,743,22,54,57 +65882,29,1121,744,546,54,57 +65883,29,1121,734,750,54,57 +65884,29,1121,771,128,54,57 +65885,29,1121,804,241,54,57 +65886,29,1121,767,732,54,57 +65887,29,1121,745,735,54,57 +65888,29,1121,746,10092,54,57 +65889,28,1122,780,739,40,43 +65890,28,1122,1106,320,40,43 +65891,28,1122,1107,321,40,43 +65892,28,1122,1108,129,10,43 +65893,28,1122,1109,320,10,43 +65894,28,1122,1110,369,10,43 +65895,28,1122,714,503,43,43 +65896,28,1122,869,767,40,43 +65897,28,1122,755,457,40,43 +65898,28,1122,756,130,10,43 +65899,28,1122,757,321,10,43 +65900,28,1122,799,130,10,43 +65901,28,1122,891,321,10,43 +65902,28,1122,793,129,10,43 +65903,28,1122,794,320,10,43 +65904,28,1122,795,369,10,43 +65905,28,1122,855,73,40,43 +65906,28,1122,1111,457,40,43 +65907,28,1122,750,279,40,43 +65908,28,1122,857,423,40,43 +65909,28,1122,1112,131,40,43 +65910,28,1122,739,279,40,43 +65911,28,1122,716,735,40,43 +65912,28,1122,717,10092,40,43 +65913,28,1122,740,210,40,43 +65914,28,1122,761,102,40,43 +65915,28,1122,762,423,40,43 +65916,27,1122,780,739,40,43 +65917,27,1122,1106,320,40,43 +65918,27,1122,1107,321,40,43 +65919,27,1122,1108,129,10,43 +65920,27,1122,1109,320,10,43 +65921,27,1122,1110,369,10,43 +65922,27,1122,714,503,43,43 +65923,27,1122,869,767,40,43 +65924,27,1122,755,457,40,43 +65925,27,1122,756,130,10,43 +65926,27,1122,757,321,10,43 +65927,27,1122,799,130,10,43 +65928,27,1122,891,321,10,43 +65929,27,1122,793,129,10,43 +65930,27,1122,794,320,10,43 +65931,27,1122,795,369,10,43 +65932,27,1122,855,73,40,43 +65933,27,1122,1111,457,40,43 +65934,27,1122,750,279,40,43 +65935,27,1122,857,423,40,43 +65936,27,1122,1112,131,40,43 +65937,27,1122,739,279,40,43 +65938,27,1122,716,735,40,43 +65939,27,1122,717,10092,40,43 +65940,27,1122,740,210,40,43 +65941,27,1122,761,102,40,43 +65942,27,1122,762,423,40,43 +65943,30,1122,783,739,41,44 +65944,30,1122,723,658,44,44 +65945,30,1122,766,279,41,44 +65946,30,1122,744,210,41,44 +65947,30,1122,734,676,41,44 +65948,30,1122,735,686,41,44 +65949,30,1122,804,423,41,44 +65950,29,1122,783,739,41,44 +65951,29,1122,723,658,44,44 +65952,29,1122,766,279,41,44 +65953,29,1122,744,210,41,44 +65954,29,1122,734,676,41,44 +65955,29,1122,735,686,41,44 +65956,29,1122,804,423,41,44 +65957,28,1123,755,169,54,57 +65958,28,1123,899,42,54,57 +65959,28,1123,716,10106,54,57 +65960,28,1123,900,799,70,70 +65961,27,1123,755,169,54,57 +65962,27,1123,899,42,54,57 +65963,27,1123,716,10106,54,57 +65964,27,1123,900,799,70,70 +65965,30,1123,724,42,56,59 +65966,30,1123,725,169,56,59 +65967,30,1123,826,42,56,59 +65968,30,1123,733,10106,56,59 +65969,30,1123,1113,621,56,59 +65970,30,1123,875,715,56,59 +65971,29,1123,724,42,56,59 +65972,29,1123,725,169,56,59 +65973,29,1123,826,42,56,59 +65974,29,1123,733,10106,56,59 +65975,29,1123,1113,621,56,59 +65976,29,1123,875,715,56,59 +65977,30,1124,830,339,21,21 +65978,29,1124,830,339,21,21 +65979,28,1125,869,787,60,60 +65980,27,1125,869,787,60,60 +65981,30,1125,768,787,60,60 +65982,29,1125,768,787,60,60 +65983,28,1126,869,785,60,60 +65984,27,1126,869,785,60,60 +65985,30,1126,768,785,60,60 +65986,29,1126,768,785,60,60 +65987,28,1127,869,788,60,60 +65988,27,1127,869,788,60,60 +65989,30,1127,768,788,60,60 +65990,29,1127,768,788,60,60 +65991,28,1128,869,786,60,60 +65992,27,1128,869,786,60,60 +65993,30,1128,768,786,60,60 +65994,29,1128,768,786,60,60 +65995,30,1129,916,41,6,9 +65996,30,1129,733,54,6,9 +65997,29,1129,916,41,6,9 +65998,29,1129,733,54,6,9 +65999,28,1131,713,142,40,40 +66000,27,1131,713,142,40,40 +66001,30,1131,773,142,40,40 +66002,29,1131,773,142,40,40 +66003,28,1130,796,129,10,43 +66004,28,1130,1089,320,10,43 +66005,28,1130,904,781,10,43 +66006,28,1130,829,762,43,43 +66007,28,1130,755,130,10,43 +66008,28,1130,756,321,10,43 +66009,28,1130,799,130,10,43 +66010,28,1130,891,321,10,43 +66011,28,1130,793,129,10,43 +66012,28,1130,794,320,10,43 +66013,28,1130,795,781,10,43 +66014,27,1130,796,129,10,43 +66015,27,1130,1089,320,10,43 +66016,27,1130,904,781,10,43 +66017,27,1130,829,762,43,43 +66018,27,1130,755,130,10,43 +66019,27,1130,756,321,10,43 +66020,27,1130,799,130,10,43 +66021,27,1130,891,321,10,43 +66022,27,1130,793,129,10,43 +66023,27,1130,794,320,10,43 +66024,27,1130,795,781,10,43 +66025,30,1130,720,129,10,49 +66026,30,1130,721,781,10,49 +66027,30,1130,722,320,10,49 +66028,30,1130,830,422,44,44 +66029,30,1130,724,130,10,44 +66030,30,1130,725,321,10,44 +66031,30,1130,727,130,10,49 +66032,30,1130,728,321,10,49 +66033,30,1130,729,129,10,44 +66034,30,1130,730,320,10,44 +66035,30,1130,731,781,10,44 +66036,29,1130,720,129,10,49 +66037,29,1130,721,781,10,49 +66038,29,1130,722,320,10,49 +66039,29,1130,830,422,44,44 +66040,29,1130,724,130,10,44 +66041,29,1130,725,321,10,44 +66042,29,1130,727,130,10,49 +66043,29,1130,728,321,10,49 +66044,29,1130,729,129,10,44 +66045,29,1130,730,320,10,44 +66046,29,1130,731,781,10,44 +66047,28,1132,796,129,10,15 +66048,28,1132,969,339,10,15 +66049,28,1132,714,158,12,12 +66050,28,1132,755,130,10,15 +66051,28,1132,756,340,10,15 +66052,28,1132,799,130,10,15 +66053,28,1132,891,340,10,15 +66054,28,1132,970,129,10,15 +66055,28,1132,971,339,10,15 +66056,28,1132,1114,41,15,18 +66057,28,1132,1115,54,15,18 +66058,28,1132,899,41,9,12 +66059,28,1132,716,10105,9,12 +66060,27,1132,796,129,10,15 +66061,27,1132,969,339,10,15 +66062,27,1132,714,158,12,12 +66063,27,1132,755,130,10,15 +66064,27,1132,756,340,10,15 +66065,27,1132,799,130,10,15 +66066,27,1132,891,340,10,15 +66067,27,1132,970,129,10,15 +66068,27,1132,971,339,10,15 +66069,27,1132,1114,41,15,18 +66070,27,1132,1115,54,15,18 +66071,27,1132,899,41,9,12 +66072,27,1132,716,10105,9,12 +66073,30,1132,972,339,10,22 +66074,30,1132,973,129,10,22 +66075,30,1132,723,7,12,12 +66076,30,1132,724,124,9,12 +66077,30,1132,725,440,9,12 +66078,30,1132,726,41,15,18 +66079,30,1132,807,130,10,17 +66080,30,1132,828,340,10,17 +66081,30,1132,727,130,10,22 +66082,30,1132,728,340,10,22 +66083,30,1132,974,129,10,17 +66084,30,1132,975,339,10,17 +66085,30,1132,1116,41,15,18 +66086,30,1132,801,86,15,18 +66087,30,1132,1117,225,15,18 +66088,30,1132,1118,54,15,18 +66089,30,1132,766,54,9,12 +66090,30,1132,733,238,9,12 +66091,30,1132,734,41,9,12 +66092,30,1132,735,225,9,12 +66093,29,1132,972,339,10,22 +66094,29,1132,973,129,10,22 +66095,29,1132,723,7,12,12 +66096,29,1132,724,124,9,12 +66097,29,1132,725,440,9,12 +66098,29,1132,726,41,15,18 +66099,29,1132,807,130,10,17 +66100,29,1132,828,340,10,17 +66101,29,1132,727,130,10,22 +66102,29,1132,728,340,10,22 +66103,29,1132,974,129,10,17 +66104,29,1132,975,339,10,17 +66105,29,1132,1116,41,15,18 +66106,29,1132,801,86,15,18 +66107,29,1132,1117,225,15,18 +66108,29,1132,1118,54,15,18 +66109,29,1132,766,54,9,12 +66110,29,1132,733,238,9,12 +66111,29,1132,734,41,9,12 +66112,29,1132,735,225,9,12 +66113,28,1133,755,130,10,30 +66114,28,1133,793,129,10,30 +66115,28,1133,794,746,10,30 +66116,28,1133,795,779,10,30 +66117,28,1133,748,72,27,30 +66118,28,1133,749,456,27,30 +66119,28,1133,750,279,27,30 +66120,27,1133,755,130,10,30 +66121,27,1133,793,129,10,30 +66122,27,1133,794,746,10,30 +66123,27,1133,795,779,10,30 +66124,27,1133,748,72,27,30 +66125,27,1133,749,456,27,30 +66126,27,1133,750,279,27,30 +66127,28,1134,796,129,10,31 +66128,28,1134,797,746,10,31 +66129,28,1134,798,779,10,31 +66130,28,1134,714,220,31,31 +66131,28,1134,829,75,32,32 +66132,28,1134,817,351,28,31 +66133,28,1134,818,582,28,31 +66134,28,1134,824,351,28,31 +66135,28,1134,758,130,10,31 +66136,28,1134,799,130,10,31 +66137,28,1134,793,129,10,31 +66138,28,1134,794,746,10,31 +66139,28,1134,795,779,10,31 +66140,28,1134,739,279,28,31 +66141,28,1134,716,735,28,31 +66142,28,1134,717,10092,28,31 +66143,28,1134,740,361,28,31 +66144,28,1134,761,359,28,31 +66145,28,1134,762,10101,28,31 +66146,27,1134,796,129,10,31 +66147,27,1134,797,746,10,31 +66148,27,1134,798,779,10,31 +66149,27,1134,714,220,31,31 +66150,27,1134,829,75,32,32 +66151,27,1134,817,351,28,31 +66152,27,1134,818,582,28,31 +66153,27,1134,824,351,28,31 +66154,27,1134,758,130,10,31 +66155,27,1134,799,130,10,31 +66156,27,1134,793,129,10,31 +66157,27,1134,794,746,10,31 +66158,27,1134,795,779,10,31 +66159,27,1134,739,279,28,31 +66160,27,1134,716,735,28,31 +66161,27,1134,717,10092,28,31 +66162,27,1134,740,361,28,31 +66163,27,1134,761,359,28,31 +66164,27,1134,762,10103,28,31 +66165,30,1134,720,129,10,39 +66166,30,1134,721,779,10,39 +66167,30,1134,722,746,10,39 +66168,30,1134,723,220,33,33 +66169,30,1134,830,708,33,33 +66170,30,1134,903,351,30,33 +66171,30,1134,821,582,30,33 +66172,30,1134,825,351,30,33 +66173,30,1134,807,130,10,34 +66174,30,1134,727,130,10,39 +66175,30,1134,729,129,10,34 +66176,30,1134,730,746,10,34 +66177,30,1134,731,779,10,34 +66178,30,1134,766,279,30,33 +66179,30,1134,733,735,30,33 +66180,30,1134,787,10092,30,33 +66181,30,1134,735,361,30,33 +66182,30,1134,804,359,30,33 +66183,30,1134,767,10101,30,33 +66184,29,1134,720,129,10,39 +66185,29,1134,721,779,10,39 +66186,29,1134,722,746,10,39 +66187,29,1134,723,220,33,33 +66188,29,1134,830,708,33,33 +66189,29,1134,903,351,30,33 +66190,29,1134,821,582,30,33 +66191,29,1134,825,351,30,33 +66192,29,1134,807,130,10,34 +66193,29,1134,727,130,10,39 +66194,29,1134,729,129,10,34 +66195,29,1134,730,746,10,34 +66196,29,1134,731,779,10,34 +66197,29,1134,766,279,30,33 +66198,29,1134,733,735,30,33 +66199,29,1134,787,10092,30,33 +66200,29,1134,735,361,30,33 +66201,29,1134,804,359,30,33 +66202,29,1134,767,10103,30,33 +66203,30,1161,768,101,60,60 +66204,29,1161,768,101,60,60 +66205,28,1135,739,66,10,13 +66206,28,1135,789,524,10,13 +66207,28,1135,760,703,10,13 +66208,28,1135,740,744,10,13 +66209,28,1135,761,327,10,13 +66210,28,1135,1119,800,75,75 +66211,27,1135,739,66,10,13 +66212,27,1135,789,524,10,13 +66213,27,1135,760,703,10,13 +66214,27,1135,740,744,10,13 +66215,27,1135,761,327,10,13 +66216,27,1135,1119,800,75,75 +66217,30,1135,766,66,11,14 +66218,30,1135,733,327,11,14 +66219,30,1135,734,744,11,14 +66220,30,1135,771,524,11,14 +66221,30,1135,804,703,11,14 +66222,29,1135,766,66,11,14 +66223,29,1135,733,327,11,14 +66224,29,1135,734,744,11,14 +66225,29,1135,771,524,11,14 +66226,29,1135,804,703,11,14 +66227,28,1136,714,633,13,13 +66228,28,1136,755,302,10,13 +66229,28,1136,739,41,10,13 +66230,28,1136,716,524,10,13 +66231,28,1136,760,703,10,13 +66232,28,1136,740,10105,10,13 +66233,27,1136,714,633,13,13 +66234,27,1136,755,302,10,13 +66235,27,1136,739,41,10,13 +66236,27,1136,716,524,10,13 +66237,27,1136,760,703,10,13 +66238,27,1136,740,10105,10,13 +66239,30,1136,723,95,14,14 +66240,30,1136,724,302,11,14 +66241,30,1136,766,303,11,14 +66242,30,1136,744,41,11,14 +66243,30,1136,734,524,11,14 +66244,30,1136,735,703,11,14 +66245,30,1136,804,54,11,14 +66246,29,1136,723,95,14,14 +66247,29,1136,724,302,11,14 +66248,29,1136,766,303,11,14 +66249,29,1136,744,41,11,14 +66250,29,1136,734,524,11,14 +66251,29,1136,735,703,11,14 +66252,29,1136,804,54,11,14 +66253,28,1137,755,94,29,32 +66254,28,1137,791,42,29,32 +66255,28,1137,964,93,29,32 +66256,28,1137,1120,707,29,32 +66257,28,1137,966,778,29,32 +66258,27,1137,755,94,29,32 +66259,27,1137,791,42,29,32 +66260,27,1137,964,93,29,32 +66261,27,1137,1120,707,29,32 +66262,27,1137,966,778,29,32 +66263,30,1137,724,94,31,34 +66264,30,1137,766,93,31,34 +66265,30,1137,733,353,31,34 +66266,30,1137,734,42,31,34 +66267,30,1137,875,707,31,34 +66268,30,1137,968,778,31,34 +66269,29,1137,724,94,31,34 +66270,29,1137,766,93,31,34 +66271,29,1137,733,353,31,34 +66272,29,1137,734,42,31,34 +66273,29,1137,875,707,31,34 +66274,29,1137,968,778,31,34 +66275,30,1138,783,739,29,32 +66276,29,1138,783,739,29,32 +66277,28,1139,714,315,34,34 +66278,28,1139,739,548,31,34 +66279,28,1139,716,743,31,34 +66280,28,1139,760,166,31,34 +66281,28,1139,740,168,31,34 +66282,28,1139,741,741,31,34 +66283,27,1139,714,315,34,34 +66284,27,1139,739,546,31,34 +66285,27,1139,716,743,31,34 +66286,27,1139,760,166,31,34 +66287,27,1139,740,168,31,34 +66288,27,1139,741,741,31,34 +66289,30,1139,723,388,36,36 +66290,30,1139,743,166,33,36 +66291,30,1139,744,168,33,36 +66292,30,1139,734,548,33,36 +66293,30,1139,735,670,33,36 +66294,30,1139,736,741,33,36 +66295,30,1139,827,743,33,36 +66296,29,1139,723,388,36,36 +66297,29,1139,743,166,33,36 +66298,29,1139,744,168,33,36 +66299,29,1139,734,546,33,36 +66300,29,1139,735,670,33,36 +66301,29,1139,736,741,33,36 +66302,29,1139,827,743,33,36 +66303,30,1162,773,803,40,40 +66304,29,1162,773,803,40,40 +66305,30,1140,768,797,60,60 +66306,30,1141,768,793,60,60 +66307,29,1141,768,793,60,60 +66308,30,1142,768,795,60,60 +66309,29,1143,768,798,60,60 +66310,29,1144,768,794,60,60 +66311,30,1145,768,796,60,60 +66312,29,1145,768,796,60,60 +66313,30,1146,768,799,60,60 +66314,29,1146,768,799,60,60 +66315,30,1147,768,377,60,60 +66316,30,1147,769,378,60,60 +66317,30,1147,1121,379,60,60 +66318,30,1147,1122,484,60,60 +66319,30,1147,1123,486,60,60 +66320,30,1147,1124,487,60,60 +66321,30,1147,1125,219,60,60 +66322,30,1147,1126,308,60,60 +66323,30,1147,1127,450,60,60 +66324,30,1147,1128,460,60,60 +66325,30,1147,1129,558,60,60 +66326,29,1147,768,377,60,60 +66327,29,1147,769,378,60,60 +66328,29,1147,1121,379,60,60 +66329,29,1147,1122,383,60,60 +66330,29,1147,1123,485,60,60 +66331,29,1147,1124,487,60,60 +66332,29,1147,1125,219,60,60 +66333,29,1147,1126,308,60,60 +66334,29,1147,1127,450,60,60 +66335,29,1147,1128,460,60,60 +66336,29,1147,1129,558,60,60 +66337,30,1148,768,144,60,60 +66338,30,1148,769,145,60,60 +66339,30,1148,1121,146,60,60 +66340,30,1148,1122,384,60,60 +66341,30,1148,1123,488,60,60 +66342,30,1148,1124,642,60,60 +66343,30,1148,1130,645,60,60 +66344,30,1148,1131,717,60,60 +66345,30,1148,1127,277,60,60 +66346,30,1148,1128,334,60,60 +66347,30,1148,1129,469,60,60 +66348,30,1148,1132,561,60,60 +66349,30,1148,1133,581,60,60 +66350,29,1148,768,144,60,60 +66351,29,1148,769,145,60,60 +66352,29,1148,1121,146,60,60 +66353,29,1148,1122,250,60,60 +66354,29,1148,1123,384,60,60 +66355,29,1148,1124,488,60,60 +66356,29,1148,1130,641,60,60 +66357,29,1148,1131,645,60,60 +66358,29,1148,1127,277,60,60 +66359,29,1148,1128,334,60,60 +66360,29,1148,1129,469,60,60 +66361,29,1148,1132,561,60,60 +66362,29,1148,1133,581,60,60 +66363,30,1149,768,150,60,60 +66364,30,1149,769,244,60,60 +66365,30,1149,1121,638,60,60 +66366,30,1149,1122,639,60,60 +66367,30,1149,1123,640,60,60 +66368,30,1149,1124,644,60,60 +66369,30,1149,1125,274,60,60 +66370,30,1149,1126,326,60,60 +66371,30,1149,1127,452,60,60 +66372,30,1149,1128,531,60,60 +66373,30,1149,1129,695,60,60 +66374,29,1149,768,150,60,60 +66375,29,1149,769,243,60,60 +66376,29,1149,1121,483,60,60 +66377,29,1149,1122,638,60,60 +66378,29,1149,1123,639,60,60 +66379,29,1149,1124,640,60,60 +66380,29,1149,1130,643,60,60 +66381,29,1149,1131,716,60,60 +66382,29,1149,1127,274,60,60 +66383,29,1149,1128,326,60,60 +66384,29,1149,1129,452,60,60 +66385,29,1149,1132,531,60,60 +66386,29,1149,1133,695,60,60 +66387,30,1150,768,245,60,60 +66388,30,1150,769,249,60,60 +66389,30,1150,1121,380,60,60 +66390,30,1150,1122,382,60,60 +66391,30,1150,1123,480,60,60 +66392,30,1150,1124,481,60,60 +66393,30,1150,1130,482,60,60 +66394,30,1150,1131,646,60,60 +66395,30,1150,1127,195,60,60 +66396,30,1150,1128,271,60,60 +66397,30,1150,1129,419,60,60 +66398,30,1150,1132,618,60,60 +66399,30,1150,1133,689,60,60 +66400,29,1150,768,245,60,60 +66401,29,1150,769,381,60,60 +66402,29,1150,1121,480,60,60 +66403,29,1150,1122,481,60,60 +66404,29,1150,1123,482,60,60 +66405,29,1150,1124,646,60,60 +66406,29,1150,1125,195,60,60 +66407,29,1150,1126,271,60,60 +66408,29,1150,1127,419,60,60 +66409,29,1150,1128,618,60,60 +66410,29,1150,1129,689,60,60 +66411,28,1151,849,10106,41,44 +66412,28,1151,755,302,41,44 +66413,28,1151,739,42,41,44 +66414,28,1151,716,525,41,44 +66415,28,1151,760,703,41,44 +66416,28,1151,740,10106,41,44 +66417,27,1151,849,10106,41,44 +66418,27,1151,755,302,41,44 +66419,27,1151,739,42,41,44 +66420,27,1151,716,525,41,44 +66421,27,1151,760,703,41,44 +66422,27,1151,740,10106,41,44 +66423,30,1151,852,10106,42,45 +66424,30,1151,724,302,42,45 +66425,30,1151,766,42,42,45 +66426,30,1151,733,525,42,45 +66427,30,1151,734,703,42,45 +66428,30,1151,735,10106,42,45 +66429,29,1151,852,10106,42,45 +66430,29,1151,724,302,42,45 +66431,29,1151,766,42,42,45 +66432,29,1151,733,525,42,45 +66433,29,1151,734,703,42,45 +66434,29,1151,735,10106,42,45 +66435,28,1152,796,129,10,44 +66436,28,1152,1089,339,10,44 +66437,28,1152,904,147,10,44 +66438,28,1152,755,302,41,44 +66439,28,1152,756,130,10,44 +66440,28,1152,757,148,10,44 +66441,28,1152,758,340,10,44 +66442,28,1152,799,130,10,44 +66443,28,1152,891,148,10,44 +66444,28,1152,1094,340,10,44 +66445,28,1152,1096,129,10,44 +66446,28,1152,949,339,10,44 +66447,28,1152,795,147,10,44 +66448,28,1152,1114,42,41,44 +66449,28,1152,1115,55,41,44 +66450,28,1152,739,42,41,44 +66451,28,1152,716,525,41,44 +66452,28,1152,760,703,41,44 +66453,28,1152,740,10106,41,44 +66454,27,1152,796,129,10,44 +66455,27,1152,1089,339,10,44 +66456,27,1152,904,147,10,44 +66457,27,1152,755,302,41,44 +66458,27,1152,756,130,10,44 +66459,27,1152,757,148,10,44 +66460,27,1152,758,340,10,44 +66461,27,1152,799,130,10,44 +66462,27,1152,891,148,10,44 +66463,27,1152,1094,340,10,44 +66464,27,1152,1096,129,10,44 +66465,27,1152,949,339,10,44 +66466,27,1152,795,147,10,44 +66467,27,1152,1114,42,41,44 +66468,27,1152,1115,55,41,44 +66469,27,1152,739,42,41,44 +66470,27,1152,716,525,41,44 +66471,27,1152,760,703,41,44 +66472,27,1152,740,10106,41,44 +66473,30,1152,805,341,10,51 +66474,30,1152,894,129,10,51 +66475,30,1152,786,339,10,51 +66476,30,1152,860,550,10,51 +66477,30,1152,724,302,42,45 +66478,30,1152,725,130,10,46 +66479,30,1152,726,340,10,46 +66480,30,1152,807,342,10,46 +66481,30,1152,727,130,10,51 +66482,30,1152,728,340,10,51 +66483,30,1152,808,342,10,51 +66484,30,1152,1134,129,10,46 +66485,30,1152,926,339,10,46 +66486,30,1152,896,550,10,46 +66487,30,1152,810,341,10,46 +66488,30,1152,1135,42,42,45 +66489,30,1152,929,55,42,45 +66490,30,1152,766,42,42,45 +66491,30,1152,733,525,42,45 +66492,30,1152,734,703,42,45 +66493,30,1152,735,10106,42,45 +66494,29,1152,805,341,10,51 +66495,29,1152,894,129,10,51 +66496,29,1152,786,339,10,51 +66497,29,1152,860,550,10,51 +66498,29,1152,724,302,42,45 +66499,29,1152,725,130,10,46 +66500,29,1152,726,340,10,46 +66501,29,1152,807,342,10,46 +66502,29,1152,727,130,10,51 +66503,29,1152,728,340,10,51 +66504,29,1152,808,342,10,51 +66505,29,1152,1134,129,10,46 +66506,29,1152,926,339,10,46 +66507,29,1152,896,550,10,46 +66508,29,1152,810,341,10,46 +66509,29,1152,1135,42,42,45 +66510,29,1152,929,55,42,45 +66511,29,1152,766,42,42,45 +66512,29,1152,733,525,42,45 +66513,29,1152,734,703,42,45 +66514,29,1152,735,10106,42,45 +66515,28,1153,755,783,41,44 +66516,28,1153,756,784,41,44 +66517,28,1153,739,67,41,44 +66518,28,1153,789,745,41,44 +66519,28,1153,760,10126,41,44 +66520,28,1153,718,703,41,44 +66521,28,1153,761,198,41,44 +66522,28,1153,762,227,41,44 +66523,28,1153,763,525,41,44 +66524,28,1153,931,782,41,44 +66525,27,1153,755,783,41,44 +66526,27,1153,756,784,41,44 +66527,27,1153,739,67,41,44 +66528,27,1153,789,745,41,44 +66529,27,1153,760,10126,41,44 +66530,27,1153,718,703,41,44 +66531,27,1153,761,198,41,44 +66532,27,1153,762,227,41,44 +66533,27,1153,763,525,41,44 +66534,27,1153,931,782,41,44 +66535,30,1153,724,783,43,46 +66536,30,1153,725,784,43,46 +66537,30,1153,743,67,43,46 +66538,30,1153,744,619,43,46 +66539,30,1153,734,745,43,46 +66540,30,1153,735,10126,43,46 +66541,30,1153,876,703,43,46 +66542,30,1153,767,227,43,46 +66543,30,1153,745,525,43,46 +66544,30,1153,1136,782,43,46 +66545,29,1153,724,783,43,46 +66546,29,1153,725,784,43,46 +66547,29,1153,743,67,43,46 +66548,29,1153,744,619,43,46 +66549,29,1153,734,745,43,46 +66550,29,1153,735,10126,43,46 +66551,29,1153,876,703,43,46 +66552,29,1153,767,227,43,46 +66553,29,1153,745,525,43,46 +66554,29,1153,1136,782,43,46 +66555,28,1154,849,10091,11,11 +66556,28,1154,899,41,8,11 +66557,28,1154,716,10105,8,11 +66558,28,1154,900,795,60,60 +66559,27,1154,849,10091,11,11 +66560,27,1154,899,41,8,11 +66561,27,1154,716,10105,8,11 +66562,30,1154,852,10091,10,10 +66563,30,1154,776,41,8,11 +66564,30,1154,777,10105,8,11 +66565,30,1154,787,714,8,11 +66566,29,1154,852,734,10,10 +66567,29,1154,776,41,8,11 +66568,29,1154,777,10105,8,11 +66569,29,1154,787,714,8,11 +66570,28,1156,755,115,16,19 +66571,28,1156,756,126,16,19 +66572,28,1156,739,661,16,19 +66573,28,1156,716,757,16,19 +66574,28,1156,1137,104,16,19 +66575,28,1156,718,240,16,19 +66576,28,1156,1138,115,16,19 +66577,28,1156,1119,793,55,55 +66578,27,1156,755,115,16,19 +66579,27,1156,756,126,16,19 +66580,27,1156,739,661,16,19 +66581,27,1156,716,757,16,19 +66582,27,1156,1137,104,16,19 +66583,27,1156,718,240,16,19 +66584,27,1156,1138,115,16,19 +66585,27,1156,1119,793,55,55 +66586,30,1156,724,115,16,19 +66587,30,1156,725,126,16,19 +66588,30,1156,726,440,16,19 +66589,30,1156,807,662,16,19 +66590,30,1156,828,758,16,19 +66591,30,1156,766,661,16,19 +66592,30,1156,733,757,16,19 +66593,30,1156,1139,104,16,19 +66594,30,1156,875,240,16,19 +66595,30,1156,845,115,16,19 +66596,29,1156,724,115,16,19 +66597,29,1156,725,126,16,19 +66598,29,1156,726,440,16,19 +66599,29,1156,807,662,16,19 +66600,29,1156,828,758,16,19 +66601,29,1156,766,661,16,19 +66602,29,1156,733,757,16,19 +66603,29,1156,1139,104,16,19 +66604,29,1156,875,240,16,19 +66605,29,1156,845,115,16,19 diff --git a/data/v2/csv/evolution_trigger_prose.csv b/data/v2/csv/evolution_trigger_prose.csv index 85c0123c..adf56fad 100644 --- a/data/v2/csv/evolution_trigger_prose.csv +++ b/data/v2/csv/evolution_trigger_prose.csv @@ -3,8 +3,8 @@ evolution_trigger_id,local_language_id,name 1,6,Levelaufstieg 1,9,Level up 2,5,Échange -2,6,Tausch -2,9,Trade +2,6,Tausch oder Verbindungsschnur +2,9,Trade or Linking Cord 3,5,Utilisation d'un objet 3,6,Gegenstand nutzen 3,9,Use item diff --git a/data/v2/csv/item_flag_map.csv b/data/v2/csv/item_flag_map.csv index 842ccfcb..b7a11b45 100644 --- a/data/v2/csv/item_flag_map.csv +++ b/data/v2/csv/item_flag_map.csv @@ -610,3 +610,7 @@ item_id,item_flag_id 303,7 304,5 304,7 +2160,1 +2160,2 +2160,3 +2160,5 \ No newline at end of file diff --git a/data/v2/csv/item_flavor_text.csv b/data/v2/csv/item_flavor_text.csv index 55f279ae..8b9d0e74 100644 --- a/data/v2/csv/item_flavor_text.csv +++ b/data/v2/csv/item_flavor_text.csv @@ -140521,3 +140521,15 @@ Bountiful Harvests to express their gratitude." 1658,20,12,"拿到光下即可生辉的布。 人们曾经将其进献给 丰饶之王以表感谢之意。" +2223,24,9,"Doesn't fly far, but is more effective if the Pokémon +hasn't noticed the player." +2224,24,9,"Upgraded version of the Heavy Ball. Doesn't fly far, +but is more effective if the Pokémon hasn't noticed the player." +2225,24,9,"Upgraded version of the Leaden Ball. Doesn't fly far, +but is more effective if the Pokémon hasn't noticed the player." +2226,24,9,"Can be thrown further than a regular Poké Ball. +Is more effective for catching Pokémon that fly high in the air." +2227,24,9,"Can be thrown further than a Feather Ball. +Is more effective for catching Pokémon that fly high in the air." +2228,24,9,"Can be thrown further than a Wing Ball. +Is more effective for catching Pokémon that fly high in the air." diff --git a/data/v2/csv/item_names.csv b/data/v2/csv/item_names.csv index b9327daf..a64fed6d 100644 --- a/data/v2/csv/item_names.csv +++ b/data/v2/csv/item_names.csv @@ -17822,3 +17822,132 @@ item_id,local_language_id,name 2159,1,チャデスのこな 2159,9,Poltchageist Powder 2159,11,チャデスのこな +2160,9,Linking Cord +2160,11, つながりのヒモ +2161,9,TM172 +2161,11,わざマシン172 +2162,9,TM173 +2162,11,わざマシン173 +2163,9,TM174 +2163,11,わざマシン174 +2164,9,TM175 +2164,11,わざマシン175 +2165,9,TM176 +2165,11,わざマシン176 +2166,9,TM177 +2166,11,わざマシン177 +2167,9,TM178 +2167,11,わざマシン178 +2168,9,TM179 +2168,11,わざマシン179 +2169,9,TM180 +2169,11,わざマシン180 +2170,9,TM181 +2170,11,わざマシン181 +2171,9,TM182 +2171,11,わざマシン182 +2172,9,TM183 +2172,11,わざマシン183 +2173,9,TM184 +2173,11,わざマシン184 +2174,9,TM185 +2174,11,わざマシン185 +2175,9,TM186 +2175,11,わざマシン186 +2176,9,TM187 +2176,11,わざマシン187 +2177,9,TM188 +2177,11,わざマシン188 +2178,9,TM189 +2178,11,わざマシン189 +2179,9,TM190 +2179,11,わざマシン190 +2180,9,TM191 +2180,11,わざマシン191 +2181,9,TM192 +2181,11,わざマシン192 +2182,9,TM193 +2182,11,わざマシン193 +2183,9,TM194 +2183,11,わざマシン194 +2184,9,TM195 +2184,11,わざマシン195 +2185,9,TM196 +2185,11,わざマシン196 +2186,9,TM197 +2186,11,わざマシン197 +2187,9,TM198 +2187,11,わざマシン198 +2188,9,TM199 +2188,11,わざマシン199 +2189,9,TM200 +2189,11,わざマシン200 +2190,9,TM201 +2190,11,わざマシン201 +2191,9,TM202 +2191,11,わざマシン202 +2192,9,TM203 +2192,11,わざマシン203 +2193,9,TM204 +2193,11,わざマシン204 +2194,9,TM205 +2194,11,わざマシン205 +2195,9,TM206 +2195,11,わざマシン206 +2196,9,TM207 +2196,11,わざマシン207 +2197,9,TM208 +2197,11,わざマシン208 +2198,9,TM209 +2198,11,わざマシン209 +2199,9,TM210 +2199,11,わざマシン210 +2200,9,TM211 +2200,11,わざマシン211 +2201,9,TM212 +2201,11,わざマシン212 +2202,9,TM213 +2202,11,わざマシン213 +2203,9,TM214 +2203,11,わざマシン214 +2204,9,TM215 +2204,11,わざマシン215 +2205,9,TM216 +2205,11,わざマシン216 +2206,9,TM217 +2206,11,わざマシン217 +2207,9,TM218 +2207,11,わざマシン218 +2208,9,TM219 +2208,11,わざマシン219 +2209,9,TM220 +2209,11,わざマシン220 +2210,9,TM221 +2210,11,わざマシン221 +2211,9,TM222 +2211,11,わざマシン222 +2212,9,TM223 +2212,11,わざマシン223 +2213,9,TM224 +2213,11,わざマシン224 +2214,9,TM225 +2214,11,わざマシン225 +2215,9,TM226 +2215,11,わざマシン226 +2216,9,TM227 +2216,11,わざマシン227 +2217,9,TM228 +2217,11,わざマシン228 +2218,9,TM229 +2218,11,わざマシン229 +2219,9,Strange Ball +2220,9,Poké Ball +2221,9,Great Ball +2222,9,Ultra Ball +2223,9,Heavy Ball +2224,9,Leaden Ball +2225,9,Gigaton Ball +2226,9,Feather Ball +2227,9,Wing Ball +2228,9,Jet Ball +2229,9,Origin Ball diff --git a/data/v2/csv/item_prose.csv b/data/v2/csv/item_prose.csv index f636302a..6dfe32c6 100644 --- a/data/v2/csv/item_prose.csv +++ b/data/v2/csv/item_prose.csv @@ -1519,3 +1519,4 @@ This item can only be obtained or used via the Wonder Launcher." 1003,9,XXX new effect for roto-pp-restore,XXX new effect for roto-pp-restore 1004,9,XXX new effect for roto-boost,XXX new effect for roto-boost 1005,9,XXX new effect for roto-catch,XXX new effect for roto-catch +2160,9,Allows a Pokemon whose evolution is usually triggered by trading to evolve, The Linking Cord triggers the evolution of certain Pokémon (all of which can alternatively evolve when traded) upon use. This consumes the Linking Cord. diff --git a/data/v2/csv/items.csv b/data/v2/csv/items.csv index f90a3799..1ce97345 100644 --- a/data/v2/csv/items.csv +++ b/data/v2/csv/items.csv @@ -2049,7 +2049,7 @@ id,identifier,category_id,cost,fling_power,fling_effect_id 2099,yellow-dish,55,0,, 2100,roto-stick,21,0,, 2101,teal-style-card,21,0,, -2102,teak-mask,20,0,, +2102,teal-mask,20,0,, 2103,glimmering-charm,21,0,, 2104,cyrstal-cluster,20,0,, 2105,fairy-feather,12,750,, @@ -2107,5 +2107,75 @@ id,identifier,category_id,cost,fling_power,fling_effect_id 2157,cramorant-down,54,30,, 2158,morpeko-snack,54,15,, 2159,poltchageist-powder,54,30,, +2160,linking-cord,10,8000,, +2161,tm172,37,0,, +2162,tm173,37,0,, +2163,tm174,37,0,, +2164,tm175,37,0,, +2165,tm176,37,0,, +2166,tm177,37,0,, +2167,tm178,37,0,, +2168,tm179,37,0,, +2169,tm180,37,0,, +2170,tm181,37,0,, +2171,tm182,37,0,, +2172,tm183,37,0,, +2173,tm184,37,0,, +2174,tm185,37,0,, +2175,tm186,37,0,, +2176,tm187,37,0,, +2177,tm188,37,0,, +2178,tm189,37,0,, +2179,tm190,37,0,, +2180,tm191,37,0,, +2181,tm192,37,0,, +2182,tm193,37,0,, +2183,tm194,37,0,, +2184,tm195,37,0,, +2185,tm196,37,0,, +2186,tm197,37,0,, +2187,tm198,37,0,, +2188,tm199,37,0,, +2189,tm200,37,0,, +2190,tm201,37,0,, +2191,tm202,37,0,, +2192,tm203,37,0,, +2193,tm204,37,0,, +2194,tm205,37,0,, +2195,tm206,37,0,, +2196,tm207,37,0,, +2197,tm208,37,0,, +2198,tm209,37,0,, +2199,tm210,37,0,, +2200,tm211,37,0,, +2201,tm212,37,0,, +2202,tm213,37,0,, +2203,tm214,37,0,, +2204,tm215,37,0,, +2205,tm216,37,0,, +2206,tm217,37,0,, +2207,tm218,37,0,, +2208,tm219,37,0,, +2209,tm220,37,0,, +2210,tm221,37,0,, +2211,tm222,37,0,, +2212,tm223,37,0,, +2213,tm224,37,0,, +2214,tm225,37,0,, +2215,tm226,37,0,, +2216,tm227,37,0,, +2217,tm228,37,0,, +2218,tm229,37,0,, +2219,lastrange-ball,34,0,, +2220,lapoke-ball,34,0,, +2221,lagreat-ball,34,0,, +2222,laultra-ball,34,0,, +2223,laheavy-ball,34,0,, +2224,laleaden-ball,34,0,, +2225,lagigaton-ball,34,0,, +2226,lafeather-ball,34,0,, +2227,lawing-ball,34,0,, +2228,lajet-ball,34,0,, +2229,laorigin-ball,34,0,, 10001,black-augurite,10,0,, 10002,peat-block,10,0,, diff --git a/data/v2/csv/location_areas.csv b/data/v2/csv/location_areas.csv index 09c08475..53b1c85d 100644 --- a/data/v2/csv/location_areas.csv +++ b/data/v2/csv/location_areas.csv @@ -731,3 +731,325 @@ id,location_id,game_index,identifier 840,188,0, 841,237,0, 842,247,0, +843,868,0, +844,869,0, +845,870,0,main +846,870,0,garbage +847,871,0, +848,872,0, +849,873,0, +850,874,0, +851,875,0,main +852,875,0,steamdrift-way +853,876,0,main +854,876,0,circhester-bay +855,876,0,outer-spikemouth +856,877,0,main +857,877,0,near-station +858,878,0, +859,879,0, +860,880,0, +861,881,0, +862,882,0, +863,883,0, +864,884,0,main +865,884,0,ocean +866,884,0,river +867,884,0,beach +868,885,0, +869,886,0, +870,887,0, +871,888,0, +872,889,0, +873,890,0, +874,891,0, +875,892,0, +876,893,0,main +877,893,0,beach +878,894,0, +879,895,0, +880,896,0, +881,897,0, +882,898,0, +883,899,0, +884,900,0, +885,1041,0,main +886,1041,0,2 +887,1041,0,3 +888,901,0, +889,902,0, +890,903,0, +891,904,0, +892,905,0, +893,906,0, +894,907,0, +895,908,0, +896,909,0, +897,910,0, +898,911,0, +899,912,0, +900,913,0, +901,914,0, +902,915,0,main +903,915,0,beach +904,916,0, +905,917,0, +906,918,0, +907,919,0, +908,920,0, +909,921,0, +910,922,0, +911,923,0, +912,924,0, +913,925,0, +914,926,0, +915,927,0, +916,928,0,main +917,928,0,2 +918,929,0, +919,930,0, +920,931,0, +921,932,0, +922,933,0,main +923,933,0,2 +924,934,0, +925,935,0, +926,936,0, +927,937,0,main +928,937,0,2 +929,938,0,main +930,938,0,2 +931,938,0,3 +932,939,0, +933,940,0, +934,941,0, +935,942,0, +936,943,0,main +937,943,0,beach +938,944,0, +939,945,0, +940,946,0, +941,947,0, +942,948,0, +943,949,0, +944,950,0, +945,951,0, +946,952,0, +947,953,0, +948,954,0, +949,955,0, +950,956,0, +951,957,0, +952,958,0, +953,959,0, +954,960,0, +955,961,0, +956,962,0, +957,963,0, +958,964,0, +959,965,0, +960,966,0, +961,967,0, +962,968,0, +963,969,0, +964,970,0, +965,971,0, +966,972,0, +967,973,0, +968,974,0, +969,975,0, +970,976,0, +971,977,0, +972,978,0, +973,979,0, +974,980,0, +975,981,0, +976,982,0, +977,983,0, +978,984,0, +979,985,0, +980,986,0, +981,987,0, +982,988,0, +983,989,0, +984,990,0, +985,991,0, +986,992,0, +987,993,0, +988,994,0, +989,995,0, +990,996,0, +991,997,0, +992,998,0, +993,999,0, +994,1000,0, +995,1001,0, +996,1002,0, +997,1003,0, +998,1004,0, +999,1005,0, +1000,1006,0, +1001,1007,0, +1002,1008,0, +1003,1009,0, +1004,1010,0, +1005,1011,0, +1006,1012,0, +1007,1013,0, +1008,1014,0, +1009,1015,0, +1010,1016,0, +1011,1017,0, +1012,1018,0, +1013,1019,0, +1014,1020,0, +1015,1021,0, +1016,1022,0, +1017,1023,0, +1018,1024,0, +1019,1025,0, +1020,1026,0, +1021,1027,0, +1022,1028,0, +1023,1029,0, +1024,1030,0, +1025,1031,0, +1026,1032,0, +1027,1033,0, +1028,1034,0, +1029,1035,0, +1030,1036,0, +1031,1037,0, +1032,1038,0, +1033,1039,0, +1034,1040,0, +1035,711,0,east +1036,711,0,hauoli-outskirts +1037,711,0,south +1038,711,0,trainers-school +1039,711,0,west +1040,713,0,main +1041,713,0,north +1042,713,0,south +1043,712,0,main +1044,712,0,north +1045,712,0,south +1046,731,0, +1047,732,0, +1048,733,0,north +1049,733,0,south +1050,734,0, +1051,735,0,main +1052,735,0,fossil-restoration-center +1053,736,0,main +1054,736,0,police-station +1055,755,0, +1056,756,0, +1057,763,0, +1058,758,0, +1059,765,0, +1060,760,0,main +1061,760,0,aether-house +1062,761,0,main +1063,761,0,east +1064,761,0,west +1065,762,0,northeast +1066,762,0,west +1067,796,0,2f +1068,752,0, +1069,791,0, +1070,790,0, +1071,782,0, +1072,728,0, +1073,771,0, +1074,748,0,main +1075,748,0,north +1076,748,0,south +1077,748,0,totems-den +1078,753,0, +1079,1046,0, +1080,794,0, +1081,764,0, +1082,738,0, +1083,725,0, +1084,1042,0,main +1085,1042,0,shopping-district +1086,1042,0,beachfront +1087,1047,0, +1088,741,0,surf-association +1089,719,0, +1090,714,0, +1091,742,0, +1092,774,0, +1093,773,0, +1094,750,0,east-cave +1095,750,0,north +1096,750,0,south +1097,750,0,west +1098,720,0, +1099,1045,0,main +1100,1045,0,outer-cape +1101,769,0, +1102,726,0, +1103,715,0, +1104,744,0, +1105,770,0,main +1106,770,0,east +1107,770,0,west +1108,775,0,base +1109,775,0,cave +1110,775,0,outside +1111,745,0, +1112,740,0, +1113,783,0, +1114,786,0, +1115,787,0, +1116,784,0, +1117,780,0, +1118,785,0,center +1119,785,0,east +1120,785,0,north +1121,785,0,west +1122,781,0, +1123,793,0, +1124,743,0, +1125,772,0, +1126,722,0, +1127,792,0, +1128,751,0, +1129,1048,0, +1130,788,0,main +1131,788,0,huntail-boat +1132,727,0, +1133,757,0, +1134,759,0, +1135,723,0,farthest-hollow +1136,723,0,inside +1137,1044,0,abandoned-site +1138,1049,0, +1139,766,0, +1140,797,0,ultra-crater +1141,797,0,ultra-deep-sea +1142,797,0,ultra-desert +1143,797,0,ultra-forest +1144,797,0,ultra-jungle +1145,797,0,ultra-plant +1146,797,0,ultra-ruin +1147,1051,0,cave +1148,1051,0,cliff +1149,1051,0,crag +1150,1051,0,waterfall +1151,789,0,inside +1152,789,0,northwest +1153,789,0,outside +1154,1043,0,trial-site +1155,1043,0,totems-den +1156,746,0, +1157,746,0,totems-den +1158,1052,0,poni-island-reached +1159,1052,0,ulaula-island-reached +1160,1052,0,elite-four-defeated +1161,1053,0, +1162,1050,0, +1163,750,0,all-areas +1164,762,0,all-areas \ No newline at end of file diff --git a/data/v2/csv/locations.csv b/data/v2/csv/locations.csv index d49a8d8d..7fe84265 100644 --- a/data/v2/csv/locations.csv +++ b/data/v2/csv/locations.csv @@ -749,7 +749,7 @@ id,region_id,identifier 765,7,alola-route-14 766,7,ulaula-meadow 767,7,po-town -768,7,malie-city +768,7,malie-city-proper 769,7,malie-garden 770,7,mount-hokulani 771,7,blush-mountain @@ -1022,3 +1022,16 @@ id,region_id,identifier 1038,9,windbreak-stand 1039,9,windswept-run 1040,9,worn-bridge +1041,8,giants-cap +1042,7,hauoli-city +1043,7,verdant-cavern +1044,7,thrifty-megamart +1045,7,malie-city +1046,7,dividing-peak-tunnel +1047,7,heahea-beach +1048,7,sandy-cave +1049,7,ulaula-beach +1050,7,ultra-megalopolis +1051,7,ultra-space-wilds +1052,7,poke-pelago +1053,7,team-rockets-castle \ No newline at end of file diff --git a/data/v2/csv/machines.csv b/data/v2/csv/machines.csv index 288089de..59022bb7 100644 --- a/data/v2/csv/machines.csv +++ b/data/v2/csv/machines.csv @@ -1687,3 +1687,417 @@ machine_number,version_group_id,item_id,move_id 197,20,1285,706 198,20,1286,710 199,20,1287,776 +10,23,314,526 +21,23,325,605 +27,23,331,490 +43,23,347,521 +49,23,353,503 +62,23,366,405 +63,23,367,417 +78,23,382,555 +83,23,387,523 +93,23,397,15 +94,23,398,19 +95,23,399,57 +96,23,400,70 +97,23,401,432 +98,23,402,249 +99,23,403,127 +100,23,404,431 +1,25,305,36 +2,25,306,204 +3,25,307,313 +4,25,308,97 +5,25,309,189 +6,25,310,184 +7,25,311,182 +8,25,312,424 +9,25,313,422 +10,25,314,423 +11,25,315,352 +12,25,316,67 +13,25,317,491 +14,25,318,512 +15,25,319,522 +16,25,320,60 +17,25,321,109 +18,25,322,168 +19,25,323,574 +20,25,324,885 +21,25,325,884 +22,25,326,886 +23,25,327,451 +24,25,328,83 +25,25,329,263 +26,25,330,342 +27,25,331,332 +28,25,332,523 +29,25,333,506 +30,25,334,555 +31,25,335,232 +32,25,336,129 +33,25,337,345 +34,25,338,196 +35,25,339,341 +36,25,340,317 +37,25,341,577 +38,25,342,488 +39,25,343,490 +40,25,344,314 +41,25,345,500 +42,25,346,101 +43,25,347,374 +44,25,348,525 +45,25,349,474 +46,25,350,419 +47,25,351,203 +48,25,352,521 +49,25,353,241 +50,25,354,240 +51,25,355,201 +52,25,356,883 +53,25,357,684 +54,25,358,473 +55,25,359,91 +56,25,360,331 +57,25,361,206 +58,25,362,280 +59,25,363,428 +60,25,364,369 +61,25,365,421 +62,25,366,492 +63,25,367,706 +64,25,368,339 +65,25,369,403 +66,25,370,34 +67,25,371,7 +68,25,372,9 +69,25,373,8 +70,25,374,214 +71,25,375,402 +72,25,376,486 +73,25,377,409 +74,25,378,115 +75,25,379,113 +76,25,380,350 +77,25,381,127 +78,25,382,337 +79,25,383,605 +80,25,384,118 +81,25,385,447 +82,25,386,86 +83,25,387,398 +84,25,388,707 +85,25,389,156 +86,25,390,157 +87,25,391,269 +88,25,392,14 +89,25,393,776 +90,25,394,191 +91,25,395,390 +92,25,396,286 +93,25,659,430 +94,25,660,399 +95,25,661,141 +96,25,745,598 +97,25,746,19 +98,25,747,285 +99,25,748,442 +100,25,1943,349 +101,25,1944,408 +102,25,1945,441 +103,25,1946,164 +104,25,1947,334 +105,25,1948,404 +106,25,1949,529 +107,25,1950,261 +108,25,1951,242 +109,25,1952,271 +110,25,1953,710 +111,25,1954,202 +112,25,1955,396 +113,25,1956,366 +114,25,1957,247 +115,25,1958,406 +116,25,1959,446 +117,25,1960,304 +118,25,1961,257 +119,25,1962,412 +120,25,1963,94 +121,25,1964,484 +122,25,1965,227 +123,25,1966,57 +124,25,1967,861 +125,25,1968,53 +126,25,1969,85 +127,25,1970,583 +128,25,1971,133 +129,25,1972,347 +130,25,1973,270 +131,25,1974,676 +132,25,1975,226 +133,25,1976,414 +134,25,1977,179 +135,25,1978,58 +136,25,1979,604 +137,25,1980,580 +138,25,1981,678 +139,25,1982,581 +140,25,1983,417 +141,25,1984,126 +142,25,1985,56 +143,25,1986,59 +144,25,1987,519 +145,25,1988,518 +146,25,1989,520 +147,25,1990,528 +148,25,1991,188 +149,25,1992,89 +150,25,1993,444 +151,25,1994,566 +152,25,1995,416 +153,25,1996,307 +154,25,1997,308 +155,25,1998,338 +156,25,1999,200 +157,25,2000,315 +158,25,2001,411 +159,25,2002,437 +160,25,2003,542 +161,25,2004,433 +162,25,2005,405 +163,25,2006,63 +164,25,2007,413 +165,25,2008,394 +166,25,2009,87 +167,25,2010,370 +168,25,2011,76 +169,25,2012,434 +170,25,2013,796 +171,25,2014,851 +172,25,2161,46 +173,25,2162,268 +174,25,2163,114 +175,25,2164,92 +176,25,2165,328 +177,25,2166,180 +178,25,2167,356 +179,25,2168,479 +180,25,2169,360 +181,25,2170,282 +182,25,2171,450 +183,25,2172,162 +184,25,2173,410 +185,25,2174,679 +186,25,2175,667 +187,25,2176,333 +188,25,2177,503 +189,25,2178,535 +190,25,2179,669 +191,25,2180,253 +192,25,2181,264 +193,25,2182,311 +194,25,2183,803 +195,25,2184,807 +196,25,2185,812 +197,25,2186,814 +198,25,2187,809 +199,25,2188,808 +200,25,2189,799 +201,25,2190,802 +202,25,2191,220 +203,25,2192,244 +204,25,2193,38 +205,25,2194,283 +206,25,2195,572 +207,25,2196,915 +208,25,2197,250 +209,25,2198,330 +210,25,2199,916 +211,25,2200,527 +212,25,2201,813 +213,25,2202,811 +214,25,2203,482 +215,25,2204,815 +216,25,2205,297 +217,25,2206,248 +218,25,2207,797 +219,25,2208,806 +220,25,2209,800 +221,25,2210,675 +222,25,2211,784 +223,25,2212,319 +224,25,2213,174 +225,25,2214,912 +226,25,2215,913 +227,25,2216,914 +228,25,2217,917 +229,25,2218,918 +67,26,371,7 +68,26,372,9 +69,26,373,8 +132,26,1975,226 +170,26,2013,796 +172,26,2161,46 +173,26,2162,268 +174,26,2163,114 +175,26,2164,92 +176,26,2165,328 +177,26,2166,180 +178,26,2167,356 +179,26,2168,479 +180,26,2169,360 +181,26,2170,282 +182,26,2171,450 +183,26,2172,162 +184,26,2173,410 +185,26,2174,679 +186,26,2175,667 +187,26,2176,333 +188,26,2177,503 +189,26,2178,535 +190,26,2179,669 +191,26,2180,253 +192,26,2181,264 +193,26,2182,311 +194,26,2183,803 +195,26,2184,807 +196,26,2185,812 +197,26,2186,814 +198,26,2187,809 +199,26,2188,808 +200,26,2189,799 +201,26,2190,802 +2,27,306,204 +7,27,311,182 +13,27,317,491 +29,27,333,506 +30,27,334,555 +34,27,338,196 +39,27,343,490 +41,27,345,500 +44,27,348,525 +49,27,353,241 +50,27,354,240 +51,27,355,201 +52,27,356,883 +53,27,357,684 +59,27,363,428 +60,27,364,369 +63,27,367,706 +64,27,368,339 +67,27,371,7 +68,27,372,9 +69,27,373,8 +74,27,378,115 +75,27,379,113 +76,27,380,350 +77,27,381,127 +78,27,382,337 +81,27,385,447 +82,27,386,86 +83,27,387,398 +86,27,390,157 +87,27,391,269 +88,27,392,14 +89,27,393,776 +93,27,659,430 +94,27,660,399 +99,27,748,442 +100,27,1943,349 +103,27,1946,164 +104,27,1947,334 +106,27,1949,529 +107,27,1950,261 +108,27,1951,242 +109,27,1952,271 +110,27,1953,710 +111,27,1954,202 +112,27,1955,396 +113,27,1956,366 +115,27,1958,406 +117,27,1960,304 +118,27,1961,257 +119,27,1962,412 +121,27,1964,484 +124,27,1967,861 +125,27,1968,53 +126,27,1969,85 +127,27,1970,583 +128,27,1971,133 +129,27,1972,347 +130,27,1973,270 +131,27,1974,676 +133,27,1976,414 +135,27,1978,58 +136,27,1979,604 +137,27,1980,580 +138,27,1981,678 +139,27,1982,581 +140,27,1983,417 +141,27,1984,126 +142,27,1985,56 +143,27,1986,59 +144,27,1987,519 +145,27,1988,518 +146,27,1989,520 +148,27,1991,188 +149,27,1992,89 +150,27,1993,444 +153,27,1996,307 +154,27,1997,308 +155,27,1998,338 +156,27,1999,200 +157,27,2000,315 +158,27,2001,411 +159,27,2002,437 +160,27,2003,542 +161,27,2004,433 +162,27,2005,405 +163,27,2006,63 +164,27,2007,413 +165,27,2008,394 +166,27,2009,87 +168,27,2011,76 +171,27,2014,851 +174,27,2163,114 +181,27,2170,282 +185,27,2174,679 +186,27,2175,667 +187,27,2176,333 +188,27,2177,503 +190,27,2179,669 +193,27,2182,311 +194,27,2183,803 +196,27,2185,812 +197,27,2186,814 +200,27,2189,799 +201,27,2190,802 +202,27,2191,220 +203,27,2192,244 +204,27,2193,38 +205,27,2194,283 +206,27,2195,572 +207,27,2196,915 +208,27,2197,250 +209,27,2198,330 +210,27,2199,916 +211,27,2200,527 +212,27,2201,813 +213,27,2202,811 +214,27,2203,482 +215,27,2204,815 +216,27,2205,297 +217,27,2206,248 +218,27,2207,797 +219,27,2208,806 +220,27,2209,800 +221,27,2210,675 +222,27,2211,784 +223,27,2212,319 +224,27,2213,174 +225,27,2214,912 +226,27,2215,913 +227,27,2216,914 +228,27,2217,917 +229,27,2218,918 diff --git a/data/v2/csv/move_meta.csv b/data/v2/csv/move_meta.csv index bb4e78fa..0e2d6122 100644 --- a/data/v2/csv/move_meta.csv +++ b/data/v2/csv/move_meta.csv @@ -303,7 +303,7 @@ move_id,meta_category_id,meta_ailment_id,min_hits,max_hits,min_turns,max_turns,d 302,0,0,,,,,0,0,0,0,30,0 303,3,0,,,,,0,50,0,0,0,0 304,0,0,,,,,0,0,0,0,0,0 -305,4,5,,,15,15,0,0,0,50,0,0 +305,4,5,,,,,0,0,0,50,0,0 306,6,0,,,,,0,0,0,0,0,50 307,0,0,,,,,0,0,0,0,0,0 308,0,0,,,,,0,0,0,0,0,0 diff --git a/data/v2/csv/moves.csv b/data/v2/csv/moves.csv index 3ac69894..fb2f0a96 100644 --- a/data/v2/csv/moves.csv +++ b/data/v2/csv/moves.csv @@ -719,12 +719,12 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_ 718,multi-attack,7,1,120,10,100,0,10,2,269,,,, 719,10-000-000-volt-thunderbolt,7,13,195,1,,0,10,3,1,,,, 720,mind-blown,7,10,150,5,100,0,9,3,420,,,, -721,plasma-fists,7,13,100,15,100,0,10,2,1,,,, +721,plasma-fists,7,13,100,15,100,0,10,2,417,,,, 722,photon-geyser,7,14,100,5,100,0,10,3,1,,,, 723,light-that-burns-the-sky,7,14,200,1,,0,10,3,416,,,, 724,searing-sunraze-smash,7,9,200,1,,0,10,2,411,,,, 725,menacing-moonraze-maelstrom,7,8,200,1,,0,10,3,411,,,, -726,lets-snuggle-forever,7,18,190,1,,0,10,2,417,,,, +726,lets-snuggle-forever,7,18,190,1,,0,10,2,1,,,, 727,splintered-stormshards,7,6,190,1,,0,10,2,418,,,, 728,clangorous-soulblaze,7,16,185,1,,0,11,3,419,100,,, 729,zippy-zap,7,13,80,10,100,2,10,2,1,100,,, diff --git a/data/v2/csv/pokemon.csv b/data/v2/csv/pokemon.csv index 46f3675b..ac076c69 100644 --- a/data/v2/csv/pokemon.csv +++ b/data/v2/csv/pokemon.csv @@ -897,133 +897,133 @@ id,identifier,species_id,height,weight,base_experience,order,is_default 896,glastrier,896,22,8000,290,1088,1 897,spectrier,897,20,445,290,1089,1 898,calyrex,898,11,77,250,1090,1 -899,wyrdeer,899,18,951,,,1 -900,kleavor,900,18,890,,,1 -901,ursaluna,901,24,2900,,,1 -902,basculegion-male,902,30,1100,,,1 -903,sneasler,903,13,430,,,1 -904,overqwil,904,25,605,,,1 -905,enamorus-incarnate,905,16,480,,,1 -906,sprigatito,906,4,41,,906,1 -907,floragato,907,9,122,,907,1 -908,meowscarada,908,15,312,,908,1 -909,fuecoco,909,4,98,,909,1 -910,crocalor,910,10,307,,910,1 -911,skeledirge,911,16,3265,,911,1 -912,quaxly,912,5,61,,912,1 -913,quaxwell,913,12,215,,913,1 -914,quaquaval,914,18,619,,914,1 -915,lechonk,915,5,102,,915,1 -916,oinkologne,916,10,1200,,916,1 -917,tarountula,917,3,40,,918,1 -918,spidops,918,10,165,,919,1 -919,nymble,919,2,10,,920,1 -920,lokix,920,10,175,,921,1 -921,pawmi,921,3,25,,954,1 -922,pawmo,922,4,65,,955,1 -923,pawmot,923,9,410,,956,1 -924,tandemaus,924,3,18,,945,1 -925,maushold,925,3,23,,946,1 -926,fidough,926,3,109,,970,1 -927,dachsbun,927,5,149,,971,1 -928,smoliv,928,3,65,,935,1 -929,dolliv,929,6,119,,936,1 -930,arboliva,930,14,482,,937,1 -931,squawkabilly,931,6,24,,960,1 -932,nacli,932,4,160,,963,1 -933,naclstack,933,6,1050,,964,1 -934,garganacl,934,23,2400,,965,1 -935,charcadet,935,6,105,,1003,1 -936,armarouge,936,15,850,,1004,1 -937,ceruledge,937,16,620,,1005,1 -938,tadbulb,938,3,4,,940,1 -939,bellibolt,939,12,1130,,941,1 -940,wattrel,940,4,36,,957,1 -941,kilowattrel,941,14,386,,958,1 -942,maschiff,942,5,160,,972,1 -943,mabosstiff,943,11,610,,973,1 -944,shroodle,944,2,7,,968,1 -945,grafaiai,945,7,272,,969,1 -946,bramblin,946,6,6,,974,1 -947,brambleghast,947,12,60,,975,1 -948,toedscool,948,9,330,,1006,1 -949,toedscruel,949,19,580,,1007,1 -950,klawf,950,13,790,,962,1 -951,capsakid,951,3,30,,938,1 -952,scovillain,952,9,150,,939,1 -953,rellor,953,2,10,,922,1 -954,rabsca,954,3,35,,923,1 -955,flittle,955,2,15,,926,1 -956,espathra,956,19,900,,927,1 -957,tinkatink,957,4,89,,1000,1 -958,tinkatuff,958,7,591,,1001,1 -959,tinkaton,959,7,1128,,1002,1 -960,wiglett,960,12,18,,929,1 -961,wugtrio,961,12,54,,930,1 -962,bombirdier,962,15,429,,959,1 -963,finizen,963,13,602,,933,1 -964,palafin,964,13,602,,934,1 -965,varoom,965,10,350,,942,1 -966,revavroom,966,18,1200,,943,1 -967,cyclizar,967,16,630,,953,1 -968,orthworm,968,25,3100,,944,1 -969,glimmet,969,7,80,,966,1 -970,glimmora,970,15,450,,967,1 -971,greavard,971,6,350,,924,1 -972,houndstone,972,20,150,,925,1 -973,flamigo,973,16,370,,961,1 -974,cetoddle,974,12,450,,947,1 -975,cetitan,975,45,7000,,948,1 -976,veluza,976,25,900,,932,1 -977,dondozo,977,120,2200,,931,1 -978,tatsugiri,978,3,80,,952,1 -979,annihilape,979,12,560,,1010,1 -980,clodsire,980,18,2230,,1009,1 -981,farigiraf,981,32,1600,,928,1 -982,dudunsparce,982,36,392,,917,1 -983,kingambit,983,20,1200,,1008,1 -984,great-tusk,984,22,3200,,978,1 -985,scream-tail,985,12,80,,982,1 -986,brute-bonnet,986,12,210,,979,1 -987,flutter-mane,987,14,40,,983,1 -988,slither-wing,988,32,920,,984,1 -989,sandy-shocks,989,23,600,,981,1 -990,iron-treads,990,9,2400,,986,1 -991,iron-bundle,991,6,110,,992,1 -992,iron-hands,992,18,3807,,989,1 -993,iron-jugulis,993,13,1110,,990,1 -994,iron-moth,994,12,360,,988,1 -995,iron-thorns,995,16,3030,,991,1 -996,frigibax,996,5,170,,949,1 -997,arctibax,997,8,300,,950,1 -998,baxcalibur,998,21,2100,,951,1 -999,gimmighoul,999,3,50,,976,1 -1000,gholdengo,1000,12,300,,977,1 -1001,wo-chien,1001,15,742,,996,1 -1002,chien-pao,1002,19,1522,,995,1 -1003,ting-lu,1003,27,6997,,994,1 -1004,chi-yu,1004,4,49,,997,1 -1005,roaring-moon,1005,20,3800,,985,1 -1006,iron-valiant,1006,14,350,,993,1 -1007,koraidon,1007,25,3030,,998,1 -1008,miraidon,1008,35,2400,,999,1 -1009,walking-wake,1009,35,2800,,1093,1 -1010,iron-leaves,1010,15,1250,,1094,1 -1011,dipplin,1011,4,97,,1095,1 -1012,poltchageist,1012,1,11,,1096,1 -1013,sinistcha,1013,2,22,,1097,1 -1014,okidogi,1014,18,922,,1098,1 -1015,munkidori,1015,10,122,,1099,1 -1016,fezandipiti,1016,14,301,,1100,1 -1017,ogerpon,1017,12,398,,1101,1 -1018,archaludon,1018,20,600,,1102,1 -1019,hydrapple,1019,18,930,,1103,1 -1020,gouging-fire,1020,35,5900,,1104,1 -1021,raging-bolt,1021,52,4800,,1105,1 -1022,iron-boulder,1022,15,1625,,1106,1 -1023,iron-crown,1023,16,1560,,1107,1 -1024,terapagos,1024,2,65,,1108,1 -1025,pecharunt,1025,3,3,,1109,1 +899,wyrdeer,899,18,951,263,,1 +900,kleavor,900,18,890,175,,1 +901,ursaluna,901,24,2900,275,,1 +902,basculegion-male,902,30,1100,265,,1 +903,sneasler,903,13,430,102,,1 +904,overqwil,904,25,605,179,,1 +905,enamorus-incarnate,905,16,480,116,,1 +906,sprigatito,906,4,41,62,906,1 +907,floragato,907,9,122,144,907,1 +908,meowscarada,908,15,312,265,908,1 +909,fuecoco,909,4,98,62,909,1 +910,crocalor,910,10,307,144,910,1 +911,skeledirge,911,16,3265,265,911,1 +912,quaxly,912,5,61,62,912,1 +913,quaxwell,913,12,215,144,913,1 +914,quaquaval,914,18,619,265,914,1 +915,lechonk,915,5,102,51,915,1 +916,oinkologne-male,916,10,1200,171,916,1 +917,tarountula,917,3,40,42,918,1 +918,spidops,918,10,165,141,919,1 +919,nymble,919,2,10,42,920,1 +920,lokix,920,10,175,158,921,1 +921,pawmi,921,3,25,48,954,1 +922,pawmo,922,4,65,123,955,1 +923,pawmot,923,9,410,245,956,1 +924,tandemaus,924,3,18,61,945,1 +925,maushold-family-of-four,925,3,23,165,946,1 +926,fidough,926,3,109,62,970,1 +927,dachsbun,927,5,149,167,971,1 +928,smoliv,928,3,65,52,935,1 +929,dolliv,929,6,119,124,936,1 +930,arboliva,930,14,482,255,937,1 +931,squawkabilly-green-plumage,931,6,24,146,960,1 +932,nacli,932,4,160,56,963,1 +933,naclstack,933,6,1050,124,964,1 +934,garganacl,934,23,2400,250,965,1 +935,charcadet,935,6,105,51,1003,1 +936,armarouge,936,15,850,263,1004,1 +937,ceruledge,937,16,620,263,1005,1 +938,tadbulb,938,3,4,54,940,1 +939,bellibolt,939,12,1130,173,941,1 +940,wattrel,940,4,36,56,957,1 +941,kilowattrel,941,14,386,172,958,1 +942,maschiff,942,5,160,68,972,1 +943,mabosstiff,943,11,610,177,973,1 +944,shroodle,944,2,7,58,968,1 +945,grafaiai,945,7,272,170,969,1 +946,bramblin,946,6,6,55,974,1 +947,brambleghast,947,12,60,168,975,1 +948,toedscool,948,9,330,67,1006,1 +949,toedscruel,949,19,580,180,1007,1 +950,klawf,950,13,790,158,962,1 +951,capsakid,951,3,30,61,938,1 +952,scovillain,952,9,150,170,939,1 +953,rellor,953,2,10,54,922,1 +954,rabsca,954,3,35,165,923,1 +955,flittle,955,2,15,51,926,1 +956,espathra,956,19,900,168,927,1 +957,tinkatink,957,4,89,59,1000,1 +958,tinkatuff,958,7,591,133,1001,1 +959,tinkaton,959,7,1128,253,1002,1 +960,wiglett,960,12,18,49,929,1 +961,wugtrio,961,12,54,149,930,1 +962,bombirdier,962,15,429,243,959,1 +963,finizen,963,13,602,63,933,1 +964,palafin-zero,964,13,602,160,934,1 +965,varoom,965,10,350,60,942,1 +966,revavroom,966,18,1200,175,943,1 +967,cyclizar,967,16,630,175,953,1 +968,orthworm,968,25,3100,240,944,1 +969,glimmet,969,7,80,70,966,1 +970,glimmora,970,15,450,184,967,1 +971,greavard,971,6,350,58,924,1 +972,houndstone,972,20,150,171,925,1 +973,flamigo,973,16,370,175,961,1 +974,cetoddle,974,12,450,67,947,1 +975,cetitan,975,45,7000,182,948,1 +976,veluza,976,25,900,167,932,1 +977,dondozo,977,120,2200,265,931,1 +978,tatsugiri-curly,978,3,80,166,952,1 +979,annihilape,979,12,560,268,1010,1 +980,clodsire,980,18,2230,151,1009,1 +981,farigiraf,981,32,1600,260,928,1 +982,dudunsparce-two-segment,982,36,392,182,917,1 +983,kingambit,983,20,1200,275,1008,1 +984,great-tusk,984,22,3200,285,978,1 +985,scream-tail,985,12,80,285,982,1 +986,brute-bonnet,986,12,210,285,979,1 +987,flutter-mane,987,14,40,285,983,1 +988,slither-wing,988,32,920,285,984,1 +989,sandy-shocks,989,23,600,285,981,1 +990,iron-treads,990,9,2400,285,986,1 +991,iron-bundle,991,6,110,285,992,1 +992,iron-hands,992,18,3807,285,989,1 +993,iron-jugulis,993,13,1110,285,990,1 +994,iron-moth,994,12,360,285,988,1 +995,iron-thorns,995,16,3030,285,991,1 +996,frigibax,996,5,170,64,949,1 +997,arctibax,997,8,300,148,950,1 +998,baxcalibur,998,21,2100,300,951,1 +999,gimmighoul,999,3,50,60,976,1 +1000,gholdengo,1000,12,300,275,977,1 +1001,wo-chien,1001,15,742,285,996,1 +1002,chien-pao,1002,19,1522,285,995,1 +1003,ting-lu,1003,27,6997,285,994,1 +1004,chi-yu,1004,4,49,285,997,1 +1005,roaring-moon,1005,20,3800,295,985,1 +1006,iron-valiant,1006,14,350,295,993,1 +1007,koraidon,1007,25,3030,335,998,1 +1008,miraidon,1008,35,2400,335,999,1 +1009,walking-wake,1009,35,2800,295,1093,1 +1010,iron-leaves,1010,15,1250,295,1094,1 +1011,dipplin,1011,4,97,170,1095,1 +1012,poltchageist,1012,1,11,62,1096,1 +1013,sinistcha,1013,2,22,178,1097,1 +1014,okidogi,1014,18,922,278,1098,1 +1015,munkidori,1015,10,122,278,1099,1 +1016,fezandipiti,1016,14,301,278,1100,1 +1017,ogerpon,1017,12,398,275,1101,1 +1018,archaludon,1018,20,600,300,1102,1 +1019,hydrapple,1019,18,930,270,1103,1 +1020,gouging-fire,1020,35,5900,295,1104,1 +1021,raging-bolt,1021,52,4800,295,1105,1 +1022,iron-boulder,1022,15,1625,295,1106,1 +1023,iron-crown,1023,16,1560,295,1107,1 +1024,terapagos,1024,2,65,90,1108,1 +1025,pecharunt,1025,3,3,300,1109,1 10001,deoxys-attack,386,17,608,270,515,0 10002,deoxys-defense,386,17,608,270,516,0 10003,deoxys-speed,386,17,608,270,517,0 diff --git a/data/v2/csv/pokemon_form_names.csv b/data/v2/csv/pokemon_form_names.csv index 7c2f0dfa..0d1b9e2d 100644 --- a/data/v2/csv/pokemon_form_names.csv +++ b/data/v2/csv/pokemon_form_names.csv @@ -9,7 +9,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 351,1,ポワルンのすがた, 351,3,캐스퐁의 모습, 351,4,飄浮泡泡的樣子, -351,5,Forme de Morphéo, +351,5,Forme de Morphéo,Morphéo 351,6,Formeo,Formeo 351,7,Forma de Castform, 351,8,Forma Castform, @@ -19,7 +19,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 382,1,カイオーガのすがた, 382,3,가이오가의 모습, 382,4,蓋歐卡的樣子, -382,5,Kyogre, +382,5,Kyogre,Kyogre 382,6,Kyogre,Kyogre 382,7,Kyogre, 382,9,Kyogre, @@ -28,7 +28,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 383,1,グラードンのすがた, 383,3,그란돈의 모습, 383,4,固拉多的樣子, -383,5,Groudon, +383,5,Groudon,Groudon 383,6,Groudon,Groudon 383,7,Groudon, 383,9,Groudon, @@ -94,7 +94,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 479,1,ロトムのすがた, 479,3,로토무의 모습, 479,4,洛托姆的樣子, -479,5,Forme de Motisma, +479,5,Forme de Motisma,Motisma 479,6,Rotom,Rotom 479,7,Forma de Rotom, 479,8,Forma Rotom, @@ -104,7 +104,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 487,1,アナザーフォルム, 487,3,어나더폼, 487,4,別種形態, -487,5,Forme Alternative,Giratina Alternative +487,5,Forme Alternative,Giratina Alternatif 487,6,Wandelform,Giratina 487,7,Forma Modificada, 487,8,Forma Alterata, @@ -194,7 +194,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 646,1,キュレムのすがた, 646,3,큐레무의 모습, 646,4,酋雷姆的樣子, -646,5,Forme de Kyurem, +646,5,Forme de Kyurem,Kyurem 646,6,Kyurem,Kyurem 646,7,Forma de Kyurem, 646,8,Forma di Kyurem, @@ -309,7 +309,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 718,1,50%フォルム, 718,3,50%폼, 718,4,50%形態, -718,5,Forme 50 %, +718,5,Forme 50 %,Zygarde Forme 50 % 718,6,50%-Form,Zygarde (50%) 718,7,Forma 50%, 718,8,Forma 50%, @@ -319,7 +319,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 720,1,いましめられしフーパ, 720,3,굴레에 빠진 후파, 720,4,懲戒胡帕, -720,5,Hoopa Enchaîné, +720,5,Hoopa Enchaîné,Hoopa Enchaîné 720,6,Gebanntes Hoopa,Gebanntes Hoopa 720,7,Hoopa Contenido, 720,8,Hoopa Vincolato, @@ -329,7 +329,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 741,1,めらめらスタイル, 741,3,이글이글스타일, 741,4,熱辣熱辣風格, -741,5,Style Flamenco, +741,5,Style Flamenco,Plumeline Style Flamenco 741,6,Flamenco-Stil,Choreogel (Flamenco) 741,7,Estilo Apasionado, 741,8,Stile Flamenco, @@ -339,7 +339,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 745,1,まひるのすがた, 745,3,한낮의 모습, 745,4,白晝的樣子, -745,5,Forme Diurne, +745,5,Forme Diurne,Lougaroc Forme Diurne 745,6,Tagform,Wolwerock (Tag) 745,7,Forma Diurna, 745,8,Forma Giorno, @@ -349,7 +349,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 746,1,たんどくのすがた, 746,3,단독의 모습, 746,4,單獨的樣子, -746,5,Forme Solitaire, +746,5,Forme Solitaire,Froussardine Forme Solitaire 746,6,Einzelform,Lusardin 746,7,Forma Individual, 746,8,Forma Individuale, @@ -369,7 +369,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 774,1,りゅうせいのすがた, 774,3,유성의 모습, 774,4,流星的樣子, -774,5,Forme Météore, +774,5,Forme Météore,Météno Forme Météore Noyeau Rouge 774,6,Meteorform,Meteno (Meteor Rot) 774,7,Forma Meteorito, 774,8,Forma Meteora, @@ -379,7 +379,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 778,1,ばけたすがた, 778,3,둔갑한 모습, 778,4,化形的樣子, -778,5,Forme Déguisée, +778,5,Forme Déguisée,Mimiqui Déguisé 778,6,Verkleidete Form,Mimigma (Getarnt) 778,7,Forma Encubierta, 778,8,Forma Mascherata, @@ -389,7 +389,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 849,1,ハイなすがた, 849,3,하이한 모습, 849,4,高調的樣子, -849,5,Forme Aigüe, +849,5,Forme Aigüe,Salarsen Forme Aigüe 849,6,Hoch-Form,Riffex (Hochform) 849,7,Forma Aguda, 849,8,Forma Melodia, @@ -397,17 +397,19 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 849,11,ハイなすがた, 849,12,高调的样子, 854,1,がんさくフォルム, +854,5,Forme Contrefaçon,Théffroi Contrefaçon 854,6,Fälschungsform,Fatalitee (Fälschung) 854,9,Phony Form,Phony Sinistea 854,11,がんさくフォルム, 855,1,がんさくフォルム, +855,5,Forme Contrefaçon,Polthégeist Contrefaçon 855,6,Fälschungsform,Mortipot (Fälschung) 855,9,Phony Form,Phony Polteageist 855,11,がんさくフォルム, 869,1,ミルキィバニラ, 869,3,밀키바닐라, 869,4,奶香香草, -869,5,Lait Vanille, +869,5,Lait Vanille,Charmilly Lait Vanille 869,6,Vanille-Creme,Pokusan (Vanille-Creme) 869,7,Crema de Vainilla, 869,8,Lattevaniglia, @@ -417,7 +419,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 875,1,アイスフェイス, 875,3,아이스페이스, 875,4,結凍頭, -875,5,Tête de Gel, +875,5,Tête de Gel,Bekaglaçon Tête de Gel 875,6,Tiefkühlkopf,Kubuin (Tiefkühlkopf) 875,7,Cara de Hielo, 875,8,Gelofaccia, @@ -427,7 +429,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 876,1,オスのすがた, 876,3,수컷의 모습, 876,4,雄性的樣子, -876,5,Mâle, +876,5,Mâle,Wimessir Mâle 876,6,Männlich,Servol ♂ 876,7,Macho, 876,8,Maschio, @@ -437,7 +439,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 877,1,まんぷくもよう, 877,3,배부른 모양, 877,4,滿腹花紋, -877,5,Mode Rassasié, +877,5,Mode Rassasié,Morpeko Rassasié 877,6,Pappsattmuster,Morpeko (Pappsattmuster) 877,7,Forma Saciada, 877,8,Motivo Panciapiena, @@ -447,7 +449,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 888,1,れきせんのゆうしゃ, 888,3,역전의 용사, 888,4,百戰勇者, -888,5,Héros Aguerri, +888,5,Héros Aguerri,Zacian 888,6,Heldenhafter Krieger,Zacian 888,7,Guerrero Avezado, 888,8,Eroe di Mille Lotte, @@ -457,7 +459,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 889,1,れきせんのゆうしゃ, 889,3,역전의 용사, 889,4,百戰勇者, -889,5,Héros Aguerri, +889,5,Héros Aguerri,Zamazenta 889,6,Heldenhafter Krieger,Zamazenta 889,7,Guerrero Avezado, 889,8,Eroe di Mille Lotte, @@ -467,7 +469,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 892,1,いちげきのかた, 892,3,일격의 태세, 892,4,一擊流, -892,5,Style Poing Final, +892,5,Style Poing Final,Shifours Style Poing Final 892,6,Fokussierter Stil,Wulaosu (Fokussiert) 892,7,Estilo Brusco, 892,8,Stile Singolcolpo, @@ -475,73 +477,84 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 892,11,いちげきのかた, 892,12,一击流, 902,1,オスのすがた, +902,5,Mâle,Paragruel Mâle 902,9,Male,Male Basculegion 902,11,オスのすがた, 905,1,けしんフォルム, +905,5,Forme Avatar,Amovénus Avatar 905,9,Incarnate Forme,Incarnate Enamorus 905,11,けしんフォルム, 916,1,オスのすがた, -916,9,Male, +916,5,Mâle,Fragroin Mâle +916,9,Male,Male Oinkologne 916,11,オスのすがた, 925,1,4ひきかぞく, -925,9,Family of Four, +925,5,Famille de Quatre,Famignol Famille de Quatre +925,9,Family of Four,Maushold (Family of Four) 925,11,4ひきかぞく, 931,1,グリーンフェザー, -931,9,Green Plumage, +931,5,Plumage Vert,Tapatoès Plumage Vert +931,9,Green Plumage,Green Plumage Squawkabilly 931,11,グリーンフェザー, 964,1,ナイーブフォルム, -964,9,Zero Form, +964,5,Forme Ordinaire,Superdofin Forme Ordinaire +964,9,Zero Form,Zero Form Palafin 964,11,ナイーブフォルム, 978,1,そったすがた, -978,9,Curly Form, +978,5,Forme Courbée,Nigirigon Forme Courbée +978,9,Curly Form,Curly Form Tatsugiri 978,11,そったすがた, 982,1,ふたふしフォルム, -982,9,Two-Segment Form, +982,5,Forme Double,Deusolourdo Forme Double +982,9,Two-Segment Form,Two-Segment Form Dudunsparce 982,11,ふたふしフォルム, 999,1,はこフォルム, -999,9,Chest Form, +999,5,Forme Coffre,Mordudor Forme Coffre +999,9,Chest Form,Chest Form Gimmighoul 999,11,はこフォルム, 1007,1,かんぜんけいたい, +1007,5,Forme Finale,Koraidon Forme Finale 1007,9,Apex Build, 1007,11,かんぜんけいたい, 1008,1,コンプリートモード, +1008,5,Mode Ultime,Miraidon Mode Ultime 1008,9,Ultimate Mode, 1008,11,コンプリートモード, 1012,1,マガイモノのすがた, 1012,3,가짜배기의 모습, 1012,4,冒牌貨的樣子, -1012,5,Forme Imitation, +1012,5,Forme Imitation,Poltchageist Forme Imitation 1012,6,Imitationsform, 1012,7,Forma Fraudulenta, 1012,8,Forma Taroccata, -1012,9,Counterfeit Form, +1012,9,Counterfeit Form,Counterfeit Form Poltchageist 1012,11,マガイモノのすがた, 1012,12,高檔貨的樣子, 1013,1,ボンサクのすがた, 1013,3,범작의 모습, 1013,4,凡作的樣子, -1013,5,Forme Médiocre, +1013,5,Forme Médiocre,Théffroyable Forme Médiocre 1013,6,Simple Form, 1013,7,Forma Mediocre, 1013,8,Forma Dozzinale, -1013,9,Unremarkable Form, +1013,9,Unremarkable Form,Unremarkable Form Sinistcha 1013,11,ボンサクのすがた, 1013,12,凡作的样子, 1017,1,みどりのめん, 1017,3,벽록의가면, 1017,4,碧草面具, -1017,5,Masque Turquoise, +1017,5,Masque Turquoise,Ogerpon Turquoise 1017,6,Türkisgrüne Maske, 1017,7,Máscara Turquesa, 1017,8,Maschera Turchese, -1017,9,Teal Mask, +1017,9,Teal Mask,Teal Mask Ogerpon 1017,11,みどりのめん, 1017,12,碧草面具, 1024,1,ノーマルフォルム, -1024,5,Forme Normale, +1024,5,Forme Normale,Terapagos Forme Normale 1024,7,Forma normal, 1024,8,Forma Normale, -1024,9,Normal Form, +1024,9,Normal Form,Normal Form Terapagos 1024,11,ノーマルフォルム, 10001,1,B, 10001,3,B, @@ -2034,21 +2047,27 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10181,9,Mega Rayquaza,Mega Rayquaza 10181,11,メガレックウザ, 10181,12,超级烈空坐, +10182,1,ハードロック・ピカチュウ, 10182,5,Pikachu Rockeur,Pikachu Rockeur 10182,6,Cosplayform,Rock Star Pikachu 10182,9,Pikachu Rock Star,Pikachu Rock Star +10183,1,マダム・ピカチュウ, 10183,5,Pikachu Lady,Pikachu Lady 10183,6,Cosplayform,Lady Pikachu 10183,9,Pikachu Belle,Pikachu Belle +10184,1,アイドル・ピカチュウ, 10184,5,Pikachu Star,Pikachu Star 10184,6,Cosplayform,Pop Star Pikachu 10184,9,Pikachu Pop Star,Pikachu Pop Star +10185,1,ドクター・ピカチュウ, 10185,5,Pikachu Docteur,Pikachu Docteur 10185,6,Cosplayform,Dr. Pikachu 10185,9,Pikachu Ph.D.,Pikachu Ph.D. +10186,1,マスクド・ピカチュウ, 10186,5,Pikachu Catcheur,Pikachu Catcheur 10186,6,Cosplayform,Wrestling Pikachu 10186,9,Pikachu Libre,Pikachu Libre +10187,1,おきがえピカチュウ, 10187,5,Pikachu Cosplayeur,Pikachu Cosplayeur 10187,6,Cosplayform,Cosplay Pikachu 10187,9,Cosplay Pikachu,Cosplay Pikachu @@ -2105,7 +2124,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10193,1,アローラのすがた, 10193,3,알로라의 모습, 10193,4,阿羅拉的樣子, -10193,5,Forme d’Alola,Rattata d'Alola +10193,5,Forme d'Alola,Rattata d'Alola 10193,6,Alola-Form,Alola Rattfratz 10193,7,Forma de Alola, 10193,8,Forma di Alola, @@ -2115,7 +2134,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10194,1,アローラのすがた, 10194,3,알로라의 모습, 10194,4,阿羅拉的樣子, -10194,5,Forme d’Alola,Rattatac d'Alola +10194,5,Forme d'Alola,Rattatac d'Alola 10194,6,Alola-Form,Alola Rattikarl 10194,7,Forma de Alola, 10194,8,Forma di Alola, @@ -2158,7 +2177,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10199,1,イッシュキャップ, 10199,3,하나캡, 10199,4,合眾帽子, -10199,5,Casquette d’Unys,Pikachu Casquette d’Unys +10199,5,Casquette d'Unys,Pikachu Casquette d’Unys 10199,6,Einall-Kappe,Pikachu (Einall-Kappe) 10199,7,Gorra Teselia, 10199,8,Berretto Unima, @@ -2178,7 +2197,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10201,1,アローラキャップ, 10201,3,알로라캡, 10201,4,阿羅拉帽子, -10201,5,Casquette d’Alola,Pikachu Casquette d’Alola +10201,5,Casquette d'Alola,Pikachu Casquette d’Alola 10201,6,Alola-Kappe,Pikachu (Alola-Kappe) 10201,7,Gorra Alola, 10201,8,Berretto Alola, @@ -2188,7 +2207,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10202,1,アローラのすがた, 10202,3,알로라의 모습, 10202,4,阿羅拉的樣子, -10202,5,Forme d’Alola,Raichu d'Alola +10202,5,Forme d'Alola,Raichu d'Alola 10202,6,Alola-Form,Alola Raichu 10202,7,Forma de Alola, 10202,8,Forma di Alola, @@ -2198,7 +2217,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10203,1,アローラのすがた, 10203,3,알로라의 모습, 10203,4,阿羅拉的樣子, -10203,5,Forme d’Alola,Sabelette d'Alola +10203,5,Forme d'Alola,Sabelette d'Alola 10203,6,Alola-Form,Alola Sandan 10203,7,Forma de Alola, 10203,8,Forma di Alola, @@ -2208,7 +2227,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10204,1,アローラのすがた, 10204,3,알로라의 모습, 10204,4,阿羅拉的樣子, -10204,5,Forme d’Alola,Sablaireau d'Alola +10204,5,Forme d'Alola,Sablaireau d'Alola 10204,6,Alola-Form,Alola Sandamer 10204,7,Forma de Alola, 10204,8,Forma di Alola, @@ -2218,7 +2237,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10205,1,アローラのすがた, 10205,3,알로라의 모습, 10205,4,阿羅拉的樣子, -10205,5,Forme d’Alola,Goupix d'Alola +10205,5,Forme d'Alola,Goupix d'Alola 10205,6,Alola-Form,Alola Vulpix 10205,7,Forma de Alola, 10205,8,Forma di Alola, @@ -2228,7 +2247,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10206,1,アローラのすがた, 10206,3,알로라의 모습, 10206,4,阿羅拉的樣子, -10206,5,Forme d’Alola,Feunard d'Alola +10206,5,Forme d'Alola,Feunard d'Alola 10206,6,Alola-Form,Alola Vulnona 10206,7,Forma de Alola, 10206,8,Forma di Alola, @@ -2238,7 +2257,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10207,1,アローラのすがた, 10207,3,알로라의 모습, 10207,4,阿羅拉的樣子, -10207,5,Forme d’Alola,Taupiqueur d'Alola +10207,5,Forme d'Alola,Taupiqueur d'Alola 10207,6,Alola-Form,Alola Digda 10207,7,Forma de Alola, 10207,8,Forma di Alola, @@ -2248,7 +2267,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10208,1,アローラのすがた, 10208,3,알로라의 모습, 10208,4,阿羅拉的樣子, -10208,5,Forme d’Alola,Triopikeur d'Alola +10208,5,Forme d'Alola,Triopikeur d'Alola 10208,6,Alola-Form,Alola Digdri 10208,7,Forma de Alola, 10208,8,Forma di Alola, @@ -2258,7 +2277,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10209,1,アローラのすがた, 10209,3,알로라의 모습, 10209,4,阿羅拉的樣子, -10209,5,Forme d’Alola,Miaouss d'Alola +10209,5,Forme d'Alola,Miaouss d'Alola 10209,6,Alola-Form,Alola Mauzi 10209,7,Forma de Alola, 10209,8,Forma di Alola, @@ -2278,7 +2297,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10211,1,アローラのすがた, 10211,3,알로라의 모습, 10211,4,阿羅拉的樣子, -10211,5,Forme d’Alola,Racaillou d'Alola +10211,5,Forme d'Alola,Racaillou d'Alola 10211,6,Alola-Form,Alola Kleinstein 10211,7,Forma de Alola, 10211,8,Forma di Alola, @@ -2288,7 +2307,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10212,1,アローラのすがた, 10212,3,알로라의 모습, 10212,4,阿羅拉的樣子, -10212,5,Forme d’Alola,Gravalanch d'Alola +10212,5,Forme d'Alola,Gravalanch d'Alola 10212,6,Alola-Form,Alola Georok 10212,7,Forma de Alola, 10212,8,Forma di Alola, @@ -2298,7 +2317,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10213,1,アローラのすがた, 10213,3,알로라의 모습, 10213,4,阿羅拉的樣子, -10213,5,Forme d’Alola,Grolem d'Alola +10213,5,Forme d'Alola,Grolem d'Alola 10213,6,Alola-Form,Alola Geowaz 10213,7,Forma de Alola, 10213,8,Forma di Alola, @@ -2308,7 +2327,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10214,1,アローラのすがた, 10214,3,알로라의 모습, 10214,4,阿羅拉的樣子, -10214,5,Forme d’Alola,Tadmorv d'Alola +10214,5,Forme d'Alola,Tadmorv d'Alola 10214,6,Alola-Form,Alola Sleima 10214,7,Forma de Alola, 10214,8,Forma di Alola, @@ -2318,7 +2337,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10215,1,アローラのすがた, 10215,3,알로라의 모습, 10215,4,阿羅拉的樣子, -10215,5,Forme d’Alola,Grotadmorv d'Alola +10215,5,Forme d'Alola,Grotadmorv d'Alola 10215,6,Alola-Form,Alola Sleimok 10215,7,Forma de Alola, 10215,8,Forma di Alola, @@ -2328,7 +2347,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10216,1,アローラのすがた, 10216,3,알로라의 모습, 10216,4,阿羅拉的樣子, -10216,5,Forme d’Alola,Noadkoko d'Alola +10216,5,Forme d'Alola,Noadkoko d'Alola 10216,6,Alola-Form,Alola Kokowei 10216,7,Forma de Alola, 10216,8,Forma di Alola, @@ -2338,7 +2357,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10217,1,アローラのすがた, 10217,3,알로라의 모습, 10217,4,阿羅拉的樣子, -10217,5,Forme d’Alola,Ossatueur d'Alola +10217,5,Forme d'Alola,Ossatueur d'Alola 10217,6,Alola-Form,Alola Knogga 10217,7,Forma de Alola, 10217,8,Forma di Alola, @@ -2673,7 +2692,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10254,1,りゅうせいのすがた, 10254,3,유성의 모습, 10254,4,流星的樣子, -10254,5,Forme Météore,Météno NoyeaForme Météore u Violet +10254,5,Forme Météore,Météno Forme Météore Noyeau Violet 10254,6,Meteorform,Meteno (Meteor Violet) 10254,7,Forma Meteorito, 10254,8,Forma Meteora, @@ -2830,7 +2849,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10315,1,あかつきのつばさ, 10315,3,새벽의 날개, 10315,4,拂曉之翼, -10315,5,Ailes de l’Aurore,Necrozma Ailes de l’Aurore +10315,5,Ailes de l'Aurore,Necrozma Ailes de l’Aurore 10315,6,Morgenschwingen,Necrozma (Morgenschwingen) 10315,7,Alas del Alba, 10315,8,Ali dell’Aurora, @@ -3104,17 +3123,19 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10343,11,ローなすがた, 10343,12,低调的样子, 10344,1,しんさくフォルム, +10344,5,Forme Authentique,Théffroi Authentique 10344,6,Originalform,Fatalitee (Original) 10344,9,Antique Form,Antique Sinistea 10344,11,しんさくフォルム, 10345,1,しんさくフォルム, +10345,5,Forme Authentique,Polthégeist Authentique 10345,6,Originalform,Mortipot (Original) 10345,9,Antique Form,Antique Polteageist 10345,11,しんさくフォルム, 10346,1,ミルキィルビー, 10346,3,밀키루비, 10346,4,奶香紅鑽, -10346,5,Lait Ruby, +10346,5,Lait Ruby,Charmilly Lait Ruby 10346,6,Ruby-Creme,Pokusan (Ruby-Creme) 10346,7,Crema Rosa, 10346,8,Latterosa, @@ -3124,7 +3145,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10347,1,ミルキィまっちゃ, 10347,3,밀키말차, 10347,4,奶香抹茶, -10347,5,Lait Matcha, +10347,5,Lait Matcha,Charmilly Lait Matcha 10347,6,Matcha-Creme,Pokusan (Matcha-Creme) 10347,7,Crema de Té, 10347,8,Lattematcha, @@ -3134,7 +3155,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10348,1,ミルキィミント, 10348,3,밀키민트, 10348,4,奶香薄荷, -10348,5,Lait Menthe, +10348,5,Lait Menthe,Charmilly Lait Menthe 10348,6,Minz-Creme,Pokusan (Minz-Creme) 10348,7,Crema de Menta, 10348,8,Lattementa, @@ -3144,7 +3165,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10349,1,ミルキィレモン, 10349,3,밀키레몬, 10349,4,奶香檸檬, -10349,5,Lait Citron, +10349,5,Lait Citron,Charmilly Lait Citron 10349,6,Zitronen-Creme,Pokusan (Zitronen-Creme) 10349,7,Crema de Limón, 10349,8,Lattelimone, @@ -3154,7 +3175,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10350,1,ミルキィソルト, 10350,3,밀키솔트, 10350,4,奶香雪鹽, -10350,5,Lait Salé, +10350,5,Lait Salé,Charmilly Lait Salé 10350,6,Salz-Creme,Pokusan (Salz-Creme) 10350,7,Crema Salada, 10350,8,Lattesale, @@ -3164,7 +3185,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10351,1,ルビーミックス, 10351,3,루비믹스, 10351,4,紅鑽綜合, -10351,5,Mélange Ruby, +10351,5,Mélange Ruby,Charmilly Mélange Ruby 10351,6,Ruby-Mix,Pokusan (Ruby-Mix) 10351,7,Mezcla Rosa, 10351,8,Rosamix, @@ -3174,7 +3195,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10352,1,キャラメルミックス, 10352,3,캐러멜믹스, 10352,4,焦糖綜合, -10352,5,Mélange Caramel, +10352,5,Mélange Caramel,Charmilly Mélange Caramel 10352,6,Karamell-Mix,Pokusan (Karamell-Mix) 10352,7,Mezcla Caramelo, 10352,8,Caramelmix, @@ -3184,7 +3205,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10353,1,トリプルミックス, 10353,3,트리플믹스, 10353,4,三色綜合, -10353,5,Mélange Tricolore, +10353,5,Mélange Tricolore,Charmilly Mélange Tricolore 10353,6,Trio-Mix,Pokusan (Trio-Mix) 10353,7,Tres Sabores, 10353,8,Triplomix, @@ -3214,7 +3235,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10356,1,はらぺこもよう, 10356,3,배고픈 모양, 10356,4,空腹花紋, -10356,5,Mode Affamé,Morpeko Mode Affamé +10356,5,Mode Affamé,Morpeko Affamé 10356,6,Kohldampfmuster,Morpeko (Kohldampf) 10356,7,Forma Voraz, 10356,8,Motivo Panciavuota, @@ -3360,7 +3381,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10386,5,Forme Gigamax,Dratatin Gigamax 10386,6,Gigadynamax-Form,Gigadynamax-Schlapfel 10386,9,Gigantamax Form,Gigantamax Appletun -10387,5,Forme Gigamax,Dunaconda +10387,5,Forme Gigamax,Dunaconda Gigamax 10387,6,Gigadynamax-Form,Gigadynamax-Sanaconda 10387,9,Gigantamax Form,Gigantamax Sandaconda 10388,5,Forme Gigamax,Salarsen Forme Aigüe Gigamax @@ -3484,7 +3505,7 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10415,9,Origin Forme,Origin Palkia 10415,11,オリジンフォルム, 10416,1,しろすじのすがた, -10416,5,Motif Blanch,Basculin Blanc +10416,5,Motif Blanc,Bargantua Blanc 10416,6,Weißlinienform,Weißliniges Barschuft 10416,9,White-Striped Form,White-Striped Basculin 10416,11,しろすじのすがた, @@ -3494,145 +3515,168 @@ pokemon_form_id,local_language_id,form_name,pokemon_name 10417,9,Female,Female Basculegion 10417,11,メスのすがた, 10418,1,れいじゅうフォルム, -10418,5,Forme Avatar,Amovénus Avatar +10418,5,Forme Totémique,Amovénus Totémique 10418,6,Tiergeistform,Enamorus (Tiergeist) 10418,9,Therian Forme,Therian Enamorus 10418,11,れいじゅうフォルム, 10419,1,パルデアのすがた, -10419,9,Paldean Form, +10419,5,Forme de Paldéa,Tauros de Paldéa Race Combative +10419,9,Paldean Form (Combat Breed),Paldean Tauros (Combat Breed) 10419,11,パルデアのすがた, 10420,1,パルデアのすがた, -10420,9,Paldean Form, +10420,5,Forme de Paldéa,Tauros de Paldéa Race Flamboyante +10420,9,Paldean Form (Blaze Breed),Paldean Tauros (Blaze Breed) 10420,11,パルデアのすがた, 10421,1,パルデアのすがた, -10421,9,Paldean Form, +10421,5,Forme de Paldéa,Tauros de Paldéa Race Aquatique +10421,9,Paldean Form (Aqua Breed),Paldean Tauros (Aqua Breed) 10421,11,パルデアのすがた, 10422,1,パルデアのすがた, -10422,9,Paldean Form, +10422,5,Forme de Paldéa,Axoloto de Paldéa +10422,9,Paldean Form,Paldean Wooper 10422,11,パルデアのすがた, 10423,1,メスのすがた, -10423,9,Female, +10423,5,Femelle,Fragroin Femelle +10423,9,Female,Female Oinkologne 10423,11,メスのすがた, 10424,1,みつふしフォルム, -10424,9,Three-Segment Form, +10424,5,Forme Triple,Deusolourdo Forme Triple +10424,9,Three-Segment Form,Three-Segment Form Dudunsparce 10424,11,みつふしフォルム, 10425,1,マイティフォルム, -10425,9,Hero Form, +10425,5,Forme Super,Superdofin Forme Super +10425,9,Hero Form,Hero Form Palafin 10425,11,マイティフォルム, 10426,1,3びきかぞく, -10426,9,Family of Three, +10426,5,Famille de Trois,Famignol Famille de Trois +10426,9,Family of Three,Maushold (Family of Three) 10426,11,3びきかぞく, 10427,1,たれたすがた, -10427,9,Droopy Form, +10427,5,Forme Affalée,Nigirigon Forme Affalée +10427,9,Droopy Form,Droopy Form Tatsugiri 10427,11,たれたすがた, 10428,1,のびたすがた, -10428,9,Stretchy Form, +10428,5,Forme Raide,Nigirigon Forme Raide +10428,9,Stretchy Form,Stretchy Form Tatsugiri 10428,11,のびたすがた, 10429,1,ブルーフェザー, -10429,9,Blue Plumage, +10429,5,Plumage Bleu,Tapatoès Plumage Bleu +10429,9,Blue Plumage,Blue Plumage Squawkabilly 10429,11,ブルーフェザー, 10430,1,イエローフェザー, -10430,9,Yellow Plumage, +10430,5,Plumage Jaune,Tapatoès Plumage Jaune +10430,9,Yellow Plumage,Yellow Plumage Squawkabilly 10430,11,イエローフェザー, 10431,1,ホワイトフェザー, -10431,9,White Plumage, +10431,5,Plumage Blanc,Tapatoès Plumage Blanc +10431,9,White Plumage,White Plumage Squawkabilly 10431,11,ホワイトフェザー, 10432,1,とほフォルム, -10432,9,Roaming Form, +10432,5,Forme Marche,Mordudor Forme Marche +10432,9,Roaming Form,Roaming Form Gimmighoul 10432,11,とほフォルム, 10433,1,せいげんけいたい, +10433,5,Forme Limitée,Koraidon Forme Limitée 10433,9,Limited Build, 10433,11,せいげんけいたい, 10434,1,しっそうけいたい, +10434,5,Forme de Course,Koraidon Forme de Course 10434,9,Sprinting Build, 10434,11,しっそうけいたい, 10435,1,ゆうえいけいたい, +10435,5,Forme de Nage,Koraidon Forme de Nage 10435,9,Swimming Build, 10435,11,ゆうえいけいたい, 10436,1,かっくうけいたい, +10436,5,Forme de Vol,Koraidon Forme de Vol 10436,9,Gliding Build, 10436,11,かっくうけいたい, 10437,1,リミテッドモード, +10437,5,Mode Bridé,Miraidon Mode Bridé 10437,9,Low-Power Mode, 10437,11,リミテッドモード, 10438,1,ドライブモード, +10438,5,Mode Terrestre,Miraidon Mode Terrestre 10438,9,Drive Mode, 10438,11,ドライブモード, 10439,1,フロートモード, +10439,5,Mode Aquatique,Miraidon Mode Aquatique 10439,9,Aquatic Mode, 10439,11,フロートモード, 10440,1,グライドモード, +10440,5,Mode Aérien,Miraidon Mode Aérien 10440,9,Glide Mode, 10440,11,グライドモード, 10441,1,アカツキ, 10441,3,붉은 달, 10441,4,赫月, -10441,5,Lune Vermeille, +10441,5,Lune Vermeille,Ursaking Lune Vermeille 10441,6,Blutmond, 10441,7,Luna Carmesí, 10441,8,Luna Cremisi, -10441,9,Bloodmoon, +10441,9,Bloodmoon,Bloodmoon Ursaluna 10441,11,アカツキ, 10441,12,赫月, 10442,1,いどのめん, 10442,3,우물의가면, 10442,4,水井面具, -10442,5,Masque du Puits, +10442,5,Masque du Puits,Ogerpon du Puits 10442,6,Brunnenmaske, 10442,7,Máscara Fuente, 10442,8,Maschera Pozzo, -10442,9,Wellspring Mask, +10442,9,Wellspring Mask,Wellspring Mask Ogerpon 10442,11,いどのめん, 10442,12,水井面具, 10443,1,かまどのめん, 10443,3,화덕의가면, 10443,4,火灶面具, -10443,5,Masque du Fourneau, +10443,5,Masque du Fourneau,Ogerpon du Fourneau 10443,6,Ofenmaske, 10443,7,Máscara Horno, 10443,8,Maschera Focolare, -10443,9,Hearthflame Mask, +10443,9,Hearthflame Mask,Hearthflame Mask Ogerpon 10443,11,かまどのめん, 10443,12,火灶面具, 10444,1,いしずえのめん, 10444,3,주춧돌의가면, 10444,4,礎石面具, -10444,5,Masque de la Pierre, +10444,5,Masque de la Pierre,Ogerpon de la Pierre 10444,6,Fundamentmaske, 10444,7,Máscara Cimiento, 10444,8,Maschera Fondamenta, -10444,9,Cornerstone Mask, +10444,9,Cornerstone Mask,Cornerstone Mask Ogerpon 10444,11,いしずえのめん, 10444,12,礎石面具, 10445,1,テラスタルフォルム, -10445,5,Forme Téracristal, +10445,5,Forme Téracristal,Terapagos Téracristal 10445,6,Terakristall-Form, 10445,7,Forma teracristal, 10445,8,Forma Teracristal, -10445,9,Terastal Form, +10445,9,Terastal Form,Terastal Form Terapagos 10445,11,テラスタルフォルム, 10446,1,ステラフォルム, +10446,5,Forme Stellaire,Terapagos Stellaire 10446,6,Stellarform, 10446,7,Forma astral, -10446,9,Stellar Form, +10446,9,Stellar Form,Stellar Form Terapagos 10446,11,ステラフォルム, 10447,1,タカイモノのすがた, 10447,3,알짜배기의 모습, 10447,4,高檔貨的樣子, -10447,5,Forme Onéreuse, +10447,5,Forme Onéreuse,Poltchageist Forme Onéreuse 10447,6,Kostbarkeitsform, 10447,7,Forma Opulenta, 10447,8,Forma Pregiata, -10447,9,Artisan Form, +10447,9,Artisan Form,Artisan Form Poltchageist 10447,11,タカイモノのすがた, 10447,12,高档货的样子, 10448,1,ケッサクのすがた, 10448,3,걸작의 모습, 10448,4,傑作的樣子, -10448,5,Forme Exceptionnelle, +10448,5,Forme Exceptionnelle,Théffroyable Forme Exceptionnelle 10448,6,Edle Form, 10448,7,Forma Exquisita, 10448,8,Forma Eccezionale, -10448,9,Masterpiece Form, +10448,9,Masterpiece Form,Masterpiece Form Sinistcha 10448,11,ケッサクのすがた, 10448,12,杰作的样子, diff --git a/data/v2/csv/pokemon_forms.csv b/data/v2/csv/pokemon_forms.csv index ac6c2baf..5b2e1d4a 100644 --- a/data/v2/csv/pokemon_forms.csv +++ b/data/v2/csv/pokemon_forms.csv @@ -914,7 +914,7 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau 913,quaxwell,,913,25,1,0,0,1,1274 914,quaquaval,,914,25,1,0,0,1,1275 915,lechonk,,915,25,1,0,0,1,1276 -916,oinkologne,male,916,25,1,0,0,1,1277 +916,oinkologne-male,male,916,25,1,0,0,1,1277 917,tarountula,,917,25,1,0,0,1,1279 918,spidops,,918,25,1,0,0,1,1280 919,nymble,,919,25,1,0,0,1,1281 @@ -1218,7 +1218,7 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau 10192,beedrill-mega,mega,10090,16,1,1,1,2,20 10193,rattata-alola,alola,10091,17,1,0,0,2,26 10194,raticate-alola,alola,10092,17,1,0,0,2,28 -10195,raticate-totem-alola,totem-alola,10093,17,1,1,0,3,29 +10195,raticate-totem-alola,totem-alola,10093,17,1,0,0,3,29 10196,pikachu-original-cap,original-cap,10094,17,1,0,0,8,43 10197,pikachu-hoenn-cap,hoenn-cap,10095,17,1,0,0,9,44 10198,pikachu-sinnoh-cap,sinnoh-cap,10096,17,1,0,0,10,45 @@ -1245,16 +1245,16 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau 10219,greninja-ash,ash,10117,17,1,1,0,3,853 10220,zygarde-10-power-construct,10-power-construct,10118,17,1,0,0,3,1002 10221,zygarde-50-power-construct,50-power-construct,10119,17,1,0,0,4,1003 -10222,zygarde-complete,complete,10120,17,1,0,0,5,1004 -10223,gumshoos-totem,totem,10121,17,1,1,0,2,1024 -10224,vikavolt-totem,totem,10122,17,1,1,0,2,1028 +10222,zygarde-complete,complete,10120,17,1,1,0,5,1004 +10223,gumshoos-totem,totem,10121,17,1,0,0,2,1024 +10224,vikavolt-totem,totem,10122,17,1,0,0,2,1028 10225,oricorio-pom-pom,pom-pom,10123,17,1,0,0,2,1032 10226,oricorio-pau,pau,10124,17,1,0,0,3,1033 10227,oricorio-sensu,sensu,10125,17,1,0,0,4,1034 10228,lycanroc-midnight,midnight,10126,17,1,0,0,2,1041 10229,wishiwashi-school,school,10127,17,1,1,0,2,1044 -10230,lurantis-totem,totem,10128,17,1,1,0,2,1054 -10231,salazzle-totem,totem,10129,17,1,1,0,2,1059 +10230,lurantis-totem,totem,10128,17,1,0,0,2,1054 +10231,salazzle-totem,totem,10129,17,1,0,0,2,1059 10232,silvally-fighting,fighting,773,17,0,0,0,2,1075 10233,silvally-flying,flying,773,17,0,0,0,3,1076 10234,silvally-poison,poison,773,17,0,0,0,4,1077 @@ -1286,9 +1286,9 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau 10260,minior-indigo,indigo,10141,17,1,0,0,13,1104 10261,minior-violet,violet,10142,17,1,0,0,14,1105 10262,mimikyu-busted,busted,10143,17,1,1,0,2,1111 -10263,mimikyu-totem-disguised,totem-disguised,10144,17,1,1,0,3,1112 +10263,mimikyu-totem-disguised,totem-disguised,10144,17,1,0,0,3,1112 10264,mimikyu-totem-busted,totem-busted,10145,17,1,1,0,4,1113 -10265,kommo-o-totem,totem,10146,17,1,1,0,2,1120 +10265,kommo-o-totem,totem,10146,17,1,0,0,2,1120 10266,magearna-original,original,10147,17,1,0,0,2,1141 10267,pikachu-partner-cap,partner-cap,10148,18,1,0,0,14,49 10268,marowak-totem,totem,10149,18,1,0,0,3,167 @@ -1358,12 +1358,12 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau 10334,linoone-galar,galar,10175,20,1,0,0,2,392 10335,darumaka-galar,galar,10176,20,1,0,0,2,725 10336,darmanitan-galar-standard,galar-standard,10177,20,1,0,0,3,728 -10337,darmanitan-galar-zen,galar-zen,10178,20,1,0,0,4,729 +10337,darmanitan-galar-zen,galar-zen,10178,20,1,1,0,4,729 10338,yamask-galar,galar,10179,20,1,0,0,2,737 10339,stunfisk-galar,galar,10180,20,1,0,0,2,800 10340,zygarde-10,10,10181,17,1,0,0,2,1001 -10341,cramorant-gulping,gulping,10182,20,1,0,0,2,1186 -10342,cramorant-gorging,gorging,10183,20,1,0,0,3,1187 +10341,cramorant-gulping,gulping,10182,20,1,1,0,2,1186 +10342,cramorant-gorging,gorging,10183,20,1,1,0,3,1187 10343,toxtricity-low-key,low-key,10184,20,1,0,0,2,1192 10344,sinistea-antique,antique,854,20,0,0,0,2,1198 10345,polteageist-antique,antique,855,20,0,0,0,2,1200 @@ -1375,11 +1375,11 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau 10351,alcremie-ruby-swirl,ruby-swirl,869,20,0,0,0,7,1220 10352,alcremie-caramel-swirl,caramel-swirl,869,20,0,0,0,8,1221 10353,alcremie-rainbow-swirl,rainbow-swirl,869,20,0,0,0,9,1222 -10354,eiscue-noice,noice,10185,20,1,0,0,2,1229 +10354,eiscue-noice,noice,10185,20,1,1,0,2,1229 10355,indeedee-female,female,10186,20,1,0,0,2,1231 -10356,morpeko-hangry,hangry,10187,20,1,0,0,2,1233 -10357,zacian-crowned,crowned,10188,20,1,0,0,2,1245 -10358,zamazenta-crowned,crowned,10189,20,1,0,0,2,1247 +10356,morpeko-hangry,hangry,10187,20,1,1,0,2,1233 +10357,zacian-crowned,crowned,10188,20,1,1,0,2,1245 +10358,zamazenta-crowned,crowned,10189,20,1,1,0,2,1247 10359,eternatus-eternamax,eternamax,10190,20,1,0,0,2,1249 10360,urshifu-rapid-strike,rapid-strike,10191,20,1,0,0,2,1252 10361,zarude-dada,dada,10192,20,1,0,0,2,1254 @@ -1437,9 +1437,9 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau 10413,decidueye-hisui,hisui,10244,24,1,0,0,2,1299 10414,dialga-origin,origin,10245,24,1,0,0,2,1300 10415,palkia-origin,origin,10246,24,1,0,0,2,1301 -10416,basculin-white-striped,white-striped,10247,24,1,0,0,1,1302 -10417,basculegion-female,female,10248,24,1,0,0,1,1303 -10418,enamorus-therian,therian,10249,24,1,0,0,1,1304 +10416,basculin-white-striped,white-striped,10247,24,1,0,0,3,1302 +10417,basculegion-female,female,10248,24,1,0,0,2,1303 +10418,enamorus-therian,therian,10249,24,1,0,0,2,1304 10419,tauros-paldea-combat-breed,paldea-combat-breed,10250,25,0,0,0,2,1305 10420,tauros-paldea-blaze-breed,paldea-blaze-breed,10251,25,0,0,0,3,1306 10421,tauros-paldea-aqua-breed,paldea-aqua-breed,10252,25,0,0,0,4,1307 diff --git a/data/v2/csv/pokemon_moves.csv b/data/v2/csv/pokemon_moves.csv index 54b6a705..8a254d45 100644 --- a/data/v2/csv/pokemon_moves.csv +++ b/data/v2/csv/pokemon_moves.csv @@ -1,4 +1,4 @@ -pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order +pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order,mastery 1,1,33,1,1,1 1,1,45,1,1,2 1,1,73,1,7, @@ -5132,6 +5132,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 5,25,184,1,37, 5,25,517,1,48, 5,25,394,1,54, +5,25,44,2,0, +5,25,68,2,0, +5,25,187,2,0, +5,25,231,2,0, +5,25,232,2,0, +5,25,246,2,0, +5,25,407,2,0, +5,25,525,2,0, 5,25,7,4,0, 5,25,9,4,0, 5,25,14,4,0, @@ -5174,14 +5182,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 5,25,46,4,0, 5,25,264,4,0, 5,25,311,4,0, -5,25,44,2,0, -5,25,68,2,0, -5,25,187,2,0, -5,25,231,2,0, -5,25,232,2,0, -5,25,246,2,0, -5,25,407,2,0, -5,25,525,2,0, 5,25,411,4,0, 5,25,784,4,0, 5,25,915,4,0, @@ -6451,6 +6451,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 6,25,83,1,46, 6,25,517,1,54, 6,25,394,1,62, +6,25,44,2,0, +6,25,68,2,0, +6,25,187,2,0, +6,25,231,2,0, +6,25,232,2,0, +6,25,246,2,0, +6,25,407,2,0, +6,25,525,2,0, 6,25,7,4,0, 6,25,9,4,0, 6,25,14,4,0, @@ -6507,14 +6515,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 6,25,535,4,0, 6,25,264,4,0, 6,25,311,4,0, -6,25,44,2,0, -6,25,68,2,0, -6,25,187,2,0, -6,25,231,2,0, -6,25,232,2,0, -6,25,246,2,0, -6,25,407,2,0, -6,25,525,2,0, 6,25,38,4,0, 6,25,784,4,0, 6,25,815,4,0, @@ -6781,6 +6781,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 7,6,290,4,0, 7,6,291,4,0, 7,6,352,4,0, +7,7,266,1,0, 7,7,33,1,1, 7,7,39,1,4, 7,7,145,1,7, @@ -6791,7 +6792,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 7,7,182,1,28, 7,7,240,1,33, 7,7,130,1,40, -7,7,266,1,0, 7,7,56,1,47, 7,7,54,2,0, 7,7,114,2,0, @@ -18615,6 +18615,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 23,25,808,4,0, 23,25,851,4,0, 23,25,885,4,0, +23,25,38,4,0, +23,25,482,4,0, +23,25,806,4,0, 24,1,35,1,1,1 24,1,40,1,1,3 24,1,43,1,1,2 @@ -19625,6 +19628,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 24,25,808,4,0, 24,25,851,4,0, 24,25,885,4,0, +24,25,220,4,0, +24,25,38,4,0, +24,25,482,4,0, +24,25,806,4,0, +24,25,675,4,0, +24,25,784,4,0, 25,1,45,1,1,2 25,1,84,1,1,1 25,1,86,1,9, @@ -20565,6 +20574,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 25,23,447,4,0, 25,23,451,4,0, 25,23,521,4,0, +25,24,84,1,1,,9 +25,24,98,1,5,,14 +25,24,86,1,9,,18 +25,24,129,1,15,,25 +25,24,209,1,21,,31 +25,24,85,1,29,,40 +25,24,231,1,37,,48 +25,24,87,1,47,,59 25,25,609,1,1,1 25,25,417,1,1,2 25,25,204,1,1,3 @@ -20628,6 +20645,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 25,25,268,4,0, 25,25,282,4,0, 25,25,264,4,0, +25,25,283,4,0, +25,25,527,4,0, +25,25,914,4,0, +25,25,918,4,0, 26,1,45,1,1,2 26,1,84,1,1,1 26,1,86,1,1,3 @@ -21466,6 +21487,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 26,23,447,4,0, 26,23,451,4,0, 26,23,521,4,0, +26,24,84,1,1,,9 +26,24,98,1,5,,14 +26,24,86,1,9,,18 +26,24,129,1,15,,25 +26,24,209,1,21,,31 +26,24,85,1,29,,40 +26,24,231,1,37,,48 +26,24,87,1,47,,59 26,25,9,1,0, 26,25,486,1,1,1 26,25,435,1,1,2 @@ -21532,6 +21561,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 26,25,268,4,0, 26,25,282,4,0, 26,25,264,4,0, +26,25,283,4,0, +26,25,527,4,0, +26,25,914,4,0, +26,25,918,4,0, 27,1,10,1,1, 27,1,28,1,10, 27,1,163,1,17, @@ -22686,6 +22719,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 27,25,667,4,0, 27,25,707,4,0, 27,25,851,4,0, +27,25,38,4,0, +27,25,283,4,0, +27,25,815,4,0, +27,25,675,4,0, +27,25,174,4,0, 28,1,10,1,1,1 28,1,28,1,1,2 28,1,28,1,10, @@ -23814,6 +23852,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 28,25,667,4,0, 28,25,707,4,0, 28,25,851,4,0, +28,25,38,4,0, +28,25,283,4,0, +28,25,815,4,0, +28,25,675,4,0, +28,25,174,4,0, 29,1,33,1,1,2 29,1,45,1,1,1 29,1,10,1,8, @@ -31449,6 +31492,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 35,23,451,4,0, 35,23,526,4,0, 35,23,605,4,0, +35,24,33,1,1,,9 +35,24,584,1,5,,14 +35,24,608,1,9,,18 +35,24,577,1,15,,25 +35,24,347,1,21,,31 +35,24,94,1,29,,40 +35,24,585,1,37,,48 +35,24,38,1,47,,59 35,25,1,1,1,1 35,25,45,1,1,2 35,25,47,1,1,3 @@ -31541,6 +31592,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 35,25,814,4,0, 35,25,851,4,0, 35,25,886,4,0, +35,25,244,4,0, +35,25,38,4,0, +35,25,283,4,0, +35,25,800,4,0, +35,25,914,4,0, 36,1,3,1,1,2 36,1,47,1,1,1 36,1,107,1,1,3 @@ -32749,6 +32805,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 36,23,451,4,0, 36,23,526,4,0, 36,23,605,4,0, +36,24,33,1,1,,9 +36,24,584,1,5,,14 +36,24,608,1,9,,18 +36,24,577,1,15,,25 +36,24,347,1,21,,31 +36,24,94,1,29,,40 +36,24,585,1,37,,48 +36,24,38,1,47,,59 36,25,118,1,1,1 36,25,309,1,1,2 36,25,585,1,1,3 @@ -32844,6 +32908,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 36,25,814,4,0, 36,25,851,4,0, 36,25,886,4,0, +36,25,244,4,0, +36,25,38,4,0, +36,25,283,4,0, +36,25,248,4,0, +36,25,800,4,0, +36,25,914,4,0, 37,1,39,1,1,2 37,1,52,1,1,1 37,1,98,1,16, @@ -33838,6 +33908,24 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 37,23,371,4,0, 37,23,399,4,0, 37,23,412,4,0, +37,24,52,1,1,,9 +37,24,98,1,5,,14 +37,24,417,1,9,,18 +37,24,172,1,15,,25 +37,24,506,1,21,,31 +37,24,326,1,29,,40 +37,24,53,1,37,,48 +37,24,126,1,47,,59 +37,24,129,3,0,, +37,24,466,3,0,, +37,24,156,3,0,, +37,24,608,3,0,, +37,24,428,3,0,, +37,24,231,3,0,, +37,24,595,3,0,, +37,24,412,3,0,, +37,24,53,3,0,, +37,24,399,3,0,, 37,25,39,1,1,1 37,25,52,1,1,2 37,25,50,1,4, @@ -33899,6 +33987,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 37,25,555,4,0, 37,25,807,4,0, 37,25,851,4,0, +37,25,220,4,0, +37,25,244,4,0, +37,25,38,4,0, 38,1,39,1,1,2 38,1,46,1,1,4 38,1,52,1,1,1 @@ -34651,6 +34742,28 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 38,23,412,4,0, 38,23,416,4,0, 38,23,417,4,0, +38,24,52,1,1,,9 +38,24,98,1,5,,14 +38,24,417,1,9,,18 +38,24,172,1,15,,25 +38,24,506,1,21,,31 +38,24,326,1,29,,40 +38,24,53,1,37,,48 +38,24,126,1,47,,59 +38,24,129,3,0,, +38,24,466,3,0,, +38,24,347,3,0,, +38,24,156,3,0,, +38,24,608,3,0,, +38,24,428,3,0,, +38,24,231,3,0,, +38,24,595,3,0,, +38,24,412,3,0,, +38,24,247,3,0,, +38,24,416,3,0,, +38,24,63,3,0,, +38,24,53,3,0,, +38,24,399,3,0,, 38,25,98,1,1,1 38,25,53,1,1,2 38,25,39,1,1,3 @@ -34709,6 +34822,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 38,25,555,4,0, 38,25,807,4,0, 38,25,851,4,0, +38,25,220,4,0, +38,25,244,4,0, +38,25,38,4,0, +38,25,815,4,0, 39,1,47,1,1, 39,1,1,1,9, 39,1,50,1,14, @@ -36050,6 +36167,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 39,25,253,4,0, 39,25,264,4,0, 39,25,802,4,0, +39,25,220,4,0, +39,25,244,4,0, +39,25,38,4,0, +39,25,283,4,0, +39,25,914,4,0, +39,25,917,4,0, 40,1,3,1,1,4 40,1,47,1,1,1 40,1,50,1,1,2 @@ -37292,6 +37415,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 40,25,253,4,0, 40,25,264,4,0, 40,25,802,4,0, +40,25,220,4,0, +40,25,244,4,0, +40,25,38,4,0, +40,25,283,4,0, +40,25,797,4,0, +40,25,914,4,0, +40,25,917,4,0, 41,1,141,1,1, 41,1,48,1,10, 41,1,44,1,15, @@ -38248,6 +38378,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 41,23,371,4,0, 41,23,417,4,0, 41,23,432,4,0, +41,24,16,1,1,,10 +41,24,95,1,6,,15 +41,24,44,1,11,,20 +41,24,314,1,18,,28 +41,24,440,1,25,,35 +41,24,403,1,34,,45 +41,24,141,1,43,,54 42,1,44,1,1,3 42,1,103,1,1,2 42,1,141,1,1,1 @@ -39142,6 +39279,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 42,23,416,4,0, 42,23,417,4,0, 42,23,432,4,0, +42,24,16,1,1,,10 +42,24,95,1,6,,15 +42,24,44,1,11,,20 +42,24,314,1,18,,28 +42,24,440,1,25,,35 +42,24,403,1,34,,45 +42,24,141,1,43,,54 43,1,71,1,1, 43,1,77,1,15, 43,1,78,1,17, @@ -42537,6 +42681,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 46,23,332,4,0, 46,23,404,4,0, 46,23,447,4,0, +46,24,71,1,1,,9 +46,24,78,1,5,,14 +46,24,77,1,9,,18 +46,24,474,1,15,,25 +46,24,163,1,21,,31 +46,24,147,1,29,,40 +46,24,404,1,37,,48 +46,24,412,1,47,,59 47,1,10,1,1,1 47,1,78,1,1,2 47,1,141,1,1,3 @@ -43405,6 +43557,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 47,23,412,4,0, 47,23,416,4,0, 47,23,447,4,0, +47,24,71,1,1,,9 +47,24,78,1,5,,14 +47,24,77,1,9,,18 +47,24,474,1,15,,25 +47,24,163,1,21,,31 +47,24,147,1,29,,40 +47,24,404,1,37,,48 +47,24,412,1,47,,59 48,1,33,1,1,1 48,1,50,1,1,2 48,1,77,1,24, @@ -44255,6 +44415,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 48,25,92,4,0, 48,25,450,4,0, 48,25,679,4,0, +48,25,283,4,0, +48,25,806,4,0, +48,25,917,4,0, 49,1,33,1,1,1 49,1,50,1,1,2 49,1,77,1,1,3 @@ -45192,6 +45355,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 49,25,92,4,0, 49,25,450,4,0, 49,25,679,4,0, +49,25,38,4,0, +49,25,283,4,0, +49,25,482,4,0, +49,25,806,4,0, +49,25,917,4,0, 50,1,10,1,1, 50,1,45,1,15, 50,1,91,1,19, @@ -46153,6 +46321,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 50,25,328,4,0, 50,25,479,4,0, 50,25,253,4,0, +50,25,38,4,0, +50,25,283,4,0, +50,25,815,4,0, +50,25,675,4,0, +50,25,174,4,0, 51,1,10,1,1,1 51,1,45,1,1,2 51,1,91,1,1,3 @@ -47095,6 +47268,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 51,25,328,4,0, 51,25,479,4,0, 51,25,253,4,0, +51,25,38,4,0, +51,25,283,4,0, +51,25,482,4,0, +51,25,815,4,0, +51,25,675,4,0, +51,25,174,4,0, 52,1,10,1,1,1 52,1,45,1,1,2 52,1,44,1,12, @@ -48276,6 +48455,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 52,25,180,4,0, 52,25,282,4,0, 52,25,808,4,0, +52,25,220,4,0, +52,25,244,4,0, +52,25,38,4,0, +52,25,283,4,0, +52,25,675,4,0, 53,1,10,1,1,1 53,1,44,1,1,3 53,1,45,1,1,2 @@ -49426,6 +49610,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 53,25,180,4,0, 53,25,282,4,0, 53,25,808,4,0, +53,25,220,4,0, +53,25,244,4,0, +53,25,38,4,0, +53,25,283,4,0, +53,25,806,4,0, +53,25,675,4,0, 54,1,10,1,1, 54,1,39,1,28, 54,1,50,1,31, @@ -50595,6 +50785,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 54,23,374,4,0, 54,23,421,4,0, 54,23,503,4,0, +54,24,145,1,1,,10 +54,24,93,1,6,,15 +54,24,352,1,11,,20 +54,24,95,1,18,,28 +54,24,428,1,25,,35 +54,24,401,1,34,,45 +54,24,56,1,43,,54 54,25,10,1,1,1 54,25,39,1,1,2 54,25,55,1,3, @@ -50665,6 +50862,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 54,25,410,4,0, 54,25,264,4,0, 54,25,812,4,0, +54,25,244,4,0, +54,25,38,4,0, +54,25,283,4,0, +54,25,250,4,0, +54,25,330,4,0, +54,25,917,4,0, 55,1,10,1,1,1 55,1,39,1,1,2 55,1,50,1,1,3 @@ -51784,6 +51987,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 55,23,431,4,0, 55,23,490,4,0, 55,23,503,4,0, +55,24,145,1,1,,10 +55,24,93,1,6,,15 +55,24,352,1,11,,20 +55,24,95,1,18,,28 +55,24,428,1,25,,35 +55,24,401,1,34,,45 +55,24,56,1,43,,54 55,25,10,1,1,1 55,25,39,1,1,2 55,25,55,1,1,3 @@ -51854,6 +52064,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 55,25,410,4,0, 55,25,264,4,0, 55,25,812,4,0, +55,25,244,4,0, +55,25,38,4,0, +55,25,283,4,0, +55,25,250,4,0, +55,25,330,4,0, +55,25,248,4,0, +55,25,917,4,0, 56,1,10,1,1,1 56,1,43,1,1,2 56,1,2,1,15, @@ -53115,6 +53332,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 56,25,253,4,0, 56,25,264,4,0, 56,25,808,4,0, +56,25,38,4,0, +56,25,283,4,0, +56,25,675,4,0, +56,25,174,4,0, 57,1,2,1,1,3 57,1,10,1,1,1 57,1,43,1,1,2 @@ -54324,6 +54545,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 57,25,253,4,0, 57,25,264,4,0, 57,25,808,4,0, +57,25,38,4,0, +57,25,283,4,0, +57,25,675,4,0, +57,25,174,4,0, 58,1,44,1,1,1 58,1,46,1,1,2 58,1,52,1,18, @@ -55376,6 +55601,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 58,25,706,4,0, 58,25,851,4,0, 58,25,46,4,0, +58,25,38,4,0, +58,25,915,4,0, +58,25,174,4,0, 59,1,36,1,1,4 59,1,43,1,1,3 59,1,46,1,1,1 @@ -56218,6 +56446,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 59,25,851,4,0, 59,25,46,4,0, 59,25,535,4,0, +59,25,38,4,0, +59,25,915,4,0, +59,25,815,4,0, +59,25,174,4,0, 60,1,145,1,1, 60,1,95,1,16, 60,1,55,1,19, @@ -57158,6 +57390,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 60,25,710,4,0, 60,25,851,4,0, 60,25,886,4,0, +60,25,38,4,0, +60,25,283,4,0, +60,25,250,4,0, +60,25,330,4,0, 61,1,55,1,1,3 61,1,95,1,1,2 61,1,145,1,1,1 @@ -58135,6 +58371,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 61,25,710,4,0, 61,25,851,4,0, 61,25,886,4,0, +61,25,244,4,0, +61,25,38,4,0, +61,25,283,4,0, +61,25,250,4,0, +61,25,330,4,0, 62,1,3,1,1,3 62,1,34,1,1,4 62,1,55,1,1,2 @@ -59182,6 +59423,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 62,25,710,4,0, 62,25,851,4,0, 62,25,886,4,0, +62,25,244,4,0, +62,25,38,4,0, +62,25,283,4,0, +62,25,250,4,0, +62,25,330,4,0, +62,25,811,4,0, +62,25,675,4,0, +62,25,918,4,0, 63,1,100,1,1, 63,1,5,4,0, 63,1,25,4,0, @@ -60157,6 +60406,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 63,23,447,4,0, 63,23,451,4,0, 63,23,605,4,0, +63,24,100,1,1,, 64,1,50,1,1,3 64,1,93,1,1,2 64,1,100,1,1,1 @@ -61269,6 +61519,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 64,23,447,4,0, 64,23,451,4,0, 64,23,605,4,0, +64,24,93,1,0,,15 +64,24,100,1,1,, +64,24,95,1,6,,15 +64,24,347,1,11,,20 +64,24,427,1,18,,28 +64,24,428,1,25,,35 +64,24,105,1,34,,45 +64,24,94,1,43,,54 65,1,50,1,1,3 65,1,93,1,1,2 65,1,100,1,1,1 @@ -62429,6 +62687,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 65,23,447,4,0, 65,23,451,4,0, 65,23,605,4,0, +65,24,100,1,1,, +65,24,95,1,6,,15 +65,24,93,1,6,,15 +65,24,347,1,11,,20 +65,24,427,1,18,,28 +65,24,428,1,25,,35 +65,24,105,1,34,,45 +65,24,94,1,43,,54 66,1,2,1,1, 66,1,67,1,20, 66,1,43,1,25, @@ -63588,6 +63854,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 66,23,490,4,0, 66,23,523,4,0, 66,23,526,4,0, +66,24,33,1,1,,10 +66,24,249,1,6,,15 +66,24,418,1,11,,20 +66,24,458,1,18,,28 +66,24,183,1,22,,32 +66,24,339,1,25,,35 +66,24,38,1,34,,45 +66,24,370,1,43,,54 67,1,2,1,1,1 67,1,43,1,1,3 67,1,67,1,1,2 @@ -64605,6 +64879,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 67,23,490,4,0, 67,23,523,4,0, 67,23,526,4,0, +67,24,33,1,1,,10 +67,24,249,1,6,,15 +67,24,418,1,11,,20 +67,24,458,1,18,,28 +67,24,183,1,22,,32 +67,24,339,1,25,,35 +67,24,38,1,34,,45 +67,24,370,1,43,,54 68,1,2,1,1,1 68,1,43,1,1,3 68,1,67,1,1,2 @@ -65688,6 +65970,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 68,23,490,4,0, 68,23,523,4,0, 68,23,526,4,0, +68,24,33,1,1,,10 +68,24,249,1,6,,15 +68,24,418,1,11,,20 +68,24,458,1,18,,28 +68,24,183,1,22,,32 +68,24,339,1,25,,35 +68,24,409,1,30,,41 +68,24,38,1,34,,45 +68,24,370,1,43,,54 69,1,22,1,1,1 69,1,74,1,1,2 69,1,35,1,13, @@ -66610,6 +66901,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 69,25,851,4,0, 69,25,884,4,0, 69,25,885,4,0, +69,25,482,4,0, 70,1,22,1,1,1 70,1,35,1,1,3 70,1,74,1,1,2 @@ -67416,6 +67708,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 70,25,851,4,0, 70,25,884,4,0, 70,25,885,4,0, +70,25,482,4,0, 71,1,51,1,1,3 71,1,75,1,1,4 71,1,78,1,1,2 @@ -68151,6 +68444,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 71,25,851,4,0, 71,25,884,4,0, 71,25,885,4,0, +71,25,482,4,0, 72,1,51,1,1, 72,1,48,1,7, 72,1,35,1,13, @@ -69146,6 +69440,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 72,23,398,4,0, 72,23,503,4,0, 72,23,605,4,0, +72,24,40,1,1,,10 +72,24,145,1,6,,15 +72,24,352,1,11,,20 +72,24,506,1,18,,28 +72,24,398,1,25,,35 +72,24,151,1,34,,45 +72,24,56,1,43,,54 72,25,40,1,1,1 72,25,55,1,1,2 72,25,51,1,4, @@ -70153,6 +70454,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 73,23,416,4,0, 73,23,503,4,0, 73,23,605,4,0, +73,24,40,1,1,,10 +73,24,145,1,6,,15 +73,24,352,1,11,,20 +73,24,506,1,18,,28 +73,24,398,1,25,,35 +73,24,151,1,34,,45 +73,24,56,1,43,,54 73,25,35,1,1,1 73,25,40,1,1,2 73,25,51,1,1,3 @@ -71197,6 +71505,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 74,23,444,4,0, 74,23,446,4,0, 74,23,523,4,0, +74,24,205,1,1,,9 +74,24,33,1,5,,14 +74,24,189,1,9,,18 +74,24,334,1,15,,25 +74,24,157,1,21,,31 +74,24,523,1,26,,35 +74,24,446,1,29,,40 +74,24,38,1,37,,48 +74,24,120,1,47,,59 74,25,33,1,1,1 74,25,111,1,1,2 74,25,397,1,6, @@ -71254,6 +71571,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 74,25,667,4,0, 74,25,707,4,0, 74,25,851,4,0, +74,25,38,4,0, +74,25,174,4,0, 75,1,33,1,1,1 75,1,111,1,1,2 75,1,111,1,11, @@ -72174,6 +72493,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 75,23,444,4,0, 75,23,446,4,0, 75,23,523,4,0, +75,24,205,1,1,,9 +75,24,33,1,5,,14 +75,24,189,1,9,,18 +75,24,334,1,15,,25 +75,24,157,1,21,,31 +75,24,523,1,26,,35 +75,24,446,1,29,,40 +75,24,38,1,37,,48 +75,24,120,1,47,,59 75,25,33,1,1,1 75,25,111,1,1,2 75,25,397,1,1,3 @@ -72234,6 +72562,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 75,25,707,4,0, 75,25,776,4,0, 75,25,851,4,0, +75,25,360,4,0, +75,25,38,4,0, +75,25,174,4,0, +75,25,912,4,0, 76,1,33,1,1,1 76,1,111,1,1,2 76,1,111,1,11, @@ -73240,6 +73572,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 76,23,444,4,0, 76,23,446,4,0, 76,23,523,4,0, +76,24,205,1,1,,9 +76,24,33,1,5,,14 +76,24,189,1,9,,18 +76,24,334,1,15,,25 +76,24,157,1,21,,31 +76,24,523,1,26,,35 +76,24,446,1,29,,40 +76,24,38,1,37,,48 +76,24,120,1,47,,59 +76,24,444,1,57,,71 76,25,33,1,1,1 76,25,111,1,1,2 76,25,397,1,1,3 @@ -73304,6 +73646,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 76,25,707,4,0, 76,25,776,4,0, 76,25,851,4,0, +76,25,38,4,0, +76,25,174,4,0, +76,25,912,4,0, 77,1,52,1,1, 77,1,39,1,30, 77,1,23,1,32, @@ -74148,6 +74493,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 77,23,261,4,0, 77,23,263,4,0, 77,23,315,4,0, +77,24,33,1,1,,9 +77,24,52,1,5,,14 +77,24,458,1,9,,18 +77,24,172,1,15,,25 +77,24,95,1,21,,31 +77,24,126,1,29,,40 +77,24,38,1,37,,48 +77,24,394,1,47,,59 78,1,23,1,1,3 78,1,39,1,1,2 78,1,45,1,1,4 @@ -75018,6 +75371,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 78,23,315,4,0, 78,23,398,4,0, 78,23,416,4,0, +78,24,33,1,1,,9 +78,24,52,1,5,,14 +78,24,458,1,9,,18 +78,24,172,1,15,,25 +78,24,95,1,21,,31 +78,24,126,1,29,,40 +78,24,38,1,37,,48 +78,24,394,1,47,,59 79,1,93,1,1, 79,1,50,1,18, 79,1,29,1,22, @@ -76347,6 +76708,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 79,25,883,4,0, 79,25,886,4,0, 79,25,311,4,0, +79,25,244,4,0, +79,25,250,4,0, +79,25,797,4,0, +79,25,174,4,0, 80,1,29,1,1,3 80,1,50,1,1,2 80,1,93,1,1,1 @@ -77778,6 +78143,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 80,25,503,4,0, 80,25,264,4,0, 80,25,311,4,0, +80,25,244,4,0, +80,25,250,4,0, +80,25,330,4,0, +80,25,248,4,0, +80,25,797,4,0, +80,25,174,4,0, +80,25,917,4,0, 81,1,33,1,1, 81,1,49,1,21, 81,1,84,1,25, @@ -78575,6 +78947,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 81,23,430,4,0, 81,23,451,4,0, 81,23,521,4,0, +81,24,84,1,1,,10 +81,24,33,1,6,,15 +81,24,86,1,11,,20 +81,24,209,1,18,,28 +81,24,430,1,25,,35 +81,24,85,1,34,,45 +81,24,87,1,43,,54 81,25,33,1,1,1 81,25,84,1,1,2 81,25,48,1,4, @@ -78625,6 +79004,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 81,25,268,4,0, 81,25,356,4,0, 81,25,360,4,0, +81,25,527,4,0, +81,25,319,4,0, 82,1,33,1,1,1 82,1,49,1,1,2 82,1,84,1,1,3 @@ -79526,6 +79907,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 82,23,430,4,0, 82,23,451,4,0, 82,23,521,4,0, +82,24,84,1,1,,10 +82,24,33,1,6,,15 +82,24,86,1,11,,20 +82,24,209,1,18,,28 +82,24,430,1,25,,35 +82,24,161,1,25,,35 +82,24,85,1,34,,45 +82,24,87,1,43,,54 82,25,161,1,0, 82,25,86,1,1,1 82,25,604,1,1,2 @@ -79577,6 +79966,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 82,25,268,4,0, 82,25,356,4,0, 82,25,360,4,0, +82,25,527,4,0, +82,25,319,4,0, 83,1,28,1,1,2 83,1,64,1,1,1 83,1,43,1,7, @@ -85272,6 +85663,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 88,25,851,4,0, 88,25,114,4,0, 88,25,92,4,0, +88,25,220,4,0, +88,25,482,4,0, +88,25,174,4,0, 89,1,1,1,1,1 89,1,50,1,1,2 89,1,139,1,1,3 @@ -86364,6 +86758,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 89,25,679,4,0, 89,25,264,4,0, 89,25,808,4,0, +89,25,220,4,0, +89,25,482,4,0, +89,25,174,4,0, 90,1,33,1,1,1 90,1,110,1,1,2 90,1,48,1,18, @@ -87266,6 +87663,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 90,25,883,4,0, 90,25,886,4,0, 90,25,333,4,0, +90,25,250,4,0, 91,1,48,1,1,2 91,1,62,1,1,4 91,1,110,1,1,1 @@ -88051,6 +88449,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 91,25,886,4,0, 91,25,333,4,0, 91,25,311,4,0, +91,25,250,4,0, 92,1,101,1,1,3 92,1,109,1,1,2 92,1,122,1,1,1 @@ -89143,6 +89542,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 92,23,412,4,0, 92,23,433,4,0, 92,23,605,4,0, +92,24,310,1,1,,10 +92,24,139,1,6,,15 +92,24,506,1,11,,20 +92,24,474,1,18,,28 +92,24,95,1,25,,35 +92,24,399,1,34,,45 +92,24,247,1,43,,54 92,25,109,1,1,1 92,25,122,1,1,2 92,25,95,1,4, @@ -89208,6 +89614,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 92,25,92,4,0, 92,25,180,4,0, 92,25,809,4,0, +92,25,220,4,0, +92,25,244,4,0, +92,25,482,4,0, +92,25,806,4,0, +92,25,174,4,0, 93,1,101,1,1,3 93,1,109,1,1,2 93,1,122,1,1,1 @@ -90215,6 +90626,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 93,23,421,4,0, 93,23,433,4,0, 93,23,605,4,0, +93,24,310,1,1,,10 +93,24,139,1,6,,15 +93,24,506,1,11,,20 +93,24,474,1,18,,28 +93,24,95,1,25,,35 +93,24,399,1,34,,45 +93,24,247,1,43,,54 93,25,325,1,0, 93,25,95,1,1,1 93,25,109,1,1,2 @@ -90280,6 +90698,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 93,25,92,4,0, 93,25,180,4,0, 93,25,809,4,0, +93,25,220,4,0, +93,25,244,4,0, +93,25,482,4,0, +93,25,806,4,0, +93,25,174,4,0, 94,1,101,1,1,3 94,1,109,1,1,2 94,1,122,1,1,1 @@ -91486,6 +91909,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 94,23,421,4,0, 94,23,433,4,0, 94,23,605,4,0, +94,24,310,1,1,,10 +94,24,139,1,6,,15 +94,24,506,1,11,,20 +94,24,474,1,18,,28 +94,24,95,1,25,,35 +94,24,399,1,34,,45 +94,24,247,1,43,,54 94,25,212,1,1,1 94,25,325,1,1,2 94,25,513,1,1,3 @@ -91561,6 +91991,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 94,25,282,4,0, 94,25,264,4,0, 94,25,809,4,0, +94,25,220,4,0, +94,25,244,4,0, +94,25,482,4,0, +94,25,806,4,0, +94,25,174,4,0, +94,25,917,4,0, 95,1,33,1,1,1 95,1,103,1,1,2 95,1,20,1,15, @@ -92644,6 +93080,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 95,23,444,4,0, 95,23,446,4,0, 95,23,523,4,0, +95,24,205,1,1,,10 +95,24,33,1,6,,15 +95,24,523,1,11,,20 +95,24,157,1,18,,28 +95,24,446,1,25,,35 +95,24,667,1,34,,45 +95,24,231,1,43,,54 96,1,1,1,1,1 96,1,95,1,1,2 96,1,50,1,12, @@ -93845,6 +94288,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 96,25,92,4,0, 96,25,282,4,0, 96,25,264,4,0, +96,25,244,4,0, +96,25,38,4,0, +96,25,283,4,0, +96,25,248,4,0, +96,25,797,4,0, +96,25,174,4,0, +96,25,917,4,0, 97,1,1,1,1,1 97,1,50,1,1,3 97,1,93,1,1,4 @@ -95025,6 +95475,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 97,25,92,4,0, 97,25,282,4,0, 97,25,264,4,0, +97,25,244,4,0, +97,25,38,4,0, +97,25,283,4,0, +97,25,248,4,0, +97,25,797,4,0, +97,25,174,4,0, +97,25,917,4,0, 98,1,43,1,1,2 98,1,145,1,1,1 98,1,11,1,20, @@ -97820,6 +98277,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 100,25,851,4,0, 100,25,268,4,0, 100,25,360,4,0, +100,25,38,4,0, +100,25,527,4,0, +100,25,319,4,0, 101,1,33,1,1,1 101,1,49,1,1,3 101,1,103,1,1,2 @@ -98693,6 +99153,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 101,25,851,4,0, 101,25,268,4,0, 101,25,360,4,0, +101,25,38,4,0, +101,25,916,4,0, +101,25,527,4,0, +101,25,319,4,0, +101,25,174,4,0, 102,1,95,1,1,2 102,1,140,1,1,1 102,1,115,1,25, @@ -99729,6 +100194,62 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 102,23,412,4,0, 102,23,433,4,0, 102,23,447,4,0, +102,25,71,1,1,1 +102,25,95,1,1,2 +102,25,115,1,5, +102,25,73,1,10, +102,25,72,1,15, +102,25,93,1,20, +102,25,235,1,25, +102,25,331,1,30, +102,25,202,1,35, +102,25,326,1,40, +102,25,253,1,45, +102,25,388,1,50, +102,25,76,1,55, +102,25,77,2,0, +102,25,78,2,0, +102,25,79,2,0, +102,25,174,2,0, +102,25,236,2,0, +102,25,246,2,0, +102,25,275,2,0, +102,25,335,2,0, +102,25,14,4,0, +102,25,60,4,0, +102,25,76,4,0, +102,25,94,4,0, +102,25,113,4,0, +102,25,115,4,0, +102,25,156,4,0, +102,25,164,4,0, +102,25,168,4,0, +102,25,174,4,0, +102,25,182,4,0, +102,25,188,4,0, +102,25,202,4,0, +102,25,203,4,0, +102,25,214,4,0, +102,25,241,4,0, +102,25,244,4,0, +102,25,253,4,0, +102,25,263,4,0, +102,25,270,4,0, +102,25,271,4,0, +102,25,285,4,0, +102,25,286,4,0, +102,25,331,4,0, +102,25,402,4,0, +102,25,412,4,0, +102,25,428,4,0, +102,25,437,4,0, +102,25,447,4,0, +102,25,473,4,0, +102,25,500,4,0, +102,25,580,4,0, +102,25,803,4,0, +102,25,851,4,0, +102,25,917,4,0, 103,1,95,1,1,2 103,1,140,1,1,1 103,1,23,1,28, @@ -106394,6 +106915,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 108,23,431,4,0, 108,23,523,4,0, 108,23,526,4,0, +108,24,33,1,1,,10 +108,24,156,1,6,,15 +108,24,523,1,11,,20 +108,24,428,1,18,,28 +108,24,38,1,25,,35 +108,24,205,1,34,,45 +108,24,416,1,43,,54 109,1,33,1,1,1 109,1,123,1,1,2 109,1,124,1,32, @@ -107433,6 +107961,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 109,25,474,4,0, 109,25,491,4,0, 109,25,851,4,0, +109,25,220,4,0, +109,25,482,4,0, +109,25,174,4,0, 110,1,33,1,1,1 110,1,123,1,1,2 110,1,124,1,1,3 @@ -108406,6 +108937,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 110,25,474,4,0, 110,25,491,4,0, 110,25,851,4,0, +110,25,220,4,0, +110,25,482,4,0, +110,25,174,4,0, 111,1,30,1,1, 111,1,23,1,30, 111,1,39,1,35, @@ -109624,6 +110158,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 111,23,444,4,0, 111,23,446,4,0, 111,23,523,4,0, +111,24,33,1,1,,10 +111,24,523,1,6,,15 +111,24,249,1,11,,20 +111,24,446,1,18,,28 +111,24,157,1,25,,35 +111,24,667,1,34,,45 +111,24,38,1,43,,54 +111,24,416,1,52,,64 111,25,33,1,1,1 111,25,39,1,1,2 111,25,479,1,5, @@ -111023,6 +111565,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 112,23,444,4,0, 112,23,446,4,0, 112,23,523,4,0, +112,24,33,1,1,,10 +112,24,523,1,6,,15 +112,24,249,1,11,,20 +112,24,446,1,18,,28 +112,24,157,1,25,,35 +112,24,667,1,34,,45 +112,24,38,1,43,,54 +112,24,416,1,52,,64 112,25,359,1,0, 112,25,33,1,1,1 112,25,39,1,1,2 @@ -112632,6 +113182,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 113,23,523,4,0, 113,23,526,4,0, 113,23,605,4,0, +113,24,33,1,1,,10 +113,24,584,1,6,,15 +113,24,608,1,11,,20 +113,24,577,1,18,,28 +113,24,347,1,25,,35 +113,24,135,1,34,,45 +113,24,38,1,43,,54 113,25,204,1,1,1 113,25,383,1,1,2 113,25,343,1,1,3 @@ -112652,6 +113209,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 113,25,135,1,44, 113,25,387,1,48, 113,25,361,1,52, +113,25,69,2,0, +113,25,215,2,0, +113,25,217,2,0, +113,25,356,2,0, 113,25,7,4,0, 113,25,8,4,0, 113,25,9,4,0, @@ -112711,10 +113272,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 113,25,885,4,0, 113,25,886,4,0, 113,25,356,4,0, -113,25,69,2,0, -113,25,215,2,0, -113,25,217,2,0, -113,25,356,2,0, 113,25,38,4,0, 113,25,283,4,0, 114,1,20,1,1,2 @@ -113744,6 +114301,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 114,23,412,4,0, 114,23,416,4,0, 114,23,447,4,0, +114,24,71,1,1,,10 +114,24,78,1,6,,15 +114,24,77,1,11,,20 +114,24,491,1,15,,24 +114,24,458,1,18,,28 +114,24,412,1,25,,35 +114,24,246,1,34,,45 +114,24,79,1,43,,54 115,1,4,1,1,1 115,1,99,1,1,2 115,1,44,1,26, @@ -121889,6 +122454,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 122,23,447,4,0, 122,23,451,4,0, 122,23,605,4,0, +122,24,93,1,1,,10 +122,24,95,1,6,,15 +122,24,334,1,11,,20 +122,24,428,1,18,,28 +122,24,102,1,25,, +122,24,94,1,34,,45 +122,24,347,1,43,,54 +122,24,605,1,46,,58 123,1,98,1,1, 123,1,43,1,17, 123,1,116,1,20, @@ -122887,6 +123460,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 123,23,405,4,0, 123,23,416,4,0, 123,23,432,4,0, +123,24,98,1,1,,10 +123,24,318,1,6,,15 +123,24,332,1,11,,20 +123,24,458,1,14,,24 +123,24,403,1,18,,28 +123,24,14,1,25,,35 +123,24,404,1,34,,45 +123,24,370,1,43,,54 123,25,43,1,1,1 123,25,98,1,1,2 123,25,210,1,4, @@ -122944,6 +123525,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 123,25,410,4,0, 123,25,679,4,0, 123,25,814,4,0, +123,25,806,4,0, 124,1,1,1,1,1 124,1,142,1,1,2 124,1,122,1,18, @@ -125096,6 +125678,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 125,23,451,4,0, 125,23,490,4,0, 125,23,521,4,0, +125,24,84,1,1,,10 +125,24,98,1,6,,15 +125,24,209,1,11,,20 +125,24,86,1,18,,28 +125,24,9,1,25,,35 +125,24,85,1,34,,45 +125,24,87,1,43,,54 125,25,43,1,1,1 125,25,84,1,1,2 125,25,98,1,1,3 @@ -126075,6 +126664,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 126,23,416,4,0, 126,23,431,4,0, 126,23,490,4,0, +126,24,52,1,1,,10 +126,24,33,1,6,,15 +126,24,172,1,11,,20 +126,24,139,1,18,,28 +126,24,7,1,25,,35 +126,24,53,1,34,,45 +126,24,126,1,43,,54 126,25,43,1,1,1 126,25,52,1,1,2 126,25,108,1,1,3 @@ -128242,6 +128838,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 128,25,885,4,0, 128,25,667,4,0, 128,25,808,4,0, +128,25,38,4,0, +128,25,283,4,0, +128,25,675,4,0, +128,25,174,4,0, 129,1,150,1,1, 129,1,33,1,15, 129,2,150,1,1, @@ -128309,6 +128909,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 129,23,150,1,1, 129,23,33,1,15, 129,23,175,1,25, +129,24,150,1,1,, 129,25,150,1,1, 129,25,33,1,15, 129,25,175,1,25, @@ -129373,6 +129974,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 130,23,444,4,0, 130,23,503,4,0, 130,23,523,4,0, +130,24,352,1,0,,18 +130,24,150,1,1,, +130,24,239,1,5,,14 +130,24,44,1,9,,18 +130,24,116,1,15,,25 +130,24,242,1,21,,31 +130,24,401,1,29,,40 +130,24,542,1,37,,48 +130,24,56,1,47,,59 +130,24,63,1,57,,71 130,25,44,1,0, 130,25,33,1,1,1 130,25,43,1,1,2 @@ -129440,6 +130051,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 130,25,503,4,0, 130,25,808,4,0, 130,25,799,4,0, +130,25,38,4,0, +130,25,283,4,0, +130,25,915,4,0, +130,25,250,4,0, +130,25,330,4,0, +130,25,913,4,0, 131,1,45,1,1,2 131,1,55,1,1,1 131,1,47,1,16, @@ -131547,6 +132164,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 133,23,247,4,0, 133,23,263,4,0, 133,23,526,4,0, +133,24,33,1,1,,10 +133,24,98,1,6,,15 +133,24,129,1,11,,20 +133,24,608,1,18,,28 +133,24,102,1,25,, +133,24,347,1,34,,45 +133,24,38,1,43,,54 133,25,33,1,1,1 133,25,39,1,1,2 133,25,45,1,1,3 @@ -131596,6 +132220,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 133,25,885,4,0, 133,25,46,4,0, 133,25,311,4,0, +133,25,38,4,0, +133,25,174,4,0, +133,25,914,4,0, 134,1,28,1,1,2 134,1,33,1,1,1 134,1,55,1,1,4 @@ -132552,6 +133179,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 134,23,416,4,0, 134,23,503,4,0, 134,23,526,4,0, +134,24,145,1,0,,15 +134,24,33,1,1,,10 +134,24,98,1,6,,15 +134,24,129,1,11,,20 +134,24,608,1,18,,28 +134,24,102,1,25,, +134,24,401,1,25,,35 +134,24,347,1,34,,45 +134,24,38,1,43,,54 134,25,55,1,0, 134,25,33,1,1,1 134,25,36,1,1,2 @@ -132615,6 +133251,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 134,25,503,4,0, 134,25,311,4,0, 134,25,812,4,0, +134,25,38,4,0, +134,25,250,4,0, +134,25,330,4,0, +134,25,174,4,0, +134,25,914,4,0, 135,1,28,1,1,2 135,1,33,1,1,1 135,1,84,1,1,4 @@ -133545,6 +134186,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 135,23,451,4,0, 135,23,521,4,0, 135,23,526,4,0, +135,24,84,1,0,,15 +135,24,33,1,1,,10 +135,24,98,1,6,,15 +135,24,129,1,11,,20 +135,24,608,1,18,,28 +135,24,102,1,25,, +135,24,85,1,25,,35 +135,24,347,1,34,,45 +135,24,38,1,43,,54 135,25,84,1,0, 135,25,226,1,1,1 135,25,129,1,1,2 @@ -133609,6 +134259,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 135,25,46,4,0, 135,25,268,4,0, 135,25,311,4,0, +135,25,38,4,0, +135,25,527,4,0, +135,25,319,4,0, +135,25,174,4,0, +135,25,914,4,0, 136,1,28,1,1,2 136,1,33,1,1,1 136,1,52,1,1,4 @@ -134496,6 +135151,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 136,23,315,4,0, 136,23,416,4,0, 136,23,526,4,0, +136,24,52,1,0,,15 +136,24,33,1,1,,10 +136,24,98,1,6,,15 +136,24,129,1,11,,20 +136,24,608,1,18,,28 +136,24,102,1,25,, +136,24,53,1,25,,35 +136,24,347,1,34,,45 +136,24,38,1,43,,54 136,25,52,1,0, 136,25,129,1,1,1 136,25,33,1,1,2 @@ -134556,6 +135220,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 136,25,46,4,0, 136,25,311,4,0, 136,25,807,4,0, +136,25,38,4,0, +136,25,283,4,0, +136,25,915,4,0, +136,25,815,4,0, +136,25,174,4,0, +136,25,914,4,0, 137,1,33,1,1,1 137,1,159,1,1,2 137,1,160,1,1,3 @@ -135522,6 +136192,22 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 137,23,416,4,0, 137,23,433,4,0, 137,23,451,4,0, +137,24,33,1,1,,9 +137,24,33,1,1,,9 +137,24,84,1,5,,14 +137,24,84,1,5,,14 +137,24,86,1,9,,18 +137,24,86,1,9,,18 +137,24,209,1,15,,25 +137,24,209,1,15,,25 +137,24,161,1,21,,31 +137,24,161,1,21,,31 +137,24,85,1,29,,40 +137,24,85,1,29,,40 +137,24,105,1,37,,48 +137,24,105,1,37,,48 +137,24,63,1,47,,59 +137,24,63,1,47,,59 137,25,33,1,1,1 137,25,160,1,1,2 137,25,278,1,5, @@ -142160,6 +142846,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 143,23,431,4,0, 143,23,523,4,0, 143,23,526,4,0, +143,24,205,1,1,,9 +143,24,33,1,5,,14 +143,24,156,1,9,,18 +143,24,523,1,15,,25 +143,24,44,1,21,,31 +143,24,428,1,29,,40 +143,24,242,1,35,,45 +143,24,667,1,37,,48 +143,24,38,1,46,,58 +143,24,416,1,57,,71 143,25,33,1,1,1 143,25,387,1,1,2 143,25,256,1,1,3 @@ -142251,6 +142947,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 143,25,851,4,0, 143,25,885,4,0, 143,25,886,4,0, +143,25,38,4,0, +143,25,916,4,0, +143,25,174,4,0, +143,25,912,4,0, 144,1,58,1,1,2 144,1,64,1,1,1 144,1,59,1,51, @@ -143182,6 +143882,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 144,25,333,4,0, 144,25,311,4,0, 144,25,814,4,0, +144,25,38,4,0, +144,25,813,4,0, +144,25,297,4,0, 145,1,65,1,1,2 145,1,84,1,1,1 145,1,87,1,51, @@ -144136,6 +144839,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 145,25,268,4,0, 145,25,311,4,0, 145,25,814,4,0, +145,25,916,4,0, +145,25,319,4,0, 146,1,64,1,1,1 146,1,83,1,1,2 146,1,43,1,51, @@ -145063,6 +145768,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 146,25,311,4,0, 146,25,807,4,0, 146,25,814,4,0, +146,25,38,4,0, +146,25,915,4,0, +146,25,815,4,0, 147,1,35,1,1,1 147,1,43,1,1,2 147,1,86,1,10, @@ -146174,6 +146882,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 147,25,886,4,0, 147,25,114,4,0, 147,25,799,4,0, +147,25,784,4,0, +147,25,913,4,0, 148,1,35,1,1,1 148,1,43,1,1,2 148,1,86,1,1,3 @@ -147190,6 +147900,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 148,25,114,4,0, 148,25,311,4,0, 148,25,799,4,0, +148,25,784,4,0, +148,25,913,4,0, 149,1,35,1,1,1 149,1,43,1,1,2 149,1,86,1,1,3 @@ -148708,6 +149420,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 149,25,264,4,0, 149,25,311,4,0, 149,25,799,4,0, +149,25,784,4,0, +149,25,913,4,0, 150,1,50,1,1,2 150,1,93,1,1,1 150,1,94,1,1,4 @@ -150365,6 +151079,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 150,25,264,4,0, 150,25,311,4,0, 150,25,808,4,0, +150,25,244,4,0, +150,25,38,4,0, +150,25,248,4,0, +150,25,797,4,0, +150,25,174,4,0, +150,25,917,4,0, 151,1,1,1,1, 151,1,144,1,10, 151,1,5,1,20, @@ -152929,6 +153649,34 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 151,25,808,4,0, 151,25,799,4,0, 151,25,802,4,0, +151,25,220,4,0, +151,25,244,4,0, +151,25,38,4,0, +151,25,283,4,0, +151,25,572,4,0, +151,25,915,4,0, +151,25,250,4,0, +151,25,330,4,0, +151,25,916,4,0, +151,25,527,4,0, +151,25,813,4,0, +151,25,811,4,0, +151,25,482,4,0, +151,25,815,4,0, +151,25,297,4,0, +151,25,248,4,0, +151,25,797,4,0, +151,25,806,4,0, +151,25,800,4,0, +151,25,675,4,0, +151,25,784,4,0, +151,25,319,4,0, +151,25,174,4,0, +151,25,912,4,0, +151,25,913,4,0, +151,25,914,4,0, +151,25,917,4,0, +151,25,918,4,0, 152,3,33,1,1,1 152,3,45,1,1,2 152,3,75,1,8, @@ -156338,6 +157086,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 155,23,315,4,0, 155,23,332,4,0, 155,23,526,4,0, +155,24,98,1,1,,10 +155,24,52,1,6,,15 +155,24,205,1,11,,20 +155,24,172,1,18,,28 +155,24,129,1,25,,35 +155,24,53,1,34,,45 +155,24,315,1,43,,54 155,25,33,1,1,1 155,25,43,1,1,2 155,25,108,1,6, @@ -157110,6 +157865,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 156,23,315,4,0, 156,23,332,4,0, 156,23,526,4,0, +156,24,98,1,1,,10 +156,24,52,1,6,,15 +156,24,205,1,11,,20 +156,24,172,1,18,,28 +156,24,129,1,25,,35 +156,24,53,1,34,,45 +156,24,315,1,43,,54 156,25,33,1,1,1 156,25,43,1,1,2 156,25,108,1,1,3 @@ -157126,6 +157888,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 156,25,38,1,64, 156,25,315,1,68, 156,25,284,1,75, +156,25,24,2,0, +156,25,174,2,0, +156,25,179,2,0, +156,25,326,2,0, +156,25,336,2,0, +156,25,343,2,0, 156,25,34,4,0, 156,25,36,4,0, 156,25,53,4,0, @@ -157157,12 +157925,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 156,25,851,4,0, 156,25,46,4,0, 156,25,807,4,0, -156,25,24,2,0, -156,25,174,2,0, -156,25,179,2,0, -156,25,326,2,0, -156,25,336,2,0, -156,25,343,2,0, 156,25,38,4,0, 156,25,174,4,0, 156,25,283,4,0, @@ -158112,6 +158874,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 157,25,517,1,56, 157,25,205,1,61, 157,25,315,1,74, +157,25,24,2,0, +157,25,174,2,0, +157,25,179,2,0, +157,25,326,2,0, +157,25,336,2,0, +157,25,343,2,0, 157,25,7,4,0, 157,25,9,4,0, 157,25,34,4,0, @@ -158162,12 +158930,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 157,25,360,4,0, 157,25,264,4,0, 157,25,807,4,0, -157,25,24,2,0, -157,25,174,2,0, -157,25,179,2,0, -157,25,326,2,0, -157,25,336,2,0, -157,25,343,2,0, 157,25,38,4,0, 157,25,101,4,0, 157,25,109,4,0, @@ -162336,6 +163098,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 161,25,851,4,0, 161,25,885,4,0, 161,25,886,4,0, +161,25,38,4,0, +161,25,283,4,0, 162,3,10,1,1,1 162,3,98,1,1,3 162,3,111,1,1,2 @@ -163387,6 +164151,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 162,25,851,4,0, 162,25,885,4,0, 162,25,886,4,0, +162,25,38,4,0, +162,25,283,4,0, 163,3,33,1,1,1 163,3,45,1,1,2 163,3,193,1,6, @@ -164354,6 +165120,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 163,25,542,4,0, 163,25,814,4,0, 163,25,851,4,0, +163,25,244,4,0, +163,25,297,4,0, 164,3,33,1,1,1 164,3,45,1,1,2 164,3,64,1,1,4 @@ -165260,6 +166028,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 164,25,542,4,0, 164,25,814,4,0, 164,25,851,4,0, +164,25,244,4,0, +164,25,38,4,0, +164,25,297,4,0, +164,25,248,4,0, +164,25,174,4,0, +164,25,917,4,0, 165,3,33,1,1, 165,3,48,1,8, 165,3,4,1,15, @@ -167786,6 +168560,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 167,25,851,4,0, 167,25,884,4,0, 167,25,885,4,0, +167,25,527,4,0, +167,25,482,4,0, +167,25,806,4,0, 168,3,40,1,1,1 168,3,81,1,1,2 168,3,132,1,1,4 @@ -168594,6 +169371,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 168,25,851,4,0, 168,25,884,4,0, 168,25,885,4,0, +168,25,527,4,0, +168,25,482,4,0, +168,25,806,4,0, +168,25,675,4,0, 169,3,48,1,1,3 169,3,103,1,1,1 169,3,141,1,1,2 @@ -169469,6 +170250,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 169,23,416,4,0, 169,23,417,4,0, 169,23,432,4,0, +169,24,16,1,1,,10 +169,24,95,1,6,,15 +169,24,44,1,11,,20 +169,24,314,1,18,,28 +169,24,440,1,25,,35 +169,24,403,1,34,,45 +169,24,141,1,43,,54 170,3,86,1,1,2 170,3,145,1,1,1 170,3,48,1,5, @@ -172100,6 +172888,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 172,23,447,4,0, 172,23,451,4,0, 172,23,521,4,0, +172,24,84,1,1,,9 +172,24,98,1,5,,14 +172,24,86,1,9,,18 +172,24,129,1,15,,25 +172,24,209,1,21,,31 +172,24,85,1,29,,40 +172,24,231,1,37,,48 +172,24,87,1,47,,59 172,25,39,1,1,1 172,25,84,1,1,2 172,25,589,1,4, @@ -172147,6 +172943,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 172,25,851,4,0, 172,25,885,4,0, 172,25,268,4,0, +172,25,527,4,0, 173,3,1,1,1,1 173,3,204,1,1,2 173,3,227,1,4, @@ -173134,6 +173931,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 173,23,374,4,0, 173,23,447,4,0, 173,23,526,4,0, +173,24,33,1,1,,9 +173,24,584,1,5,,14 +173,24,608,1,9,,18 +173,24,577,1,15,,25 +173,24,347,1,21,,31 +173,24,94,1,29,,40 +173,24,585,1,37,,48 +173,24,38,1,47,,59 173,25,1,1,1,1 173,25,150,1,1,2 173,25,383,1,1,3 @@ -173192,6 +173997,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 173,25,605,4,0, 173,25,851,4,0, 173,25,886,4,0, +173,25,283,4,0, +173,25,914,4,0, 174,3,47,1,1,1 174,3,204,1,1,2 174,3,111,1,4, @@ -174157,6 +174964,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 174,25,851,4,0, 174,25,885,4,0, 174,25,356,4,0, +174,25,220,4,0, +174,25,244,4,0, +174,25,38,4,0, +174,25,283,4,0, +174,25,914,4,0, 175,3,45,1,1,1 175,3,204,1,1,2 175,3,118,1,7, @@ -175204,6 +176016,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 175,23,447,4,0, 175,23,526,4,0, 175,23,605,4,0, +175,24,33,1,1,,10 +175,24,584,1,6,,15 +175,24,577,1,11,,20 +175,24,347,1,18,,28 +175,24,608,1,25,,35 +175,24,326,1,34,,45 +175,24,585,1,43,,54 176,3,45,1,1,1 176,3,204,1,1,2 176,3,118,1,7, @@ -176294,6 +177113,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 176,23,447,4,0, 176,23,526,4,0, 176,23,605,4,0, +176,24,314,1,0,,20 +176,24,33,1,1,,10 +176,24,584,1,6,,15 +176,24,577,1,11,,20 +176,24,347,1,18,,28 +176,24,608,1,25,,35 +176,24,403,1,25,,35 +176,24,326,1,34,,45 +176,24,585,1,43,,54 177,3,43,1,1,2 177,3,64,1,1,1 177,3,101,1,10, @@ -179069,6 +179897,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 179,25,851,4,0, 179,25,885,4,0, 179,25,268,4,0, +179,25,38,4,0, +179,25,283,4,0, +179,25,527,4,0, 180,3,33,1,1,1 180,3,45,1,1,2 180,3,84,1,1,3 @@ -179855,6 +180686,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 180,25,46,4,0, 180,25,268,4,0, 180,25,264,4,0, +180,25,38,4,0, +180,25,283,4,0, +180,25,527,4,0, 181,3,33,1,1,1 181,3,45,1,1,2 181,3,84,1,1,3 @@ -180778,6 +181612,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 181,25,46,4,0, 181,25,268,4,0, 181,25,264,4,0, +181,25,38,4,0, +181,25,283,4,0, +181,25,916,4,0, +181,25,527,4,0, +181,25,800,4,0, +181,25,784,4,0, +181,25,913,4,0, 182,3,71,1,1,1 182,3,78,1,1,3 182,3,80,1,1,4 @@ -182568,6 +183409,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 183,25,282,4,0, 183,25,264,4,0, 183,25,802,4,0, +183,25,38,4,0, +183,25,250,4,0, +183,25,330,4,0, +183,25,914,4,0, 184,3,33,1,1,1 184,3,39,1,1,3 184,3,55,1,1,4 @@ -183557,6 +184402,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 184,25,282,4,0, 184,25,264,4,0, 184,25,802,4,0, +184,25,38,4,0, +184,25,250,4,0, +184,25,330,4,0, +184,25,914,4,0, 185,3,88,1,1,1 185,3,102,1,1,2 185,3,175,1,10, @@ -184566,6 +185415,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 185,23,444,4,0, 185,23,446,4,0, 185,23,523,4,0, +185,24,205,1,1,,9 +185,24,33,1,5,,14 +185,24,446,1,9,,18 +185,24,157,1,15,,25 +185,24,334,1,21,,31 +185,24,102,1,29,, +185,24,38,1,37,,48 +185,24,457,1,47,,59 +185,24,452,1,57,,71 185,25,21,1,0, 185,25,452,1,1,1 185,25,444,1,1,2 @@ -184633,6 +185491,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 185,25,479,4,0, 185,25,667,4,0, 185,25,264,4,0, +185,25,244,4,0, +185,25,38,4,0, +185,25,283,4,0, +185,25,800,4,0, +185,25,174,4,0, 186,3,3,1,1,3 186,3,55,1,1,1 186,3,95,1,1,2 @@ -185496,6 +186359,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 186,25,710,4,0, 186,25,851,4,0, 186,25,886,4,0, +186,25,244,4,0, +186,25,38,4,0, +186,25,283,4,0, +186,25,250,4,0, +186,25,330,4,0, 187,3,150,1,1,1 187,3,235,1,1,2 187,3,39,1,5, @@ -186374,6 +187242,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 187,25,851,4,0, 187,25,885,4,0, 187,25,679,4,0, +187,25,38,4,0, 188,3,33,1,1,4 188,3,39,1,1,3 188,3,150,1,1,1 @@ -187153,6 +188022,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 188,25,851,4,0, 188,25,885,4,0, 188,25,679,4,0, +188,25,38,4,0, +188,25,283,4,0, 189,3,33,1,1,4 189,3,39,1,1,3 189,3,150,1,1,1 @@ -187962,6 +188833,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 189,25,851,4,0, 189,25,885,4,0, 189,25,679,4,0, +189,25,38,4,0, +189,25,283,4,0, 190,3,10,1,1,1 190,3,39,1,1,2 190,3,28,1,6, @@ -189070,6 +189943,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 190,23,447,4,0, 190,23,490,4,0, 190,23,526,4,0, +190,24,98,1,1,,10 +190,24,417,1,6,,15 +190,24,129,1,11,,20 +190,24,426,1,18,,28 +190,24,458,1,25,,35 +190,24,231,1,34,,45 +190,24,38,1,43,,54 190,25,10,1,1,1 190,25,39,1,1,2 190,25,28,1,4, @@ -189141,6 +190021,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 190,25,851,4,0, 190,25,885,4,0, 190,25,886,4,0, +190,25,38,4,0, +190,25,283,4,0, +190,25,675,4,0, +190,25,918,4,0, 191,3,71,1,1, 191,3,74,1,4, 191,3,72,1,10, @@ -189952,6 +190836,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 191,25,851,4,0, 191,25,885,4,0, 191,25,311,4,0, +191,25,38,4,0, +191,25,283,4,0, +191,25,174,4,0, 192,3,1,1,1,2 192,3,71,1,1,1 192,3,74,1,4, @@ -190698,6 +191585,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 192,25,885,4,0, 192,25,311,4,0, 192,25,803,4,0, +192,25,38,4,0, +192,25,283,4,0, +192,25,572,4,0, +192,25,174,4,0, 193,3,33,1,1,1 193,3,193,1,1,2 193,3,98,1,7, @@ -191485,6 +192376,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 193,23,369,4,0, 193,23,405,4,0, 193,23,432,4,0, +193,24,98,1,1,,10 +193,24,16,1,6,,15 +193,24,318,1,11,,20 +193,24,95,1,18,,28 +193,24,403,1,25,,35 +193,24,246,1,34,,45 +193,24,405,1,43,,54 193,25,33,1,1, 193,25,98,1,6, 193,25,104,1,11, @@ -191532,6 +192430,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 193,25,679,4,0, 193,25,851,4,0, 193,25,884,4,0, +193,25,244,4,0, +193,25,38,4,0, +193,25,806,4,0, +193,25,917,4,0, 194,3,39,1,1,2 194,3,55,1,1,1 194,3,21,1,11, @@ -192573,6 +193475,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 194,25,886,4,0, 194,25,114,4,0, 194,25,92,4,0, +194,25,38,4,0, +194,25,250,4,0, +194,25,330,4,0, +194,25,482,4,0, +194,25,174,4,0, 195,3,39,1,1,2 195,3,55,1,1,1 195,3,21,1,11, @@ -193597,6 +194504,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 195,25,92,4,0, 195,25,667,4,0, 195,25,264,4,0, +195,25,38,4,0, +195,25,250,4,0, +195,25,330,4,0, +195,25,482,4,0, +195,25,174,4,0, 196,3,33,1,1,1 196,3,39,1,1,2 196,3,28,1,8, @@ -194482,6 +195394,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 196,23,447,4,0, 196,23,526,4,0, 196,23,605,4,0, +196,24,93,1,0,,15 +196,24,33,1,1,,10 +196,24,98,1,6,,15 +196,24,129,1,11,,20 +196,24,608,1,18,,28 +196,24,102,1,25,, +196,24,94,1,25,,35 +196,24,347,1,34,,45 +196,24,38,1,43,,54 196,25,93,1,0, 196,25,33,1,1,1 196,25,36,1,1,2 @@ -194552,6 +195473,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 196,25,46,4,0, 196,25,356,4,0, 196,25,311,4,0, +196,25,244,4,0, +196,25,38,4,0, +196,25,248,4,0, +196,25,797,4,0, +196,25,174,4,0, +196,25,914,4,0, +196,25,917,4,0, 197,3,33,1,1,1 197,3,39,1,1,2 197,3,28,1,8, @@ -195405,6 +196333,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 197,23,416,4,0, 197,23,526,4,0, 197,23,555,4,0, +197,24,555,1,0,,15 +197,24,33,1,1,,10 +197,24,98,1,6,,15 +197,24,129,1,11,,20 +197,24,608,1,18,,28 +197,24,102,1,25,, +197,24,399,1,25,,35 +197,24,347,1,34,,45 +197,24,38,1,43,,54 197,25,555,1,0, 197,25,204,1,1,1 197,25,33,1,1,2 @@ -195471,6 +196408,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 197,25,180,4,0, 197,25,311,4,0, 197,25,808,4,0, +197,25,244,4,0, +197,25,38,4,0, +197,25,675,4,0, +197,25,174,4,0, +197,25,914,4,0, 198,3,64,1,1, 198,3,228,1,11, 198,3,114,1,16, @@ -196404,6 +197346,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 198,23,399,4,0, 198,23,432,4,0, 198,23,555,4,0, +198,24,16,1,1,,10 +198,24,555,1,6,,15 +198,24,355,1,11,,20 +198,24,332,1,18,,28 +198,24,400,1,25,,35 +198,24,403,1,30,,41 +198,24,417,1,34,,45 +198,24,399,1,43,,54 198,25,64,1,1,1 198,25,310,1,1,2 198,25,16,1,5, @@ -196469,6 +197419,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 198,25,253,4,0, 198,25,814,4,0, 198,25,808,4,0, +198,25,38,4,0, +198,25,297,4,0, +198,25,917,4,0, 199,3,33,1,1,2 199,3,174,1,1,1 199,3,45,1,6, @@ -197765,6 +198718,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 199,25,503,4,0, 199,25,264,4,0, 199,25,311,4,0, +199,25,244,4,0, +199,25,250,4,0, +199,25,330,4,0, +199,25,248,4,0, +199,25,797,4,0, +199,25,174,4,0, +199,25,917,4,0, 200,3,45,1,1,1 200,3,149,1,1,2 200,3,180,1,6, @@ -198739,6 +199699,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 200,23,433,4,0, 200,23,451,4,0, 200,23,605,4,0, +200,24,425,1,1,,10 +200,24,93,1,6,,15 +200,24,95,1,11,,20 +200,24,506,1,18,,28 +200,24,326,1,25,,35 +200,24,408,1,34,,45 +200,24,247,1,43,,54 200,25,45,1,1,1 200,25,93,1,1,2 200,25,310,1,10, @@ -198812,6 +199779,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 200,25,180,4,0, 200,25,807,4,0, 200,25,809,4,0, +200,25,220,4,0, +200,25,244,4,0, +200,25,248,4,0, +200,25,174,4,0, +200,25,917,4,0, 201,3,237,1,1, 201,4,237,1,1, 201,5,237,1,1, @@ -198833,6 +199805,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 201,18,237,1,1, 201,18,237,4,0, 201,23,237,1,1, +201,24,237,1,1,,10 202,3,68,1,1,1 202,3,194,1,1,4 202,3,219,1,1,3 @@ -200072,6 +201045,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 203,25,356,4,0, 203,25,667,4,0, 203,25,253,4,0, +203,25,244,4,0, +203,25,38,4,0, +203,25,283,4,0, +203,25,248,4,0, +203,25,797,4,0, +203,25,917,4,0, 204,3,33,1,1,1 204,3,182,1,1,2 204,3,120,1,8, @@ -200968,6 +201947,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 204,25,360,4,0, 204,25,450,4,0, 204,25,679,4,0, +204,25,220,4,0, +204,25,38,4,0, +204,25,174,4,0, 205,3,33,1,1,1 205,3,120,1,1,3 205,3,182,1,1,2 @@ -201915,6 +202897,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 205,25,360,4,0, 205,25,450,4,0, 205,25,679,4,0, +205,25,220,4,0, +205,25,38,4,0, +205,25,319,4,0, +205,25,174,4,0, +205,25,912,4,0, 206,3,99,1,1, 206,3,111,1,5, 206,3,137,1,13, @@ -203174,6 +204161,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 206,25,679,4,0, 206,25,253,4,0, 206,25,799,4,0, +206,25,220,4,0, +206,25,244,4,0, +206,25,38,4,0, +206,25,283,4,0, +206,25,806,4,0, +206,25,784,4,0, +206,25,174,4,0, 207,3,40,1,1, 207,3,28,1,6, 207,3,106,1,13, @@ -204206,6 +205200,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 207,23,444,4,0, 207,23,446,4,0, 207,23,523,4,0, +207,24,40,1,1,,10 +207,24,98,1,6,,15 +207,24,332,1,11,,20 +207,24,426,1,18,,28 +207,24,163,1,25,,35 +207,24,398,1,34,,45 +207,24,404,1,43,,54 207,25,40,1,1, 207,25,28,1,4, 207,25,106,1,7, @@ -204283,6 +205284,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 207,25,799,4,0, 207,25,814,4,0, 207,25,851,4,0, +207,25,38,4,0, +207,25,806,4,0, +207,25,675,4,0, +207,25,784,4,0, 208,3,33,1,1,1 208,3,103,1,1,2 208,3,20,1,10, @@ -205301,6 +206306,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 208,23,444,4,0, 208,23,446,4,0, 208,23,523,4,0, +208,24,205,1,1,,10 +208,24,33,1,6,,15 +208,24,523,1,11,,20 +208,24,157,1,18,,28 +208,24,446,1,25,,35 +208,24,667,1,34,,45 +208,24,231,1,43,,54 209,3,33,1,1,1 209,3,184,1,1,2 209,3,39,1,4, @@ -208745,6 +209757,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 211,25,360,4,0, 211,25,812,4,0, 211,25,799,4,0, +211,25,220,4,0, +211,25,38,4,0, +211,25,250,4,0, +211,25,482,4,0, +211,25,675,4,0, +211,25,174,4,0, 212,3,43,1,1,2 212,3,98,1,1,1 212,3,116,1,6, @@ -209637,6 +210655,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 212,23,416,4,0, 212,23,430,4,0, 212,23,432,4,0, +212,24,98,1,1,,10 +212,24,318,1,6,,15 +212,24,332,1,11,,20 +212,24,458,1,14,,24 +212,24,403,1,18,,28 +212,24,14,1,25,,35 +212,24,418,1,29,,40 +212,24,442,1,34,,45 +212,24,404,1,34,,45 +212,24,370,1,43,,54 212,25,418,1,0, 212,25,206,1,1,1 212,25,17,1,1,2 @@ -209701,6 +210729,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 212,25,410,4,0, 212,25,679,4,0, 212,25,814,4,0, +212,25,38,4,0, +212,25,806,4,0, +212,25,174,4,0, +212,25,912,4,0, 213,3,110,1,1,2 213,3,132,1,1,1 213,3,35,1,9, @@ -211580,6 +212612,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 214,23,444,4,0, 214,23,523,4,0, 214,23,526,4,0, +214,24,33,1,1,,9 +214,24,249,1,5,,14 +214,24,42,1,9,,18 +214,24,332,1,15,,25 +214,24,163,1,21,,31 +214,24,14,1,29,,40 +214,24,38,1,37,,48 +214,24,370,1,47,,59 +214,24,224,1,57,,71 214,25,33,1,1,1 214,25,43,1,1,2 214,25,292,1,1,3 @@ -211649,6 +212690,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 214,25,679,4,0, 214,25,667,4,0, 214,25,264,4,0, +214,25,38,4,0, +214,25,283,4,0, +214,25,811,4,0, +214,25,806,4,0, +214,25,675,4,0, +214,25,174,4,0, +214,25,918,4,0, 215,3,10,1,1,1 215,3,43,1,1,2 215,3,98,1,9, @@ -212870,6 +213918,30 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 215,23,421,4,0, 215,23,490,4,0, 215,23,555,4,0, +215,24,98,1,1,,10 +215,24,420,1,6,,15 +215,24,129,1,11,,20 +215,24,163,1,18,,28 +215,24,398,1,25,,35 +215,24,14,1,34,,45 +215,24,59,1,43,,54 +215,24,206,3,0,, +215,24,249,3,0,, +215,24,332,3,0,, +215,24,129,3,0,, +215,24,347,3,0,, +215,24,156,3,0,, +215,24,8,3,0,, +215,24,398,3,0,, +215,24,427,3,0,, +215,24,404,3,0,, +215,24,421,3,0,, +215,24,231,3,0,, +215,24,196,3,0,, +215,24,247,3,0,, +215,24,555,3,0,, +215,24,58,3,0,, +215,24,399,3,0,, 215,25,10,1,1,1 215,25,43,1,1,2 215,25,269,1,6, @@ -212941,6 +214013,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 215,25,333,4,0, 215,25,264,4,0, 215,25,808,4,0, +215,25,813,4,0, +215,25,675,4,0, +215,25,918,4,0, 216,3,10,1,1,1 216,3,43,1,1,2 216,3,122,1,8, @@ -213974,6 +215049,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 216,23,421,4,0, 216,23,523,4,0, 216,23,526,4,0, +216,24,33,1,1,,10 +216,24,608,1,6,,15 +216,24,523,1,11,,20 +216,24,163,1,18,,28 +216,24,583,1,25,,35 +216,24,667,1,34,,45 +216,24,38,1,43,,54 216,25,10,1,1,1 216,25,122,1,1,2 216,25,343,1,1,3 @@ -214046,6 +215128,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 216,25,479,4,0, 216,25,253,4,0, 216,25,264,4,0, +216,25,38,4,0, 217,3,10,1,1,1 217,3,43,1,1,2 217,3,122,1,1,3 @@ -215003,6 +216086,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 217,23,444,4,0, 217,23,523,4,0, 217,23,526,4,0, +217,24,33,1,1,,10 +217,24,608,1,6,,15 +217,24,523,1,11,,20 +217,24,163,1,18,,28 +217,24,583,1,25,,35 +217,24,667,1,34,,45 +217,24,38,1,43,,54 217,25,10,1,1,1 217,25,43,1,1,2 217,25,122,1,1,3 @@ -215071,6 +216161,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 217,25,667,4,0, 217,25,253,4,0, 217,25,264,4,0, +217,25,38,4,0, +217,25,675,4,0, 218,3,123,1,1, 218,3,52,1,8, 218,3,88,1,15, @@ -215885,6 +216977,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 218,25,535,4,0, 218,25,667,4,0, 218,25,851,4,0, +218,25,220,4,0, +218,25,915,4,0, +218,25,174,4,0, 219,3,52,1,1,2 219,3,88,1,1,3 219,3,123,1,1,1 @@ -216791,6 +217886,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 219,25,707,4,0, 219,25,807,4,0, 219,25,851,4,0, +219,25,220,4,0, +219,25,915,4,0, +219,25,815,4,0, +219,25,174,4,0, 220,3,33,1,1, 220,3,181,1,10, 220,3,203,1,19, @@ -217694,6 +218793,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 220,23,419,4,0, 220,23,446,4,0, 220,23,523,4,0, +220,24,33,1,1,,10 +220,24,420,1,6,,15 +220,24,523,1,11,,20 +220,24,556,1,18,,28 +220,24,667,1,25,,35 +220,24,246,1,34,,45 +220,24,59,1,43,,54 +220,24,38,1,52,,64 220,25,33,1,1,1 220,25,189,1,1,2 220,25,181,1,5, @@ -217752,6 +218859,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 220,25,851,4,0, 220,25,883,4,0, 220,25,885,4,0, +220,25,38,4,0, +220,25,283,4,0, +220,25,174,4,0, 221,3,30,1,1,1 221,3,181,1,1,2 221,3,203,1,1,3 @@ -218611,6 +219721,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 221,23,444,4,0, 221,23,446,4,0, 221,23,523,4,0, +221,24,33,1,1,,10 +221,24,420,1,6,,15 +221,24,523,1,11,,20 +221,24,556,1,18,,28 +221,24,667,1,25,,35 +221,24,246,1,34,,45 +221,24,59,1,43,,54 +221,24,38,1,52,,64 221,25,423,1,0, 221,25,33,1,1,1 221,25,175,1,1,2 @@ -218674,6 +219792,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 221,25,851,4,0, 221,25,883,4,0, 221,25,885,4,0, +221,25,38,4,0, +221,25,283,4,0, +221,25,675,4,0, +221,25,174,4,0, 222,3,33,1,1, 222,3,106,1,7, 222,3,145,1,13, @@ -220684,6 +221806,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 223,23,362,4,0, 223,23,451,4,0, 223,23,503,4,0, +223,24,145,1,1,,10 +223,24,491,1,6,,15 +223,24,451,1,11,,20 +223,24,352,1,18,,28 +223,24,58,1,25,,35 +223,24,56,1,34,,45 +223,24,63,1,43,,54 224,3,55,1,1, 224,3,132,1,11, 224,3,60,1,22,1 @@ -221587,6 +222716,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 224,23,430,4,0, 224,23,451,4,0, 224,23,503,4,0, +224,24,190,1,0,,28 +224,24,145,1,1,,10 +224,24,491,1,6,,15 +224,24,451,1,11,,20 +224,24,352,1,18,,28 +224,24,58,1,25,,35 +224,24,56,1,34,,45 +224,24,63,1,43,,54 225,3,217,1,1, 225,3,62,2,0, 225,3,98,2,0, @@ -222355,6 +223492,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 225,25,264,4,0, 225,25,311,4,0, 225,25,814,4,0, +225,25,283,4,0, +225,25,813,4,0, +225,25,297,4,0, 226,3,33,1,1,1 226,3,145,1,1,2 226,3,48,1,10, @@ -223329,6 +224469,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 226,23,432,4,0, 226,23,503,4,0, 226,23,523,4,0, +226,24,33,1,1,,9 +226,24,145,1,5,,14 +226,24,332,1,9,,18 +226,24,352,1,15,,25 +226,24,403,1,21,,31 +226,24,355,1,29,,40 +226,24,56,1,37,,48 +226,24,38,1,47,,59 227,3,43,1,1,1 227,3,64,1,1,2 227,3,28,1,13, @@ -225380,6 +226528,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 228,25,162,4,0, 228,25,807,4,0, 228,25,808,4,0, +228,25,220,4,0, +228,25,38,4,0, +228,25,915,4,0, 229,3,43,1,1,1 229,3,52,1,1,2 229,3,46,1,7, @@ -226334,6 +227485,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 229,25,162,4,0, 229,25,807,4,0, 229,25,808,4,0, +229,25,220,4,0, +229,25,38,4,0, +229,25,283,4,0, +229,25,915,4,0, +229,25,675,4,0, 230,3,43,1,1,3 230,3,55,1,1,4 230,3,108,1,1,2 @@ -227996,6 +229152,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 231,25,479,4,0, 231,25,282,4,0, 231,25,667,4,0, +231,25,38,4,0, +231,25,283,4,0, +231,25,174,4,0, 232,3,30,1,1,1 232,3,45,1,1,2 232,3,111,1,9, @@ -228828,6 +229987,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 232,25,360,4,0, 232,25,282,4,0, 232,25,667,4,0, +232,25,38,4,0, +232,25,283,4,0, +232,25,675,4,0, +232,25,174,4,0, 233,3,33,1,1,2 233,3,160,1,1,3 233,3,176,1,1,1 @@ -230784,6 +231947,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 234,23,451,4,0, 234,23,523,4,0, 234,23,526,4,0, +234,24,33,1,1,,9 +234,24,93,1,5,,14 +234,24,95,1,9,,18 +234,24,347,1,15,,25 +234,24,828,1,21,,31 +234,24,326,1,29,,40 +234,24,428,1,37,,48 +234,24,38,1,47,,59 234,25,33,1,1, 234,25,43,1,3, 234,25,310,1,7, @@ -230854,6 +232025,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 234,25,356,4,0, 234,25,679,4,0, 234,25,253,4,0, +234,25,244,4,0, +234,25,38,4,0, +234,25,248,4,0, +234,25,675,4,0, +234,25,174,4,0, 235,3,166,1,1, 235,3,166,1,11, 235,3,166,1,21, @@ -234488,6 +235664,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 239,23,374,4,0, 239,23,451,4,0, 239,23,521,4,0, +239,24,84,1,1,,10 +239,24,98,1,6,,15 +239,24,209,1,11,,20 +239,24,86,1,18,,28 +239,24,9,1,25,,35 +239,24,85,1,34,,45 +239,24,87,1,43,,54 239,25,43,1,1,1 239,25,98,1,1,2 239,25,84,1,4, @@ -235419,6 +236602,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 240,23,280,4,0, 240,23,315,4,0, 240,23,374,4,0, +240,24,52,1,1,,10 +240,24,33,1,6,,15 +240,24,172,1,11,,20 +240,24,139,1,18,,28 +240,24,7,1,25,,35 +240,24,53,1,34,,45 +240,24,126,1,43,,54 240,25,43,1,1,1 240,25,123,1,1,2 240,25,52,1,4, @@ -237919,6 +239109,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 242,23,523,4,0, 242,23,526,4,0, 242,23,605,4,0, +242,24,33,1,1,,10 +242,24,584,1,6,,15 +242,24,608,1,11,,20 +242,24,577,1,18,,28 +242,24,347,1,25,,35 +242,24,135,1,34,,45 +242,24,38,1,43,,54 242,25,204,1,1,1 242,25,383,1,1,2 242,25,343,1,1,3 @@ -237939,6 +239136,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 242,25,135,1,44, 242,25,387,1,48, 242,25,361,1,52, +242,25,69,2,0, +242,25,215,2,0, +242,25,217,2,0, +242,25,356,2,0, 242,25,7,4,0, 242,25,8,4,0, 242,25,9,4,0, @@ -238001,10 +239202,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 242,25,886,4,0, 242,25,356,4,0, 242,25,264,4,0, -242,25,69,2,0, -242,25,215,2,0, -242,25,217,2,0, -242,25,356,2,0, 242,25,38,4,0, 242,25,244,4,0, 242,25,283,4,0, @@ -238889,6 +240086,70 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 243,23,521,4,0, 243,23,523,4,0, 243,23,555,4,0, +243,25,43,1,1,1 +243,25,268,1,1,2 +243,25,245,1,1,3 +243,25,84,1,1,4 +243,25,98,1,1,5 +243,25,209,1,6, +243,25,44,1,12, +243,25,347,1,18, +243,25,46,1,24, +243,25,422,1,30, +243,25,336,1,36, +243,25,242,1,42, +243,25,326,1,48, +243,25,435,1,54, +243,25,115,1,60, +243,25,240,1,66, +243,25,87,1,72, +243,25,192,1,78, +243,25,34,4,0, +243,25,36,4,0, +243,25,38,4,0, +243,25,46,4,0, +243,25,63,4,0, +243,25,85,4,0, +243,25,86,4,0, +243,25,87,4,0, +243,25,97,4,0, +243,25,113,4,0, +243,25,115,4,0, +243,25,129,4,0, +243,25,156,4,0, +243,25,164,4,0, +243,25,182,4,0, +243,25,184,4,0, +243,25,189,4,0, +243,25,201,4,0, +243,25,203,4,0, +243,25,214,4,0, +243,25,240,4,0, +243,25,241,4,0, +243,25,242,4,0, +243,25,247,4,0, +243,25,263,4,0, +243,25,268,4,0, +243,25,270,4,0, +243,25,311,4,0, +243,25,347,4,0, +243,25,396,4,0, +243,25,416,4,0, +243,25,422,4,0, +243,25,442,4,0, +243,25,451,4,0, +243,25,486,4,0, +243,25,503,4,0, +243,25,521,4,0, +243,25,527,4,0, +243,25,528,4,0, +243,25,555,4,0, +243,25,598,4,0, +243,25,604,4,0, +243,25,675,4,0, +243,25,851,4,0, +243,25,885,4,0, +243,25,916,4,0, 244,3,43,1,1,2 244,3,44,1,1,1 244,3,52,1,11, @@ -239772,6 +241033,68 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 244,23,444,4,0, 244,23,523,4,0, 244,23,555,4,0, +244,25,23,1,1,1 +244,25,43,1,1,2 +244,25,52,1,1,3 +244,25,108,1,1,4 +244,25,172,1,6, +244,25,44,1,12, +244,25,347,1,18, +244,25,46,1,24, +244,25,424,1,30, +244,25,184,1,36, +244,25,242,1,42, +244,25,326,1,48, +244,25,436,1,54, +244,25,207,1,60, +244,25,241,1,66, +244,25,126,1,72, +244,25,284,1,78, +244,25,221,2,0, +244,25,245,2,0, +244,25,34,4,0, +244,25,36,4,0, +244,25,38,4,0, +244,25,46,4,0, +244,25,53,4,0, +244,25,63,4,0, +244,25,76,4,0, +244,25,83,4,0, +244,25,91,4,0, +244,25,97,4,0, +244,25,126,4,0, +244,25,129,4,0, +244,25,156,4,0, +244,25,164,4,0, +244,25,179,4,0, +244,25,182,4,0, +244,25,184,4,0, +244,25,201,4,0, +244,25,203,4,0, +244,25,214,4,0, +244,25,240,4,0, +244,25,241,4,0, +244,25,242,4,0, +244,25,247,4,0, +244,25,257,4,0, +244,25,261,4,0, +244,25,263,4,0, +244,25,270,4,0, +244,25,311,4,0, +244,25,315,4,0, +244,25,347,4,0, +244,25,394,4,0, +244,25,416,4,0, +244,25,424,4,0, +244,25,442,4,0, +244,25,444,4,0, +244,25,488,4,0, +244,25,523,4,0, +244,25,555,4,0, +244,25,707,4,0, +244,25,815,4,0, +244,25,851,4,0, +244,25,885,4,0, 245,3,43,1,1,2 245,3,44,1,1,1 245,3,55,1,11, @@ -240667,6 +241990,66 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 245,23,503,4,0, 245,23,523,4,0, 245,23,555,4,0, +245,25,16,1,1,1 +245,25,43,1,1,2 +245,25,54,1,1,3 +245,25,55,1,1,4 +245,25,352,1,6, +245,25,44,1,12, +245,25,347,1,18, +245,25,46,1,24, +245,25,423,1,30, +245,25,366,1,36, +245,25,242,1,42, +245,25,326,1,48, +245,25,57,1,54, +245,25,243,1,60, +245,25,240,1,66, +245,25,56,1,72, +245,25,59,1,78, +245,25,245,2,0, +245,25,329,2,0, +245,25,34,4,0, +245,25,36,4,0, +245,25,38,4,0, +245,25,46,4,0, +245,25,56,4,0, +245,25,57,4,0, +245,25,58,4,0, +245,25,59,4,0, +245,25,63,4,0, +245,25,97,4,0, +245,25,127,4,0, +245,25,129,4,0, +245,25,156,4,0, +245,25,164,4,0, +245,25,182,4,0, +245,25,196,4,0, +245,25,201,4,0, +245,25,203,4,0, +245,25,214,4,0, +245,25,240,4,0, +245,25,242,4,0, +245,25,247,4,0, +245,25,250,4,0, +245,25,263,4,0, +245,25,270,4,0, +245,25,311,4,0, +245,25,347,4,0, +245,25,352,4,0, +245,25,366,4,0, +245,25,403,4,0, +245,25,416,4,0, +245,25,419,4,0, +245,25,423,4,0, +245,25,442,4,0, +245,25,503,4,0, +245,25,555,4,0, +245,25,710,4,0, +245,25,851,4,0, +245,25,883,4,0, +245,25,885,4,0, +245,25,886,4,0, 246,3,43,1,1,2 246,3,44,1,1,1 246,3,201,1,8, @@ -241681,6 +243064,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 246,25,328,4,0, 246,25,180,4,0, 246,25,479,4,0, +246,25,38,4,0, +246,25,174,4,0, 247,3,43,1,1,2 247,3,44,1,1,1 247,3,103,1,1,4 @@ -242583,6 +243968,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 247,25,479,4,0, 247,25,667,4,0, 247,25,808,4,0, +247,25,38,4,0, +247,25,174,4,0, 248,3,43,1,1,2 248,3,44,1,1,1 248,3,103,1,1,4 @@ -243976,6 +245363,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 248,25,667,4,0, 248,25,264,4,0, 248,25,808,4,0, +248,25,38,4,0, +248,25,330,4,0, +248,25,784,4,0, +248,25,174,4,0, +248,25,912,4,0, 249,3,177,1,1, 249,3,219,1,11, 249,3,16,1,22, @@ -245171,6 +246563,85 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 249,23,432,4,0, 249,23,451,4,0, 249,23,523,4,0, +249,25,16,1,1,1 +249,25,18,1,1,2 +249,25,246,1,1,3 +249,25,311,1,1,4 +249,25,54,1,9, +249,25,219,1,18, +249,25,347,1,27, +249,25,326,1,36, +249,25,105,1,45, +249,25,177,1,54, +249,25,240,1,63, +249,25,56,1,72, +249,25,248,1,81, +249,25,143,1,90, +249,25,407,2,0, +249,25,19,4,0, +249,25,34,4,0, +249,25,36,4,0, +249,25,38,4,0, +249,25,56,4,0, +249,25,57,4,0, +249,25,58,4,0, +249,25,59,4,0, +249,25,63,4,0, +249,25,85,4,0, +249,25,87,4,0, +249,25,89,4,0, +249,25,94,4,0, +249,25,113,4,0, +249,25,115,4,0, +249,25,127,4,0, +249,25,129,4,0, +249,25,156,4,0, +249,25,164,4,0, +249,25,174,4,0, +249,25,182,4,0, +249,25,184,4,0, +249,25,196,4,0, +249,25,201,4,0, +249,25,202,4,0, +249,25,203,4,0, +249,25,214,4,0, +249,25,240,4,0, +249,25,241,4,0, +249,25,244,4,0, +249,25,247,4,0, +249,25,248,4,0, +249,25,250,4,0, +249,25,263,4,0, +249,25,270,4,0, +249,25,271,4,0, +249,25,285,4,0, +249,25,286,4,0, +249,25,304,4,0, +249,25,311,4,0, +249,25,314,4,0, +249,25,332,4,0, +249,25,347,4,0, +249,25,352,4,0, +249,25,366,4,0, +249,25,403,4,0, +249,25,406,4,0, +249,25,413,4,0, +249,25,414,4,0, +249,25,416,4,0, +249,25,419,4,0, +249,25,428,4,0, +249,25,442,4,0, +249,25,451,4,0, +249,25,473,4,0, +249,25,512,4,0, +249,25,525,4,0, +249,25,542,4,0, +249,25,710,4,0, +249,25,799,4,0, +249,25,814,4,0, +249,25,851,4,0, +249,25,886,4,0, +249,25,917,4,0, 250,3,221,1,1, 250,3,219,1,11, 250,3,16,1,22, @@ -246271,6 +247742,74 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 250,23,432,4,0, 250,23,451,4,0, 250,23,523,4,0, +250,25,16,1,1,1 +250,25,18,1,1,2 +250,25,246,1,1,3 +250,25,311,1,1,4 +250,25,791,1,9, +250,25,219,1,18, +250,25,347,1,27, +250,25,326,1,36, +250,25,105,1,45, +250,25,221,1,54, +250,25,241,1,63, +250,25,126,1,72, +250,25,248,1,81, +250,25,143,1,90, +250,25,315,1,99, +250,25,19,4,0, +250,25,34,4,0, +250,25,36,4,0, +250,25,38,4,0, +250,25,53,4,0, +250,25,63,4,0, +250,25,76,4,0, +250,25,83,4,0, +250,25,85,4,0, +250,25,87,4,0, +250,25,89,4,0, +250,25,94,4,0, +250,25,113,4,0, +250,25,115,4,0, +250,25,126,4,0, +250,25,129,4,0, +250,25,156,4,0, +250,25,164,4,0, +250,25,182,4,0, +250,25,201,4,0, +250,25,202,4,0, +250,25,203,4,0, +250,25,214,4,0, +250,25,240,4,0, +250,25,241,4,0, +250,25,244,4,0, +250,25,247,4,0, +250,25,248,4,0, +250,25,257,4,0, +250,25,261,4,0, +250,25,263,4,0, +250,25,270,4,0, +250,25,286,4,0, +250,25,304,4,0, +250,25,311,4,0, +250,25,314,4,0, +250,25,315,4,0, +250,25,332,4,0, +250,25,347,4,0, +250,25,366,4,0, +250,25,394,4,0, +250,25,403,4,0, +250,25,413,4,0, +250,25,414,4,0, +250,25,416,4,0, +250,25,428,4,0, +250,25,442,4,0, +250,25,451,4,0, +250,25,488,4,0, +250,25,542,4,0, +250,25,814,4,0, +250,25,815,4,0, +250,25,851,4,0, 251,3,73,1,1,1 251,3,93,1,1,2 251,3,105,1,1,3 @@ -257057,6 +258596,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 261,25,808,4,0, 261,25,851,4,0, 261,25,885,4,0, +261,25,38,4,0, +261,25,283,4,0, 262,5,28,1,1,3 262,5,33,1,1,1 262,5,44,1,1,4 @@ -257876,6 +259417,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 262,25,808,4,0, 262,25,851,4,0, 262,25,885,4,0, +262,25,38,4,0, +262,25,283,4,0, +262,25,675,4,0, 263,5,33,1,1,1 263,5,45,1,1,2 263,5,39,1,5, @@ -259754,6 +261298,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 265,23,33,1,1,2 265,23,40,1,5, 265,23,450,1,15, +265,24,40,1,1,,10 +265,24,33,1,6,,15 266,5,106,1,1, 266,5,106,1,7, 266,6,106,1,1, @@ -259797,6 +261343,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 266,18,527,3,0, 266,23,106,1,0, 266,23,106,1,1, +266,24,334,1,0,,15 +266,24,40,1,1,,10 +266,24,33,1,6,,15 267,5,71,1,1, 267,5,71,1,10, 267,5,16,1,13, @@ -260424,6 +261973,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 267,23,412,4,0, 267,23,416,4,0, 267,23,432,4,0, +267,24,314,1,0,,15 +267,24,40,1,1,,10 +267,24,33,1,6,,15 +267,24,334,1,6,,15 +267,24,78,1,11,,20 +267,24,318,1,18,,28 +267,24,474,1,25,,35 +267,24,403,1,34,,45 +267,24,405,1,43,,54 268,5,106,1,1, 268,5,106,1,7, 268,6,106,1,1, @@ -260467,6 +262025,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 268,18,527,3,0, 268,23,106,1,0, 268,23,106,1,1, +268,24,334,1,0,,15 +268,24,40,1,1,,10 +268,24,33,1,6,,15 269,5,93,1,1, 269,5,93,1,10, 269,5,16,1,13, @@ -261110,6 +262671,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 269,23,412,4,0, 269,23,416,4,0, 269,23,432,4,0, +269,24,93,1,0,,15 +269,24,40,1,1,,10 +269,24,33,1,6,,15 +269,24,334,1,6,,15 +269,24,77,1,11,,20 +269,24,318,1,18,,28 +269,24,474,1,25,,35 +269,24,326,1,34,,45 +269,24,405,1,43,,54 270,5,310,1,1, 270,5,45,1,3, 270,5,71,1,7, @@ -261927,6 +263497,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 270,25,851,4,0, 270,25,885,4,0, 270,25,886,4,0, +270,25,38,4,0, +270,25,250,4,0, +270,25,330,4,0, 271,5,310,1,1, 271,5,45,1,3, 271,5,71,1,7, @@ -262801,6 +264374,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 271,25,851,4,0, 271,25,885,4,0, 271,25,886,4,0, +271,25,38,4,0, +271,25,250,4,0, +271,25,330,4,0, 272,5,45,1,1,2 272,5,71,1,1,3 272,5,267,1,1,4 @@ -263651,6 +265227,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 272,25,861,4,0, 272,25,885,4,0, 272,25,886,4,0, +272,25,38,4,0, +272,25,250,4,0, +272,25,330,4,0, 273,5,117,1,1, 273,5,106,1,3, 273,5,74,1,7, @@ -264395,6 +265974,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 273,25,803,4,0, 273,25,851,4,0, 273,25,885,4,0, +273,25,38,4,0, +273,25,283,4,0, +273,25,174,4,0, 274,5,1,1,1, 274,5,106,1,3, 274,5,74,1,7, @@ -265307,6 +266889,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 274,25,851,4,0, 274,25,885,4,0, 274,25,886,4,0, +274,25,244,4,0, +274,25,38,4,0, +274,25,283,4,0, +274,25,174,4,0, 275,5,1,1,1,1 275,5,74,1,1,3 275,5,106,1,1,2 @@ -266260,6 +267846,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 275,25,851,4,0, 275,25,885,4,0, 275,25,886,4,0, +275,25,244,4,0, +275,25,38,4,0, +275,25,283,4,0, +275,25,572,4,0, +275,25,675,4,0, +275,25,174,4,0, +275,25,918,4,0, 276,5,45,1,1,2 276,5,64,1,1,1 276,5,116,1,4, @@ -268310,6 +269903,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 278,25,886,4,0, 278,25,282,4,0, 278,25,814,4,0, +278,25,250,4,0, +278,25,330,4,0, +278,25,297,4,0, 279,5,17,1,1,4 279,5,45,1,1,1 279,5,55,1,1,2 @@ -269163,6 +270759,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 279,25,355,1,48, 279,25,542,1,55, 279,25,56,1,62, +279,25,469,2,0, 279,25,19,4,0, 279,25,34,4,0, 279,25,36,4,0, @@ -269204,6 +270801,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 279,25,282,4,0, 279,25,311,4,0, 279,25,814,4,0, +279,25,250,4,0, +279,25,330,4,0, +279,25,297,4,0, 280,5,45,1,1, 280,5,93,1,6, 280,5,104,1,11, @@ -270220,6 +271820,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 280,23,447,4,0, 280,23,451,4,0, 280,23,605,4,0, +280,24,93,1,1,,10 +280,24,100,1,6,,15 +280,24,577,1,11,,20 +280,24,95,1,18,,28 +280,24,347,1,25,,35 +280,24,94,1,34,,45 280,25,45,1,1,1 280,25,574,1,1,2 280,25,104,1,3, @@ -270292,6 +271898,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 280,25,678,4,0, 280,25,851,4,0, 280,25,282,4,0, +280,25,220,4,0, +280,25,244,4,0, +280,25,248,4,0, +280,25,797,4,0, +280,25,914,4,0, 281,5,45,1,1,1 281,5,93,1,1,2 281,5,100,1,1,4 @@ -271225,6 +272836,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 281,23,447,4,0, 281,23,451,4,0, 281,23,605,4,0, +281,24,93,1,1,,10 +281,24,100,1,6,,15 +281,24,577,1,11,,20 +281,24,95,1,18,,28 +281,24,347,1,25,,35 +281,24,94,1,34,,45 281,25,45,1,1,1 281,25,93,1,1,2 281,25,104,1,1,3 @@ -271290,6 +272907,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 281,25,678,4,0, 281,25,851,4,0, 281,25,282,4,0, +281,25,220,4,0, +281,25,244,4,0, +281,25,813,4,0, +281,25,248,4,0, +281,25,797,4,0, +281,25,914,4,0, 282,5,45,1,1,1 282,5,93,1,1,2 282,5,100,1,1,4 @@ -272318,6 +273941,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 282,23,447,4,0, 282,23,451,4,0, 282,23,605,4,0, +282,24,605,1,0,,40 +282,24,93,1,1,,10 +282,24,100,1,6,,15 +282,24,577,1,11,,20 +282,24,95,1,18,,28 +282,24,347,1,25,,35 +282,24,94,1,34,,45 +282,24,396,1,40,,51 +282,24,585,1,43,,54 +282,24,105,1,52,,64 282,25,605,1,0, 282,25,45,1,1,1 282,25,93,1,1,2 @@ -272397,6 +274030,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 282,25,282,4,0, 282,25,410,4,0, 282,25,802,4,0, +282,25,220,4,0, +282,25,244,4,0, +282,25,813,4,0, +282,25,248,4,0, +282,25,797,4,0, +282,25,914,4,0, +282,25,917,4,0, 283,5,145,1,1, 283,5,98,1,7, 283,5,230,1,13, @@ -273098,6 +274738,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 283,25,114,4,0, 283,25,450,4,0, 283,25,679,4,0, +283,25,244,4,0, +283,25,806,4,0, 284,5,98,1,1,2 284,5,145,1,1,1 284,5,230,1,1,3 @@ -273889,6 +275531,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 284,25,679,4,0, 284,25,311,4,0, 284,25,814,4,0, +284,25,244,4,0, +284,25,806,4,0, 285,5,71,1,1, 285,5,33,1,4, 285,5,78,1,7, @@ -276445,6 +278089,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 287,25,851,4,0, 287,25,886,4,0, 287,25,264,4,0, +287,25,675,4,0, +287,25,174,4,0, 288,5,10,1,1,1 288,5,116,1,1,2 288,5,227,1,1,3 @@ -277394,6 +279040,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 288,25,253,4,0, 288,25,264,4,0, 288,25,808,4,0, +288,25,38,4,0, +288,25,283,4,0, +288,25,675,4,0, +288,25,174,4,0, 289,5,10,1,1,1 289,5,227,1,1,3 289,5,281,1,1,2 @@ -278437,6 +280087,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 289,25,253,4,0, 289,25,264,4,0, 289,25,808,4,0, +289,25,38,4,0, +289,25,283,4,0, +289,25,675,4,0, +289,25,174,4,0, +289,25,912,4,0, 290,5,10,1,1,1 290,5,106,1,1,2 290,5,141,1,5, @@ -284190,6 +285845,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 296,25,282,4,0, 296,25,410,4,0, 296,25,264,4,0, +296,25,38,4,0, +296,25,811,4,0, +296,25,918,4,0, 297,5,28,1,1,3 297,5,33,1,1,1 297,5,116,1,1,2 @@ -285092,6 +286750,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 297,25,410,4,0, 297,25,264,4,0, 297,25,808,4,0, +297,25,38,4,0, +297,25,811,4,0, +297,25,675,4,0, +297,25,174,4,0, +297,25,918,4,0, 298,5,150,1,1, 298,5,204,1,3, 298,5,39,1,6, @@ -285797,6 +287460,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 298,25,341,4,0, 298,25,577,4,0, 298,25,851,4,0, +298,25,914,4,0, 299,5,33,1,1, 299,5,106,1,7, 299,5,88,1,13, @@ -286586,6 +288250,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 299,23,521,4,0, 299,23,523,4,0, 299,23,605,4,0, +299,24,33,1,1,,10 +299,24,86,1,6,,15 +299,24,209,1,11,,20 +299,24,334,1,18,,28 +299,24,157,1,25,,35 +299,24,408,1,34,,45 +299,24,414,1,43,,54 299,25,33,1,1, 299,25,106,1,4, 299,25,335,1,7, @@ -286646,6 +288317,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 299,25,776,4,0, 299,25,796,4,0, 299,25,851,4,0, +299,25,220,4,0, +299,25,38,4,0, +299,25,800,4,0, +299,25,174,4,0, 300,5,33,1,1,2 300,5,45,1,1,1 300,5,39,1,3, @@ -289505,6 +291180,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 302,25,264,4,0, 302,25,809,4,0, 302,25,808,4,0, +302,25,220,4,0, +302,25,244,4,0, +302,25,806,4,0, +302,25,675,4,0, 303,5,310,1,1, 303,5,313,1,6, 303,5,44,1,11, @@ -294612,6 +296291,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 307,25,851,4,0, 307,25,885,4,0, 307,25,264,4,0, +307,25,220,4,0, +307,25,244,4,0, +307,25,797,4,0, +307,25,918,4,0, 308,5,7,1,1,1 308,5,8,1,1,3 308,5,9,1,1,2 @@ -295636,6 +297319,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 308,25,356,4,0, 308,25,410,4,0, 308,25,264,4,0, +308,25,220,4,0, +308,25,244,4,0, +308,25,797,4,0, +308,25,918,4,0, 309,5,33,1,1, 309,5,86,1,4, 309,5,43,1,9, @@ -299682,6 +301369,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 313,25,884,4,0, 313,25,885,4,0, 313,25,886,4,0, +313,25,38,4,0, +313,25,283,4,0, +313,25,806,4,0, 314,5,33,1,1, 314,5,230,1,5, 314,5,204,1,9, @@ -300578,6 +302268,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 314,25,851,4,0, 314,25,884,4,0, 314,25,885,4,0, +314,25,244,4,0, +314,25,38,4,0, +314,25,283,4,0, +314,25,806,4,0, 315,5,71,1,1, 315,5,74,1,5, 315,5,40,1,9, @@ -301425,6 +303119,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 315,23,412,4,0, 315,23,447,4,0, 315,23,605,4,0, +315,24,40,1,1,,10 +315,24,71,1,6,,15 +315,24,77,1,11,,20 +315,24,78,1,18,,28 +315,24,474,1,25,,35 +315,24,398,1,34,,45 +315,24,412,1,43,,54 +315,24,80,1,52,,64 316,5,1,1,1, 316,5,281,1,6, 316,5,139,1,9, @@ -302250,6 +303952,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 316,25,491,4,0, 316,25,851,4,0, 316,25,92,4,0, +316,25,220,4,0, +316,25,482,4,0, +316,25,174,4,0, 317,5,1,1,1,1 317,5,124,1,1,4 317,5,139,1,1,3 @@ -303114,6 +304819,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 317,25,851,4,0, 317,25,92,4,0, 317,25,282,4,0, +317,25,220,4,0, +317,25,38,4,0, +317,25,482,4,0, +317,25,174,4,0, 318,5,43,1,1,1 318,5,44,1,1,2 318,5,99,1,7, @@ -307303,6 +309012,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 322,25,667,4,0, 322,25,535,4,0, 322,25,808,4,0, +322,25,38,4,0, +322,25,283,4,0, +322,25,915,4,0, +322,25,815,4,0, +322,25,174,4,0, 323,5,33,1,1,2 323,5,45,1,1,1 323,5,52,1,1,3 @@ -308148,6 +309862,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 323,25,667,4,0, 323,25,535,4,0, 323,25,808,4,0, +323,25,38,4,0, +323,25,283,4,0, +323,25,915,4,0, +323,25,815,4,0, +323,25,174,4,0, 324,5,52,1,1, 324,5,123,1,4, 324,5,174,1,7, @@ -309083,6 +310802,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 324,25,535,4,0, 324,25,311,4,0, 324,25,807,4,0, +324,25,38,4,0, +324,25,915,4,0, +324,25,815,4,0, +324,25,174,4,0, 325,5,150,1,1, 325,5,149,1,7, 325,5,316,1,10, @@ -310014,6 +311737,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 325,25,886,4,0, 325,25,679,4,0, 325,25,253,4,0, +325,25,244,4,0, +325,25,283,4,0, +325,25,248,4,0, +325,25,797,4,0, 326,5,60,1,1,4 326,5,149,1,1,2 326,5,150,1,1,1 @@ -311035,6 +312762,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 326,25,679,4,0, 326,25,253,4,0, 326,25,264,4,0, +326,25,244,4,0, +326,25,283,4,0, +326,25,248,4,0, +326,25,797,4,0, +326,25,917,4,0, 327,5,33,1,1, 327,5,253,1,5, 327,5,185,1,12, @@ -315590,6 +317322,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 331,25,180,4,0, 331,25,264,4,0, 331,25,803,4,0, +331,25,283,4,0, +331,25,806,4,0, +331,25,675,4,0, +331,25,174,4,0, 332,5,40,1,1,1 332,5,43,1,1,2 332,5,71,1,1,3 @@ -316486,6 +318222,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 332,25,264,4,0, 332,25,803,4,0, 332,25,808,4,0, +332,25,283,4,0, +332,25,806,4,0, +332,25,675,4,0, +332,25,174,4,0, 333,5,45,1,1,2 333,5,64,1,1,1 333,5,310,1,8, @@ -317336,6 +319076,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 333,25,885,4,0, 333,25,114,4,0, 333,25,814,4,0, +333,25,283,4,0, +333,25,297,4,0, +333,25,913,4,0, 334,5,45,1,1,2 334,5,47,1,1,4 334,5,64,1,1,1 @@ -318338,6 +320081,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 334,25,114,4,0, 334,25,311,4,0, 334,25,814,4,0, +334,25,38,4,0, +334,25,283,4,0, +334,25,297,4,0, +334,25,784,4,0, +334,25,913,4,0, +334,25,914,4,0, 335,5,10,1,1, 335,5,43,1,4, 335,5,98,1,7, @@ -319515,6 +321264,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 335,25,46,4,0, 335,25,282,4,0, 335,25,264,4,0, +335,25,38,4,0, +335,25,283,4,0, +335,25,675,4,0, +335,25,174,4,0, +335,25,918,4,0, 336,5,35,1,1, 336,5,122,1,7, 336,5,44,1,10, @@ -320416,6 +322170,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 336,25,92,4,0, 336,25,282,4,0, 336,25,808,4,0, +336,25,38,4,0, +336,25,283,4,0, +336,25,482,4,0, +336,25,806,4,0, +336,25,675,4,0, +336,25,784,4,0, +336,25,174,4,0, 337,5,33,1,1,1 337,5,106,1,1,2 337,5,93,1,7, @@ -323044,6 +324805,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 339,23,352,4,0, 339,23,503,4,0, 339,23,523,4,0, +339,24,189,1,1,,10 +339,24,352,1,6,,15 +339,24,426,1,11,,20 +339,24,156,1,18,,28 +339,24,428,1,25,,35 +339,24,401,1,34,,45 +339,24,414,1,43,,54 339,25,55,1,1,1 339,25,189,1,1,2 339,25,156,1,6, @@ -323096,6 +324864,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 339,25,851,4,0, 339,25,886,4,0, 339,25,667,4,0, +339,25,38,4,0, +339,25,250,4,0, +339,25,330,4,0, +339,25,248,4,0, 340,5,189,1,1,2 340,5,300,1,1,3 340,5,321,1,1,1 @@ -323897,6 +325669,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 340,23,444,4,0, 340,23,503,4,0, 340,23,523,4,0, +340,24,189,1,1,,10 +340,24,352,1,6,,15 +340,24,426,1,11,,20 +340,24,156,1,18,,28 +340,24,428,1,25,,35 +340,24,401,1,34,,45 +340,24,414,1,43,,54 340,25,37,1,0, 340,25,55,1,1,1 340,25,156,1,1,2 @@ -323956,6 +325735,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 340,25,328,4,0, 340,25,667,4,0, 340,25,311,4,0, +340,25,38,4,0, +340,25,250,4,0, +340,25,330,4,0, +340,25,248,4,0, +340,25,174,4,0, 341,5,145,1,1, 341,5,106,1,7, 341,5,11,1,10, @@ -324940,6 +326724,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 341,25,710,4,0, 341,25,851,4,0, 341,25,886,4,0, +341,25,38,4,0, +341,25,283,4,0, +341,25,250,4,0, +341,25,330,4,0, 342,5,11,1,1,3 342,5,43,1,1,4 342,5,106,1,1,2 @@ -325957,6 +327745,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 342,25,808,4,0, 342,25,851,4,0, 342,25,886,4,0, +342,25,38,4,0, +342,25,283,4,0, +342,25,250,4,0, +342,25,330,4,0, +342,25,482,4,0, +342,25,912,4,0, 343,5,93,1,1, 343,5,106,1,3, 343,5,229,1,5, @@ -331571,6 +333365,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 349,25,799,4,0, 349,25,851,4,0, 349,25,886,4,0, +349,25,38,4,0, +349,25,250,4,0, +349,25,330,4,0, 350,5,55,1,1, 350,5,35,1,5, 350,5,346,1,10, @@ -332376,6 +334173,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 350,25,812,4,0, 350,25,851,4,0, 350,25,886,4,0, +350,25,244,4,0, +350,25,38,4,0, +350,25,250,4,0, +350,25,330,4,0, +350,25,813,4,0, +350,25,806,4,0, +350,25,784,4,0, +350,25,913,4,0, +350,25,914,4,0, 351,5,33,1,1, 351,5,52,1,10,2 351,5,55,1,10,1 @@ -335194,6 +337000,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 353,25,180,4,0, 353,25,809,4,0, 353,25,808,4,0, +353,25,220,4,0, +353,25,244,4,0, +353,25,806,4,0, +353,25,174,4,0, 354,5,101,1,1,3 354,5,103,1,1,2 354,5,174,1,1,4 @@ -336118,6 +337928,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 354,25,807,4,0, 354,25,809,4,0, 354,25,808,4,0, +354,25,220,4,0, +354,25,244,4,0, +354,25,806,4,0, +354,25,675,4,0, +354,25,174,4,0, 355,5,43,1,1,1 355,5,101,1,1,2 355,5,50,1,5, @@ -336999,6 +338814,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 355,23,399,4,0, 355,23,433,4,0, 355,23,451,4,0, +355,24,71,1,1,,10 +355,24,425,1,6,,15 +355,24,506,1,11,,20 +355,24,141,1,18,,28 +355,24,399,1,25,,35 +355,24,247,1,34,,45 +355,24,94,1,43,,54 355,25,43,1,1,1 355,25,310,1,1,2 355,25,50,1,4, @@ -337050,6 +338872,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 355,25,566,4,0, 355,25,809,4,0, 355,25,851,4,0, +355,25,220,4,0, +355,25,244,4,0, +355,25,248,4,0, +355,25,806,4,0, +355,25,174,4,0, 356,5,20,1,1,1 356,5,43,1,1,2 356,5,50,1,1,4 @@ -338096,6 +339923,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 356,23,433,4,0, 356,23,451,4,0, 356,23,523,4,0, +356,24,71,1,1,,10 +356,24,425,1,6,,15 +356,24,506,1,11,,20 +356,24,141,1,18,,28 +356,24,399,1,25,,35 +356,24,247,1,34,,45 +356,24,94,1,43,,54 356,25,325,1,0, 356,25,7,1,1,1 356,25,8,1,1,2 @@ -338162,6 +339996,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 356,25,566,4,0, 356,25,809,4,0, 356,25,851,4,0, +356,25,220,4,0, +356,25,244,4,0, +356,25,248,4,0, +356,25,806,4,0, +356,25,174,4,0, 357,5,16,1,1,2 357,5,43,1,1,1 357,5,74,1,7, @@ -339096,6 +340935,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 357,25,46,4,0, 357,25,180,4,0, 357,25,669,4,0, +357,25,814,4,0, +357,25,38,4,0, +357,25,572,4,0, +357,25,174,4,0, 358,5,35,1,1, 358,5,45,1,6, 358,5,310,1,9, @@ -339988,6 +341831,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 358,23,447,4,0, 358,23,451,4,0, 358,23,605,4,0, +358,24,33,1,1,,10 +358,24,93,1,6,,15 +358,24,466,1,11,,20 +358,24,95,1,18,,28 +358,24,326,1,25,,35 +358,24,105,1,34,,45 +358,24,38,1,43,,54 358,25,35,1,1,1 358,25,45,1,1,2 358,25,93,1,1,3 @@ -340053,6 +341903,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 358,25,577,4,0, 358,25,605,4,0, 358,25,851,4,0, +358,25,244,4,0, +358,25,38,4,0, +358,25,248,4,0, +358,25,797,4,0, +358,25,174,4,0, +358,25,917,4,0, 359,5,10,1,1, 359,5,43,1,5, 359,5,269,1,9, @@ -342148,6 +344004,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 361,23,263,4,0, 361,23,352,4,0, 361,23,419,4,0, +361,24,181,1,1,,10 +361,24,420,1,6,,15 +361,24,44,1,11,,20 +361,24,423,1,18,,28 +361,24,242,1,25,,35 +361,24,556,1,34,,45 +361,24,59,1,43,,54 361,25,29,1,1,1 361,25,181,1,1,2 361,25,310,1,1,3 @@ -342992,6 +344855,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 362,23,416,4,0, 362,23,419,4,0, 362,23,523,4,0, +362,24,301,1,1,,10 +362,24,181,1,1,,10 +362,24,420,1,6,,15 +362,24,44,1,11,,20 +362,24,423,1,18,,28 +362,24,242,1,25,,35 +362,24,556,1,34,,45 +362,24,59,1,43,,54 362,25,573,1,0, 362,25,29,1,1,1 362,25,43,1,1,2 @@ -343891,6 +345762,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 363,23,352,4,0, 363,23,362,4,0, 363,23,523,4,0, +363,24,205,1,1,,10 +363,24,181,1,6,,15 +363,24,352,1,11,,20 +363,24,156,1,18,,28 +363,24,710,1,25,,35 +363,24,58,1,34,,45 +363,24,59,1,43,,54 364,5,45,1,1,2 364,5,55,1,1,3 364,5,181,1,1,1 @@ -344622,6 +346500,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 364,23,352,4,0, 364,23,362,4,0, 364,23,523,4,0, +364,24,205,1,1,,10 +364,24,181,1,6,,15 +364,24,352,1,11,,20 +364,24,156,1,18,,28 +364,24,710,1,25,,35 +364,24,58,1,34,,45 +364,24,59,1,43,,54 365,5,45,1,1,2 365,5,55,1,1,3 365,5,181,1,1,1 @@ -345427,6 +347312,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 365,23,416,4,0, 365,23,419,4,0, 365,23,523,4,0, +365,24,205,1,1,,10 +365,24,181,1,6,,15 +365,24,352,1,11,,20 +365,24,156,1,18,,28 +365,24,710,1,25,,35 +365,24,58,1,34,,45 +365,24,59,1,43,,54 366,5,55,1,1,2 366,5,128,1,1,1 366,5,250,1,1,3 @@ -348802,6 +350694,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 370,25,883,4,0, 370,25,812,4,0, 370,25,799,4,0, +370,25,244,4,0, +370,25,283,4,0, +370,25,250,4,0, 371,5,99,1,1, 371,5,44,1,5, 371,5,43,1,9, @@ -349642,6 +351537,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 371,25,525,4,0, 371,25,851,4,0, 371,25,46,4,0, +371,25,38,4,0, +371,25,913,4,0, 372,5,29,1,1,4 372,5,43,1,1,3 372,5,44,1,1,2 @@ -350440,6 +352337,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 372,25,525,4,0, 372,25,851,4,0, 372,25,46,4,0, +372,25,38,4,0, +372,25,915,4,0, +372,25,913,4,0, 373,5,29,1,1,4 373,5,43,1,1,3 373,5,44,1,1,2 @@ -351449,6 +353349,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 373,25,851,4,0, 373,25,46,4,0, 373,25,814,4,0, +373,25,38,4,0, +373,25,915,4,0, +373,25,784,4,0, +373,25,913,4,0, 374,5,36,1,1, 374,6,36,1,1, 374,7,36,1,1, @@ -357327,6 +359231,91 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 380,23,447,4,0, 380,23,451,4,0, 380,23,523,4,0, +380,25,204,1,1,1 +380,25,500,1,1,2 +380,25,270,1,5, +380,25,105,1,10, +380,25,93,1,15, +380,25,366,1,20, +380,25,225,1,25, +380,25,273,1,30, +380,25,296,1,35, +380,25,428,1,40, +380,25,406,1,45, +380,25,505,1,50, +380,25,513,1,55, +380,25,94,1,60, +380,25,470,1,65, +380,25,361,1,70, +380,25,19,4,0, +380,25,34,4,0, +380,25,36,4,0, +380,25,38,4,0, +380,25,46,4,0, +380,25,57,4,0, +380,25,58,4,0, +380,25,63,4,0, +380,25,76,4,0, +380,25,85,4,0, +380,25,86,4,0, +380,25,87,4,0, +380,25,89,4,0, +380,25,94,4,0, +380,25,97,4,0, +380,25,113,4,0, +380,25,115,4,0, +380,25,127,4,0, +380,25,129,4,0, +380,25,156,4,0, +380,25,164,4,0, +380,25,182,4,0, +380,25,196,4,0, +380,25,200,4,0, +380,25,201,4,0, +380,25,203,4,0, +380,25,204,4,0, +380,25,214,4,0, +380,25,226,4,0, +380,25,240,4,0, +380,25,241,4,0, +380,25,244,4,0, +380,25,247,4,0, +380,25,248,4,0, +380,25,250,4,0, +380,25,263,4,0, +380,25,270,4,0, +380,25,271,4,0, +380,25,311,4,0, +380,25,314,4,0, +380,25,332,4,0, +380,25,337,4,0, +380,25,347,4,0, +380,25,349,4,0, +380,25,352,4,0, +380,25,366,4,0, +380,25,396,4,0, +380,25,403,4,0, +380,25,406,4,0, +380,25,412,4,0, +380,25,416,4,0, +380,25,421,4,0, +380,25,428,4,0, +380,25,434,4,0, +380,25,447,4,0, +380,25,451,4,0, +380,25,473,4,0, +380,25,500,4,0, +380,25,523,4,0, +380,25,574,4,0, +380,25,577,4,0, +380,25,710,4,0, +380,25,784,4,0, +380,25,799,4,0, +380,25,814,4,0, +380,25,851,4,0, +380,25,886,4,0, +380,25,913,4,0, +380,25,914,4,0, 381,5,149,1,1, 381,5,262,1,5, 381,5,270,1,10, @@ -358439,6 +360428,88 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 381,23,447,4,0, 381,23,451,4,0, 381,23,523,4,0, +381,25,349,1,1,1 +381,25,500,1,1,2 +381,25,270,1,5, +381,25,105,1,10, +381,25,93,1,15, +381,25,366,1,20, +381,25,225,1,25, +381,25,502,1,30, +381,25,295,1,35, +381,25,428,1,40, +381,25,406,1,45, +381,25,505,1,50, +381,25,493,1,55, +381,25,94,1,60, +381,25,471,1,65, +381,25,262,1,70, +381,25,19,4,0, +381,25,34,4,0, +381,25,36,4,0, +381,25,38,4,0, +381,25,46,4,0, +381,25,57,4,0, +381,25,58,4,0, +381,25,63,4,0, +381,25,76,4,0, +381,25,85,4,0, +381,25,86,4,0, +381,25,87,4,0, +381,25,89,4,0, +381,25,94,4,0, +381,25,97,4,0, +381,25,113,4,0, +381,25,115,4,0, +381,25,127,4,0, +381,25,129,4,0, +381,25,156,4,0, +381,25,164,4,0, +381,25,182,4,0, +381,25,196,4,0, +381,25,200,4,0, +381,25,201,4,0, +381,25,203,4,0, +381,25,214,4,0, +381,25,226,4,0, +381,25,240,4,0, +381,25,241,4,0, +381,25,244,4,0, +381,25,247,4,0, +381,25,248,4,0, +381,25,263,4,0, +381,25,270,4,0, +381,25,271,4,0, +381,25,311,4,0, +381,25,314,4,0, +381,25,332,4,0, +381,25,337,4,0, +381,25,347,4,0, +381,25,349,4,0, +381,25,352,4,0, +381,25,366,4,0, +381,25,396,4,0, +381,25,403,4,0, +381,25,406,4,0, +381,25,412,4,0, +381,25,416,4,0, +381,25,421,4,0, +381,25,428,4,0, +381,25,434,4,0, +381,25,447,4,0, +381,25,451,4,0, +381,25,473,4,0, +381,25,500,4,0, +381,25,523,4,0, +381,25,710,4,0, +381,25,784,4,0, +381,25,799,4,0, +381,25,812,4,0, +381,25,814,4,0, +381,25,851,4,0, +381,25,886,4,0, +381,25,913,4,0, +381,25,917,4,0, 382,5,352,1,1, 382,5,184,1,5, 382,5,246,1,15, @@ -359317,6 +361388,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 382,25,851,4,0, 382,25,886,4,0, 382,25,46,4,0, +382,25,38,4,0, +382,25,250,4,0, +382,25,330,4,0, 383,5,341,1,1, 383,5,184,1,5, 383,5,246,1,15, @@ -360383,6 +362457,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 383,25,667,4,0, 383,25,535,4,0, 383,25,264,4,0, +383,25,38,4,0, +383,25,815,4,0, 384,5,239,1,1, 384,5,184,1,5, 384,5,246,1,15, @@ -361547,6 +363623,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 384,25,46,4,0, 384,25,360,4,0, 384,25,799,4,0, +384,25,38,4,0, +384,25,250,4,0, +384,25,800,4,0, +384,25,784,4,0, +384,25,913,4,0, 385,5,93,1,1,2 385,5,273,1,1,1 385,5,156,1,5, @@ -362525,7 +364606,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 385,23,447,4,0, 385,23,451,4,0, 385,23,605,4,0, -385,25,356,4,0, 385,25,93,1,1,1 385,25,273,1,1,2 385,25,129,1,7, @@ -362541,6 +364621,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 385,25,322,1,84, 385,25,387,1,91, 385,25,353,1,98, +385,25,356,4,0, 385,25,7,4,0, 385,25,8,4,0, 385,25,9,4,0, @@ -364132,6 +366213,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 387,23,446,4,0, 387,23,447,4,0, 387,23,526,4,0, +387,24,33,1,1,,10 +387,24,670,1,6,,15 +387,24,44,1,11,,20 +387,24,523,1,18,,28 +387,24,79,1,25,,35 +387,24,348,1,34,,45 +387,24,38,1,43,,54 387,25,33,1,1, 387,25,110,1,5, 387,25,71,1,9, @@ -364654,6 +366742,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 388,23,446,4,0, 388,23,447,4,0, 388,23,526,4,0, +388,24,33,1,1,,10 +388,24,670,1,6,,15 +388,24,44,1,11,,20 +388,24,523,1,18,,28 +388,24,79,1,25,,35 +388,24,348,1,34,,45 +388,24,38,1,43,,54 388,25,33,1,1,1 388,25,71,1,1,2 388,25,110,1,1,3 @@ -365338,6 +367433,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 389,23,447,4,0, 389,23,523,4,0, 389,23,526,4,0, +389,24,33,1,1,,10 +389,24,670,1,6,,15 +389,24,44,1,11,,20 +389,24,523,1,18,,28 +389,24,79,1,25,,35 +389,24,348,1,34,,45 +389,24,38,1,43,,54 +389,24,452,1,52,,64 +389,24,838,1,57,,71 389,25,89,1,0, 389,25,33,1,1,1 389,25,71,1,1,2 @@ -366123,6 +368227,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 390,23,447,4,0, 390,23,490,4,0, 390,23,526,4,0, +390,24,33,1,1,,10 +390,24,52,1,6,,15 +390,24,129,1,11,,20 +390,24,172,1,18,,28 +390,24,417,1,25,,35 +390,24,53,1,34,,45 +390,24,38,1,43,,54 390,25,10,1,1,1 390,25,43,1,1,2 390,25,52,1,7, @@ -366844,6 +368955,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 391,23,447,4,0, 391,23,490,4,0, 391,23,526,4,0, +391,24,33,1,1,,10 +391,24,52,1,6,,15 +391,24,129,1,11,,20 +391,24,183,1,16,,24 +391,24,172,1,18,,28 +391,24,417,1,25,,35 +391,24,53,1,34,,45 +391,24,38,1,43,,54 391,25,183,1,0, 391,25,10,1,1,1 391,25,43,1,1,2 @@ -367678,6 +369797,17 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 392,23,490,4,0, 392,23,523,4,0, 392,23,526,4,0, +392,24,33,1,1,,10 +392,24,52,1,6,,15 +392,24,129,1,11,,20 +392,24,183,1,16,,24 +392,24,172,1,18,,28 +392,24,417,1,25,,35 +392,24,53,1,34,,45 +392,24,38,1,43,,54 +392,24,833,1,46,,58 +392,24,394,1,52,,64 +392,24,370,1,57,,71 392,25,370,1,0, 392,25,10,1,1,1 392,25,43,1,1,2 @@ -368381,6 +370511,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 393,23,447,4,0, 393,23,503,4,0, 393,23,526,4,0, +393,24,33,1,1,,10 +393,24,145,1,6,,15 +393,24,332,1,11,,20 +393,24,352,1,18,,28 +393,24,355,1,25,,35 +393,24,710,1,34,,45 +393,24,38,1,43,,54 393,25,1,1,1, 393,25,45,1,4, 393,25,55,1,8, @@ -368971,6 +371108,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 394,23,447,4,0, 394,23,503,4,0, 394,23,526,4,0, +394,24,33,1,1,,10 +394,24,145,1,6,,15 +394,24,332,1,11,,20 +394,24,352,1,18,,28 +394,24,355,1,25,,35 +394,24,710,1,34,,45 +394,24,38,1,43,,54 394,25,232,1,0, 394,25,33,1,1,1 394,25,45,1,1,2 @@ -369701,6 +371845,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 395,23,503,4,0, 395,23,523,4,0, 395,23,526,4,0, +395,24,430,1,0,,45 +395,24,33,1,1,,10 +395,24,145,1,6,,15 +395,24,332,1,11,,20 +395,24,352,1,18,,28 +395,24,355,1,25,,35 +395,24,710,1,34,,45 +395,24,38,1,43,,54 +395,24,56,1,52,,64 +395,24,834,1,57,,71 395,25,453,1,0, 395,25,33,1,1,1 395,25,45,1,1,2 @@ -370281,6 +372435,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 396,23,369,4,0, 396,23,432,4,0, 396,23,526,4,0, +396,24,16,1,1,,9 +396,24,98,1,5,,14 +396,24,332,1,9,,18 +396,24,403,1,15,,25 +396,24,355,1,21,,31 +396,24,38,1,29,,40 +396,24,413,1,37,,48 +396,24,416,1,47,,59 396,25,33,1,1,1 396,25,45,1,1,2 396,25,98,1,5, @@ -370325,6 +372487,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 396,25,851,4,0, 396,25,253,4,0, 396,25,814,4,0, +396,25,38,4,0, +396,25,283,4,0, +396,25,297,4,0, 397,8,33,1,1,1 397,8,45,1,1,2 397,8,98,1,1,3 @@ -370724,6 +372889,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 397,23,369,4,0, 397,23,432,4,0, 397,23,526,4,0, +397,24,16,1,1,,9 +397,24,98,1,5,,14 +397,24,332,1,9,,18 +397,24,403,1,15,,25 +397,24,355,1,21,,31 +397,24,38,1,29,,40 +397,24,413,1,37,,48 +397,24,416,1,47,,59 397,25,33,1,1,1 397,25,45,1,1,2 397,25,98,1,1,3 @@ -370762,6 +372935,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 397,25,851,4,0, 397,25,253,4,0, 397,25,814,4,0, +397,25,38,4,0, +397,25,283,4,0, +397,25,297,4,0, 398,8,17,1,1,4 398,8,33,1,1,1 398,8,45,1,1,2 @@ -371209,6 +373385,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 398,23,416,4,0, 398,23,432,4,0, 398,23,526,4,0, +398,24,370,1,0,,48 +398,24,16,1,1,,9 +398,24,98,1,5,,14 +398,24,332,1,9,,18 +398,24,403,1,15,,25 +398,24,355,1,21,,31 +398,24,38,1,29,,40 +398,24,413,1,37,,48 +398,24,416,1,47,,59 398,25,370,1,0, 398,25,17,1,1,1 398,25,33,1,1,2 @@ -371252,6 +373437,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 398,25,851,4,0, 398,25,253,4,0, 398,25,814,4,0, +398,25,38,4,0, +398,25,283,4,0, +398,25,297,4,0, 399,8,33,1,1, 399,8,45,1,5, 399,8,111,1,9, @@ -371849,6 +374037,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 399,23,447,4,0, 399,23,451,4,0, 399,23,526,4,0, +399,24,205,1,1,,9 +399,24,33,1,5,,14 +399,24,44,1,10,,19 +399,24,156,1,16,,26 +399,24,242,1,23,,33 +399,24,14,1,31,,42 +399,24,38,1,40,,52 400,8,33,1,1,1 400,8,45,1,1,2 400,8,45,1,5, @@ -372465,6 +374660,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 400,23,503,4,0, 400,23,523,4,0, 400,23,526,4,0, +400,24,352,1,0,,19 +400,24,205,1,1,,9 +400,24,33,1,5,,14 +400,24,44,1,10,,19 +400,24,156,1,16,,26 +400,24,242,1,23,,33 +400,24,401,1,23,,33 +400,24,14,1,31,,42 +400,24,38,1,40,,52 401,8,45,1,1,1 401,8,117,1,1,2 401,9,45,1,1,1 @@ -372525,6 +374729,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 401,23,1,1,1,2 401,23,522,1,6, 401,23,450,1,16, +401,24,71,1,1,,9 +401,24,33,1,5,,14 401,25,33,1,1,1 401,25,45,1,1,2 401,25,522,1,6, @@ -372533,6 +374739,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 401,25,851,4,0, 401,25,450,4,0, 401,25,679,4,0, +401,25,283,4,0, +401,25,806,4,0, 402,8,45,1,1,1 402,8,117,1,1,2 402,8,210,1,10, @@ -373007,6 +375215,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 402,23,404,4,0, 402,23,405,4,0, 402,23,416,4,0, +402,24,71,1,1,,9 +402,24,33,1,5,,14 +402,24,332,1,9,,18 +402,24,163,1,15,,25 +402,24,400,1,21,,31 +402,24,404,1,29,,40 +402,24,14,1,37,,48 +402,24,405,1,47,,59 402,25,210,1,0, 402,25,33,1,1,1 402,25,45,1,1,2 @@ -373053,6 +375269,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 402,25,450,4,0, 402,25,679,4,0, 402,25,253,4,0, +402,25,283,4,0, +402,25,806,4,0, +402,25,675,4,0, 403,8,33,1,1, 403,8,43,1,5, 403,8,268,1,9, @@ -373633,6 +375852,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 403,23,451,4,0, 403,23,521,4,0, 403,23,555,4,0, +403,24,98,1,1,,9 +403,24,84,1,5,,14 +403,24,44,1,9,,18 +403,24,422,1,15,,25 +403,24,86,1,21,,31 +403,24,242,1,29,,40 +403,24,528,1,37,,48 +403,24,87,1,47,,59 403,25,33,1,1,1 403,25,43,1,1,2 403,25,84,1,4, @@ -373690,6 +375917,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 403,25,885,4,0, 403,25,46,4,0, 403,25,268,4,0, +403,25,38,4,0, +403,25,527,4,0, 404,8,33,1,1,1 404,8,43,1,1,2 404,8,43,1,5, @@ -374156,6 +376385,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 404,23,451,4,0, 404,23,521,4,0, 404,23,555,4,0, +404,24,98,1,1,,9 +404,24,84,1,5,,14 +404,24,44,1,9,,18 +404,24,422,1,15,,25 +404,24,86,1,21,,31 +404,24,242,1,29,,40 +404,24,528,1,37,,48 +404,24,87,1,47,,59 404,25,33,1,1,1 404,25,43,1,1,2 404,25,84,1,1,3 @@ -374206,6 +376443,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 404,25,885,4,0, 404,25,46,4,0, 404,25,268,4,0, +404,25,38,4,0, +404,25,527,4,0, 405,8,33,1,1,1 405,8,43,1,1,2 405,8,268,1,1,3 @@ -374724,6 +376963,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 405,23,451,4,0, 405,23,521,4,0, 405,23,555,4,0, +405,24,98,1,1,,9 +405,24,84,1,5,,14 +405,24,44,1,9,,18 +405,24,422,1,15,,25 +405,24,86,1,21,,31 +405,24,242,1,29,,40 +405,24,528,1,37,,48 +405,24,87,1,47,,59 405,25,33,1,1,1 405,25,43,1,1,2 405,25,84,1,1,3 @@ -374779,6 +377026,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 405,25,885,4,0, 405,25,46,4,0, 405,25,268,4,0, +405,25,38,4,0, +405,25,916,4,0, +405,25,527,4,0, +405,25,675,4,0, 406,8,71,1,1, 406,8,74,1,4, 406,8,346,1,7, @@ -375294,6 +377545,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 406,23,412,4,0, 406,23,447,4,0, 406,23,605,4,0, +406,24,40,1,1,,10 +406,24,71,1,6,,15 +406,24,77,1,11,,20 +406,24,78,1,18,,28 +406,24,474,1,25,,35 +406,24,398,1,34,,45 +406,24,412,1,43,,54 +406,24,80,1,52,,64 407,8,40,1,1,2 407,8,72,1,1,3 407,8,230,1,1,5 @@ -375754,6 +378013,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 407,23,416,4,0, 407,23,447,4,0, 407,23,605,4,0, +407,24,40,1,1,,10 +407,24,71,1,6,,15 +407,24,77,1,11,,20 +407,24,78,1,18,,28 +407,24,474,1,25,,35 +407,24,398,1,34,,45 +407,24,412,1,43,,54 +407,24,80,1,52,,64 408,8,29,1,1,1 408,8,43,1,1,2 408,8,116,1,6, @@ -376430,6 +378697,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 408,23,444,4,0, 408,23,446,4,0, 408,23,523,4,0, +408,24,33,1,1,,9 +408,24,246,1,5,,14 +408,24,44,1,9,,18 +408,24,157,1,15,,25 +408,24,442,1,21,,31 +408,24,242,1,29,,40 +408,24,38,1,37,,48 +408,24,457,1,47,,59 408,25,29,1,1,1 408,25,43,1,1,2 408,25,116,1,6, @@ -377172,6 +379447,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 409,23,444,4,0, 409,23,446,4,0, 409,23,523,4,0, +409,24,33,1,1,,9 +409,24,246,1,5,,14 +409,24,44,1,9,,18 +409,24,157,1,15,,25 +409,24,442,1,21,,31 +409,24,242,1,29,,40 +409,24,38,1,37,,48 +409,24,457,1,47,,59 409,25,283,1,0, 409,25,29,1,1,1 409,25,43,1,1,2 @@ -377893,6 +380176,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 410,23,444,4,0, 410,23,446,4,0, 410,23,523,4,0, +410,24,33,1,1,,9 +410,24,246,1,5,,14 +410,24,334,1,9,,18 +410,24,157,1,15,,25 +410,24,442,1,21,,31 +410,24,414,1,29,,40 +410,24,446,1,37,,48 +410,24,38,1,47,,59 410,25,33,1,1,1 410,25,182,1,1,2 410,25,269,1,6, @@ -378555,6 +380846,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 411,23,444,4,0, 411,23,446,4,0, 411,23,523,4,0, +411,24,33,1,1,,9 +411,24,246,1,5,,14 +411,24,334,1,9,,18 +411,24,157,1,15,,25 +411,24,442,1,21,,31 +411,24,414,1,29,,40 +411,24,446,1,37,,48 +411,24,38,1,47,,59 411,25,335,1,0, 411,25,33,1,1,1 411,25,182,1,1,2 @@ -378691,6 +380990,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 412,23,450,1,15, 412,23,81,1,20, 412,23,182,4,0, +412,24,522,1,1,,10 413,8,33,1,1, 413,8,182,1,10, 413,8,237,1,20, @@ -379195,6 +381495,20 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 413,23,412,4,0, 413,23,416,4,0, 413,23,447,4,0, +413,24,522,1,1,,10 +413,24,16,1,6,,15 +413,24,93,1,11,,20 +413,24,318,1,18,,28 +413,24,412,1,25,,35 +413,24,94,1,34,,45 +413,24,405,1,43,,54 +413,24,345,3,0,, +413,24,156,3,0,, +413,24,412,3,0,, +413,24,247,3,0,, +413,24,416,3,0,, +413,24,63,3,0,, +413,24,94,3,0,, 414,8,33,1,1, 414,8,182,1,10, 414,8,237,1,20, @@ -379713,6 +382027,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 414,23,412,4,0, 414,23,416,4,0, 414,23,432,4,0, +414,24,522,1,1,,10 +414,24,16,1,6,,15 +414,24,93,1,11,,20 +414,24,318,1,18,,28 +414,24,403,1,25,,35 +414,24,94,1,34,,45 +414,24,405,1,43,,54 415,8,16,1,1,2 415,8,230,1,1,1 415,9,16,1,1,2 @@ -379783,6 +382104,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 415,23,522,1,1,3 415,23,230,1,1,4 415,23,405,4,0, +415,24,16,1,1,,10 +415,24,522,1,6,,15 415,25,16,1,1,1 415,25,230,1,1,2 415,25,450,1,1,3 @@ -379793,6 +382116,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 415,25,851,4,0, 415,25,450,4,0, 415,25,679,4,0, +415,25,283,4,0, +415,25,806,4,0, 416,8,16,1,1,2 416,8,230,1,1,1 416,8,40,1,3, @@ -380369,6 +382694,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 416,23,405,4,0, 416,23,416,4,0, 416,23,432,4,0, +416,24,16,1,1,,10 +416,24,522,1,6,,15 +416,24,42,1,11,,20 +416,24,318,1,18,,27 +416,24,163,1,25,,35 +416,24,403,1,29,,44 +416,24,408,1,34,,45 +416,24,405,1,43,,54 +416,24,105,1,52,,64 416,25,163,1,0, 416,25,230,1,1,1 416,25,522,1,1,2 @@ -380430,6 +382764,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 416,25,450,4,0, 416,25,679,4,0, 416,25,814,4,0, +416,25,283,4,0, +416,25,806,4,0, +416,25,917,4,0, 417,8,45,1,1,1 417,8,117,1,1,2 417,8,98,1,5, @@ -381011,6 +383348,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 417,23,447,4,0, 417,23,451,4,0, 417,23,521,4,0, +417,24,98,1,1,,9 +417,24,84,1,5,,14 +417,24,44,1,9,,18 +417,24,209,1,15,,25 +417,24,608,1,21,,31 +417,24,242,1,29,,40 +417,24,86,1,37,,48 +417,24,87,1,47,,59 417,25,45,1,1,1 417,25,84,1,1,2 417,25,98,1,5, @@ -381082,6 +383427,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 417,25,268,4,0, 417,25,162,4,0, 417,25,253,4,0, +417,25,283,4,0, +417,25,527,4,0, +417,25,914,4,0, 418,8,45,1,1,2 418,8,49,1,1,1 418,8,346,1,1,3 @@ -381650,6 +383998,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 418,23,352,4,0, 418,23,362,4,0, 418,23,503,4,0, +418,24,98,1,1,,10 +418,24,453,1,6,,15 +418,24,129,1,11,,20 +418,24,352,1,18,,28 +418,24,458,1,25,,35 +418,24,401,1,34,,45 +418,24,56,1,43,,54 418,25,33,1,1, 418,25,45,1,4, 418,25,487,1,7, @@ -381712,6 +384067,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 418,25,46,4,0, 418,25,264,4,0, 418,25,812,4,0, +418,25,250,4,0, 419,8,45,1,1,3 419,8,49,1,1,2 419,8,98,1,1,5 @@ -382280,6 +384636,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 419,23,411,4,0, 419,23,416,4,0, 419,23,503,4,0, +419,24,98,1,1,,10 +419,24,453,1,6,,15 +419,24,129,1,11,,20 +419,24,352,1,18,,28 +419,24,458,1,25,,35 +419,24,242,1,30,,41 +419,24,401,1,34,,45 +419,24,56,1,43,,54 419,25,45,1,1,1 419,25,98,1,1,2 419,25,242,1,1,3 @@ -382342,6 +384706,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 419,25,46,4,0, 419,25,264,4,0, 419,25,812,4,0, +419,25,38,4,0, +419,25,250,4,0, +419,25,330,4,0, 420,8,33,1,1, 420,8,74,1,7, 420,8,73,1,10, @@ -382868,6 +385235,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 420,23,412,4,0, 420,23,447,4,0, 420,23,605,4,0, +420,24,71,1,1,,9 +420,24,33,1,5,,14 +420,24,78,1,9,,18 +420,24,577,1,15,,25 +420,24,412,1,21,,31 +420,24,79,1,29,,40 +420,24,38,1,37,,48 +420,24,80,1,47,,59 421,8,33,1,1,1 421,8,74,1,1,2 421,8,74,1,7, @@ -383324,6 +385699,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 421,23,416,4,0, 421,23,447,4,0, 421,23,605,4,0, +421,24,71,1,1,,9 +421,24,33,1,5,,14 +421,24,78,1,9,,18 +421,24,577,1,15,,25 +421,24,412,1,21,,31 +421,24,79,1,29,,40 +421,24,38,1,37,,48 +421,24,80,1,47,,59 422,8,189,1,1, 422,8,300,1,2, 422,8,106,1,4, @@ -383854,6 +386237,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 422,23,352,4,0, 422,23,362,4,0, 422,23,503,4,0, +422,24,189,1,1,,9 +422,24,33,1,5,,14 +422,24,352,1,9,,18 +422,24,246,1,15,,25 +422,24,426,1,21,,31 +422,24,414,1,29,,40 +422,24,105,1,37,,48 +422,24,56,1,47,,59 422,25,55,1,1,1 422,25,189,1,1,2 422,25,106,1,5, @@ -383907,6 +386298,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 422,25,851,4,0, 422,25,883,4,0, 422,25,886,4,0, +422,25,220,4,0, +422,25,250,4,0, +422,25,330,4,0, +422,25,806,4,0, +422,25,174,4,0, 423,8,106,1,1,3 423,8,189,1,1,1 423,8,300,1,1,2 @@ -384468,6 +386864,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 423,23,444,4,0, 423,23,503,4,0, 423,23,523,4,0, +423,24,189,1,1,,9 +423,24,33,1,5,,14 +423,24,352,1,9,,18 +423,24,246,1,15,,25 +423,24,426,1,21,,31 +423,24,414,1,29,,40 +423,24,105,1,37,,48 +423,24,56,1,47,,59 423,25,55,1,1,1 423,25,105,1,1,2 423,25,106,1,1,3 @@ -384520,6 +386924,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 423,25,886,4,0, 423,25,328,4,0, 423,25,311,4,0, +423,25,220,4,0, +423,25,250,4,0, +423,25,330,4,0, +423,25,482,4,0, +423,25,806,4,0, +423,25,174,4,0, 424,8,10,1,1,1 424,8,28,1,1,3 424,8,39,1,1,2 @@ -385181,6 +387591,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 424,23,447,4,0, 424,23,490,4,0, 424,23,526,4,0, +424,24,98,1,1,,10 +424,24,417,1,6,,15 +424,24,129,1,11,,20 +424,24,426,1,18,,28 +424,24,458,1,25,,35 +424,24,231,1,34,,45 +424,24,38,1,43,,54 424,25,10,1,1,1 424,25,28,1,1,2 424,25,39,1,1,3 @@ -385254,6 +387671,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 424,25,851,4,0, 424,25,885,4,0, 424,25,886,4,0, +424,25,38,4,0, +424,25,283,4,0, +424,25,813,4,0, +424,25,675,4,0, +424,25,918,4,0, 425,8,107,1,1,2 425,8,132,1,1,1 425,8,310,1,6, @@ -385952,6 +388374,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 425,23,371,4,0, 425,23,432,4,0, 425,23,451,4,0, +425,24,93,1,1,,9 +425,24,95,1,5,,14 +425,24,310,1,9,,18 +425,24,347,1,15,,25 +425,24,506,1,21,,31 +425,24,595,1,25,,35 +425,24,326,1,29,,40 +425,24,247,1,37,,48 +425,24,120,1,47,,59 425,25,107,1,1,1 425,25,310,1,1,2 425,25,16,1,4, @@ -386014,6 +388445,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 425,25,360,4,0, 425,25,282,4,0, 425,25,311,4,0, +425,25,220,4,0, +425,25,915,4,0, +425,25,174,4,0, 426,8,16,1,1,4 426,8,107,1,1,2 426,8,132,1,1,1 @@ -386687,6 +389121,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 426,23,416,4,0, 426,23,432,4,0, 426,23,451,4,0, +426,24,93,1,1,,9 +426,24,95,1,5,,14 +426,24,310,1,9,,18 +426,24,347,1,15,,25 +426,24,506,1,21,,31 +426,24,595,1,25,,35 +426,24,326,1,29,,40 +426,24,247,1,37,,48 +426,24,120,1,47,,59 426,25,566,1,0, 426,25,310,1,1,1 426,25,668,1,1,2 @@ -386750,6 +389193,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 426,25,360,4,0, 426,25,282,4,0, 426,25,311,4,0, +426,25,220,4,0, +426,25,915,4,0, +426,25,174,4,0, 427,8,1,1,1,2 427,8,111,1,1,3 427,8,150,1,1,1 @@ -387505,6 +389951,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 427,23,451,4,0, 427,23,490,4,0, 427,23,526,4,0, +427,24,98,1,1,,9 +427,24,608,1,5,,14 +427,24,129,1,10,,19 +427,24,577,1,16,,26 +427,24,458,1,23,,33 +427,24,583,1,31,,42 +427,24,38,1,40,,52 428,8,1,1,1,4 428,8,111,1,1,5 428,8,150,1,1,3 @@ -388221,6 +390674,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 428,23,451,4,0, 428,23,490,4,0, 428,23,526,4,0, +428,24,98,1,1,,9 +428,24,183,1,1,,9 +428,24,608,1,5,,14 +428,24,129,1,10,,19 +428,24,577,1,16,,26 +428,24,458,1,23,,33 +428,24,583,1,31,,42 +428,24,38,1,40,,52 +428,24,370,1,40,,52 429,8,45,1,1,3 429,8,149,1,1,4 429,8,180,1,1,5 @@ -388770,6 +391232,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 429,23,433,4,0, 429,23,451,4,0, 429,23,605,4,0, +429,24,425,1,1,,10 +429,24,93,1,6,,15 +429,24,95,1,11,,20 +429,24,506,1,18,,28 +429,24,326,1,25,,35 +429,24,408,1,34,,45 +429,24,247,1,43,,54 429,25,45,1,1,1 429,25,180,1,1,2 429,25,310,1,1,3 @@ -388830,6 +391299,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 429,25,807,4,0, 429,25,809,4,0, 429,25,808,4,0, +429,25,220,4,0, +429,25,244,4,0, +429,25,248,4,0, +429,25,174,4,0, +429,25,917,4,0, 430,8,17,1,1,4 430,8,114,1,1,3 430,8,228,1,1,2 @@ -389362,6 +391836,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 430,23,417,4,0, 430,23,432,4,0, 430,23,555,4,0, +430,24,16,1,1,,10 +430,24,555,1,6,,15 +430,24,355,1,11,,20 +430,24,332,1,18,,28 +430,24,400,1,25,,35 +430,24,403,1,30,,41 +430,24,417,1,34,,45 +430,24,399,1,43,,54 +430,24,413,1,52,,64 430,25,17,1,1,1 430,25,114,1,1,2 430,25,310,1,1,3 @@ -389418,6 +391901,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 430,25,253,4,0, 430,25,814,4,0, 430,25,808,4,0, +430,25,244,4,0, +430,25,38,4,0, +430,25,283,4,0, +430,25,297,4,0, +430,25,917,4,0, 431,8,252,1,1, 431,8,10,1,5, 431,8,45,1,8, @@ -390021,6 +392509,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 431,23,371,4,0, 431,23,421,4,0, 431,23,526,4,0, +431,24,33,1,1,,9 +431,24,95,1,5,,14 +431,24,417,1,10,,19 +431,24,163,1,16,,26 +431,24,400,1,23,,33 +431,24,583,1,31,,42 +431,24,38,1,40,,52 432,8,10,1,1,2 432,8,45,1,1,3 432,8,252,1,1,1 @@ -390608,6 +393103,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 432,23,421,4,0, 432,23,523,4,0, 432,23,526,4,0, +432,24,33,1,1,,9 +432,24,95,1,5,,14 +432,24,417,1,10,,19 +432,24,163,1,16,,26 +432,24,400,1,23,,33 +432,24,583,1,31,,42 +432,24,38,1,40,,52 433,8,35,1,1, 433,8,45,1,6, 433,8,310,1,9, @@ -391181,6 +393683,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 433,23,447,4,0, 433,23,451,4,0, 433,23,605,4,0, +433,24,33,1,1,,10 +433,24,93,1,6,,15 +433,24,466,1,11,,20 +433,24,95,1,18,,28 +433,24,326,1,25,,35 +433,24,105,1,34,,45 +433,24,38,1,43,,54 433,25,35,1,1, 433,25,45,1,4, 433,25,310,1,7, @@ -391230,6 +393739,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 433,25,500,4,0, 433,25,605,4,0, 433,25,851,4,0, +433,25,244,4,0, +433,25,38,4,0, +433,25,248,4,0, +433,25,174,4,0, +433,25,917,4,0, 434,8,10,1,1,1 434,8,116,1,1,2 434,8,139,1,4, @@ -391903,6 +394417,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 434,23,421,4,0, 434,23,432,4,0, 434,23,555,4,0, +434,24,33,1,1,,10 +434,24,491,1,6,,15 +434,24,139,1,11,,20 +434,24,474,1,18,,28 +434,24,400,1,25,,35 +434,24,398,1,34,,45 +434,24,38,1,43,,54 434,25,10,1,1,1 434,25,139,1,1,2 434,25,364,1,3, @@ -391966,6 +394487,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 434,25,92,4,0, 434,25,282,4,0, 434,25,808,4,0, +434,25,38,4,0, +434,25,915,4,0, +434,25,482,4,0, +434,25,675,4,0, 435,8,10,1,1,1 435,8,116,1,1,2 435,8,139,1,1,3 @@ -392591,6 +395116,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 435,23,421,4,0, 435,23,432,4,0, 435,23,555,4,0, +435,24,33,1,1,,10 +435,24,491,1,6,,15 +435,24,139,1,11,,20 +435,24,474,1,18,,28 +435,24,400,1,25,,35 +435,24,398,1,34,,45 +435,24,53,1,34,,45 +435,24,38,1,43,,54 435,25,53,1,0, 435,25,10,1,1,1 435,25,108,1,1,2 @@ -392653,6 +395186,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 435,25,162,4,0, 435,25,807,4,0, 435,25,808,4,0, +435,25,38,4,0, +435,25,283,4,0, +435,25,915,4,0, +435,25,482,4,0, +435,25,675,4,0, 436,8,33,1,1,1 436,8,93,1,1,2 436,8,95,1,7, @@ -393277,6 +395815,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 436,23,447,4,0, 436,23,451,4,0, 436,23,523,4,0, +436,24,33,1,1,,10 +436,24,93,1,6,,15 +436,24,334,1,11,,20 +436,24,506,1,18,,28 +436,24,95,1,25,,35 +436,24,430,1,34,,45 +436,24,326,1,43,,54 436,25,33,1,1,1 436,25,93,1,1,2 436,25,109,1,4, @@ -393339,6 +395884,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 436,25,861,4,0, 436,25,356,4,0, 436,25,360,4,0, +436,25,244,4,0, +436,25,248,4,0, +436,25,797,4,0, +436,25,319,4,0, 437,8,33,1,1,3 437,8,93,1,1,4 437,8,95,1,1,5 @@ -394088,6 +396637,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 437,23,447,4,0, 437,23,451,4,0, 437,23,523,4,0, +437,24,33,1,1,,10 +437,24,93,1,6,,15 +437,24,334,1,11,,20 +437,24,506,1,18,,28 +437,24,95,1,25,,35 +437,24,430,1,34,,45 +437,24,326,1,43,,54 437,25,335,1,0, 437,25,33,1,1,1 437,25,93,1,1,2 @@ -394158,6 +396714,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 437,25,356,4,0, 437,25,360,4,0, 437,25,311,4,0, +437,25,244,4,0, +437,25,248,4,0, +437,25,797,4,0, +437,25,800,4,0, +437,25,319,4,0, +437,25,912,4,0, +437,25,917,4,0, 438,8,313,1,1,1 438,8,383,1,1,2 438,8,175,1,6, @@ -394726,6 +397289,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 438,23,347,4,0, 438,23,397,4,0, 438,23,446,4,0, +438,24,205,1,1,,9 +438,24,33,1,5,,14 +438,24,446,1,9,,18 +438,24,157,1,15,,25 +438,24,334,1,21,,31 +438,24,102,1,29,, +438,24,38,1,37,,48 +438,24,457,1,47,,59 438,25,313,1,1,1 438,25,383,1,1,2 438,25,175,1,4, @@ -394781,6 +397352,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 438,25,885,4,0, 438,25,328,4,0, 438,25,479,4,0, +438,25,244,4,0, +438,25,38,4,0, +438,25,174,4,0, 439,8,93,1,1,3 439,8,112,1,1,2 439,8,321,1,1,1 @@ -395631,6 +398205,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 439,23,447,4,0, 439,23,451,4,0, 439,23,605,4,0, +439,24,93,1,1,,10 +439,24,95,1,6,,15 +439,24,334,1,11,,20 +439,24,428,1,18,,28 +439,24,102,1,25,, +439,24,94,1,34,,45 +439,24,347,1,43,,54 440,8,1,1,1,1 440,8,204,1,1,2 440,8,383,1,5, @@ -396223,6 +398804,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 440,23,409,4,0, 440,23,447,4,0, 440,23,526,4,0, +440,24,33,1,1,,10 +440,24,584,1,6,,15 +440,24,608,1,11,,20 +440,24,577,1,18,,28 +440,24,347,1,25,,35 +440,24,135,1,34,,45 +440,24,38,1,43,,54 440,25,1,1,1,1 440,25,383,1,1,2 440,25,111,1,4, @@ -396798,6 +399386,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 441,23,417,4,0, 441,23,432,4,0, 441,23,526,4,0, +441,24,16,1,1,,10 +441,24,129,1,6,,15 +441,24,314,1,11,,20 +441,24,355,1,18,,28 +441,24,403,1,25,,35 +441,24,102,1,30,, +441,24,417,1,34,,45 +441,24,583,1,43,,54 +441,24,542,1,52,,64 442,8,109,1,1,3 442,8,174,1,1,1 442,8,180,1,1,4 @@ -397456,6 +400053,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 442,23,416,4,0, 442,23,417,4,0, 442,23,555,4,0, +442,24,425,1,1,,10 +442,24,95,1,6,,15 +442,24,506,1,11,,20 +442,24,417,1,18,,28 +442,24,326,1,25,,35 +442,24,399,1,34,,45 +442,24,247,1,43,,54 442,25,101,1,1,1 442,25,109,1,1,2 442,25,425,1,5, @@ -397517,6 +400121,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 442,25,807,4,0, 442,25,809,4,0, 442,25,808,4,0, +442,25,220,4,0, +442,25,174,4,0, 443,8,33,1,1, 443,8,28,1,3, 443,8,82,1,7, @@ -398168,6 +400774,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 443,23,444,4,0, 443,23,446,4,0, 443,23,523,4,0, +443,24,33,1,1,,9 +443,24,239,1,5,,14 +443,24,523,1,9,,18 +443,24,163,1,15,,25 +443,24,337,1,21,,31 +443,24,414,1,29,,40 +443,24,38,1,37,,48 +443,24,200,1,47,,59 443,25,33,1,1,1 443,25,328,1,1,2 443,25,28,1,6, @@ -398224,6 +400838,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 443,25,851,4,0, 443,25,328,4,0, 443,25,799,4,0, +443,25,38,4,0, +443,25,815,4,0, +443,25,913,4,0, 444,8,28,1,1,2 444,8,33,1,1,1 444,8,28,1,3, @@ -398779,6 +401396,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 444,23,444,4,0, 444,23,446,4,0, 444,23,523,4,0, +444,24,33,1,1,,9 +444,24,239,1,5,,14 +444,24,523,1,9,,18 +444,24,163,1,15,,25 +444,24,337,1,21,,31 +444,24,414,1,29,,40 +444,24,38,1,37,,48 +444,24,200,1,47,,59 444,25,28,1,1,1 444,25,33,1,1,2 444,25,225,1,1,3 @@ -398834,6 +401459,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 444,25,851,4,0, 444,25,328,4,0, 444,25,799,4,0, +444,25,38,4,0, +444,25,815,4,0, +444,25,784,4,0, +444,25,913,4,0, 445,8,28,1,1,3 445,8,33,1,1,2 445,8,82,1,1,4 @@ -399536,6 +402165,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 445,23,444,4,0, 445,23,446,4,0, 445,23,523,4,0, +445,24,33,1,1,,9 +445,24,239,1,5,,14 +445,24,523,1,9,,18 +445,24,163,1,15,,25 +445,24,337,1,21,,31 +445,24,414,1,29,,40 +445,24,38,1,37,,48 +445,24,200,1,47,,59 445,25,242,1,0, 445,25,28,1,1,1 445,25,33,1,1,2 @@ -399601,6 +402238,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 445,25,851,4,0, 445,25,328,4,0, 445,25,799,4,0, +445,25,38,4,0, +445,25,815,4,0, +445,25,784,4,0, +445,25,913,4,0, 446,8,33,1,1,3 446,8,118,1,1,1 446,8,316,1,1,2 @@ -400416,6 +403057,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 446,23,431,4,0, 446,23,523,4,0, 446,23,526,4,0, +446,24,205,1,1,,9 +446,24,33,1,5,,14 +446,24,156,1,9,,18 +446,24,523,1,15,,25 +446,24,44,1,21,,31 +446,24,428,1,29,,40 +446,24,667,1,37,,48 +446,24,38,1,46,,58 +446,24,416,1,57,,71 446,25,33,1,1,1 446,25,122,1,1,2 446,25,111,1,4, @@ -400486,6 +403136,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 446,25,851,4,0, 446,25,885,4,0, 446,25,886,4,0, +446,25,38,4,0, +446,25,174,4,0, 447,8,98,1,1,1 447,8,193,1,1,2 447,8,203,1,1,3 @@ -401218,6 +403870,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 447,23,490,4,0, 447,23,523,4,0, 447,23,526,4,0, +447,24,249,1,1,,9 +447,24,418,1,5,,14 +447,24,44,1,9,,18 +447,24,334,1,15,,25 +447,24,396,1,21,,31 +447,24,242,1,29,,40 +447,24,339,1,37,,48 +447,24,370,1,47,,59 447,25,98,1,1,1 447,25,203,1,1,2 447,25,364,1,4, @@ -401281,6 +403941,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 447,25,885,4,0, 447,25,410,4,0, 447,25,264,4,0, +447,25,244,4,0, +447,25,811,4,0, +447,25,918,4,0, 448,8,98,1,1,2 448,8,193,1,1,3 448,8,197,1,1,4 @@ -402077,6 +404740,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 448,23,490,4,0, 448,23,523,4,0, 448,23,526,4,0, +448,24,249,1,1,,9 +448,24,418,1,5,,14 +448,24,44,1,9,,18 +448,24,334,1,15,,25 +448,24,183,1,19,,29 +448,24,396,1,21,,31 +448,24,242,1,29,,40 +448,24,339,1,37,,48 +448,24,406,1,40,,51 +448,24,370,1,47,,59 448,25,396,1,0, 448,25,383,1,1,1 448,25,364,1,1,2 @@ -402160,6 +404833,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 448,25,46,4,0, 448,25,410,4,0, 448,25,264,4,0, +448,25,244,4,0, +448,25,811,4,0, +448,25,319,4,0, +448,25,918,4,0, 449,8,28,1,1,2 449,8,33,1,1,1 449,8,44,1,7, @@ -402681,6 +405358,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 449,23,352,4,0, 449,23,446,4,0, 449,23,523,4,0, +449,24,33,1,1,,10 +449,24,156,1,6,,15 +449,24,44,1,11,,20 +449,24,426,1,18,,28 +449,24,242,1,25,,35 +449,24,667,1,34,,45 +449,24,38,1,43,,54 449,25,28,1,1,1 449,25,33,1,1,2 449,25,44,1,4, @@ -402733,6 +405417,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 449,25,46,4,0, 449,25,328,4,0, 449,25,667,4,0, +449,25,38,4,0, +449,25,330,4,0, +449,25,815,4,0, +449,25,174,4,0, 450,8,28,1,1,5 450,8,33,1,1,4 450,8,44,1,1,6 @@ -403253,6 +405941,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 450,23,444,4,0, 450,23,446,4,0, 450,23,523,4,0, +450,24,33,1,1,,10 +450,24,156,1,6,,15 +450,24,44,1,11,,20 +450,24,426,1,18,,28 +450,24,242,1,25,,35 +450,24,667,1,34,,45 +450,24,38,1,43,,54 450,25,424,1,1,1 450,25,422,1,1,2 450,25,281,1,1,3 @@ -403308,6 +406003,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 450,25,46,4,0, 450,25,328,4,0, 450,25,667,4,0, +450,25,38,4,0, +450,25,330,4,0, +450,25,815,4,0, +450,25,174,4,0, +450,25,912,4,0, 451,8,40,1,1,2 451,8,44,1,1,1 451,8,43,1,6, @@ -404024,6 +406724,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 451,23,399,4,0, 451,23,404,4,0, 451,23,405,4,0, +451,24,40,1,1,,10 +451,24,44,1,6,,15 +451,24,474,1,11,,20 +451,24,440,1,18,,28 +451,24,14,1,25,,35 +451,24,404,1,34,,45 +451,24,242,1,43,,54 452,8,40,1,1,5 452,8,42,1,1,7 452,8,43,1,1,6 @@ -404766,6 +407473,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 452,23,431,4,0, 452,23,523,4,0, 452,23,555,4,0, +452,24,40,1,1,,10 +452,24,44,1,6,,15 +452,24,474,1,11,,20 +452,24,440,1,18,,28 +452,24,14,1,25,,35 +452,24,404,1,34,,45 +452,24,242,1,43,,54 453,8,310,1,1, 453,8,189,1,3, 453,8,40,1,8, @@ -405606,6 +408320,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 453,23,490,4,0, 453,23,523,4,0, 453,23,526,4,0, +453,24,40,1,1,,9 +453,24,249,1,5,,14 +453,24,426,1,9,,18 +453,24,474,1,15,,25 +453,24,417,1,21,,31 +453,24,398,1,29,,40 +453,24,414,1,37,,48 +453,24,370,1,47,,59 453,25,40,1,1,1 453,25,189,1,1,2 453,25,310,1,4, @@ -405682,6 +408404,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 453,25,410,4,0, 453,25,264,4,0, 453,25,808,4,0, +453,25,811,4,0, +453,25,482,4,0, +453,25,918,4,0, 454,8,40,1,1,3 454,8,189,1,1,2 454,8,310,1,1,1 @@ -406455,6 +409180,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 454,23,490,4,0, 454,23,523,4,0, 454,23,526,4,0, +454,24,40,1,1,,9 +454,24,249,1,5,,14 +454,24,426,1,9,,18 +454,24,474,1,15,,25 +454,24,417,1,21,,31 +454,24,398,1,29,,40 +454,24,414,1,37,,48 +454,24,370,1,47,,59 454,25,40,1,1,1 454,25,189,1,1,2 454,25,269,1,1,3 @@ -406528,6 +409261,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 454,25,410,4,0, 454,25,264,4,0, 454,25,808,4,0, +454,25,811,4,0, +454,25,482,4,0, +454,25,675,4,0, +454,25,918,4,0, 455,8,20,1,1,1 455,8,74,1,1,2 455,8,44,1,7, @@ -407092,6 +409829,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 455,23,412,4,0, 455,23,416,4,0, 455,23,447,4,0, +455,24,71,1,1,,10 +455,24,491,1,6,,15 +455,24,44,1,11,,20 +455,24,78,1,18,,28 +455,24,242,1,25,,35 +455,24,79,1,34,,45 +455,24,412,1,43,,54 456,8,1,1,1, 456,8,55,1,6, 456,8,213,1,10, @@ -407646,6 +410390,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 456,23,371,4,0, 456,23,432,4,0, 456,23,503,4,0, +456,24,145,1,1,,10 +456,24,16,1,6,,15 +456,24,352,1,11,,20 +456,24,318,1,18,,28 +456,24,403,1,25,,35 +456,24,355,1,34,,45 +456,24,56,1,43,,54 456,25,1,1,1, 456,25,55,1,6, 456,25,240,1,13, @@ -407697,6 +410448,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 456,25,851,4,0, 456,25,886,4,0, 456,25,812,4,0, +456,25,244,4,0, +456,25,250,4,0, +456,25,914,4,0, 457,8,1,1,1,1 457,8,55,1,1,2 457,8,213,1,1,3 @@ -408196,6 +410950,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 457,23,416,4,0, 457,23,432,4,0, 457,23,503,4,0, +457,24,145,1,1,,10 +457,24,16,1,6,,15 +457,24,352,1,11,,20 +457,24,318,1,18,,28 +457,24,403,1,25,,35 +457,24,355,1,34,,45 +457,24,56,1,43,,54 457,25,1,1,1,1 457,25,16,1,1,2 457,25,55,1,1,3 @@ -408243,6 +411004,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 457,25,851,4,0, 457,25,886,4,0, 457,25,812,4,0, +457,25,244,4,0, +457,25,250,4,0, +457,25,914,4,0, 458,8,33,1,1,1 458,8,145,1,1,2 458,8,48,1,4, @@ -408834,6 +411598,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 458,23,352,4,0, 458,23,503,4,0, 458,23,523,4,0, +458,24,33,1,1,,9 +458,24,145,1,5,,14 +458,24,332,1,9,,18 +458,24,352,1,15,,25 +458,24,403,1,21,,31 +458,24,355,1,29,,40 +458,24,56,1,37,,48 +458,24,38,1,47,,59 459,8,43,1,1,2 459,8,181,1,1,1 459,8,75,1,5, @@ -409425,6 +412197,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 459,23,412,4,0, 459,23,419,4,0, 459,23,447,4,0, +459,24,181,1,1,,10 +459,24,670,1,6,,15 +459,24,420,1,11,,20 +459,24,556,1,18,,28 +459,24,412,1,25,,35 +459,24,59,1,34,,45 +459,24,452,1,43,,54 459,25,43,1,1,1 459,25,181,1,1,2 459,25,670,1,5, @@ -409476,6 +412255,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 459,25,333,4,0, 459,25,311,4,0, 459,25,803,4,0, +459,25,38,4,0, +459,25,174,4,0, 460,8,8,1,1,1 460,8,43,1,1,3 460,8,75,1,1,4 @@ -410137,6 +412918,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 460,23,431,4,0, 460,23,447,4,0, 460,23,523,4,0, +460,24,181,1,1,,10 +460,24,670,1,6,,15 +460,24,420,1,11,,20 +460,24,556,1,18,,28 +460,24,412,1,25,,35 +460,24,59,1,34,,45 +460,24,452,1,43,,54 460,25,8,1,0, 460,25,43,1,1,1 460,25,54,1,1,2 @@ -410201,6 +412989,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 460,25,264,4,0, 460,25,311,4,0, 460,25,803,4,0, +460,25,38,4,0, +460,25,174,4,0, +460,25,912,4,0, 461,8,10,1,1,4 461,8,43,1,1,5 461,8,98,1,1,7 @@ -411002,6 +413793,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 461,23,421,4,0, 461,23,490,4,0, 461,23,555,4,0, +461,24,98,1,1,,10 +461,24,420,1,6,,15 +461,24,129,1,11,,20 +461,24,163,1,18,,28 +461,24,398,1,25,,35 +461,24,14,1,34,,45 +461,24,400,1,38,,49 +461,24,59,1,43,,54 461,25,10,1,1,1 461,25,43,1,1,2 461,25,97,1,1,3 @@ -411076,6 +413875,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 461,25,333,4,0, 461,25,264,4,0, 461,25,808,4,0, +461,25,813,4,0, +461,25,675,4,0, +461,25,918,4,0, 462,8,33,1,1,4 462,8,48,1,1,6 462,8,84,1,1,5 @@ -411690,6 +414492,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 462,23,430,4,0, 462,23,451,4,0, 462,23,521,4,0, +462,24,84,1,1,,10 +462,24,33,1,6,,15 +462,24,86,1,11,,20 +462,24,209,1,18,,28 +462,24,430,1,25,,35 +462,24,161,1,25,,35 +462,24,85,1,34,,45 +462,24,87,1,43,,54 462,25,604,1,1,1 462,25,243,1,1,2 462,25,602,1,1,3 @@ -411746,6 +414556,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 462,25,268,4,0, 462,25,356,4,0, 462,25,360,4,0, +462,25,38,4,0, +462,25,916,4,0, +462,25,527,4,0, +462,25,319,4,0, +462,25,912,4,0, 463,8,122,1,1, 463,8,48,1,5, 463,8,111,1,9, @@ -412521,6 +415336,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 463,23,431,4,0, 463,23,523,4,0, 463,23,526,4,0, +463,24,33,1,1,,10 +463,24,156,1,6,,15 +463,24,523,1,11,,20 +463,24,428,1,18,,28 +463,24,38,1,25,,35 +463,24,205,1,34,,45 +463,24,416,1,43,,54 464,8,23,1,1,4 464,8,30,1,1,2 464,8,31,1,1,5 @@ -413395,6 +416217,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 464,23,444,4,0, 464,23,446,4,0, 464,23,523,4,0, +464,24,33,1,1,,10 +464,24,523,1,6,,15 +464,24,249,1,11,,20 +464,24,446,1,18,,28 +464,24,157,1,25,,35 +464,24,667,1,34,,45 +464,24,38,1,43,,54 +464,24,416,1,52,,64 464,25,33,1,1,1 464,25,39,1,1,2 464,25,359,1,1,3 @@ -414192,6 +417022,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 465,23,416,4,0, 465,23,447,4,0, 465,23,523,4,0, +465,24,71,1,1,,10 +465,24,78,1,6,,15 +465,24,77,1,11,,20 +465,24,491,1,15,,24 +465,24,458,1,18,,28 +465,24,412,1,25,,35 +465,24,246,1,34,,45 +465,24,79,1,43,,54 +465,24,188,1,52,,64 466,8,7,1,1,1 466,8,43,1,1,3 466,8,67,1,1,5 @@ -414907,6 +417746,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 466,23,490,4,0, 466,23,521,4,0, 466,23,523,4,0, +466,24,84,1,1,,10 +466,24,98,1,6,,15 +466,24,209,1,11,,20 +466,24,86,1,18,,28 +466,24,9,1,25,,35 +466,24,85,1,34,,45 +466,24,87,1,43,,54 466,25,43,1,1,1 466,25,84,1,1,2 466,25,98,1,1,3 @@ -415645,6 +418491,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 467,23,431,4,0, 467,23,490,4,0, 467,23,523,4,0, +467,24,52,1,1,,10 +467,24,33,1,6,,15 +467,24,172,1,11,,20 +467,24,139,1,18,,28 +467,24,7,1,25,,35 +467,24,53,1,34,,45 +467,24,126,1,43,,54 467,25,43,1,1,1 467,25,52,1,1,2 467,25,108,1,1,3 @@ -416386,6 +419239,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 468,23,447,4,0, 468,23,526,4,0, 468,23,605,4,0, +468,24,33,1,1,,10 +468,24,584,1,6,,15 +468,24,577,1,11,,20 +468,24,314,1,11,,20 +468,24,347,1,18,,28 +468,24,608,1,25,,35 +468,24,403,1,25,,35 +468,24,326,1,34,,45 +468,24,585,1,43,,54 469,8,33,1,1,3 469,8,98,1,1,5 469,8,104,1,1,6 @@ -416929,6 +419791,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 469,23,405,4,0, 469,23,416,4,0, 469,23,432,4,0, +469,24,98,1,1,,10 +469,24,16,1,6,,15 +469,24,318,1,11,,20 +469,24,95,1,18,,28 +469,24,403,1,25,,35 +469,24,246,1,34,,45 +469,24,242,1,43,,54 +469,24,405,1,43,,54 469,25,33,1,1,1 469,25,104,1,1,2 469,25,400,1,1,3 @@ -416981,6 +419851,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 469,25,814,4,0, 469,25,851,4,0, 469,25,884,4,0, +469,25,244,4,0, +469,25,38,4,0, +469,25,806,4,0, +469,25,917,4,0, 470,8,33,1,1,1 470,8,39,1,1,2 470,8,270,1,1,3 @@ -417582,6 +420456,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 470,23,416,4,0, 470,23,447,4,0, 470,23,526,4,0, +470,24,670,1,0,,15 +470,24,33,1,1,,10 +470,24,98,1,6,,15 +470,24,129,1,11,,20 +470,24,608,1,18,,28 +470,24,102,1,25,, +470,24,348,1,25,,35 +470,24,347,1,34,,45 +470,24,38,1,43,,54 470,25,75,1,0, 470,25,129,1,1,1 470,25,33,1,1,2 @@ -417648,6 +420531,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 470,25,669,4,0, 470,25,311,4,0, 470,25,803,4,0, +470,25,38,4,0, +470,25,174,4,0, +470,25,914,4,0, 471,8,33,1,1,1 471,8,39,1,1,2 471,8,270,1,1,3 @@ -418201,6 +421087,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 471,23,416,4,0, 471,23,419,4,0, 471,23,526,4,0, +471,24,181,1,0,,15 +471,24,33,1,1,,10 +471,24,98,1,6,,15 +471,24,129,1,11,,20 +471,24,608,1,18,,28 +471,24,102,1,25,, +471,24,58,1,25,,35 +471,24,347,1,34,,45 +471,24,38,1,43,,54 471,25,196,1,0, 471,25,204,1,1,1 471,25,33,1,1,2 @@ -418262,6 +421157,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 471,25,356,4,0, 471,25,333,4,0, 471,25,311,4,0, +471,25,38,4,0, +471,25,813,4,0, +471,25,174,4,0, +471,25,914,4,0, 472,8,28,1,1,5 472,8,106,1,1,6 472,8,282,1,1,7 @@ -418986,6 +421885,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 472,23,444,4,0, 472,23,446,4,0, 472,23,523,4,0, +472,24,40,1,1,,10 +472,24,98,1,6,,15 +472,24,332,1,11,,20 +472,24,426,1,18,,28 +472,24,42,1,20,,30 +472,24,163,1,25,,35 +472,24,14,1,30,,41 +472,24,398,1,34,,45 +472,24,404,1,43,,54 +472,24,414,1,52,,64 472,25,28,1,1,1 472,25,106,1,1,2 472,25,398,1,1,3 @@ -419066,6 +421975,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 472,25,706,4,0, 472,25,814,4,0, 472,25,851,4,0, +472,25,799,4,0, +472,25,38,4,0, +472,25,806,4,0, +472,25,675,4,0, +472,25,784,4,0, 473,8,64,1,1,2 473,8,181,1,1,5 473,8,246,1,1,1 @@ -419687,6 +422601,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 473,23,444,4,0, 473,23,446,4,0, 473,23,523,4,0, +473,24,33,1,1,,10 +473,24,420,1,6,,15 +473,24,523,1,11,,20 +473,24,556,1,18,,28 +473,24,667,1,25,,35 +473,24,246,1,34,,45 +473,24,59,1,43,,54 +473,24,38,1,52,,64 473,25,458,1,0, 473,25,33,1,1,1 473,25,175,1,1,2 @@ -419757,6 +422679,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 473,25,851,4,0, 473,25,883,4,0, 473,25,885,4,0, +473,25,38,4,0, +473,25,283,4,0, +473,25,675,4,0, +473,25,174,4,0, +473,25,912,4,0, 474,8,33,1,1,3 474,8,160,1,1,4 474,8,176,1,1,2 @@ -420416,6 +423343,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 474,23,417,4,0, 474,23,433,4,0, 474,23,451,4,0, +474,24,33,1,1,,9 +474,24,84,1,5,,14 +474,24,86,1,9,,18 +474,24,209,1,15,,25 +474,24,161,1,21,,31 +474,24,85,1,29,,40 +474,24,105,1,37,,48 +474,24,63,1,47,,59 474,25,160,1,1,1 474,25,417,1,1,2 474,25,393,1,1,3 @@ -421486,6 +424421,17 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 475,23,523,4,0, 475,23,526,4,0, 475,23,605,4,0, +475,24,163,1,0,,45 +475,24,93,1,1,,10 +475,24,100,1,6,,15 +475,24,577,1,11,,20 +475,24,95,1,18,,28 +475,24,427,1,18,,28 +475,24,347,1,25,,35 +475,24,14,1,30,,41 +475,24,94,1,34,,45 +475,24,348,1,43,,54 +475,24,370,1,52,,64 475,25,163,1,0, 475,25,400,1,1,1 475,25,286,1,1,2 @@ -421598,6 +424544,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 475,25,410,4,0, 475,25,669,4,0, 475,25,264,4,0, +475,25,220,4,0, +475,25,244,4,0, +475,25,813,4,0, +475,25,811,4,0, +475,25,248,4,0, +475,25,797,4,0, +475,25,675,4,0, +475,25,914,4,0, +475,25,918,4,0, 476,8,33,1,1,3 476,8,334,1,1,4 476,8,335,1,1,6 @@ -422233,6 +425188,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 476,23,521,4,0, 476,23,523,4,0, 476,23,605,4,0, +476,24,33,1,1,,10 +476,24,86,1,6,,15 +476,24,209,1,11,,20 +476,24,334,1,18,,28 +476,24,157,1,25,,35 +476,24,408,1,34,,45 +476,24,161,1,34,,45 +476,24,430,1,38,,49 +476,24,414,1,43,,54 476,25,161,1,0, 476,25,602,1,1,1 476,25,393,1,1,2 @@ -422300,6 +425264,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 476,25,776,4,0, 476,25,796,4,0, 476,25,851,4,0, +476,25,220,4,0, +476,25,38,4,0, +476,25,916,4,0, +476,25,800,4,0, +476,25,319,4,0, +476,25,174,4,0, +476,25,912,4,0, 477,8,7,1,1,1 477,8,8,1,1,2 477,8,9,1,1,3 @@ -423099,6 +426070,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 477,23,433,4,0, 477,23,451,4,0, 477,23,523,4,0, +477,24,71,1,1,,10 +477,24,425,1,6,,15 +477,24,506,1,11,,20 +477,24,141,1,18,,28 +477,24,399,1,25,,35 +477,24,247,1,34,,45 +477,24,94,1,43,,54 477,25,7,1,1,1 477,25,8,1,1,2 477,25,9,1,1,3 @@ -423171,6 +426149,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 477,25,566,4,0, 477,25,809,4,0, 477,25,851,4,0, +477,25,220,4,0, +477,25,244,4,0, +477,25,248,4,0, +477,25,806,4,0, +477,25,174,4,0, +477,25,912,4,0, 478,8,43,1,1,2 478,8,104,1,1,3 478,8,181,1,1,1 @@ -423841,6 +426825,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 478,23,374,4,0, 478,23,416,4,0, 478,23,419,4,0, +478,24,181,1,1,,10 +478,24,420,1,6,,15 +478,24,44,1,11,,20 +478,24,506,1,18,,28 +478,24,423,1,18,,28 +478,24,242,1,25,,35 +478,24,247,1,25,,35 +478,24,556,1,34,,45 +478,24,59,1,43,,54 478,25,506,1,0, 478,25,242,1,1,1 478,25,423,1,1,2 @@ -423911,6 +426904,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 478,25,333,4,0, 478,25,311,4,0, 478,25,809,4,0, +478,25,220,4,0, +478,25,244,4,0, +478,25,813,4,0, +478,25,174,4,0, 479,8,84,1,1,4 479,8,86,1,1,3 479,8,109,1,1,5 @@ -424450,6 +427447,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 479,23,417,4,0, 479,23,451,4,0, 479,23,521,4,0, +479,24,84,1,1,,10 +479,24,451,1,6,,15 +479,24,506,1,11,,20 +479,24,86,1,18,,28 +479,24,247,1,25,,35 +479,24,85,1,34,,45 +479,24,87,1,43,,54 479,25,104,1,1,1 479,25,310,1,1,2 479,25,84,1,5, @@ -424500,6 +427504,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 479,25,180,4,0, 479,25,253,4,0, 479,25,809,4,0, +479,25,220,4,0, +479,25,527,4,0, 480,8,156,1,1, 480,8,286,1,6, 480,8,203,1,16, @@ -425213,6 +428219,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 480,23,447,4,0, 480,23,451,4,0, 480,23,605,4,0, +480,24,93,1,1,,12 +480,24,129,1,6,,17 +480,24,458,1,12,,23 +480,24,156,1,19,,31 +480,24,326,1,27,,39 +480,24,161,1,32,,44 +480,24,347,1,36,,49 +480,24,832,1,46,,59 +480,24,95,1,57,,71 480,25,93,1,1,1 480,25,156,1,1,2 480,25,129,1,7, @@ -425283,6 +428298,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 480,25,605,4,0, 480,25,851,4,0, 480,25,282,4,0, +480,25,220,4,0, +480,25,244,4,0, +480,25,248,4,0, +480,25,797,4,0, +480,25,917,4,0, 481,8,156,1,1, 481,8,286,1,6, 481,8,182,1,16, @@ -425991,6 +429011,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 481,23,447,4,0, 481,23,451,4,0, 481,23,605,4,0, +481,24,93,1,1,,12 +481,24,129,1,6,,17 +481,24,458,1,12,,23 +481,24,156,1,19,,31 +481,24,326,1,27,,39 +481,24,161,1,32,,44 +481,24,347,1,36,,49 +481,24,832,1,46,,59 +481,24,105,1,57,,71 481,25,93,1,1,1 481,25,156,1,1,2 481,25,129,1,7, @@ -426059,6 +429088,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 481,25,605,4,0, 481,25,851,4,0, 481,25,282,4,0, +481,25,220,4,0, +481,25,244,4,0, +481,25,38,4,0, +481,25,248,4,0, +481,25,797,4,0, +481,25,917,4,0, 482,8,156,1,1, 482,8,286,1,6, 482,8,197,1,16, @@ -426821,6 +429856,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 482,23,447,4,0, 482,23,451,4,0, 482,23,605,4,0, +482,24,93,1,1,,12 +482,24,129,1,6,,17 +482,24,458,1,12,,23 +482,24,156,1,19,,31 +482,24,326,1,27,,39 +482,24,161,1,32,,44 +482,24,417,1,36,,49 +482,24,832,1,46,,59 +482,24,120,1,57,,71 482,25,93,1,1,1 482,25,156,1,1,2 482,25,129,1,7, @@ -426890,6 +429934,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 482,25,851,4,0, 482,25,282,4,0, 482,25,253,4,0, +482,25,244,4,0, +482,25,38,4,0, +482,25,283,4,0, +482,25,248,4,0, +482,25,797,4,0, 483,8,184,1,1,2 483,8,225,1,1,1 483,8,232,1,10, @@ -427622,6 +430671,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 483,23,444,4,0, 483,23,446,4,0, 483,23,523,4,0, +483,24,239,1,1,,12 +483,24,246,1,6,,17 +483,24,163,1,12,,23 +483,24,337,1,19,,31 +483,24,408,1,27,,39 +483,24,406,1,36,,48 +483,24,414,1,42,,54 +483,24,231,1,47,,59 +483,24,430,1,55,,68 +483,24,459,1,60,,74 483,25,184,1,1,1 483,25,232,1,1,2 483,25,225,1,8, @@ -427691,6 +430750,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 483,25,46,4,0, 483,25,356,4,0, 483,25,799,4,0, +483,25,244,4,0, +483,25,784,4,0, +483,25,319,4,0, 484,8,184,1,1,2 484,8,225,1,1,1 484,8,352,1,10, @@ -428442,6 +431504,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 484,23,433,4,0, 484,23,444,4,0, 484,23,523,4,0, +484,24,239,1,1,,12 +484,24,246,1,6,,17 +484,24,163,1,12,,23 +484,24,337,1,19,,31 +484,24,408,1,27,,39 +484,24,406,1,36,,48 +484,24,414,1,42,,54 +484,24,401,1,47,,59 +484,24,56,1,55,,68 +484,24,460,1,60,,74 484,25,184,1,1,1 484,25,352,1,1,2 484,25,225,1,8, @@ -428515,6 +431587,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 484,25,356,4,0, 484,25,814,4,0, 484,25,799,4,0, +484,25,244,4,0, +484,25,250,4,0, +484,25,784,4,0, 485,8,246,1,1, 485,8,43,1,9, 485,8,424,1,17, @@ -429159,6 +432234,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 485,23,444,4,0, 485,23,446,4,0, 485,23,523,4,0, +485,24,52,1,1,,12 +485,24,334,1,6,,17 +485,24,246,1,12,,23 +485,24,424,1,19,,31 +485,24,442,1,27,,39 +485,24,242,1,36,,49 +485,24,414,1,46,,59 +485,24,463,1,57,,71 485,25,43,1,1,1 485,25,83,1,1,2 485,25,232,1,6, @@ -429223,6 +432306,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 485,25,679,4,0, 485,25,535,4,0, 485,25,807,4,0, +485,25,815,4,0, +485,25,319,4,0, +485,25,912,4,0, 486,8,5,1,1,4 486,8,7,1,1,1 486,8,8,1,1,2 @@ -429848,6 +432934,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 486,23,431,4,0, 486,23,444,4,0, 486,23,523,4,0, +486,24,33,1,1,,12 +486,24,249,1,6,,17 +486,24,523,1,12,,23 +486,24,246,1,19,,31 +486,24,428,1,27,,39 +486,24,442,1,36,,49 +486,24,462,1,46,,59 +486,24,416,1,57,,71 486,25,1,1,1,1 486,25,109,1,1,2 486,25,371,1,6, @@ -430693,6 +433787,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 487,25,356,4,0, 487,25,814,4,0, 487,25,809,4,0, +487,25,220,4,0, +487,25,806,4,0, +487,25,784,4,0, +487,25,174,4,0, 488,8,93,1,1,1 488,8,104,1,1,2 488,8,219,1,11, @@ -431298,6 +434396,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 488,23,433,4,0, 488,23,447,4,0, 488,23,451,4,0, +488,24,33,1,1,,12 +488,24,93,1,6,,17 +488,24,163,1,12,,23 +488,24,427,1,19,,31 +488,24,105,1,27,,39 +488,24,94,1,36,,49 +488,24,585,1,46,,59 +488,24,849,1,57,,71 488,25,93,1,1,1 488,25,104,1,1,2 488,25,54,1,6, @@ -431355,6 +434461,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 488,25,678,4,0, 488,25,851,4,0, 488,25,356,4,0, +488,25,244,4,0, +488,25,248,4,0, +488,25,797,4,0, 489,8,145,1,1,1 489,8,346,1,1,2 489,8,204,1,9, @@ -431749,11 +434858,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 489,18,503,4,0, 489,18,590,4,0, 489,18,605,4,0, -489,25,114,4,0, -489,25,282,4,0, -489,25,503,4,0, -489,25,311,4,0, -489,25,812,4,0, +489,24,145,1,1,,12 +489,24,93,1,6,,17 +489,24,352,1,12,,23 +489,24,151,1,19,,31 +489,24,428,1,27,,39 +489,24,585,1,36,,49 +489,24,850,1,46,,59 +489,24,56,1,57,,71 489,25,55,1,1, 489,25,204,1,9, 489,25,48,1,16, @@ -431765,6 +434877,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 489,25,291,1,61, 489,25,240,1,69, 489,25,850,1,75, +489,25,114,4,0, +489,25,282,4,0, +489,25,503,4,0, +489,25,311,4,0, +489,25,812,4,0, 489,25,56,4,0, 489,25,57,4,0, 489,25,58,4,0, @@ -432337,11 +435454,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 490,23,447,4,0, 490,23,503,4,0, 490,23,605,4,0, -490,25,114,4,0, -490,25,282,4,0, -490,25,503,4,0, -490,25,311,4,0, -490,25,812,4,0, +490,24,145,1,1,,12 +490,24,93,1,6,,17 +490,24,352,1,12,,23 +490,24,151,1,19,,31 +490,24,428,1,27,,39 +490,24,585,1,36,,49 +490,24,850,1,46,,59 +490,24,56,1,57,,71 490,25,55,1,1,1 490,25,294,1,1,2 490,25,391,1,1,3 @@ -432355,6 +435475,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 490,25,291,1,61, 490,25,240,1,69, 490,25,850,1,76, +490,25,114,4,0, +490,25,282,4,0, +490,25,503,4,0, +490,25,311,4,0, +490,25,812,4,0, 490,25,56,4,0, 490,25,57,4,0, 490,25,58,4,0, @@ -433035,11 +436160,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 491,18,496,4,0, 491,18,555,4,0, 491,18,590,4,0, -491,25,114,4,0, -491,25,180,4,0, -491,25,282,4,0, -491,25,264,4,0, -491,25,808,4,0, +491,24,425,1,1,,12 +491,24,95,1,6,,17 +491,24,506,1,12,,23 +491,24,417,1,19,,31 +491,24,399,1,27,,39 +491,24,247,1,36,,49 +491,24,94,1,46,,59 +491,24,464,1,57,,71 491,25,50,1,1, 491,25,98,1,11, 491,25,95,1,20, @@ -433051,6 +436179,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 491,25,417,1,75, 491,25,138,1,84, 491,25,399,1,93, +491,25,114,4,0, +491,25,180,4,0, +491,25,282,4,0, +491,25,264,4,0, +491,25,808,4,0, 491,25,14,4,0, 491,25,58,4,0, 491,25,59,4,0, @@ -433487,7 +436620,28 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 492,18,496,4,0, 492,18,590,4,0, 492,18,605,4,0, -492,25,803,4,0, +492,24,670,1,1,,12 +492,24,98,1,6,,17 +492,24,79,1,12,,23 +492,24,403,1,19,,31 +492,24,105,1,27,,39 +492,24,412,1,36,,49 +492,24,414,1,46,,59 +492,24,465,1,57,,71 +492,24,332,3,0,, +492,24,129,3,0,, +492,24,345,3,0,, +492,24,466,3,0,, +492,24,156,3,0,, +492,24,608,3,0,, +492,24,428,3,0,, +492,24,412,3,0,, +492,24,414,3,0,, +492,24,605,3,0,, +492,24,416,3,0,, +492,24,583,3,0,, +492,24,63,3,0,, +492,24,94,3,0,, 492,25,74,1,1, 492,25,345,1,10, 492,25,73,1,19, @@ -433500,6 +436654,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 492,25,186,1,82, 492,25,361,1,91, 492,25,465,1,100, +492,25,803,4,0, 492,25,14,4,0, 492,25,36,4,0, 492,25,38,4,0, @@ -434450,6 +437605,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 493,18,526,4,0, 493,18,555,4,0, 493,18,590,4,0, +493,24,98,1,1,,12 +493,24,93,1,6,,17 +493,24,246,1,12,,23 +493,24,347,1,19,,31 +493,24,105,1,27,,39 +493,24,326,1,36,,49 +493,24,449,1,46,,59 +493,24,63,1,57,,71 493,25,69,1,1,1 493,25,322,1,1,2 493,25,356,1,10, @@ -434570,6 +437733,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 493,25,886,4,0, 493,25,46,4,0, 493,25,356,4,0, +493,25,244,4,0, +493,25,38,4,0, +493,25,916,4,0, +493,25,815,4,0, +493,25,248,4,0, +493,25,800,4,0, 494,11,93,1,1,3 494,11,98,1,1,5 494,11,116,1,1,2 @@ -438046,6 +441215,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 501,18,503,4,0, 501,18,526,4,0, 501,18,590,4,0, +501,24,33,1,1,,10 +501,24,453,1,6,,15 +501,24,14,1,11,,20 +501,24,352,1,18,,28 +501,24,163,1,25,,35 +501,24,401,1,34,,45 +501,24,56,1,43,,54 501,25,33,1,1, 501,25,39,1,5, 501,25,55,1,7, @@ -438427,6 +441603,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 502,18,503,4,0, 502,18,526,4,0, 502,18,590,4,0, +502,24,33,1,1,,10 +502,24,453,1,6,,15 +502,24,14,1,11,,20 +502,24,352,1,18,,28 +502,24,163,1,25,,35 +502,24,401,1,34,,45 +502,24,56,1,43,,54 502,25,33,1,1,1 502,25,39,1,1,2 502,25,55,1,1,3 @@ -438442,6 +441625,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 502,25,514,1,45, 502,25,14,1,50, 502,25,56,1,53, +502,25,103,2,0, +502,25,197,2,0, +502,25,282,2,0, +502,25,383,2,0, +502,25,400,2,0, +502,25,403,2,0, +502,25,533,2,0, +502,25,895,2,0, 502,25,14,4,0, 502,25,36,4,0, 502,25,56,4,0, @@ -438480,14 +441671,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 502,25,282,4,0, 502,25,410,4,0, 502,25,812,4,0, -502,25,103,2,0, -502,25,197,2,0, -502,25,282,2,0, -502,25,383,2,0, -502,25,400,2,0, -502,25,403,2,0, -502,25,533,2,0, -502,25,895,2,0, 502,25,250,4,0, 503,11,33,1,1,2 503,11,39,1,1,3 @@ -438881,6 +442064,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 503,25,514,1,51, 503,25,14,1,58, 503,25,56,1,63, +503,25,103,2,0, +503,25,197,2,0, +503,25,282,2,0, +503,25,383,2,0, +503,25,400,2,0, +503,25,403,2,0, +503,25,533,2,0, +503,25,895,2,0, 503,25,14,4,0, 503,25,34,4,0, 503,25,36,4,0, @@ -438927,14 +442118,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 503,25,282,4,0, 503,25,410,4,0, 503,25,812,4,0, -503,25,103,2,0, -503,25,197,2,0, -503,25,282,2,0, -503,25,383,2,0, -503,25,400,2,0, -503,25,403,2,0, -503,25,533,2,0, -503,25,895,2,0, 503,25,250,4,0, 503,25,399,4,0, 503,25,555,4,0, @@ -450224,6 +453407,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 532,25,479,4,0, 532,25,490,4,0, 532,25,851,4,0, +532,25,38,4,0, +532,25,811,4,0, +532,25,174,4,0, 533,11,1,1,1,1 533,11,43,1,1,2 533,11,116,1,1,3 @@ -450672,6 +453858,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 533,25,490,4,0, 533,25,667,4,0, 533,25,851,4,0, +533,25,38,4,0, +533,25,811,4,0, +533,25,174,4,0, 534,11,1,1,1,1 534,11,43,1,1,2 534,11,116,1,1,3 @@ -451158,6 +454347,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 534,25,667,4,0, 534,25,707,4,0, 534,25,851,4,0, +534,25,38,4,0, +534,25,811,4,0, +534,25,174,4,0, +534,25,912,4,0, +534,25,918,4,0, 535,11,45,1,1,2 535,11,145,1,1,1 535,11,48,1,5, @@ -453363,6 +456557,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 540,25,851,4,0, 540,25,884,4,0, 540,25,885,4,0, +540,25,527,4,0, +540,25,806,4,0, 541,11,33,1,1,2 541,11,75,1,1,5 541,11,81,1,1,3 @@ -453626,6 +456822,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 541,25,851,4,0, 541,25,884,4,0, 541,25,885,4,0, +541,25,527,4,0, +541,25,806,4,0, 542,11,33,1,1,2 542,11,75,1,1,5 542,11,81,1,1,3 @@ -454045,6 +457243,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 542,25,851,4,0, 542,25,884,4,0, 542,25,885,4,0, +542,25,527,4,0, +542,25,813,4,0, +542,25,806,4,0, +542,25,675,4,0, 543,11,111,1,1,1 543,11,205,1,1,2 543,11,40,1,5, @@ -456222,6 +459424,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 548,20,447,4,0, 548,20,496,4,0, 548,20,676,4,0, +548,24,71,1,1,,9 +548,24,670,1,5,,14 +548,24,78,1,9,,18 +548,24,77,1,15,,25 +548,24,412,1,21,,31 +548,24,79,1,29,,40 +548,24,105,1,37,,48 +548,24,437,1,47,,59 548,25,71,1,1,1 548,25,74,1,1,2 548,25,270,1,3, @@ -456595,6 +459805,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 549,25,669,4,0, 549,25,311,4,0, 549,25,803,4,0, +549,25,244,4,0, +549,25,572,4,0, +549,25,914,4,0, 550,11,33,1,1,1 550,11,55,1,1,2 550,11,253,1,4, @@ -457020,6 +460233,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 550,25,886,4,0, 550,25,812,4,0, 550,25,799,4,0, +550,25,38,4,0, +550,25,283,4,0, +550,25,250,4,0, +550,25,330,4,0, 551,11,43,1,1,1 551,11,99,1,1,2 551,11,44,1,4, @@ -457523,6 +460740,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 551,25,328,4,0, 551,25,180,4,0, 551,25,808,4,0, +551,25,38,4,0, +551,25,815,4,0, +551,25,806,4,0, +551,25,174,4,0, 552,11,28,1,1,4 552,11,43,1,1,1 552,11,44,1,1,3 @@ -458033,6 +461254,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 552,25,264,4,0, 552,25,808,4,0, 552,25,799,4,0, +552,25,38,4,0, +552,25,283,4,0, +552,25,815,4,0, +552,25,806,4,0, +552,25,784,4,0, +552,25,174,4,0, 553,11,28,1,1,4 553,11,43,1,1,1 553,11,44,1,1,3 @@ -458635,6 +461862,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 553,25,264,4,0, 553,25,808,4,0, 553,25,799,4,0, +553,25,38,4,0, +553,25,283,4,0, +553,25,815,4,0, +553,25,806,4,0, +553,25,675,4,0, +553,25,784,4,0, +553,25,174,4,0, 554,11,33,1,1, 554,11,205,1,3, 554,11,510,1,6, @@ -466322,6 +469556,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 570,25,282,4,0, 570,25,807,4,0, 570,25,808,4,0, +570,25,220,4,0, +570,25,244,4,0, +570,25,806,4,0, 571,11,10,1,1,2 571,11,43,1,1,3 571,11,228,1,1,4 @@ -466874,6 +470111,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 571,25,282,4,0, 571,25,807,4,0, 571,25,808,4,0, +571,25,220,4,0, +571,25,244,4,0, +571,25,806,4,0, +571,25,675,4,0, 572,11,1,1,1, 572,11,45,1,3, 572,11,270,1,7, @@ -468287,6 +471528,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 574,25,678,4,0, 574,25,851,4,0, 574,25,356,4,0, +574,25,244,4,0, +574,25,248,4,0, +574,25,797,4,0, +574,25,917,4,0, 575,11,1,1,1,1 575,11,93,1,1,2 575,11,313,1,1,4 @@ -468799,6 +472044,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 575,25,678,4,0, 575,25,851,4,0, 575,25,356,4,0, +575,25,244,4,0, +575,25,248,4,0, +575,25,797,4,0, +575,25,917,4,0, 576,11,1,1,1,1 576,11,93,1,1,2 576,11,313,1,1,4 @@ -469351,6 +472600,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 576,25,678,4,0, 576,25,851,4,0, 576,25,356,4,0, +576,25,244,4,0, +576,25,248,4,0, +576,25,797,4,0, +576,25,917,4,0, 577,11,149,1,1, 577,11,115,1,3, 577,11,205,1,7, @@ -471291,6 +474544,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 580,25,851,4,0, 580,25,885,4,0, 580,25,886,4,0, +580,25,38,4,0, +580,25,283,4,0, +580,25,250,4,0, +580,25,297,4,0, 581,11,17,1,1,4 581,11,55,1,1,1 581,11,346,1,1,2 @@ -471623,6 +474880,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 581,25,851,4,0, 581,25,885,4,0, 581,25,886,4,0, +581,25,38,4,0, +581,25,283,4,0, +581,25,250,4,0, +581,25,297,4,0, +581,25,914,4,0, 582,11,333,1,1, 582,11,106,1,4, 582,11,310,1,7, @@ -472997,6 +476259,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 585,25,851,4,0, 585,25,885,4,0, 585,25,803,4,0, +585,25,38,4,0, +585,25,283,4,0, 586,11,28,1,1,5 586,11,33,1,1,2 586,11,45,1,1,4 @@ -473380,6 +476644,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 586,25,885,4,0, 586,25,667,4,0, 586,25,803,4,0, +586,25,38,4,0, +586,25,283,4,0, +586,25,572,4,0, +586,25,675,4,0, +586,25,174,4,0, 587,11,84,1,1, 587,11,98,1,4, 587,11,39,1,7, @@ -476457,6 +479726,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 594,25,503,4,0, 594,25,812,4,0, 594,25,799,4,0, +594,25,220,4,0, +594,25,250,4,0, +594,25,914,4,0, 595,11,81,1,1,1 595,11,141,1,1,2 595,11,169,1,1,3 @@ -479451,6 +482723,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 603,25,282,4,0, 603,25,162,4,0, 603,25,679,4,0, +603,25,527,4,0, +603,25,675,4,0, 604,11,29,1,1,2 604,11,51,1,1,3 604,11,242,1,1,5 @@ -479854,6 +483128,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 604,25,162,4,0, 604,25,679,4,0, 604,25,264,4,0, +604,25,916,4,0, +604,25,527,4,0, +604,25,675,4,0, 605,11,93,1,1, 605,11,45,1,4, 605,11,377,1,8, @@ -481304,6 +484581,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 607,25,807,4,0, 607,25,809,4,0, 607,25,851,4,0, +607,25,220,4,0, +607,25,244,4,0, +607,25,915,4,0, +607,25,806,4,0, +607,25,174,4,0, 608,11,52,1,1,1 608,11,107,1,1,3 608,11,123,1,1,4 @@ -481754,6 +485036,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 608,25,808,4,0, 608,25,809,4,0, 608,25,851,4,0, +608,25,220,4,0, +608,25,244,4,0, +608,25,915,4,0, +608,25,806,4,0, +608,25,174,4,0, 609,11,109,1,1,2 609,11,123,1,1,1 609,11,481,1,1,3 @@ -482136,6 +485423,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 609,25,809,4,0, 609,25,851,4,0, 609,25,885,4,0, +609,25,220,4,0, +609,25,244,4,0, +609,25,915,4,0, +609,25,806,4,0, +609,25,174,4,0, 610,11,10,1,1, 610,11,43,1,4, 610,11,372,1,7, @@ -482637,6 +485929,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 610,25,885,4,0, 610,25,46,4,0, 610,25,799,4,0, +610,25,38,4,0, +610,25,283,4,0, +610,25,784,4,0, +610,25,913,4,0, 611,11,10,1,1,1 611,11,43,1,1,2 611,11,82,1,1,4 @@ -483105,6 +486401,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 611,25,885,4,0, 611,25,46,4,0, 611,25,799,4,0, +611,25,38,4,0, +611,25,283,4,0, +611,25,784,4,0, +611,25,913,4,0, 612,11,10,1,1,1 612,11,43,1,1,2 612,11,82,1,1,4 @@ -483648,6 +486948,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 612,25,885,4,0, 612,25,46,4,0, 612,25,799,4,0, +612,25,38,4,0, +612,25,283,4,0, +612,25,784,4,0, +612,25,913,4,0, 613,11,181,1,1, 613,11,45,1,5, 613,11,117,1,9, @@ -484108,6 +487412,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 613,25,886,4,0, 613,25,333,4,0, 613,25,264,4,0, +613,25,283,4,0, 614,11,45,1,1,3 614,11,117,1,1,4 614,11,181,1,1,2 @@ -484659,6 +487964,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 614,25,46,4,0, 614,25,333,4,0, 614,25,264,4,0, +614,25,38,4,0, +614,25,283,4,0, +614,25,675,4,0, +614,25,174,4,0, +614,25,912,4,0, 615,11,20,1,1, 615,11,420,1,5, 615,11,159,1,9, @@ -485072,6 +488382,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 615,25,886,4,0, 615,25,114,4,0, 615,25,333,4,0, +615,25,813,4,0, 616,11,141,1,1, 616,11,51,1,4, 616,11,117,1,8, @@ -486719,6 +490030,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 619,25,512,4,0, 619,25,851,4,0, 619,25,885,4,0, +619,25,244,4,0, +619,25,811,4,0, +619,25,918,4,0, 620,11,1,1,1,1 620,11,96,1,1,2 620,11,197,1,1,3 @@ -487238,6 +490552,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 620,25,851,4,0, 620,25,861,4,0, 620,25,885,4,0, +620,25,244,4,0, +620,25,38,4,0, +620,25,813,4,0, +620,25,811,4,0, +620,25,918,4,0, 621,11,10,1,1,2 621,11,43,1,1,1 621,11,468,1,5, @@ -489368,6 +492687,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 624,25,851,4,0, 624,25,180,4,0, 624,25,808,4,0, +624,25,319,4,0, 625,11,10,1,1,2 625,11,43,1,1,3 625,11,210,1,1,4 @@ -489917,6 +493237,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 625,25,851,4,0, 625,25,180,4,0, 625,25,808,4,0, +625,25,675,4,0, +625,25,319,4,0, 626,11,43,1,1,2 626,11,228,1,1,1 626,11,99,1,6, @@ -490667,6 +493989,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 627,20,514,4,0, 627,20,526,4,0, 627,20,542,4,0, +627,24,98,1,1,,10 +627,24,332,1,6,,15 +627,24,239,1,11,,20 +627,24,163,1,18,,28 +627,24,403,1,20,,30 +627,24,355,1,25,,35 +627,24,38,1,34,,45 +627,24,413,1,43,,54 627,25,43,1,1,1 627,25,64,1,1,2 627,25,468,1,6, @@ -490715,6 +494045,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 627,25,542,4,0, 627,25,851,4,0, 627,25,814,4,0, +627,25,38,4,0, +627,25,297,4,0, 628,11,17,1,1,4 628,11,31,1,1,3 628,11,43,1,1,2 @@ -491157,6 +494489,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 628,25,542,4,0, 628,25,851,4,0, 628,25,814,4,0, +628,25,38,4,0, +628,25,297,4,0, 629,11,16,1,1,1 629,11,43,1,1,2 629,11,31,1,5, @@ -491617,6 +494951,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 629,25,808,4,0, 629,25,814,4,0, 629,25,851,4,0, +629,25,244,4,0, +629,25,38,4,0, +629,25,297,4,0, +629,25,675,4,0, 630,11,16,1,1,1 630,11,31,1,1,3 630,11,43,1,1,2 @@ -492099,6 +495437,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 630,25,808,4,0, 630,25,814,4,0, 630,25,851,4,0, +630,25,244,4,0, +630,25,38,4,0, +630,25,297,4,0, +630,25,675,4,0, 631,11,122,1,1,2 631,11,510,1,1,1 631,11,316,1,6, @@ -493417,6 +496759,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 633,25,851,4,0, 633,25,46,4,0, 633,25,180,4,0, +633,25,244,4,0, +633,25,913,4,0, 634,11,44,1,1,4 634,11,82,1,1,2 634,11,116,1,1,3 @@ -493826,6 +497170,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 634,25,46,4,0, 634,25,180,4,0, 634,25,808,4,0, +634,25,244,4,0, +634,25,913,4,0, 635,11,44,1,1,4 635,11,82,1,1,2 635,11,116,1,1,3 @@ -494440,6 +497786,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 635,25,814,4,0, 635,25,808,4,0, 635,25,799,4,0, +635,25,244,4,0, +635,25,675,4,0, +635,25,784,4,0, +635,25,913,4,0, 636,11,52,1,1,1 636,11,81,1,1,2 636,11,141,1,10, @@ -494844,6 +498194,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 636,25,885,4,0, 636,25,450,4,0, 636,25,679,4,0, +636,25,38,4,0, +636,25,806,4,0, 637,11,16,1,1,4 637,11,52,1,1,1 637,11,81,1,1,2 @@ -495333,6 +498685,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 637,25,450,4,0, 637,25,679,4,0, 637,25,814,4,0, +637,25,38,4,0, +637,25,806,4,0, 638,11,43,1,1,2 638,11,98,1,1,1 638,11,24,1,7, @@ -495738,6 +499092,71 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 638,20,521,4,0, 638,20,526,4,0, 638,20,684,4,0, +638,25,43,1,1,1 +638,25,98,1,1,2 +638,25,270,1,1,3 +638,25,526,1,1,4 +638,25,232,1,7, +638,25,501,1,14, +638,25,24,1,21, +638,25,514,1,28, +638,25,368,1,35, +638,25,36,1,42, +638,25,533,1,49, +638,25,14,1,56, +638,25,442,1,63, +638,25,370,1,70, +638,25,14,4,0, +638,25,34,4,0, +638,25,36,4,0, +638,25,38,4,0, +638,25,46,4,0, +638,25,63,4,0, +638,25,86,4,0, +638,25,115,4,0, +638,25,129,4,0, +638,25,156,4,0, +638,25,164,4,0, +638,25,179,4,0, +638,25,182,4,0, +638,25,184,4,0, +638,25,201,4,0, +638,25,203,4,0, +638,25,206,4,0, +638,25,214,4,0, +638,25,232,4,0, +638,25,240,4,0, +638,25,241,4,0, +638,25,244,4,0, +638,25,263,4,0, +638,25,269,4,0, +638,25,270,4,0, +638,25,280,4,0, +638,25,319,4,0, +638,25,332,4,0, +638,25,334,4,0, +638,25,347,4,0, +638,25,370,4,0, +638,25,396,4,0, +638,25,398,4,0, +638,25,403,4,0, +638,25,404,4,0, +638,25,410,4,0, +638,25,411,4,0, +638,25,416,4,0, +638,25,428,4,0, +638,25,430,4,0, +638,25,442,4,0, +638,25,444,4,0, +638,25,446,4,0, +638,25,484,4,0, +638,25,521,4,0, +638,25,684,4,0, +638,25,776,4,0, +638,25,796,4,0, +638,25,811,4,0, +638,25,851,4,0, +638,25,918,4,0, 639,11,43,1,1,2 639,11,98,1,1,1 639,11,24,1,7, @@ -496143,6 +499562,68 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 639,20,526,4,0, 639,20,684,4,0, 639,20,707,4,0, +639,25,43,1,1,1 +639,25,98,1,1,2 +639,25,270,1,1,3 +639,25,526,1,1,4 +639,25,479,1,7, +639,25,501,1,14, +639,25,24,1,21, +639,25,514,1,28, +639,25,157,1,35, +639,25,36,1,42, +639,25,533,1,49, +639,25,14,1,56, +639,25,444,1,63, +639,25,370,1,70, +639,25,14,4,0, +639,25,34,4,0, +639,25,36,4,0, +639,25,38,4,0, +639,25,46,4,0, +639,25,63,4,0, +639,25,89,4,0, +639,25,115,4,0, +639,25,129,4,0, +639,25,156,4,0, +639,25,157,4,0, +639,25,164,4,0, +639,25,179,4,0, +639,25,182,4,0, +639,25,184,4,0, +639,25,201,4,0, +639,25,203,4,0, +639,25,206,4,0, +639,25,214,4,0, +639,25,244,4,0, +639,25,263,4,0, +639,25,269,4,0, +639,25,270,4,0, +639,25,280,4,0, +639,25,317,4,0, +639,25,332,4,0, +639,25,347,4,0, +639,25,350,4,0, +639,25,370,4,0, +639,25,396,4,0, +639,25,398,4,0, +639,25,403,4,0, +639,25,404,4,0, +639,25,411,4,0, +639,25,414,4,0, +639,25,416,4,0, +639,25,428,4,0, +639,25,442,4,0, +639,25,444,4,0, +639,25,446,4,0, +639,25,479,4,0, +639,25,523,4,0, +639,25,667,4,0, +639,25,684,4,0, +639,25,707,4,0, +639,25,811,4,0, +639,25,851,4,0, +639,25,918,4,0, 640,11,43,1,1,2 640,11,98,1,1,1 640,11,24,1,7, @@ -496548,6 +500029,70 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 640,20,526,4,0, 640,20,669,4,0, 640,20,684,4,0, +640,25,43,1,1,1 +640,25,98,1,1,2 +640,25,270,1,1,3 +640,25,526,1,1,4 +640,25,345,1,7, +640,25,501,1,14, +640,25,24,1,21, +640,25,514,1,28, +640,25,202,1,35, +640,25,235,1,42, +640,25,533,1,49, +640,25,14,1,56, +640,25,348,1,63, +640,25,370,1,70, +640,25,36,2,0, +640,25,14,4,0, +640,25,34,4,0, +640,25,36,4,0, +640,25,38,4,0, +640,25,46,4,0, +640,25,63,4,0, +640,25,76,4,0, +640,25,113,4,0, +640,25,115,4,0, +640,25,129,4,0, +640,25,156,4,0, +640,25,164,4,0, +640,25,179,4,0, +640,25,182,4,0, +640,25,184,4,0, +640,25,202,4,0, +640,25,203,4,0, +640,25,206,4,0, +640,25,214,4,0, +640,25,241,4,0, +640,25,244,4,0, +640,25,263,4,0, +640,25,269,4,0, +640,25,270,4,0, +640,25,280,4,0, +640,25,331,4,0, +640,25,332,4,0, +640,25,345,4,0, +640,25,347,4,0, +640,25,370,4,0, +640,25,396,4,0, +640,25,402,4,0, +640,25,403,4,0, +640,25,404,4,0, +640,25,410,4,0, +640,25,411,4,0, +640,25,412,4,0, +640,25,416,4,0, +640,25,428,4,0, +640,25,437,4,0, +640,25,444,4,0, +640,25,447,4,0, +640,25,669,4,0, +640,25,684,4,0, +640,25,803,4,0, +640,25,811,4,0, +640,25,851,4,0, +640,25,885,4,0, +640,25,918,4,0, 641,11,16,1,1,3 641,11,253,1,1,1 641,11,310,1,1,2 @@ -496989,6 +500534,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 641,20,512,4,0, 641,20,542,4,0, 641,20,693,4,0, +641,24,33,1,1,,12 +641,24,44,1,7,,18 +641,24,239,1,11,,21 +641,24,314,1,14,,25 +641,24,417,1,22,,34 +641,24,326,1,31,,43 +641,24,242,1,41,,54 +641,24,542,1,47,,59 +641,24,846,1,52,,65 641,25,16,1,1,1 641,25,310,1,1,2 641,25,43,1,5, @@ -497053,6 +500607,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 641,25,253,4,0, 641,25,311,4,0, 641,25,808,4,0, +641,25,482,4,0, 642,11,84,1,1,3 642,11,253,1,1,1 642,11,310,1,1,2 @@ -497531,6 +501086,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 642,20,598,4,0, 642,20,684,4,0, 642,20,693,4,0, +642,24,33,1,1,,12 +642,24,44,1,7,,18 +642,24,239,1,11,,21 +642,24,209,1,14,,25 +642,24,417,1,22,,34 +642,24,326,1,31,,43 +642,24,242,1,41,,54 +642,24,87,1,47,,59 +642,24,847,1,52,,65 642,25,84,1,1,1 642,25,310,1,1,2 642,25,43,1,5, @@ -497599,6 +501163,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 642,25,253,4,0, 642,25,311,4,0, 642,25,808,4,0, +642,25,916,4,0, +642,25,527,4,0, +642,25,482,4,0, 643,11,82,1,1,2 643,11,424,1,1,1 643,11,286,1,8, @@ -498054,6 +501621,80 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 643,20,693,4,0, 643,20,776,4,0, 643,20,784,4,0, +643,25,225,1,1,1 +643,25,246,1,1,2 +643,25,424,1,1,3 +643,25,568,1,1,4 +643,25,163,1,8, +643,25,242,1,16, +643,25,326,1,24, +643,25,406,1,32, +643,25,53,1,40, +643,25,558,1,48, +643,25,304,1,56, +643,25,126,1,64, +643,25,286,1,72, +643,25,200,1,80, +643,25,551,1,88, +643,25,19,4,0, +643,25,34,4,0, +643,25,36,4,0, +643,25,38,4,0, +643,25,46,4,0, +643,25,53,4,0, +643,25,63,4,0, +643,25,76,4,0, +643,25,83,4,0, +643,25,94,4,0, +643,25,113,4,0, +643,25,115,4,0, +643,25,126,4,0, +643,25,129,4,0, +643,25,156,4,0, +643,25,157,4,0, +643,25,164,4,0, +643,25,182,4,0, +643,25,184,4,0, +643,25,200,4,0, +643,25,203,4,0, +643,25,214,4,0, +643,25,240,4,0, +643,25,241,4,0, +643,25,242,4,0, +643,25,247,4,0, +643,25,257,4,0, +643,25,261,4,0, +643,25,263,4,0, +643,25,270,4,0, +643,25,286,4,0, +643,25,304,4,0, +643,25,311,4,0, +643,25,315,4,0, +643,25,317,4,0, +643,25,337,4,0, +643,25,349,4,0, +643,25,366,4,0, +643,25,374,4,0, +643,25,394,4,0, +643,25,406,4,0, +643,25,411,4,0, +643,25,414,4,0, +643,25,416,4,0, +643,25,421,4,0, +643,25,424,4,0, +643,25,428,4,0, +643,25,434,4,0, +643,25,444,4,0, +643,25,488,4,0, +643,25,525,4,0, +643,25,535,4,0, +643,25,776,4,0, +643,25,784,4,0, +643,25,799,4,0, +643,25,814,4,0, +643,25,815,4,0, +643,25,851,4,0, +643,25,913,4,0, 644,11,82,1,1,2 644,11,422,1,1,1 644,11,286,1,8, @@ -498521,6 +502162,85 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 644,20,693,4,0, 644,20,776,4,0, 644,20,784,4,0, +644,25,225,1,1,1 +644,25,246,1,1,2 +644,25,422,1,1,3 +644,25,568,1,1,4 +644,25,163,1,8, +644,25,242,1,16, +644,25,428,1,24, +644,25,337,1,32, +644,25,85,1,40, +644,25,559,1,48, +644,25,304,1,56, +644,25,87,1,64, +644,25,286,1,72, +644,25,200,1,80, +644,25,550,1,88, +644,25,9,4,0, +644,25,19,4,0, +644,25,34,4,0, +644,25,36,4,0, +644,25,38,4,0, +644,25,46,4,0, +644,25,63,4,0, +644,25,85,4,0, +644,25,86,4,0, +644,25,87,4,0, +644,25,94,4,0, +644,25,113,4,0, +644,25,114,4,0, +644,25,115,4,0, +644,25,129,4,0, +644,25,156,4,0, +644,25,157,4,0, +644,25,164,4,0, +644,25,182,4,0, +644,25,184,4,0, +644,25,200,4,0, +644,25,203,4,0, +644,25,214,4,0, +644,25,240,4,0, +644,25,241,4,0, +644,25,242,4,0, +644,25,247,4,0, +644,25,263,4,0, +644,25,264,4,0, +644,25,268,4,0, +644,25,270,4,0, +644,25,280,4,0, +644,25,286,4,0, +644,25,304,4,0, +644,25,311,4,0, +644,25,317,4,0, +644,25,337,4,0, +644,25,349,4,0, +644,25,366,4,0, +644,25,374,4,0, +644,25,406,4,0, +644,25,411,4,0, +644,25,414,4,0, +644,25,416,4,0, +644,25,421,4,0, +644,25,422,4,0, +644,25,428,4,0, +644,25,430,4,0, +644,25,434,4,0, +644,25,444,4,0, +644,25,446,4,0, +644,25,451,4,0, +644,25,486,4,0, +644,25,521,4,0, +644,25,525,4,0, +644,25,528,4,0, +644,25,604,4,0, +644,25,776,4,0, +644,25,784,4,0, +644,25,799,4,0, +644,25,814,4,0, +644,25,851,4,0, +644,25,913,4,0, +644,25,916,4,0, 645,11,317,1,1,3 645,11,335,1,1,1 645,11,341,1,1,2 @@ -498967,6 +502687,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 645,20,496,4,0, 645,20,523,4,0, 645,20,693,4,0, +645,24,33,1,1,,12 +645,24,44,1,7,,18 +645,24,239,1,11,,21 +645,24,523,1,14,,25 +645,24,339,1,22,,34 +645,24,326,1,31,,43 +645,24,242,1,41,,54 +645,24,414,1,47,,59 +645,24,848,1,52,,65 645,25,479,1,1,1 645,25,328,1,1,2 645,25,43,1,5, @@ -499030,6 +502759,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 645,25,356,4,0, 645,25,479,4,0, 645,25,311,4,0, +645,25,482,4,0, +645,25,815,4,0, 646,11,82,1,1,2 646,11,196,1,1,1 646,11,286,1,8, @@ -499470,6 +503201,76 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 646,20,693,4,0, 646,20,776,4,0, 646,20,784,4,0, +646,25,225,1,1,1 +646,25,246,1,1,2 +646,25,568,1,1,3 +646,25,573,1,1,4 +646,25,163,1,8, +646,25,283,1,16, +646,25,406,1,24, +646,25,58,1,32, +646,25,304,1,40, +646,25,184,1,48, +646,25,59,1,56, +646,25,286,1,64, +646,25,200,1,72, +646,25,549,1,80, +646,25,329,1,88, +646,25,46,4,0, +646,25,333,4,0, +646,25,311,4,0, +646,25,814,4,0, +646,25,799,4,0, +646,25,283,4,0, +646,25,784,4,0, +646,25,913,4,0, +646,25,19,4,0, +646,25,34,4,0, +646,25,36,4,0, +646,25,58,4,0, +646,25,59,4,0, +646,25,63,4,0, +646,25,94,4,0, +646,25,113,4,0, +646,25,115,4,0, +646,25,129,4,0, +646,25,156,4,0, +646,25,157,4,0, +646,25,164,4,0, +646,25,182,4,0, +646,25,184,4,0, +646,25,196,4,0, +646,25,200,4,0, +646,25,203,4,0, +646,25,214,4,0, +646,25,240,4,0, +646,25,241,4,0, +646,25,247,4,0, +646,25,263,4,0, +646,25,270,4,0, +646,25,286,4,0, +646,25,304,4,0, +646,25,317,4,0, +646,25,332,4,0, +646,25,337,4,0, +646,25,349,4,0, +646,25,374,4,0, +646,25,406,4,0, +646,25,411,4,0, +646,25,414,4,0, +646,25,416,4,0, +646,25,419,4,0, +646,25,421,4,0, +646,25,423,4,0, +646,25,428,4,0, +646,25,430,4,0, +646,25,434,4,0, +646,25,442,4,0, +646,25,444,4,0, +646,25,525,4,0, +646,25,776,4,0, +646,25,851,4,0, +646,25,883,4,0, 647,11,43,1,1,2 647,11,453,1,1,1 647,11,24,1,7, @@ -500471,6 +504272,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 648,25,356,4,0, 648,25,282,4,0, 648,25,264,4,0, +648,25,244,4,0, +648,25,813,4,0, +648,25,811,4,0, +648,25,914,4,0, 649,11,98,1,1,2 649,11,103,1,1,5 649,11,232,1,1,4 @@ -501583,6 +505388,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 651,25,34,1,43, 651,25,220,1,47, 651,25,452,1,53, +651,25,162,2,0, +651,25,174,2,0, +651,25,187,2,0, +651,25,191,2,0, +651,25,235,2,0, +651,25,469,2,0, +651,25,501,2,0, 651,25,9,4,0, 651,25,34,4,0, 651,25,36,4,0, @@ -501636,13 +505448,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 651,25,162,4,0, 651,25,264,4,0, 651,25,803,4,0, -651,25,162,2,0, -651,25,174,2,0, -651,25,187,2,0, -651,25,191,2,0, -651,25,235,2,0, -651,25,469,2,0, -651,25,501,2,0, 651,25,174,4,0, 651,25,220,4,0, 651,25,283,4,0, @@ -501996,6 +505801,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 652,25,220,1,60, 652,25,452,1,66, 652,25,416,1,78, +652,25,162,2,0, +652,25,174,2,0, +652,25,187,2,0, +652,25,191,2,0, +652,25,235,2,0, +652,25,469,2,0, +652,25,501,2,0, 652,25,9,4,0, 652,25,14,4,0, 652,25,34,4,0, @@ -502065,13 +505877,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 652,25,667,4,0, 652,25,264,4,0, 652,25,803,4,0, -652,25,162,2,0, -652,25,174,2,0, -652,25,187,2,0, -652,25,191,2,0, -652,25,235,2,0, -652,25,469,2,0, -652,25,501,2,0, 652,25,38,4,0, 652,25,174,4,0, 652,25,220,4,0, @@ -502633,6 +506438,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 654,25,241,1,52, 654,25,478,1,56, 654,25,126,1,59, +654,25,95,2,0, +654,25,257,2,0, +654,25,273,2,0, +654,25,383,2,0, +654,25,478,2,0, 654,25,7,4,0, 654,25,9,4,0, 654,25,36,4,0, @@ -502679,11 +506489,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 654,25,678,4,0, 654,25,851,4,0, 654,25,807,4,0, -654,25,95,2,0, -654,25,257,2,0, -654,25,273,2,0, -654,25,383,2,0, -654,25,478,2,0, 655,15,10,1,1,5 655,15,39,1,1,6 655,15,247,1,1,4 @@ -503009,6 +506814,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 655,25,241,1,62, 655,25,478,1,68, 655,25,126,1,74, +655,25,95,2,0, +655,25,257,2,0, +655,25,273,2,0, +655,25,383,2,0, +655,25,478,2,0, 655,25,7,4,0, 655,25,9,4,0, 655,25,36,4,0, @@ -503068,11 +506878,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 655,25,678,4,0, 655,25,851,4,0, 655,25,807,4,0, -655,25,95,2,0, -655,25,257,2,0, -655,25,273,2,0, -655,25,383,2,0, -655,25,478,2,0, 655,25,244,4,0, 655,25,248,4,0, 655,25,797,4,0, @@ -503611,6 +507416,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 657,25,340,1,45, 657,25,104,1,50, 657,25,56,1,56, +657,25,68,2,0, +657,25,191,2,0, +657,25,390,2,0, +657,25,415,2,0, +657,25,514,2,0, 657,25,8,4,0, 657,25,14,4,0, 657,25,36,4,0, @@ -503654,11 +507464,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 657,25,885,4,0, 657,25,886,4,0, 657,25,479,4,0, -657,25,68,2,0, -657,25,191,2,0, -657,25,390,2,0, -657,25,415,2,0, -657,25,514,2,0, 658,15,1,1,1,4 658,15,45,1,1,5 658,15,272,1,1,2 @@ -503947,6 +507752,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 658,25,326,1,49, 658,25,104,1,56, 658,25,56,1,68, +658,25,68,2,0, +658,25,191,2,0, +658,25,390,2,0, +658,25,415,2,0, +658,25,514,2,0, 658,25,8,4,0, 658,25,14,4,0, 658,25,36,4,0, @@ -503998,11 +507808,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 658,25,114,4,0, 658,25,479,4,0, 658,25,311,4,0, -658,25,68,2,0, -658,25,191,2,0, -658,25,390,2,0, -658,25,415,2,0, -658,25,514,2,0, 658,25,482,4,0, 658,25,918,4,0, 659,15,33,1,1,1 @@ -504913,6 +508718,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 661,25,542,4,0, 661,25,851,4,0, 661,25,814,4,0, +661,25,38,4,0, +661,25,297,4,0, 662,15,33,1,1,1 662,15,45,1,1,2 662,15,98,1,6, @@ -505196,6 +509003,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 662,25,542,4,0, 662,25,851,4,0, 662,25,814,4,0, +662,25,38,4,0, +662,25,915,4,0, +662,25,297,4,0, 663,15,33,1,1,3 663,15,45,1,1,4 663,15,394,1,1,2 @@ -505523,6 +509333,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 663,25,542,4,0, 663,25,851,4,0, 663,25,814,4,0, +663,25,38,4,0, +663,25,915,4,0, +663,25,297,4,0, +663,25,918,4,0, 664,15,33,1,1,1 664,15,81,1,1,2 664,15,78,1,6, @@ -505853,6 +509667,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 666,25,884,4,0, 666,25,450,4,0, 666,25,311,4,0, +666,25,806,4,0, 667,15,33,1,1,1 667,15,43,1,1,2 667,15,52,1,5, @@ -506138,6 +509953,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 667,25,851,4,0, 667,25,885,4,0, 667,25,46,4,0, +667,25,38,4,0, +667,25,283,4,0, 668,15,33,1,1,2 668,15,43,1,1,3 668,15,63,1,1,1 @@ -506424,6 +510241,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 668,25,885,4,0, 668,25,46,4,0, 668,25,807,4,0, +668,25,38,4,0, +668,25,283,4,0, +668,25,915,4,0, 669,15,22,1,1,2 669,15,33,1,1,1 669,15,584,1,6, @@ -506667,6 +510487,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 669,25,851,4,0, 669,25,885,4,0, 669,25,886,4,0, +669,25,283,4,0, +669,25,572,4,0, +669,25,914,4,0, 670,15,22,1,1,2 670,15,33,1,1,1 670,15,584,1,6, @@ -506899,6 +510722,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 670,25,851,4,0, 670,25,885,4,0, 670,25,886,4,0, +670,25,283,4,0, +670,25,572,4,0, +670,25,914,4,0, 671,15,80,1,1,11 671,15,273,1,1,3 671,15,312,1,1,12 @@ -507135,6 +510961,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 671,25,885,4,0, 671,25,886,4,0, 671,25,802,4,0, +671,25,283,4,0, +671,25,572,4,0, +671,25,914,4,0, +671,25,917,4,0, 672,15,33,1,1,1 672,15,74,1,1,2 672,15,22,1,7, @@ -507404,6 +511234,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 672,25,885,4,0, 672,25,46,4,0, 672,25,803,4,0, +672,25,38,4,0, +672,25,283,4,0, 673,15,33,1,1,2 673,15,74,1,1,3 673,15,332,1,1,1 @@ -507701,6 +511533,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 673,25,46,4,0, 673,25,667,4,0, 673,25,803,4,0, +673,25,38,4,0, +673,25,283,4,0, +673,25,675,4,0, 674,15,33,1,1,1 674,15,43,1,1,2 674,15,292,1,7, @@ -513037,6 +516872,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 690,25,180,4,0, 690,25,812,4,0, 690,25,799,4,0, +690,25,250,4,0, +690,25,330,4,0, +690,25,482,4,0, 691,15,33,1,1,3 691,15,55,1,1,5 691,15,108,1,1,4 @@ -513369,6 +517207,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 691,25,503,4,0, 691,25,812,4,0, 691,25,799,4,0, +691,25,250,4,0, +691,25,330,4,0, +691,25,482,4,0, 692,15,55,1,1,2 692,15,150,1,1,1 692,15,346,1,7, @@ -513665,6 +517506,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 692,25,479,4,0, 692,25,311,4,0, 692,25,812,4,0, +692,25,330,4,0, +692,25,482,4,0, 693,15,55,1,1,6 693,15,150,1,1,5 693,15,396,1,1,4 @@ -514004,6 +517847,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 693,25,479,4,0, 693,25,311,4,0, 693,25,812,4,0, +693,25,330,4,0, +693,25,482,4,0, 694,15,1,1,1,1 694,15,39,1,1,2 694,15,84,1,6, @@ -516140,6 +519985,15 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 700,20,583,4,0, 700,20,595,4,0, 700,20,605,4,0, +700,24,584,1,0,,15 +700,24,33,1,1,,10 +700,24,98,1,6,,15 +700,24,129,1,11,,20 +700,24,608,1,18,,28 +700,24,102,1,25,, +700,24,583,1,25,,35 +700,24,347,1,34,,45 +700,24,38,1,43,,54 700,25,574,1,0, 700,25,226,1,1,1 700,25,33,1,1,2 @@ -516201,6 +520055,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 700,25,46,4,0, 700,25,311,4,0, 700,25,802,4,0, +700,25,244,4,0, +700,25,38,4,0, +700,25,174,4,0, +700,25,914,4,0, 701,15,33,1,1,2 701,15,197,1,1,1 701,15,468,1,1,3 @@ -516667,6 +520525,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 701,25,253,4,0, 701,25,264,4,0, 701,25,814,4,0, +701,25,283,4,0, +701,25,811,4,0, +701,25,297,4,0, +701,25,675,4,0, +701,25,918,4,0, 702,15,33,1,1,1 702,15,39,1,1,2 702,15,84,1,7, @@ -517005,6 +520868,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 702,25,885,4,0, 702,25,268,4,0, 702,25,162,4,0, +702,25,283,4,0, +702,25,527,4,0, 703,15,33,1,1,1 703,15,106,1,1,2 703,15,88,1,5, @@ -517332,6 +521197,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 703,25,479,4,0, 703,25,360,4,0, 703,25,802,4,0, +703,25,244,4,0, +703,25,38,4,0, +703,25,283,4,0, +703,25,800,4,0, 704,15,33,1,1,1 704,15,145,1,1,2 704,15,71,1,5, @@ -517538,6 +521407,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 704,20,406,4,0, 704,20,482,4,0, 704,20,496,4,0, +704,24,145,1,1,,10 +704,24,491,1,6,,15 +704,24,151,1,11,,20 +704,24,352,1,18,,28 +704,24,406,1,25,,35 +704,24,842,1,34,,45 +704,24,56,1,43,,54 704,25,33,1,1,1 704,25,71,1,1,2 704,25,55,1,5, @@ -517573,6 +521449,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 704,25,434,4,0, 704,25,851,4,0, 704,25,886,4,0, +704,25,330,4,0, +704,25,482,4,0, +704,25,806,4,0, +704,25,174,4,0, 705,15,33,1,1,1 705,15,145,1,1,2 705,15,71,1,5, @@ -517807,6 +521687,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 705,25,851,4,0, 705,25,886,4,0, 705,25,92,4,0, +705,25,330,4,0, +705,25,482,4,0, +705,25,806,4,0, +705,25,174,4,0, 706,15,33,1,1,3 706,15,145,1,1,4 706,15,200,1,1,1 @@ -518176,6 +522060,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 706,25,503,4,0, 706,25,264,4,0, 706,25,311,4,0, +706,25,330,4,0, +706,25,482,4,0, +706,25,806,4,0, +706,25,784,4,0, +706,25,174,4,0, +706,25,913,4,0, 707,15,33,1,1,2 707,15,587,1,1,1 707,15,584,1,5, @@ -518496,6 +522386,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 707,25,605,4,0, 707,25,796,4,0, 707,25,851,4,0, +707,25,244,4,0, +707,25,806,4,0, +707,25,319,4,0, 708,15,33,1,1,1 708,15,109,1,1,2 708,15,310,1,5, @@ -518847,6 +522740,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 708,25,809,4,0, 708,25,851,4,0, 708,25,885,4,0, +708,25,220,4,0, +708,25,244,4,0, +708,25,806,4,0, +708,25,174,4,0, 709,15,33,1,1,2 709,15,109,1,1,3 709,15,532,1,1,1 @@ -519252,6 +523149,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 709,25,809,4,0, 709,25,851,4,0, 709,25,885,4,0, +709,25,220,4,0, +709,25,244,4,0, +709,25,806,4,0, +709,25,174,4,0, +709,25,917,4,0, 710,15,109,1,1,3 710,15,271,1,1,1 710,15,310,1,1,2 @@ -520142,6 +524044,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 712,20,430,4,0, 712,20,444,4,0, 712,20,496,4,0, +712,24,33,1,1,,9 +712,24,181,1,5,,14 +712,24,420,1,9,,18 +712,24,44,1,15,,25 +712,24,334,1,21,,31 +712,24,242,1,29,,40 +712,24,59,1,37,,48 +712,24,38,1,47,,59 712,25,106,1,1,1 712,25,229,1,1,2 712,25,33,1,3, @@ -520187,6 +524097,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 712,25,886,4,0, 712,25,360,4,0, 712,25,333,4,0, +712,25,38,4,0, +712,25,174,4,0, 713,15,33,1,1,4 713,15,44,1,1,5 713,15,106,1,1,6 @@ -520541,6 +524453,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 713,25,360,4,0, 713,25,667,4,0, 713,25,333,4,0, +713,25,38,4,0, +713,25,174,4,0, 714,15,33,1,1,3 714,15,48,1,1,2 714,15,103,1,1,1 @@ -521314,6 +525228,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 715,25,162,4,0, 715,25,253,4,0, 715,25,814,4,0, +715,25,38,4,0, +715,25,784,4,0, +715,25,913,4,0, +715,25,917,4,0, 716,15,36,1,1,4 716,15,275,1,1,3 716,15,312,1,1,2 @@ -522566,6 +526484,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 719,25,479,4,0, 719,25,360,4,0, 719,25,802,4,0, +719,25,244,4,0, +719,25,283,4,0, +719,25,815,4,0, +719,25,800,4,0, 720,15,93,1,1,5 720,15,194,1,1,2 720,15,271,1,1,1 @@ -522936,6 +526858,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 720,25,282,4,0, 720,25,264,4,0, 720,25,808,4,0, +720,25,244,4,0, +720,25,248,4,0, +720,25,797,4,0, +720,25,806,4,0, +720,25,675,4,0, +720,25,917,4,0, 721,15,36,1,1,3 721,15,394,1,1,2 721,15,592,1,1,1 @@ -523315,6 +527243,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 721,25,503,4,0, 721,25,535,4,0, 721,25,311,4,0, +721,25,38,4,0, +721,25,482,4,0, +721,25,815,4,0, 722,17,33,1,1,1 722,17,670,1,1,2 722,17,45,1,4, @@ -523472,6 +527403,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 722,20,447,4,0, 722,20,496,4,0, 722,20,526,4,0, +722,24,16,1,1,,10 +722,24,670,1,6,,15 +722,24,355,1,11,,20 +722,24,332,1,18,,28 +722,24,345,1,21,,31 +722,24,403,1,25,,35 +722,24,348,1,34,,45 +722,24,437,1,43,,54 722,25,33,1,1,1 722,25,45,1,1,2 722,25,670,1,3, @@ -523675,6 +527614,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 723,20,447,4,0, 723,20,496,4,0, 723,20,526,4,0, +723,24,16,1,1,,10 +723,24,670,1,6,,15 +723,24,355,1,11,,20 +723,24,332,1,18,,28 +723,24,345,1,21,,31 +723,24,403,1,25,,35 +723,24,348,1,34,,45 +723,24,437,1,43,,54 723,25,33,1,1,1 723,25,45,1,1,2 723,25,310,1,1,3 @@ -523689,6 +527636,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 723,25,348,1,40, 723,25,297,1,45, 723,25,413,1,50, +723,25,104,2,0, +723,25,109,2,0, +723,25,282,2,0, +723,25,355,2,0, +723,25,432,2,0, 723,25,14,4,0, 723,25,36,4,0, 723,25,76,4,0, @@ -523726,11 +527678,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 723,25,282,4,0, 723,25,803,4,0, 723,25,814,4,0, -723,25,104,2,0, -723,25,109,2,0, -723,25,282,2,0, -723,25,355,2,0, -723,25,432,2,0, 723,25,101,4,0, 723,25,109,4,0, 723,25,113,4,0, @@ -523948,6 +527895,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 724,25,348,1,44, 724,25,297,1,51, 724,25,413,1,58, +724,25,104,2,0, +724,25,109,2,0, +724,25,282,2,0, +724,25,355,2,0, +724,25,432,2,0, 724,25,14,4,0, 724,25,36,4,0, 724,25,63,4,0, @@ -524004,11 +527956,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 724,25,803,4,0, 724,25,814,4,0, 724,25,809,4,0, -724,25,104,2,0, -724,25,109,2,0, -724,25,282,2,0, -724,25,355,2,0, -724,25,432,2,0, 724,25,174,4,0, 724,25,179,4,0, 724,25,184,4,0, @@ -526036,6 +529983,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 734,25,885,4,0, 734,25,886,4,0, 734,25,162,4,0, +734,25,38,4,0, +734,25,283,4,0, 735,17,28,1,1,4 735,17,33,1,1,1 735,17,43,1,1,2 @@ -526204,6 +530153,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 735,25,282,4,0, 735,25,162,4,0, 735,25,264,4,0, +735,25,38,4,0, +735,25,283,4,0, +735,25,174,4,0, 736,17,11,1,1, 736,17,81,1,4, 736,17,189,1,7, @@ -526362,6 +530314,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 736,25,679,4,0, 736,25,851,4,0, 736,25,884,4,0, +736,25,527,4,0, +736,25,806,4,0, 737,17,268,1,0, 737,17,11,1,1,2 737,17,44,1,1,5 @@ -526539,6 +530493,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 737,25,679,4,0, 737,25,851,4,0, 737,25,884,4,0, +737,25,527,4,0, +737,25,806,4,0, 738,17,85,1,0, 738,17,11,1,1,4 738,17,44,1,1,7 @@ -526773,6 +530729,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 738,25,679,4,0, 738,25,851,4,0, 738,25,884,4,0, +738,25,916,4,0, +738,25,527,4,0, +738,25,806,4,0, 739,17,145,1,1, 739,17,249,1,5, 739,17,43,1,9, @@ -526936,6 +530895,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 739,25,886,4,0, 739,25,282,4,0, 739,25,264,4,0, +739,25,283,4,0, +739,25,811,4,0, +739,25,918,4,0, 740,17,8,1,0, 740,17,8,1,1,1 740,17,43,1,1,4 @@ -527118,6 +531080,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 740,25,886,4,0, 740,25,282,4,0, 740,25,264,4,0, +740,25,283,4,0, +740,25,811,4,0, +740,25,912,4,0, +740,25,918,4,0, 741,17,1,1,1, 741,17,45,1,4, 741,17,64,1,6, @@ -527273,6 +531239,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 741,25,851,4,0, 741,25,885,4,0, 741,25,814,4,0, +741,25,244,4,0, +741,25,297,4,0, +741,25,914,4,0, 742,17,71,1,1, 742,17,584,1,4, 742,17,78,1,7, @@ -527486,6 +531455,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 742,25,851,4,0, 742,25,884,4,0, 742,25,885,4,0, +742,25,244,4,0, +742,25,806,4,0, 743,17,676,1,0, 743,17,71,1,1,2 743,17,78,1,1,4 @@ -527715,6 +531686,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 743,25,851,4,0, 743,25,884,4,0, 743,25,885,4,0, +743,25,244,4,0, +743,25,806,4,0, +743,25,914,4,0, +743,25,917,4,0, 744,17,33,1,1,1 744,17,43,1,1,2 744,17,28,1,4, @@ -527909,6 +531884,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 744,25,851,4,0, 744,25,885,4,0, 744,25,46,4,0, +744,25,38,4,0, +744,25,283,4,0, 745,17,709,1,0, 745,17,28,1,1,6 745,17,33,1,1,4 @@ -528136,6 +532113,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 745,25,851,4,0, 745,25,885,4,0, 745,25,46,4,0, +745,25,38,4,0, +745,25,283,4,0, 746,17,45,1,1,2 746,17,55,1,1,1 746,17,270,1,6, @@ -528475,6 +532454,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 747,25,114,4,0, 747,25,92,4,0, 747,25,679,4,0, +747,25,220,4,0, +747,25,330,4,0, +747,25,482,4,0, 748,17,661,1,0, 748,17,40,1,1,2 748,17,44,1,1,4 @@ -528683,6 +532665,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 748,25,92,4,0, 748,25,479,4,0, 748,25,679,4,0, +748,25,220,4,0, +748,25,330,4,0, +748,25,482,4,0, 749,17,189,1,1, 749,17,300,1,3, 749,17,563,1,8, @@ -528868,6 +532853,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 749,25,328,4,0, 749,25,479,4,0, 749,25,667,4,0, +749,25,38,4,0, +749,25,283,4,0, +749,25,174,4,0, 750,17,189,1,1,1 750,17,300,1,1,2 750,17,523,1,1,4 @@ -529059,6 +533047,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 750,25,479,4,0, 750,25,667,4,0, 750,25,808,4,0, +750,25,38,4,0, +750,25,283,4,0, +750,25,174,4,0, 751,17,145,1,1,2 751,17,346,1,1,1 751,17,611,1,5, @@ -529632,6 +533623,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 753,25,450,4,0, 753,25,311,4,0, 753,25,803,4,0, +753,25,572,4,0, +753,25,806,4,0, 754,17,572,1,0, 754,17,74,1,1,6 754,17,75,1,1,5 @@ -529850,6 +533843,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 754,25,669,4,0, 754,25,311,4,0, 754,25,803,4,0, +754,25,572,4,0, +754,25,806,4,0, 755,17,71,1,1, 755,17,310,1,4, 755,17,148,1,8, @@ -530353,6 +534348,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 757,25,282,4,0, 757,25,807,4,0, 757,25,799,4,0, +757,25,283,4,0, +757,25,915,4,0, +757,25,482,4,0, +757,25,806,4,0, 758,17,445,1,0, 758,17,1,1,1,6 758,17,50,1,1,2 @@ -530612,6 +534611,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 758,25,282,4,0, 758,25,807,4,0, 758,25,799,4,0, +758,25,283,4,0, +758,25,915,4,0, +758,25,482,4,0, +758,25,806,4,0, +758,25,784,4,0, +758,25,913,4,0, 759,17,33,1,1,1 759,17,43,1,1,2 759,17,117,1,5, @@ -531115,6 +535120,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 761,25,851,4,0, 761,25,885,4,0, 761,25,803,4,0, +761,25,283,4,0, 762,17,3,1,0, 762,17,3,1,1,1 762,17,75,1,1,5 @@ -531298,6 +535304,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 762,25,851,4,0, 762,25,885,4,0, 762,25,803,4,0, +762,25,283,4,0, +762,25,572,4,0, +762,25,813,4,0, 763,17,688,1,0, 763,17,3,1,1,2 763,17,75,1,1,6 @@ -531521,6 +535530,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 763,25,282,4,0, 763,25,669,4,0, 763,25,803,4,0, +763,25,283,4,0, +763,25,572,4,0, +763,25,813,4,0, 764,17,22,1,1,2 764,17,270,1,1,1 764,17,579,1,1,3 @@ -532048,6 +536060,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 765,25,886,4,0, 765,25,356,4,0, 765,25,282,4,0, +765,25,220,4,0, +765,25,244,4,0, +765,25,283,4,0, +765,25,248,4,0, +765,25,797,4,0, +765,25,917,4,0, 766,17,33,1,1, 766,17,43,1,4, 766,17,249,1,8, @@ -532325,6 +536343,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 766,25,410,4,0, 766,25,253,4,0, 766,25,264,4,0, +766,25,220,4,0, +766,25,38,4,0, +766,25,527,4,0, +766,25,811,4,0, +766,25,174,4,0, +766,25,918,4,0, 767,17,28,1,1,2 767,17,522,1,1,1 767,17,106,2,0, @@ -532838,6 +536862,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 769,25,180,4,0, 769,25,356,4,0, 769,25,809,4,0, +769,25,220,4,0, +769,25,815,4,0, +769,25,174,4,0, 770,17,28,1,1,4 770,17,71,1,1,2 770,17,106,1,1,1 @@ -533049,6 +537076,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 770,25,180,4,0, 770,25,356,4,0, 770,25,809,4,0, +770,25,220,4,0, +770,25,815,4,0, +770,25,174,4,0, 771,17,106,1,1,4 771,17,117,1,1,5 771,17,226,1,1,1 @@ -533869,6 +537899,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 775,25,885,4,0, 775,25,282,4,0, 775,25,162,4,0, +775,25,244,4,0, +775,25,38,4,0, +775,25,283,4,0, +775,25,174,4,0, 776,17,33,1,1,2 776,17,52,1,1,1 776,17,123,1,5, @@ -534523,6 +538557,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 778,25,885,4,0, 778,25,180,4,0, 778,25,807,4,0, +778,25,220,4,0, +778,25,244,4,0, +778,25,174,4,0, 779,17,55,1,1, 779,17,310,1,4, 779,17,93,1,9, @@ -534700,6 +538737,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 779,25,886,4,0, 779,25,162,4,0, 779,25,812,4,0, +779,25,220,4,0, +779,25,250,4,0, +779,25,797,4,0, +779,25,917,4,0, 780,17,497,1,1,2 780,17,589,1,1,1 780,17,239,1,5, @@ -535345,6 +539386,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 782,25,525,4,0, 782,25,799,4,0, 782,25,851,4,0, +782,25,784,4,0, +782,25,913,4,0, 783,17,327,1,0, 783,17,33,1,1,3 783,17,43,1,1,4 @@ -535594,6 +539637,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 783,25,525,4,0, 783,25,799,4,0, 783,25,851,4,0, +783,25,38,4,0, +783,25,811,4,0, +783,25,675,4,0, +783,25,784,4,0, +783,25,913,4,0, +783,25,918,4,0, 784,17,691,1,0, 784,17,33,1,1,5 784,17,43,1,1,6 @@ -535911,6 +539960,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 784,25,776,4,0, 784,25,799,4,0, 784,25,851,4,0, +784,25,38,4,0, +784,25,283,4,0, +784,25,811,4,0, +784,25,675,4,0, +784,25,784,4,0, +784,25,319,4,0, +784,25,913,4,0, +784,25,918,4,0, 785,17,84,1,1,8 785,17,98,1,1,5 785,17,110,1,1,7 @@ -538952,6 +543009,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 801,25,356,4,0, 801,25,360,4,0, 801,25,802,4,0, +801,25,220,4,0, +801,25,527,4,0, +801,25,319,4,0, 802,17,7,1,1,3 802,17,8,1,1,5 802,17,9,1,1,4 @@ -540037,6 +544097,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 811,25,253,1,36, 811,25,452,1,42, 811,25,283,1,48, +811,25,70,2,0, +811,25,73,2,0, +811,25,74,2,0, +811,25,252,2,0, +811,25,359,2,0, +811,25,388,2,0, 811,25,14,4,0, 811,25,34,4,0, 811,25,36,4,0, @@ -540073,12 +544139,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 811,25,669,4,0, 811,25,253,4,0, 811,25,803,4,0, -811,25,70,2,0, -811,25,73,2,0, -811,25,74,2,0, -811,25,252,2,0, -811,25,359,2,0, -811,25,388,2,0, 811,25,38,4,0, 811,25,283,4,0, 812,20,778,1,0, @@ -540171,6 +544231,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 812,25,452,1,46, 812,25,283,1,54, 812,25,586,1,62, +812,25,70,2,0, +812,25,73,2,0, +812,25,74,2,0, +812,25,252,2,0, +812,25,359,2,0, +812,25,388,2,0, 812,25,14,4,0, 812,25,34,4,0, 812,25,36,4,0, @@ -540224,12 +544290,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 812,25,253,4,0, 812,25,264,4,0, 812,25,803,4,0, -812,25,70,2,0, -812,25,73,2,0, -812,25,74,2,0, -812,25,252,2,0, -812,25,359,2,0, -812,25,388,2,0, 812,25,38,4,0, 812,25,283,4,0, 813,20,33,1,1,1 @@ -540391,6 +544451,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 814,25,68,1,36, 814,25,340,1,42, 814,25,38,1,48, +814,25,28,2,0, +814,25,136,2,0, +814,25,162,2,0, +814,25,389,2,0, 814,25,14,4,0, 814,25,36,4,0, 814,25,53,4,0, @@ -540428,10 +544492,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 814,25,162,4,0, 814,25,311,4,0, 814,25,807,4,0, -814,25,28,2,0, -814,25,136,2,0, -814,25,162,2,0, -814,25,389,2,0, 814,25,38,4,0, 814,25,915,4,0, 815,20,780,1,0, @@ -540514,6 +544574,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 815,25,340,1,46, 815,25,38,1,54, 815,25,756,1,62, +815,25,28,2,0, +815,25,136,2,0, +815,25,162,2,0, +815,25,389,2,0, 815,25,7,4,0, 815,25,14,4,0, 815,25,36,4,0, @@ -540564,10 +544628,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 815,25,162,4,0, 815,25,311,4,0, 815,25,807,4,0, -815,25,28,2,0, -815,25,136,2,0, -815,25,162,2,0, -815,25,389,2,0, 815,25,38,4,0, 815,25,811,4,0, 815,25,815,4,0, @@ -540708,6 +544768,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 817,25,710,1,36, 817,25,487,1,42, 817,25,240,1,48, +817,25,54,2,0, +817,25,104,2,0, +817,25,114,2,0, +817,25,392,2,0, +817,25,420,2,0, +817,25,453,2,0, +817,25,565,2,0, 817,25,36,4,0, 817,25,56,4,0, 817,25,57,4,0, @@ -540733,13 +544800,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 817,25,886,4,0, 817,25,114,4,0, 817,25,311,4,0, -817,25,54,2,0, -817,25,104,2,0, -817,25,114,2,0, -817,25,392,2,0, -817,25,420,2,0, -817,25,453,2,0, -817,25,565,2,0, 817,25,250,4,0, 817,25,330,4,0, 818,20,745,1,0, @@ -540818,6 +544878,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 818,25,487,1,46, 818,25,240,1,54, 818,25,56,1,62, +818,25,54,2,0, +818,25,104,2,0, +818,25,114,2,0, +818,25,392,2,0, +818,25,420,2,0, +818,25,453,2,0, +818,25,565,2,0, 818,25,14,4,0, 818,25,36,4,0, 818,25,56,4,0, @@ -540864,13 +544931,6 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 818,25,503,4,0, 818,25,311,4,0, 818,25,812,4,0, -818,25,54,2,0, -818,25,104,2,0, -818,25,114,2,0, -818,25,392,2,0, -818,25,420,2,0, -818,25,453,2,0, -818,25,565,2,0, 818,25,244,4,0, 818,25,250,4,0, 818,25,330,4,0, @@ -540958,6 +545018,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 819,25,885,4,0, 819,25,360,4,0, 819,25,162,4,0, +819,25,38,4,0, +819,25,283,4,0, +819,25,174,4,0, 820,20,343,1,0, 820,20,33,1,1,2 820,20,39,1,1,3 @@ -541062,6 +545125,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 820,25,282,4,0, 820,25,162,4,0, 820,25,667,4,0, +820,25,38,4,0, +820,25,283,4,0, +820,25,174,4,0, 821,20,43,1,1,2 821,20,64,1,1,1 821,20,681,1,4, @@ -541342,6 +545408,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 823,25,851,4,0, 823,25,180,4,0, 823,25,814,4,0, +823,25,38,4,0, +823,25,319,4,0, +823,25,174,4,0, 824,20,522,1,1, 824,20,48,2,0, 824,20,105,2,0, @@ -541774,6 +545843,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 833,25,710,4,0, 833,25,851,4,0, 833,25,886,4,0, +833,25,250,4,0, +833,25,806,4,0, 834,20,317,1,0, 834,20,33,1,1,5 834,20,44,1,1,7 @@ -541905,6 +545976,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 834,25,328,4,0, 834,25,162,4,0, 834,25,667,4,0, +834,25,38,4,0, +834,25,250,4,0, +834,25,330,4,0, +834,25,806,4,0, +834,25,800,4,0, +834,25,675,4,0, 835,20,33,1,1,1 835,20,39,1,1,2 835,20,609,1,5, @@ -542075,6 +546152,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 837,25,479,4,0, 837,25,360,4,0, 837,25,535,4,0, +837,25,915,4,0, +837,25,800,4,0, +837,25,174,4,0, 838,20,488,1,0, 838,20,33,1,1,2 838,20,108,1,1,3 @@ -542176,6 +546256,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 838,25,360,4,0, 838,25,503,4,0, 838,25,535,4,0, +838,25,915,4,0, +838,25,815,4,0, +838,25,800,4,0, +838,25,174,4,0, 839,20,749,1,0, 839,20,33,1,1,3 839,20,108,1,1,4 @@ -542295,6 +546379,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 839,25,667,4,0, 839,25,503,4,0, 839,25,535,4,0, +839,25,915,4,0, +839,25,815,4,0, +839,25,800,4,0, +839,25,174,4,0, 840,20,110,1,1,1 840,20,310,1,1,2 840,20,111,2,0, @@ -542416,6 +546504,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 841,25,885,4,0, 841,25,803,4,0, 841,25,814,4,0, +841,25,283,4,0, 842,20,29,1,0, 842,20,29,1,1,1 842,20,74,1,1,5 @@ -542530,6 +546619,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 842,25,360,4,0, 842,25,667,4,0, 842,25,803,4,0, +842,25,174,4,0, 843,20,28,1,1,2 843,20,35,1,1,1 843,20,107,1,5, @@ -542612,6 +546702,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 843,25,851,4,0, 843,25,328,4,0, 843,25,799,4,0, +843,25,815,4,0, +843,25,806,4,0, 844,20,28,1,1,3 844,20,35,1,1,2 844,20,107,1,1,4 @@ -542711,6 +546803,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 844,25,328,4,0, 844,25,667,4,0, 844,25,799,4,0, +844,25,283,4,0, +844,25,815,4,0, +844,25,806,4,0, 845,20,64,1,1,2 845,20,254,1,1,3 845,20,255,1,1,5 @@ -542819,6 +546914,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 845,25,851,4,0, 845,25,884,4,0, 845,25,886,4,0, +845,25,283,4,0, +845,25,250,4,0, +845,25,297,4,0, +845,25,675,4,0, 846,20,64,1,1,1 846,20,453,1,1,2 846,20,31,1,6, @@ -542901,6 +547000,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 846,25,886,4,0, 846,25,812,4,0, 846,25,799,4,0, +846,25,38,4,0, +846,25,250,4,0, +846,25,675,4,0, 847,20,31,1,1,4 847,20,44,1,1,5 847,20,64,1,1,2 @@ -542989,6 +547091,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 847,25,886,4,0, 847,25,812,4,0, 847,25,799,4,0, +847,25,38,4,0, +847,25,250,4,0, +847,25,675,4,0, 848,20,45,1,1,4 848,20,51,1,1,6 848,20,175,1,1,5 @@ -543025,6 +547130,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 848,25,227,4,0, 848,25,263,4,0, 848,25,851,4,0, +848,25,283,4,0, +848,25,319,4,0, 849,20,209,1,0, 849,20,43,1,1,11 849,20,45,1,1,6 @@ -543166,6 +547273,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 849,25,268,4,0, 849,25,92,4,0, 849,25,253,4,0, +849,25,283,4,0, +849,25,527,4,0, +849,25,482,4,0, +849,25,675,4,0, +849,25,319,4,0, +849,25,917,4,0, 850,20,52,1,1,1 850,20,108,1,1,2 850,20,35,1,5, @@ -543438,6 +547551,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 854,25,851,4,0, 854,25,180,4,0, 854,25,809,4,0, +854,25,174,4,0, 855,20,752,1,0, 855,20,72,1,1,6 855,20,110,1,1,4 @@ -543536,6 +547650,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 855,25,851,4,0, 855,25,180,4,0, 855,25,809,4,0, +855,25,220,4,0, +855,25,174,4,0, 856,20,93,1,1,1 856,20,589,1,1,2 856,20,791,1,5, @@ -543628,6 +547744,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 856,25,605,4,0, 856,25,678,4,0, 856,25,851,4,0, +856,25,244,4,0, +856,25,248,4,0, +856,25,797,4,0, 857,20,693,1,0, 857,20,93,1,1,2 857,20,574,1,1,5 @@ -543716,6 +547835,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 857,25,605,4,0, 857,25,678,4,0, 857,25,851,4,0, +857,25,244,4,0, +857,25,248,4,0, +857,25,797,4,0, 858,20,427,1,0, 858,20,93,1,1,3 858,20,427,1,1,1 @@ -543830,6 +547952,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 858,25,851,4,0, 858,25,356,4,0, 858,25,802,4,0, +858,25,220,4,0, +858,25,244,4,0, +858,25,248,4,0, +858,25,797,4,0, +858,25,917,4,0, 859,20,252,1,1,1 859,20,590,1,1,2 859,20,44,1,4, @@ -543921,6 +548048,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 859,25,886,4,0, 859,25,807,4,0, 859,25,808,4,0, +859,25,675,4,0, 860,20,793,1,0, 860,20,44,1,1,4 860,20,252,1,1,2 @@ -544020,6 +548148,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 860,25,886,4,0, 860,25,807,4,0, 860,25,808,4,0, +860,25,675,4,0, 861,20,789,1,0, 861,20,44,1,1,7 861,20,252,1,1,5 @@ -544160,6 +548289,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 861,25,264,4,0, 861,25,807,4,0, 861,25,808,4,0, +861,25,675,4,0, 862,20,792,1,0, 862,20,28,1,1,10 862,20,33,1,1,8 @@ -544383,6 +548513,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 863,25,360,4,0, 863,25,282,4,0, 863,25,808,4,0, +863,25,38,4,0, +863,25,283,4,0, +863,25,675,4,0, +863,25,319,4,0, +863,25,174,4,0, 864,20,33,1,1,2 864,20,50,1,1,5 864,20,106,1,1,3 @@ -544941,6 +549076,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 870,25,679,4,0, 870,25,667,4,0, 870,25,253,4,0, +870,25,244,4,0, +870,25,283,4,0, +870,25,811,4,0, +870,25,675,4,0, +870,25,918,4,0, 871,20,64,1,1,1 871,20,84,1,1,2 871,20,55,1,5, @@ -545038,6 +549178,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 871,25,886,4,0, 871,25,268,4,0, 871,25,503,4,0, +871,25,220,4,0, +871,25,330,4,0, +871,25,916,4,0, +871,25,527,4,0, +871,25,675,4,0, +871,25,174,4,0, 872,20,181,1,1,1 872,20,522,1,1,2 872,20,243,2,0, @@ -545074,6 +549220,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 872,25,450,4,0, 872,25,679,4,0, 872,25,333,4,0, +872,25,806,4,0, 873,20,196,1,0, 873,20,181,1,1,2 873,20,196,1,1,1 @@ -545185,6 +549332,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 873,25,679,4,0, 873,25,333,4,0, 873,25,311,4,0, +873,25,813,4,0, +873,25,297,4,0, +873,25,806,4,0, 874,20,88,1,1,1 874,20,335,1,1,2 874,20,397,1,6, @@ -545285,6 +549435,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 874,25,479,4,0, 874,25,667,4,0, 874,25,535,4,0, +874,25,244,4,0, +874,25,283,4,0, +874,25,800,4,0, +874,25,174,4,0, +874,25,912,4,0, 875,20,33,1,1,2 875,20,181,1,1,1 875,20,54,1,6, @@ -545387,6 +549542,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 875,25,333,4,0, 875,25,311,4,0, 875,25,812,4,0, +875,25,38,4,0, +875,25,250,4,0, +875,25,297,4,0, 876,20,500,1,1,1 876,20,589,1,1,2 876,20,227,1,5, @@ -545493,6 +549651,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 876,25,678,4,0, 876,25,851,4,0, 876,25,356,4,0, +876,25,244,4,0, +876,25,797,4,0, +876,25,917,4,0, 877,20,39,1,1,2 877,20,84,1,1,1 877,20,43,1,5, @@ -545629,6 +549790,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 877,25,707,4,0, 877,25,808,4,0, 877,25,851,4,0, +877,25,38,4,0, +877,25,283,4,0, +877,25,527,4,0, 878,20,33,1,1,1 878,20,45,1,1,2 878,20,205,1,5, @@ -545738,6 +549902,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 878,25,796,4,0, 878,25,851,4,0, 878,25,667,4,0, +878,25,38,4,0, +878,25,283,4,0, +878,25,174,4,0, 879,20,484,1,0, 879,20,33,1,1,2 879,20,45,1,1,3 @@ -545855,6 +550022,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 879,25,282,4,0, 879,25,667,4,0, 879,25,535,4,0, +879,25,38,4,0, +879,25,283,4,0, +879,25,916,4,0, +879,25,174,4,0, +879,25,912,4,0, 880,20,33,1,1,1 880,20,84,1,1,2 880,20,268,1,7, @@ -546132,6 +550304,67 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 884,20,707,4,0, 884,20,776,4,0, 884,20,784,4,0, +884,25,43,1,1,1 +884,25,232,1,1,2 +884,25,249,1,6, +884,25,468,1,12, +884,25,319,1,18, +884,25,784,1,24, +884,25,525,1,30, +884,25,334,1,36, +884,25,116,1,42, +884,25,337,1,48, +884,25,430,1,54, +884,25,368,1,60, +884,25,63,1,66, +884,25,163,2,0, +884,25,243,2,0, +884,25,400,2,0, +884,25,14,4,0, +884,25,34,4,0, +884,25,36,4,0, +884,25,38,4,0, +884,25,46,4,0, +884,25,63,4,0, +884,25,76,4,0, +884,25,85,4,0, +884,25,86,4,0, +884,25,87,4,0, +884,25,113,4,0, +884,25,115,4,0, +884,25,156,4,0, +884,25,157,4,0, +884,25,164,4,0, +884,25,182,4,0, +884,25,184,4,0, +884,25,200,4,0, +884,25,203,4,0, +884,25,214,4,0, +884,25,232,4,0, +884,25,263,4,0, +884,25,280,4,0, +884,25,317,4,0, +884,25,319,4,0, +884,25,334,4,0, +884,25,337,4,0, +884,25,360,4,0, +884,25,399,4,0, +884,25,406,4,0, +884,25,416,4,0, +884,25,430,4,0, +884,25,434,4,0, +884,25,442,4,0, +884,25,444,4,0, +884,25,446,4,0, +884,25,484,4,0, +884,25,492,4,0, +884,25,525,4,0, +884,25,555,4,0, +884,25,776,4,0, +884,25,784,4,0, +884,25,796,4,0, +884,25,851,4,0, +884,25,913,4,0, 885,20,44,1,1,4 885,20,98,1,1,3 885,20,310,1,1,1 @@ -546181,6 +550414,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 885,25,434,4,0, 885,25,525,4,0, 885,25,851,4,0, +885,25,174,4,0, 886,20,406,1,0, 886,20,44,1,1,5 886,20,98,1,1,4 @@ -546293,6 +550527,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 886,25,706,4,0, 886,25,851,4,0, 886,25,884,4,0, +886,25,38,4,0, +886,25,784,4,0, +886,25,174,4,0, +886,25,913,4,0, 887,20,751,1,0, 887,20,44,1,1,7 887,20,98,1,1,6 @@ -546423,6 +550661,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 887,25,706,4,0, 887,25,851,4,0, 887,25,884,4,0, +887,25,38,4,0, +887,25,784,4,0, +887,25,174,4,0, +887,25,913,4,0, 888,20,44,1,1,6 888,20,98,1,1,5 888,20,232,1,1,3 @@ -546659,6 +550901,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 889,25,851,4,0, 889,25,885,4,0, 889,25,46,4,0, +889,25,811,4,0, 890,20,97,1,1,4 890,20,109,1,1,2 890,20,342,1,1,1 @@ -546763,6 +551006,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 890,25,851,4,0, 890,25,92,4,0, 890,25,356,4,0, +890,25,482,4,0, +890,25,800,4,0, 891,20,43,1,1,2 891,20,249,1,1,1 891,20,203,1,4, @@ -546857,6 +551102,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 891,25,512,4,0, 891,25,851,4,0, 891,25,264,4,0, +891,25,38,4,0, 892,20,817,1,0, 892,20,43,1,1,4 892,20,116,1,1,6 @@ -547000,6 +551246,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 892,25,46,4,0, 892,25,264,4,0, 892,25,808,4,0, +892,25,38,4,0, +892,25,811,4,0, +892,25,675,4,0, 893,20,10,1,1,2 893,20,20,1,1,1 893,20,43,1,6, @@ -547146,6 +551395,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 893,25,264,4,0, 893,25,803,4,0, 893,25,808,4,0, +893,25,38,4,0, +893,25,572,4,0, +893,25,675,4,0, 894,20,84,1,1,1 894,20,229,1,1,2 894,20,527,1,6, @@ -547234,6 +551486,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 894,25,604,4,0, 894,25,851,4,0, 894,25,268,4,0, +894,25,916,4,0, +894,25,527,4,0, 895,20,11,1,1,2 895,20,239,1,1,1 895,20,44,1,6, @@ -547315,6 +551569,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 895,25,434,4,0, 895,25,851,4,0, 895,25,799,4,0, +895,25,784,4,0, +895,25,913,4,0, 896,20,33,1,1,1 896,20,39,1,1,2 896,20,24,1,6, @@ -547417,6 +551673,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 896,25,46,4,0, 896,25,667,4,0, 896,25,808,4,0, +896,25,38,4,0, +896,25,675,4,0, +896,25,174,4,0, 897,20,33,1,1,1 897,20,39,1,1,2 897,20,24,1,6, @@ -547513,6 +551772,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 897,25,114,4,0, 897,25,809,4,0, 897,25,808,4,0, +897,25,220,4,0, +897,25,38,4,0, +897,25,174,4,0, 898,20,1,1,1,1 898,20,72,1,1,2 898,20,74,1,1,4 @@ -547643,6 +551905,17 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 898,25,851,4,0, 898,25,356,4,0, 898,25,669,4,0, +898,25,244,4,0, +898,25,248,4,0, +898,25,797,4,0, +899,24,33,1,1,,9 +899,24,93,1,5,,14 +899,24,95,1,9,,18 +899,24,347,1,15,,25 +899,24,828,1,21,,31 +899,24,326,1,29,,40 +899,24,428,1,37,,48 +899,24,38,1,47,,59 899,25,828,1,0, 899,25,33,1,1, 899,25,43,1,3, @@ -547708,6 +551981,23 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 899,25,679,4,0, 899,25,667,4,0, 899,25,253,4,0, +899,25,244,4,0, +899,25,38,4,0, +899,25,248,4,0, +899,25,797,4,0, +899,25,675,4,0, +899,25,174,4,0, +899,25,917,4,0, +900,24,98,1,1,,10 +900,24,318,1,6,,15 +900,24,332,1,11,,20 +900,24,458,1,14,,24 +900,24,446,1,14,,24 +900,24,403,1,18,,28 +900,24,14,1,25,,35 +900,24,830,1,29,,40 +900,24,404,1,34,,45 +900,24,370,1,43,,54 900,25,830,1,0, 900,25,43,1,1,1 900,25,98,1,1,2 @@ -547767,6 +552057,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 900,25,410,4,0, 900,25,679,4,0, 900,25,814,4,0, +900,25,38,4,0, +900,25,806,4,0, +901,24,33,1,1,,10 +901,24,608,1,6,,15 +901,24,523,1,11,,20 +901,24,163,1,18,,28 +901,24,583,1,25,,35 +901,24,667,1,34,,45 +901,24,38,1,43,,54 +901,24,838,1,43,,54 901,25,838,1,0, 901,25,313,1,1,1 901,25,343,1,1,2 @@ -547837,6 +552137,25 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 901,25,776,4,0, 901,25,851,4,0, 901,25,885,4,0, +901,25,46,4,0, +901,25,479,4,0, +901,25,667,4,0, +901,25,253,4,0, +901,25,264,4,0, +901,25,38,4,0, +901,25,916,4,0, +901,25,675,4,0, +901,25,174,4,0, +901,25,912,4,0, +902,24,33,1,1,,10 +902,24,453,1,6,,15 +902,24,44,1,11,,20 +902,24,506,1,11,,20 +902,24,428,1,18,,28 +902,24,242,1,25,,35 +902,24,247,1,25,,35 +902,24,834,1,34,,45 +902,24,38,1,43,,54 902,25,247,1,1,1 902,25,39,1,1,2 902,25,55,1,1,3 @@ -547893,6 +552212,19 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 902,25,253,4,0, 902,25,812,4,0, 902,25,799,4,0, +902,25,220,4,0, +902,25,38,4,0, +902,25,283,4,0, +902,25,250,4,0, +902,25,330,4,0, +903,24,98,1,1,,10 +903,24,249,1,6,,15 +903,24,129,1,11,,20 +903,24,827,1,11,,20 +903,24,163,1,18,,28 +903,24,398,1,25,,35 +903,24,14,1,34,,45 +903,24,370,1,43,,54 903,25,827,1,0, 903,25,10,1,1,1 903,25,43,1,1,2 @@ -547961,6 +552293,20 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 903,25,410,4,0, 903,25,264,4,0, 903,25,808,4,0, +903,25,811,4,0, +903,25,482,4,0, +903,25,675,4,0, +903,25,918,4,0, +904,24,40,1,1,,9 +904,24,191,1,5,,14 +904,24,42,1,9,,18 +904,24,839,1,15,,25 +904,24,352,1,21,,31 +904,24,399,1,26,,38 +904,24,398,1,29,,40 +904,24,401,1,37,,48 +904,24,38,1,47,,59 +904,24,120,1,57,,71 904,25,33,1,1,1 904,25,40,1,1,2 904,25,106,1,4, @@ -548020,6 +552366,20 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 904,25,360,4,0, 904,25,808,4,0, 904,25,799,4,0, +904,25,220,4,0, +904,25,38,4,0, +904,25,482,4,0, +904,25,675,4,0, +904,25,174,4,0, +905,24,33,1,1,,12 +905,24,44,1,7,,18 +905,24,239,1,11,,21 +905,24,577,1,14,,25 +905,24,334,1,22,,34 +905,24,326,1,31,,43 +905,24,242,1,41,,54 +905,24,585,1,47,,59 +905,24,831,1,52,,65 905,25,310,1,1,1 905,25,584,1,1,2 905,25,259,1,5, @@ -548075,6 +552435,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 905,25,253,4,0, 905,25,311,4,0, 905,25,802,4,0, +905,25,244,4,0, +905,25,914,4,0, 906,25,10,1,1,1 906,25,39,1,1,2 906,25,670,1,1,3 @@ -548126,6 +552488,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 906,25,851,4,0, 906,25,885,4,0, 906,25,803,4,0, +906,25,572,4,0, 907,25,10,1,1,1 907,25,39,1,1,2 907,25,670,1,1,3 @@ -548178,6 +552541,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 907,25,851,4,0, 907,25,885,4,0, 907,25,803,4,0, +907,25,572,4,0, 908,25,870,1,0, 908,25,670,1,1,1 908,25,10,1,1,2 @@ -548255,6 +552619,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 908,25,282,4,0, 908,25,803,4,0, 908,25,808,4,0, +908,25,244,4,0, +908,25,572,4,0, +908,25,813,4,0, +908,25,675,4,0, 909,25,33,1,1,1 909,25,43,1,1,2 909,25,52,1,1,3 @@ -548305,6 +552673,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 909,25,707,4,0, 909,25,851,4,0, 909,25,46,4,0, +909,25,915,4,0, +909,25,174,4,0, 910,25,33,1,1,1 910,25,43,1,1,2 910,25,52,1,1,3 @@ -548352,6 +552722,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 910,25,707,4,0, 910,25,851,4,0, 910,25,46,4,0, +910,25,915,4,0, +910,25,174,4,0, 911,25,871,1,0, 911,25,52,1,1,1 911,25,33,1,1,2 @@ -548419,6 +552791,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 911,25,46,4,0, 911,25,535,4,0, 911,25,809,4,0, +911,25,915,4,0, +911,25,815,4,0, +911,25,174,4,0, +911,25,914,4,0, 912,25,1,1,1,1 912,25,45,1,1,2 912,25,55,1,1,3 @@ -548459,6 +552835,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 912,25,710,4,0, 912,25,851,4,0, 912,25,886,4,0, +912,25,244,4,0, +912,25,250,4,0, 913,25,1,1,1,1 913,25,45,1,1,2 913,25,55,1,1,3 @@ -548501,6 +552879,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 913,25,851,4,0, 913,25,886,4,0, 913,25,812,4,0, +913,25,244,4,0, +913,25,250,4,0, +913,25,813,4,0, +913,25,297,4,0, 914,25,872,1,0, 914,25,1,1,1,1 914,25,45,1,1,2 @@ -548566,6 +552948,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 914,25,886,4,0, 914,25,282,4,0, 914,25,812,4,0, +914,25,244,4,0, +914,25,283,4,0, +914,25,250,4,0, +914,25,813,4,0, +914,25,811,4,0, +914,25,297,4,0, +914,25,918,4,0, 915,25,33,1,1,1 915,25,39,1,1,2 915,25,574,1,5, @@ -548612,6 +553001,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 915,25,886,4,0, 915,25,162,4,0, 915,25,253,4,0, +915,25,38,4,0, +915,25,283,4,0, +915,25,174,4,0, 916,25,33,1,1,1 916,25,39,1,1,2 916,25,574,1,5, @@ -548663,6 +553055,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 916,25,667,4,0, 916,25,253,4,0, 916,25,808,4,0, +916,25,38,4,0, +916,25,283,4,0, +916,25,174,4,0, 917,25,33,1,1,1 917,25,81,1,1,2 917,25,522,1,5, @@ -548710,6 +553105,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 917,25,282,4,0, 917,25,450,4,0, 917,25,679,4,0, +917,25,806,4,0, +917,25,675,4,0, 918,25,852,1,0, 918,25,33,1,1,1 918,25,81,1,1,2 @@ -548764,6 +553161,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 918,25,282,4,0, 918,25,450,4,0, 918,25,679,4,0, +918,25,220,4,0, +918,25,527,4,0, +918,25,806,4,0, +918,25,675,4,0, +918,25,918,4,0, 919,25,33,1,1,1 919,25,43,1,1,2 919,25,522,1,4, @@ -548799,6 +553201,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 919,25,884,4,0, 919,25,885,4,0, 919,25,450,4,0, +919,25,806,4,0, 920,25,679,1,0, 920,25,33,1,1,1 920,25,43,1,1,2 @@ -548853,6 +553256,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 920,25,450,4,0, 920,25,679,4,0, 920,25,808,4,0, +920,25,38,4,0, +920,25,806,4,0, +920,25,675,4,0, 921,25,10,1,1,1 921,25,45,1,1,2 921,25,84,1,3, @@ -548906,6 +553312,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 921,25,851,4,0, 921,25,268,4,0, 921,25,162,4,0, +921,25,527,4,0, 922,25,292,1,0, 922,25,10,1,1,1 922,25,45,1,1,2 @@ -548961,6 +553368,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 922,25,282,4,0, 922,25,162,4,0, 922,25,264,4,0, +922,25,527,4,0, +922,25,811,4,0, +922,25,918,4,0, 923,25,863,1,0, 923,25,10,1,1,1 923,25,45,1,1,2 @@ -549032,6 +553442,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 923,25,282,4,0, 923,25,162,4,0, 923,25,264,4,0, +923,25,38,4,0, +923,25,916,4,0, +923,25,527,4,0, +923,25,811,4,0, +923,25,675,4,0, +923,25,918,4,0, 924,25,1,1,1,1 924,25,608,1,1,2 924,25,497,1,5, @@ -549088,6 +553504,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 924,25,583,4,0, 924,25,851,4,0, 924,25,162,4,0, +924,25,38,4,0, 925,25,1,1,1,1 925,25,266,1,1,2 925,25,608,1,1,3 @@ -549143,6 +553560,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 925,25,885,4,0, 925,25,886,4,0, 925,25,162,4,0, +925,25,38,4,0, 926,25,33,1,1,1 926,25,45,1,1,2 926,25,122,1,3, @@ -549193,6 +553611,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 926,25,851,4,0, 926,25,885,4,0, 926,25,46,4,0, +926,25,244,4,0, +926,25,38,4,0, +926,25,283,4,0, +926,25,914,4,0, 927,25,33,1,1,1 927,25,45,1,1,2 927,25,122,1,3, @@ -549243,6 +553665,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 927,25,851,4,0, 927,25,885,4,0, 927,25,46,4,0, +927,25,244,4,0, +927,25,38,4,0, +927,25,283,4,0, +927,25,914,4,0, 928,25,33,1,1,1 928,25,230,1,1,2 928,25,71,1,5, @@ -549372,6 +553798,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 930,25,885,4,0, 930,25,669,4,0, 930,25,311,4,0, +930,25,244,4,0, +930,25,572,4,0, +930,25,914,4,0, 931,25,45,1,1,1 931,25,64,1,1,2 931,25,102,1,1,3 @@ -549424,6 +553853,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 931,25,253,4,0, 931,25,814,4,0, 931,25,808,4,0, +931,25,38,4,0, +931,25,283,4,0, +931,25,297,4,0, 932,25,33,1,1,1 932,25,106,1,1,2 932,25,88,1,5, @@ -549471,6 +553903,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 932,25,707,4,0, 932,25,851,4,0, 932,25,479,4,0, +932,25,800,4,0, +932,25,174,4,0, 933,25,864,1,0, 933,25,33,1,1,1 933,25,106,1,1,2 @@ -549518,6 +553952,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 933,25,776,4,0, 933,25,851,4,0, 933,25,479,4,0, +933,25,38,4,0, +933,25,800,4,0, +933,25,174,4,0, 934,25,359,1,0, 934,25,335,1,1,1 934,25,33,1,1,2 @@ -549579,6 +554016,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 934,25,356,4,0, 934,25,479,4,0, 934,25,264,4,0, +934,25,38,4,0, +934,25,800,4,0, +934,25,174,4,0, +934,25,912,4,0, 935,25,43,1,1,1 935,25,52,1,1,2 935,25,310,1,1,3 @@ -549674,6 +554115,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 936,25,851,4,0, 936,25,180,4,0, 936,25,311,4,0, +936,25,244,4,0, +936,25,815,4,0, +936,25,797,4,0, +936,25,800,4,0, 937,25,421,1,0, 937,25,43,1,1,1 937,25,52,1,1,2 @@ -549737,6 +554182,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 937,25,410,4,0, 937,25,669,4,0, 937,25,809,4,0, +937,25,244,4,0, +937,25,675,4,0, +937,25,174,4,0, 938,25,33,1,1,1 938,25,189,1,1,2 938,25,84,1,7, @@ -549781,6 +554229,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 938,25,886,4,0, 938,25,268,4,0, 938,25,311,4,0, +938,25,330,4,0, +938,25,527,4,0, 939,25,33,1,1,1 939,25,189,1,1,2 939,25,303,1,1,3 @@ -549826,6 +554276,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 939,25,268,4,0, 939,25,92,4,0, 939,25,311,4,0, +939,25,330,4,0, +939,25,916,4,0, +939,25,527,4,0, 940,25,45,1,1,1 940,25,64,1,1,2 940,25,84,1,4, @@ -549876,6 +554329,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 940,25,253,4,0, 940,25,311,4,0, 940,25,814,4,0, +940,25,283,4,0, +940,25,527,4,0, +940,25,297,4,0, 941,25,486,1,0, 941,25,45,1,1,1 941,25,64,1,1,2 @@ -549925,6 +554381,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 941,25,253,4,0, 941,25,311,4,0, 941,25,814,4,0, +941,25,283,4,0, +941,25,916,4,0, +941,25,527,4,0, +941,25,297,4,0, 942,25,33,1,1,1 942,25,43,1,1,2 942,25,184,1,1,3 @@ -549974,6 +554434,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 942,25,885,4,0, 942,25,46,4,0, 942,25,808,4,0, +942,25,38,4,0, +942,25,283,4,0, 943,25,894,1,0, 943,25,43,1,1,1 943,25,184,1,1,2 @@ -550027,6 +554489,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 943,25,46,4,0, 943,25,180,4,0, 943,25,808,4,0, +943,25,220,4,0, +943,25,38,4,0, +943,25,283,4,0, +943,25,174,4,0, 944,25,10,1,1,1 944,25,43,1,1,2 944,25,491,1,5, @@ -550083,6 +554549,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 944,25,92,4,0, 944,25,282,4,0, 944,25,162,4,0, +944,25,244,4,0, +944,25,38,4,0, +944,25,283,4,0, +944,25,482,4,0, +944,25,806,4,0, +944,25,675,4,0, 945,25,867,1,0, 945,25,10,1,1,1 945,25,43,1,1,2 @@ -550140,6 +554612,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 945,25,92,4,0, 945,25,282,4,0, 945,25,162,4,0, +945,25,244,4,0, +945,25,38,4,0, +945,25,283,4,0, +945,25,482,4,0, +945,25,806,4,0, +945,25,675,4,0, 946,25,111,1,1,1 946,25,205,1,1,2 946,25,310,1,1,3 @@ -550188,6 +554666,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 946,25,180,4,0, 946,25,803,4,0, 946,25,809,4,0, +946,25,220,4,0, +946,25,174,4,0, 947,25,111,1,1,1 947,25,205,1,1,2 947,25,310,1,1,3 @@ -550203,6 +554683,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 947,25,174,1,45, 947,25,220,1,50, 947,25,438,1,55, +947,25,73,2,0, +947,25,251,2,0, +947,25,335,2,0, +947,25,425,2,0, +947,25,668,2,0, 947,25,63,4,0, 947,25,76,4,0, 947,25,101,4,0, @@ -550233,6 +554718,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 947,25,180,4,0, 947,25,803,4,0, 947,25,809,4,0, +947,25,220,4,0, +947,25,806,4,0, +947,25,174,4,0, 948,25,35,1,1,1 948,25,189,1,1,2 948,25,71,1,4, @@ -550298,6 +554786,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 948,25,282,4,0, 948,25,679,4,0, 948,25,803,4,0, +948,25,220,4,0, 949,25,513,1,1,1 949,25,35,1,1,2 949,25,189,1,1,3 @@ -550358,6 +554847,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 949,25,282,4,0, 949,25,679,4,0, 949,25,803,4,0, +949,25,220,4,0, +949,25,806,4,0, 950,25,88,1,1, 950,25,106,1,6, 950,25,249,1,9, @@ -550417,6 +554908,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 950,25,479,4,0, 950,25,282,4,0, 950,25,667,4,0, +950,25,283,4,0, +950,25,915,4,0, +950,25,806,4,0, +950,25,800,4,0, +950,25,675,4,0, 951,25,43,1,1,1 951,25,670,1,1,2 951,25,44,1,4, @@ -550461,6 +554957,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 951,25,885,4,0, 951,25,162,4,0, 951,25,803,4,0, +951,25,283,4,0, 952,25,53,1,0, 952,25,858,1,0, 952,25,43,1,1,1 @@ -550515,6 +555012,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 952,25,803,4,0, 952,25,807,4,0, 952,25,808,4,0, +952,25,283,4,0, +952,25,915,4,0, 953,25,33,1,1,1 953,25,111,1,1,2 953,25,28,1,4, @@ -550554,6 +555053,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 953,25,450,4,0, 953,25,679,4,0, 953,25,311,4,0, +953,25,806,4,0, 954,25,863,1,0, 954,25,33,1,1,1 954,25,111,1,1,2 @@ -550625,6 +555125,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 954,25,679,4,0, 954,25,311,4,0, 954,25,809,4,0, +954,25,244,4,0, +954,25,248,4,0, +954,25,797,4,0, +954,25,806,4,0, +954,25,917,4,0, 955,25,45,1,1,1 955,25,64,1,1,2 955,25,93,1,5, @@ -550739,6 +555244,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 956,25,851,4,0, 956,25,884,4,0, 956,25,253,4,0, +956,25,244,4,0, +956,25,38,4,0, +956,25,297,4,0, +956,25,797,4,0, 957,25,584,1,1,1 957,25,310,1,1,2 957,25,608,1,5, @@ -550788,6 +555297,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 957,25,851,4,0, 957,25,884,4,0, 957,25,282,4,0, +957,25,283,4,0, +957,25,806,4,0, +957,25,319,4,0, 958,25,584,1,1,1 958,25,310,1,1,2 958,25,608,1,5, @@ -550835,6 +555347,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 958,25,851,4,0, 958,25,884,4,0, 958,25,282,4,0, +958,25,283,4,0, +958,25,806,4,0, +958,25,319,4,0, 959,25,893,1,0, 959,25,584,1,1,1 959,25,310,1,1,2 @@ -550886,6 +555401,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 959,25,884,4,0, 959,25,479,4,0, 959,25,282,4,0, +959,25,283,4,0, +959,25,806,4,0, +959,25,319,4,0, +959,25,912,4,0, 960,25,28,1,1,1 960,25,55,1,1,2 960,25,189,1,4, @@ -550927,6 +555446,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 960,25,710,4,0, 960,25,851,4,0, 960,25,886,4,0, +960,25,250,4,0, +960,25,330,4,0, +960,25,675,4,0, 961,25,28,1,1,1 961,25,35,1,1,2 961,25,55,1,1,3 @@ -550969,6 +555491,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 961,25,710,4,0, 961,25,851,4,0, 961,25,886,4,0, +961,25,220,4,0, +961,25,250,4,0, +961,25,330,4,0, +961,25,675,4,0, 962,25,17,1,1,1 962,25,43,1,1,2 962,25,64,1,1,3 @@ -551031,6 +555557,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 962,25,282,4,0, 962,25,814,4,0, 962,25,808,4,0, +962,25,244,4,0, +962,25,283,4,0, +962,25,297,4,0, +962,25,174,4,0, 963,25,48,1,1,1 963,25,55,1,1,2 963,25,310,1,7, @@ -551079,6 +555609,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 963,25,851,4,0, 963,25,886,4,0, 963,25,114,4,0, +963,25,244,4,0, 964,25,812,1,0, 964,25,857,1,1,1 964,25,48,1,1,2 @@ -551142,6 +555673,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 964,25,114,4,0, 964,25,264,4,0, 964,25,812,4,0, +964,25,244,4,0, +964,25,283,4,0, +964,25,250,4,0, +964,25,675,4,0, +964,25,912,4,0, 965,25,122,1,1,1 965,25,139,1,1,2 965,25,123,1,4, @@ -551192,6 +555728,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 965,25,92,4,0, 965,25,360,4,0, 965,25,253,4,0, +965,25,38,4,0, +965,25,482,4,0, +965,25,319,4,0, +965,25,174,4,0, 966,25,508,1,0, 966,25,393,1,1,1 966,25,122,1,1,2 @@ -551246,6 +555786,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 966,25,667,4,0, 966,25,253,4,0, 966,25,808,4,0, +966,25,38,4,0, +966,25,283,4,0, +966,25,915,4,0, +966,25,482,4,0, +966,25,319,4,0, +966,25,174,4,0, +966,25,912,4,0, 967,25,33,1,1,1 967,25,45,1,1,2 967,25,229,1,7, @@ -551303,6 +555850,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 967,25,282,4,0, 967,25,253,4,0, 967,25,799,4,0, +967,25,38,4,0, +967,25,283,4,0, +967,25,915,4,0, +967,25,916,4,0, +967,25,784,4,0, +967,25,913,4,0, 968,25,33,1,1,1 968,25,35,1,1,2 968,25,106,1,1,3 @@ -551354,6 +555907,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 968,25,328,4,0, 968,25,479,4,0, 968,25,667,4,0, +968,25,38,4,0, +968,25,319,4,0, +968,25,174,4,0, 969,25,88,1,1,1 969,25,106,1,1,2 969,25,479,1,1,3 @@ -551402,6 +555958,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 969,25,92,4,0, 969,25,328,4,0, 969,25,479,4,0, +969,25,482,4,0, +969,25,800,4,0, 970,25,866,1,0, 970,25,479,1,1,1 970,25,596,1,1,2 @@ -551456,6 +556014,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 970,25,92,4,0, 970,25,328,4,0, 970,25,479,4,0, +970,25,482,4,0, +970,25,800,4,0, 971,25,33,1,1,1 971,25,45,1,1,2 971,25,122,1,3, @@ -551514,6 +556074,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 971,25,46,4,0, 971,25,253,4,0, 971,25,809,4,0, +971,25,220,4,0, +971,25,38,4,0, +971,25,283,4,0, 972,25,854,1,0, 972,25,33,1,1,1 972,25,45,1,1,2 @@ -551570,6 +556133,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 972,25,46,4,0, 972,25,253,4,0, 972,25,809,4,0, +972,25,220,4,0, +972,25,38,4,0, +972,25,283,4,0, 973,25,64,1,1,1 973,25,383,1,1,2 973,25,24,1,5, @@ -551623,6 +556189,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 973,25,886,4,0, 973,25,679,4,0, 973,25,814,4,0, +973,25,244,4,0, +973,25,283,4,0, +973,25,297,4,0, +973,25,675,4,0, +973,25,918,4,0, 974,25,33,1,1,1 974,25,181,1,1,2 974,25,45,1,6, @@ -551677,6 +556248,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 974,25,282,4,0, 974,25,667,4,0, 974,25,333,4,0, +974,25,38,4,0, +974,25,174,4,0, 975,25,33,1,1,1 975,25,181,1,1,2 975,25,45,1,6, @@ -551728,6 +556301,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 975,25,282,4,0, 975,25,667,4,0, 975,25,333,4,0, +975,25,38,4,0, +975,25,174,4,0, +975,25,912,4,0, 976,25,33,1,1,1 976,25,453,1,1,2 976,25,365,1,7, @@ -551775,6 +556351,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 976,25,886,4,0, 976,25,812,4,0, 976,25,799,4,0, +976,25,220,4,0, +976,25,38,4,0, +976,25,283,4,0, +976,25,797,4,0, 977,25,33,1,1,1 977,25,48,1,1,2 977,25,55,1,1,3 @@ -551826,6 +556406,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 977,25,776,4,0, 977,25,851,4,0, 977,25,886,4,0, +977,25,38,4,0, +977,25,174,4,0, 978,25,55,1,1,1 978,25,150,1,1,2 978,25,106,1,6, @@ -551866,6 +556448,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 978,25,851,4,0, 978,25,886,4,0, 978,25,679,4,0, +978,25,250,4,0, +978,25,330,4,0, +978,25,913,4,0, 979,25,325,1,0, 979,25,10,1,1,1 979,25,43,1,1,2 @@ -551942,6 +556527,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 979,25,253,4,0, 979,25,264,4,0, 979,25,808,4,0, +979,25,38,4,0, +979,25,283,4,0, +979,25,811,4,0, +979,25,675,4,0, +979,25,174,4,0, 980,25,133,1,0, 980,25,39,1,1,1 980,25,40,1,1,2 @@ -552004,6 +556594,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 980,25,114,4,0, 980,25,92,4,0, 980,25,667,4,0, +980,25,38,4,0, +980,25,330,4,0, +980,25,482,4,0, +980,25,174,4,0, 981,25,33,1,1,1 981,25,45,1,1,2 981,25,310,1,1,3 @@ -552077,6 +556671,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 981,25,356,4,0, 981,25,667,4,0, 981,25,253,4,0, +981,25,244,4,0, +981,25,38,4,0, +981,25,283,4,0, +981,25,248,4,0, +981,25,797,4,0, +981,25,174,4,0, +981,25,917,4,0, 982,25,111,1,1,1 982,25,175,1,1,2 982,25,189,1,4, @@ -552160,6 +556761,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 982,25,253,4,0, 982,25,814,4,0, 982,25,799,4,0, +982,25,220,4,0, +982,25,244,4,0, +982,25,38,4,0, +982,25,283,4,0, +982,25,806,4,0, +982,25,675,4,0, +982,25,784,4,0, +982,25,174,4,0, 983,25,869,1,0, 983,25,368,1,1,1 983,25,232,1,1,2 @@ -552222,6 +556831,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 983,25,851,4,0, 983,25,180,4,0, 983,25,808,4,0, +983,25,675,4,0, +983,25,319,4,0, 984,25,30,1,1,1 984,25,111,1,1,2 984,25,205,1,1,3 @@ -552285,6 +556896,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 984,25,479,4,0, 984,25,282,4,0, 984,25,667,4,0, +984,25,38,4,0, +984,25,283,4,0, +984,25,915,4,0, +984,25,916,4,0, +984,25,675,4,0, 985,25,1,1,1,1 985,25,47,1,1,2 985,25,50,1,1,3 @@ -552369,6 +556985,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 985,25,360,4,0, 985,25,253,4,0, 985,25,802,4,0, +985,25,244,4,0, +985,25,38,4,0, +985,25,797,4,0, +985,25,917,4,0, 986,25,71,1,1,1 986,25,74,1,1,2 986,25,310,1,1,3 @@ -552422,6 +557042,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 986,25,851,4,0, 986,25,885,4,0, 986,25,808,4,0, +986,25,38,4,0, 987,25,109,1,1,1 987,25,180,1,1,2 987,25,310,1,1,3 @@ -552480,6 +557101,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 987,25,851,4,0, 987,25,180,4,0, 987,25,809,4,0, +987,25,220,4,0, 988,25,16,1,1,1 988,25,52,1,1,2 988,25,450,1,1,3 @@ -552541,6 +557163,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 988,25,667,4,0, 988,25,535,4,0, 988,25,814,4,0, +988,25,38,4,0, +988,25,915,4,0, +988,25,806,4,0, +988,25,174,4,0, 989,25,86,1,1,1 989,25,604,1,1,2 989,25,48,1,1,3 @@ -552600,6 +557226,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 989,25,328,4,0, 989,25,356,4,0, 989,25,667,4,0, +989,25,916,4,0, +989,25,527,4,0, +989,25,815,4,0, +989,25,319,4,0, 990,25,30,1,1,1 990,25,111,1,1,2 990,25,205,1,1,3 @@ -552656,6 +557286,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 990,25,360,4,0, 990,25,282,4,0, 990,25,667,4,0, +990,25,38,4,0, +990,25,283,4,0, +990,25,916,4,0, +990,25,319,4,0, +990,25,912,4,0, 991,25,217,1,1, 991,25,181,1,7, 991,25,250,1,14, @@ -552706,6 +557341,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 991,25,883,4,0, 991,25,886,4,0, 991,25,812,4,0, +991,25,250,4,0, 992,25,28,1,1,1 992,25,33,1,1,2 992,25,116,1,1,3 @@ -552766,6 +557402,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 992,25,851,4,0, 992,25,268,4,0, 992,25,264,4,0, +992,25,38,4,0, +992,25,916,4,0, +992,25,912,4,0, 993,25,604,1,1,1 993,25,526,1,1,2 993,25,116,1,1,3 @@ -552829,6 +557468,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 993,25,282,4,0, 993,25,814,4,0, 993,25,808,4,0, +993,25,38,4,0, +993,25,800,4,0, +993,25,675,4,0, +993,25,319,4,0, +993,25,913,4,0, 994,25,16,1,1,1 994,25,18,1,1,2 994,25,52,1,1,3 @@ -552889,6 +557533,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 994,25,884,4,0, 994,25,92,4,0, 994,25,679,4,0, +994,25,482,4,0, +994,25,800,4,0, +994,25,319,4,0, 995,25,88,1,1,1 995,25,424,1,1,2 995,25,423,1,1,3 @@ -552972,6 +557619,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 995,25,328,4,0, 995,25,479,4,0, 995,25,667,4,0, +995,25,38,4,0, +995,25,916,4,0, +995,25,527,4,0, +995,25,800,4,0, +995,25,784,4,0, +995,25,174,4,0, 996,25,33,1,1,1 996,25,43,1,1,2 996,25,525,1,1,3 @@ -553116,6 +557769,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 998,25,667,4,0, 998,25,333,4,0, 998,25,799,4,0, +998,25,38,4,0, +998,25,784,4,0, +998,25,913,4,0, 999,25,310,1,1,1 999,25,33,1,1,2 999,25,36,4,0, @@ -553185,6 +557841,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1000,25,851,4,0, 1000,25,264,4,0, 1000,25,809,4,0, +1000,25,319,4,0, 1001,25,71,1,1,1 1001,25,180,1,1,2 1001,25,212,1,1,3 @@ -553295,6 +557952,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1002,25,114,4,0, 1002,25,180,4,0, 1002,25,808,4,0, +1002,25,675,4,0, 1003,25,212,1,1,1 1003,25,328,1,1,2 1003,25,180,1,1,3 @@ -553349,6 +558007,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1003,25,328,4,0, 1003,25,180,4,0, 1003,25,808,4,0, +1003,25,38,4,0, +1003,25,675,4,0, 1004,25,52,1,1,1 1004,25,180,1,1,2 1004,25,212,1,1,3 @@ -553401,6 +558061,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1004,25,180,4,0, 1004,25,807,4,0, 1004,25,808,4,0, +1004,25,915,4,0, 1005,25,225,1,1,1 1005,25,43,1,1,2 1005,25,44,1,1,3 @@ -553476,6 +558137,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1005,25,282,4,0, 1005,25,808,4,0, 1005,25,799,4,0, +1005,25,38,4,0, +1005,25,675,4,0, +1005,25,784,4,0, +1005,25,913,4,0, 1006,25,50,1,1,1 1006,25,104,1,1,2 1006,25,425,1,1,3 @@ -553556,6 +558221,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1006,25,851,4,0, 1006,25,282,4,0, 1006,25,410,4,0, +1006,25,244,4,0, +1006,25,811,4,0, +1006,25,248,4,0, +1006,25,797,4,0, +1006,25,675,4,0, 1007,25,241,1,1,1 1007,25,784,1,1,2 1007,25,249,1,7, @@ -553634,6 +558304,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1007,25,264,4,0, 1007,25,814,4,0, 1007,25,799,4,0, +1007,25,38,4,0, +1007,25,915,4,0, +1007,25,800,4,0, +1007,25,784,4,0, +1007,25,913,4,0, 1008,25,84,1,1,1 1008,25,225,1,1,2 1008,25,604,1,1,3 @@ -553696,6 +558371,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1008,25,605,4,0, 1008,25,851,4,0, 1008,25,268,4,0, +1008,25,916,4,0, +1008,25,319,4,0, +1008,25,913,4,0, 1009,25,43,1,0, 1009,25,46,1,0, 1009,25,239,1,0, @@ -553752,6 +558430,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1009,25,503,4,0, 1009,25,311,4,0, 1009,25,812,4,0, +1009,25,38,4,0, +1009,25,250,4,0, +1009,25,784,4,0, +1009,25,913,4,0, 1010,25,43,1,0, 1010,25,98,1,0, 1010,25,270,1,0, @@ -553812,6 +558494,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1010,25,851,4,0, 1010,25,356,4,0, 1010,25,669,4,0, +1010,25,38,4,0, +1010,25,811,4,0, +1010,25,675,4,0, +1010,25,319,4,0, 1011,25,458,1,0, 1011,25,110,1,1,1 1011,25,230,1,1,2 @@ -553862,6 +558548,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1011,25,803,4,0, 1011,25,851,4,0, 1011,25,884,4,0, +1011,25,913,4,0, 1012,25,78,1,1,1 1012,25,110,1,1,2 1012,25,310,1,1,3 @@ -553902,6 +558589,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1012,25,580,4,0, 1012,25,809,4,0, 1012,25,851,4,0, +1012,25,220,4,0, +1012,25,244,4,0, +1012,25,174,4,0, 1013,25,902,1,0, 1013,25,78,1,1,1 1013,25,110,1,1,2 @@ -553944,6 +558634,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1013,25,580,4,0, 1013,25,809,4,0, 1013,25,851,4,0, +1013,25,220,4,0, +1013,25,244,4,0, +1013,25,174,4,0, 1014,25,44,1,1,1 1014,25,67,1,1,2 1014,25,339,1,1,3 @@ -554008,6 +558701,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1014,25,776,4,0, 1014,25,808,4,0, 1014,25,851,4,0, +1014,25,38,4,0, +1014,25,482,4,0, +1014,25,675,4,0, +1014,25,174,4,0, +1014,25,912,4,0, +1014,25,918,4,0, 1015,25,10,1,1,1 1015,25,93,1,1,2 1015,25,252,1,1,3 @@ -554067,6 +558766,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1015,25,809,4,0, 1015,25,851,4,0, 1015,25,885,4,0, +1015,25,244,4,0, +1015,25,482,4,0, +1015,25,248,4,0, +1015,25,917,4,0, 1016,25,24,1,1,1 1016,25,64,1,1,2 1016,25,139,1,1,3 @@ -554129,6 +558832,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1016,25,808,4,0, 1016,25,814,4,0, 1016,25,851,4,0, +1016,25,244,4,0, +1016,25,914,4,0, 1017,25,22,1,1,1 1017,25,73,1,1,2 1017,25,98,1,1,3 @@ -554192,6 +558897,486 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 1017,25,808,4,0, 1017,25,851,4,0, 1017,25,885,4,0, +1017,25,675,4,0, +1018,25,905,1,0, +1018,25,43,1,1,1 +1018,25,232,1,1,2 +1018,25,249,1,6, +1018,25,468,1,12, +1018,25,319,1,18, +1018,25,784,1,24, +1018,25,525,1,30, +1018,25,334,1,36, +1018,25,116,1,42, +1018,25,337,1,48, +1018,25,430,1,54, +1018,25,368,1,60, +1018,25,63,1,66, +1018,25,163,2,0, +1018,25,243,2,0, +1018,25,400,2,0, +1018,25,14,4,0, +1018,25,34,4,0, +1018,25,36,4,0, +1018,25,38,4,0, +1018,25,46,4,0, +1018,25,63,4,0, +1018,25,76,4,0, +1018,25,85,4,0, +1018,25,86,4,0, +1018,25,87,4,0, +1018,25,89,4,0, +1018,25,113,4,0, +1018,25,115,4,0, +1018,25,156,4,0, +1018,25,157,4,0, +1018,25,164,4,0, +1018,25,182,4,0, +1018,25,184,4,0, +1018,25,200,4,0, +1018,25,203,4,0, +1018,25,214,4,0, +1018,25,232,4,0, +1018,25,263,4,0, +1018,25,280,4,0, +1018,25,317,4,0, +1018,25,319,4,0, +1018,25,334,4,0, +1018,25,337,4,0, +1018,25,360,4,0, +1018,25,396,4,0, +1018,25,399,4,0, +1018,25,406,4,0, +1018,25,416,4,0, +1018,25,430,4,0, +1018,25,434,4,0, +1018,25,442,4,0, +1018,25,444,4,0, +1018,25,446,4,0, +1018,25,479,4,0, +1018,25,484,4,0, +1018,25,492,4,0, +1018,25,525,4,0, +1018,25,555,4,0, +1018,25,776,4,0, +1018,25,784,4,0, +1018,25,796,4,0, +1018,25,800,4,0, +1018,25,851,4,0, +1018,25,912,4,0, +1018,25,913,4,0, +1019,25,907,1,0, +1019,25,110,1,1,1 +1019,25,230,1,1,2 +1019,25,278,1,1,3 +1019,25,310,1,1,4 +1019,25,525,1,4, +1019,25,74,1,8, +1019,25,225,1,12, +1019,25,182,1,16, +1019,25,331,1,20, +1019,25,903,1,28, +1019,25,406,1,32, +1019,25,105,1,36, +1019,25,412,1,40, +1019,25,164,1,44, +1019,25,438,1,54, +1019,25,111,2,0, +1019,25,205,2,0, +1019,25,278,2,0, +1019,25,281,2,0, +1019,25,389,2,0, +1019,25,458,2,0, +1019,25,611,2,0, +1019,25,34,4,0, +1019,25,36,4,0, +1019,25,38,4,0, +1019,25,56,4,0, +1019,25,63,4,0, +1019,25,76,4,0, +1019,25,89,4,0, +1019,25,115,4,0, +1019,25,156,4,0, +1019,25,164,4,0, +1019,25,174,4,0, +1019,25,182,4,0, +1019,25,200,4,0, +1019,25,202,4,0, +1019,25,203,4,0, +1019,25,214,4,0, +1019,25,240,4,0, +1019,25,241,4,0, +1019,25,253,4,0, +1019,25,263,4,0, +1019,25,331,4,0, +1019,25,345,4,0, +1019,25,360,4,0, +1019,25,402,4,0, +1019,25,406,4,0, +1019,25,412,4,0, +1019,25,414,4,0, +1019,25,416,4,0, +1019,25,417,4,0, +1019,25,434,4,0, +1019,25,437,4,0, +1019,25,447,4,0, +1019,25,450,4,0, +1019,25,484,4,0, +1019,25,525,4,0, +1019,25,580,4,0, +1019,25,676,4,0, +1019,25,776,4,0, +1019,25,784,4,0, +1019,25,803,4,0, +1019,25,851,4,0, +1019,25,884,4,0, +1019,25,913,4,0, +1020,25,23,1,1,1 +1020,25,43,1,1,2 +1020,25,510,1,1,3 +1020,25,241,1,1,4 +1020,25,424,1,7, +1020,25,336,1,14, +1020,25,44,1,21, +1020,25,337,1,28, +1020,25,306,1,35, +1020,25,234,1,42, +1020,25,908,1,49, +1020,25,407,1,56, +1020,25,126,1,63, +1020,25,436,1,70, +1020,25,200,1,77, +1020,25,394,1,84, +1020,25,833,1,91, +1020,25,24,2,0, +1020,25,246,2,0, +1020,25,568,2,0, +1020,25,46,4,0, +1020,25,34,4,0, +1020,25,36,4,0, +1020,25,38,4,0, +1020,25,53,4,0, +1020,25,63,4,0, +1020,25,83,4,0, +1020,25,89,4,0, +1020,25,126,4,0, +1020,25,156,4,0, +1020,25,164,4,0, +1020,25,179,4,0, +1020,25,182,4,0, +1020,25,184,4,0, +1020,25,200,4,0, +1020,25,203,4,0, +1020,25,214,4,0, +1020,25,241,4,0, +1020,25,242,4,0, +1020,25,257,4,0, +1020,25,263,4,0, +1020,25,311,4,0, +1020,25,315,4,0, +1020,25,337,4,0, +1020,25,349,4,0, +1020,25,394,4,0, +1020,25,406,4,0, +1020,25,416,4,0, +1020,25,422,4,0, +1020,25,424,4,0, +1020,25,434,4,0, +1020,25,442,4,0, +1020,25,444,4,0, +1020,25,488,4,0, +1020,25,523,4,0, +1020,25,525,4,0, +1020,25,535,4,0, +1020,25,555,4,0, +1020,25,684,4,0, +1020,25,706,4,0, +1020,25,707,4,0, +1020,25,784,4,0, +1020,25,799,4,0, +1020,25,815,4,0, +1020,25,851,4,0, +1020,25,913,4,0, +1020,25,915,4,0, +1021,25,239,1,1,1 +1021,25,241,1,1,2 +1021,25,351,1,1,3 +1021,25,23,1,1,4 +1021,25,268,1,7, +1021,25,225,1,14, +1021,25,604,1,21, +1021,25,435,1,28, +1021,25,525,1,35, +1021,25,347,1,42, +1021,25,909,1,49, +1021,25,692,1,56, +1021,25,804,1,63, +1021,25,406,1,70, +1021,25,192,1,77, +1021,25,776,1,84, +1021,25,87,1,91, +1021,25,246,2,0, +1021,25,46,4,0, +1021,25,34,4,0, +1021,25,36,4,0, +1021,25,38,4,0, +1021,25,63,4,0, +1021,25,76,4,0, +1021,25,85,4,0, +1021,25,86,4,0, +1021,25,87,4,0, +1021,25,89,4,0, +1021,25,156,4,0, +1021,25,164,4,0, +1021,25,182,4,0, +1021,25,184,4,0, +1021,25,200,4,0, +1021,25,203,4,0, +1021,25,214,4,0, +1021,25,241,4,0, +1021,25,242,4,0, +1021,25,263,4,0, +1021,25,268,4,0, +1021,25,269,4,0, +1021,25,304,4,0, +1021,25,311,4,0, +1021,25,347,4,0, +1021,25,406,4,0, +1021,25,416,4,0, +1021,25,422,4,0, +1021,25,434,4,0, +1021,25,451,4,0, +1021,25,484,4,0, +1021,25,486,4,0, +1021,25,521,4,0, +1021,25,525,4,0, +1021,25,527,4,0, +1021,25,528,4,0, +1021,25,555,4,0, +1021,25,598,4,0, +1021,25,604,4,0, +1021,25,707,4,0, +1021,25,776,4,0, +1021,25,784,4,0, +1021,25,851,4,0, +1021,25,913,4,0, +1021,25,916,4,0, +1022,25,30,1,1,1 +1022,25,43,1,1,2 +1022,25,88,1,1,3 +1022,25,604,1,1,4 +1022,25,98,1,7, +1022,25,163,1,14, +1022,25,97,1,21, +1022,25,427,1,28, +1022,25,68,1,35, +1022,25,317,1,42, +1022,25,533,1,49, +1022,25,910,1,56, +1022,25,14,1,63, +1022,25,224,1,70, +1022,25,501,1,77, +1022,25,444,1,84, +1022,25,416,1,91, +1022,25,669,4,0, +1022,25,14,4,0, +1022,25,34,4,0, +1022,25,36,4,0, +1022,25,38,4,0, +1022,25,63,4,0, +1022,25,89,4,0, +1022,25,94,4,0, +1022,25,97,4,0, +1022,25,156,4,0, +1022,25,164,4,0, +1022,25,182,4,0, +1022,25,184,4,0, +1022,25,201,4,0, +1022,25,203,4,0, +1022,25,214,4,0, +1022,25,263,4,0, +1022,25,269,4,0, +1022,25,280,4,0, +1022,25,317,4,0, +1022,25,332,4,0, +1022,25,334,4,0, +1022,25,350,4,0, +1022,25,370,4,0, +1022,25,398,4,0, +1022,25,403,4,0, +1022,25,404,4,0, +1022,25,416,4,0, +1022,25,428,4,0, +1022,25,442,4,0, +1022,25,444,4,0, +1022,25,473,4,0, +1022,25,523,4,0, +1022,25,528,4,0, +1022,25,604,4,0, +1022,25,675,4,0, +1022,25,800,4,0, +1022,25,851,4,0, +1023,25,43,1,1,1 +1023,25,604,1,1,2 +1023,25,93,1,1,3 +1023,25,232,1,1,4 +1023,25,684,1,7, +1023,25,163,1,14, +1023,25,334,1,21, +1023,25,473,1,28, +1023,25,427,1,35, +1023,25,430,1,42, +1023,25,533,1,49, +1023,25,911,1,56, +1023,25,248,1,63, +1023,25,521,1,70, +1023,25,501,1,77, +1023,25,368,1,84, +1023,25,63,1,91, +1023,25,356,4,0, +1023,25,14,4,0, +1023,25,34,4,0, +1023,25,36,4,0, +1023,25,38,4,0, +1023,25,63,4,0, +1023,25,94,4,0, +1023,25,97,4,0, +1023,25,156,4,0, +1023,25,164,4,0, +1023,25,182,4,0, +1023,25,184,4,0, +1023,25,203,4,0, +1023,25,214,4,0, +1023,25,232,4,0, +1023,25,248,4,0, +1023,25,263,4,0, +1023,25,280,4,0, +1023,25,319,4,0, +1023,25,334,4,0, +1023,25,347,4,0, +1023,25,403,4,0, +1023,25,404,4,0, +1023,25,411,4,0, +1023,25,416,4,0, +1023,25,428,4,0, +1023,25,430,4,0, +1023,25,442,4,0, +1023,25,473,4,0, +1023,25,484,4,0, +1023,25,500,4,0, +1023,25,521,4,0, +1023,25,523,4,0, +1023,25,604,4,0, +1023,25,669,4,0, +1023,25,684,4,0, +1023,25,796,4,0, +1023,25,797,4,0, +1023,25,851,4,0, +1023,25,916,4,0, +1023,25,917,4,0, +1024,25,110,1,1,1 +1024,25,161,1,1,2 +1024,25,229,1,1,3 +1024,25,246,1,10, +1024,25,29,1,20, +1024,25,182,1,30, +1024,25,414,1,40, +1024,25,484,1,50, +1024,25,906,1,60, +1024,25,38,1,70, +1024,25,397,1,80, +1024,25,360,1,90, +1024,25,34,4,0, +1024,25,36,4,0, +1024,25,38,4,0, +1024,25,46,4,0, +1024,25,53,4,0, +1024,25,57,4,0, +1024,25,58,4,0, +1024,25,63,4,0, +1024,25,76,4,0, +1024,25,85,4,0, +1024,25,87,4,0, +1024,25,89,4,0, +1024,25,92,4,0, +1024,25,156,4,0, +1024,25,157,4,0, +1024,25,164,4,0, +1024,25,182,4,0, +1024,25,203,4,0, +1024,25,214,4,0, +1024,25,240,4,0, +1024,25,241,4,0, +1024,25,242,4,0, +1024,25,263,4,0, +1024,25,311,4,0, +1024,25,347,4,0, +1024,25,352,4,0, +1024,25,356,4,0, +1024,25,360,4,0, +1024,25,394,4,0, +1024,25,396,4,0, +1024,25,399,4,0, +1024,25,405,4,0, +1024,25,406,4,0, +1024,25,408,4,0, +1024,25,412,4,0, +1024,25,414,4,0, +1024,25,416,4,0, +1024,25,428,4,0, +1024,25,430,4,0, +1024,25,442,4,0, +1024,25,444,4,0, +1024,25,446,4,0, +1024,25,484,4,0, +1024,25,500,4,0, +1024,25,528,4,0, +1024,25,535,4,0, +1024,25,605,4,0, +1024,25,776,4,0, +1024,25,800,4,0, +1024,25,815,4,0, +1024,25,861,4,0, +1024,25,916,4,0, +1025,25,123,1,1,1 +1025,25,139,1,1,2 +1025,25,262,1,1,3 +1025,25,310,1,1,4 +1025,25,110,1,8, +1025,25,194,1,16, +1025,25,313,1,24, +1025,25,575,1,32, +1025,25,247,1,40, +1025,25,919,1,48, +1025,25,92,1,56, +1025,25,417,1,64, +1025,25,105,1,72, +1025,25,111,2,0, +1025,25,205,2,0, +1025,25,212,2,0, +1025,25,92,4,0, +1025,25,101,4,0, +1025,25,156,4,0, +1025,25,164,4,0, +1025,25,174,4,0, +1025,25,180,4,0, +1025,25,182,4,0, +1025,25,188,4,0, +1025,25,203,4,0, +1025,25,214,4,0, +1025,25,247,4,0, +1025,25,286,4,0, +1025,25,313,4,0, +1025,25,417,4,0, +1025,25,441,4,0, +1025,25,474,4,0, +1025,25,482,4,0, +1025,25,491,4,0, +1025,25,492,4,0, +1025,25,506,4,0, +1025,25,566,4,0, +1025,25,809,4,0, +1025,25,851,4,0, 10001,7,35,1,1,2 10001,7,43,1,1,1 10001,7,101,1,5, @@ -557210,6 +562395,21 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10004,23,416,4,0, 10004,23,446,4,0, 10004,23,523,4,0, +10004,24,522,1,1,,10 +10004,24,16,1,6,,15 +10004,24,93,1,11,,20 +10004,24,318,1,18,,28 +10004,24,414,1,25,,35 +10004,24,94,1,34,,45 +10004,24,405,1,43,,54 +10004,24,156,3,0,, +10004,24,247,3,0,, +10004,24,416,3,0,, +10004,24,63,3,0,, +10004,24,94,3,0,, +10004,24,523,3,0,, +10004,24,446,3,0,, +10004,24,414,3,0,, 10005,8,33,1,1, 10005,8,182,1,10, 10005,8,237,1,20, @@ -557713,6 +562913,22 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10005,23,416,4,0, 10005,23,446,4,0, 10005,23,523,4,0, +10005,24,522,1,1,,10 +10005,24,16,1,6,,15 +10005,24,93,1,11,,20 +10005,24,318,1,18,,28 +10005,24,442,1,25,,35 +10005,24,94,1,34,,45 +10005,24,405,1,43,,54 +10005,24,156,3,0,, +10005,24,247,3,0,, +10005,24,416,3,0,, +10005,24,63,3,0,, +10005,24,94,3,0,, +10005,24,446,3,0,, +10005,24,442,3,0,, +10005,24,430,3,0,, +10005,24,796,3,0,, 10006,9,74,1,1, 10006,9,345,1,10, 10006,9,73,1,19, @@ -558060,7 +563276,20 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10006,18,496,4,0, 10006,18,590,4,0, 10006,18,605,4,0, -10006,25,803,4,0, +10006,24,332,3,0,, +10006,24,129,3,0,, +10006,24,345,3,0,, +10006,24,466,3,0,, +10006,24,156,3,0,, +10006,24,608,3,0,, +10006,24,428,3,0,, +10006,24,412,3,0,, +10006,24,414,3,0,, +10006,24,605,3,0,, +10006,24,416,3,0,, +10006,24,583,3,0,, +10006,24,63,3,0,, +10006,24,94,3,0,, 10006,25,74,1,1, 10006,25,345,1,10, 10006,25,73,1,19, @@ -558073,6 +563302,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10006,25,186,1,82, 10006,25,437,1,91, 10006,25,465,1,100, +10006,25,803,4,0, 10006,25,14,4,0, 10006,25,36,4,0, 10006,25,38,4,0, @@ -558778,6 +564008,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10007,23,444,4,0, 10007,23,451,4,0, 10007,23,523,4,0, +10007,24,425,1,1,,12 +10007,24,246,1,6,,17 +10007,24,506,1,12,,23 +10007,24,421,1,19,,31 +10007,24,396,1,27,,39 +10007,24,247,1,30,,42 +10007,24,337,1,36,,48 +10007,24,406,1,42,,54 +10007,24,414,1,55,,68 +10007,24,467,1,60,,74 10007,25,425,1,1,1 10007,25,432,1,1,2 10007,25,225,1,7, @@ -558839,6 +564079,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10007,25,356,4,0, 10007,25,814,4,0, 10007,25,809,4,0, +10007,25,220,4,0, +10007,25,806,4,0, +10007,25,784,4,0, +10007,25,174,4,0, 10008,9,84,1,1,4 10008,9,86,1,1,3 10008,9,109,1,1,5 @@ -559342,11 +564586,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10008,25,598,4,0, 10008,25,604,4,0, 10008,25,851,4,0, -10008,25,315,10,0, 10008,25,268,4,0, 10008,25,180,4,0, 10008,25,253,4,0, 10008,25,809,4,0, +10008,25,220,4,0, +10008,25,527,4,0, +10008,25,315,10,0, 10009,9,84,1,1,4 10009,9,86,1,1,3 10009,9,109,1,1,5 @@ -559850,11 +565096,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10009,25,598,4,0, 10009,25,604,4,0, 10009,25,851,4,0, -10009,25,56,10,0, 10009,25,268,4,0, 10009,25,180,4,0, 10009,25,253,4,0, 10009,25,809,4,0, +10009,25,220,4,0, +10009,25,527,4,0, +10009,25,56,10,0, 10010,9,84,1,1,4 10010,9,86,1,1,3 10010,9,109,1,1,5 @@ -560358,11 +565606,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10010,25,598,4,0, 10010,25,604,4,0, 10010,25,851,4,0, -10010,25,59,10,0, 10010,25,268,4,0, 10010,25,180,4,0, 10010,25,253,4,0, 10010,25,809,4,0, +10010,25,220,4,0, +10010,25,527,4,0, +10010,25,59,10,0, 10011,9,84,1,1,4 10011,9,86,1,1,3 10011,9,109,1,1,5 @@ -560866,11 +566116,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10011,25,598,4,0, 10011,25,604,4,0, 10011,25,851,4,0, -10011,25,403,10,0, 10011,25,268,4,0, 10011,25,180,4,0, 10011,25,253,4,0, 10011,25,809,4,0, +10011,25,220,4,0, +10011,25,527,4,0, +10011,25,403,10,0, 10012,9,84,1,1,4 10012,9,86,1,1,3 10012,9,109,1,1,5 @@ -561374,11 +566626,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10012,25,598,4,0, 10012,25,604,4,0, 10012,25,851,4,0, -10012,25,437,10,0, 10012,25,268,4,0, 10012,25,180,4,0, 10012,25,253,4,0, 10012,25,809,4,0, +10012,25,220,4,0, +10012,25,527,4,0, +10012,25,437,10,0, 10013,5,33,1,1, 10013,5,52,1,10,2 10013,5,55,1,10,1 @@ -563925,6 +569179,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10016,25,886,4,0, 10016,25,812,4,0, 10016,25,799,4,0, +10016,25,38,4,0, +10016,25,283,4,0, +10016,25,250,4,0, +10016,25,330,4,0, 10017,11,33,1,1,1 10017,11,99,1,1,4 10017,11,205,1,1,2 @@ -564963,6 +570221,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10018,25,356,4,0, 10018,25,282,4,0, 10018,25,264,4,0, +10018,25,244,4,0, +10018,25,813,4,0, +10018,25,811,4,0, +10018,25,914,4,0, 10019,14,16,1,1,3 10019,14,253,1,1,1 10019,14,310,1,1,2 @@ -565414,6 +570676,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10019,25,253,4,0, 10019,25,311,4,0, 10019,25,808,4,0, +10019,25,482,4,0, 10020,14,84,1,1,3 10020,14,253,1,1,1 10020,14,310,1,1,2 @@ -565899,6 +571162,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10020,25,253,4,0, 10020,25,311,4,0, 10020,25,808,4,0, +10020,25,916,4,0, +10020,25,527,4,0, +10020,25,482,4,0, 10021,14,317,1,1,3 10021,14,335,1,1,1 10021,14,341,1,1,2 @@ -566352,6 +571618,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10021,25,356,4,0, 10021,25,479,4,0, 10021,25,311,4,0, +10021,25,482,4,0, +10021,25,815,4,0, 10022,14,82,1,1,2 10022,14,196,1,1,1 10022,14,286,1,8, @@ -566737,6 +572005,76 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10022,20,693,4,0, 10022,20,776,4,0, 10022,20,784,4,0, +10022,25,225,1,1,1 +10022,25,246,1,1,2 +10022,25,568,1,1,3 +10022,25,573,1,1,4 +10022,25,163,1,8, +10022,25,283,1,16, +10022,25,406,1,24, +10022,25,58,1,32, +10022,25,304,1,40, +10022,25,559,1,48, +10022,25,59,1,56, +10022,25,286,1,64, +10022,25,200,1,72, +10022,25,553,1,80, +10022,25,329,1,88, +10022,25,19,4,0, +10022,25,34,4,0, +10022,25,36,4,0, +10022,25,46,4,0, +10022,25,58,4,0, +10022,25,59,4,0, +10022,25,63,4,0, +10022,25,94,4,0, +10022,25,113,4,0, +10022,25,115,4,0, +10022,25,129,4,0, +10022,25,156,4,0, +10022,25,157,4,0, +10022,25,164,4,0, +10022,25,182,4,0, +10022,25,184,4,0, +10022,25,196,4,0, +10022,25,200,4,0, +10022,25,203,4,0, +10022,25,214,4,0, +10022,25,240,4,0, +10022,25,241,4,0, +10022,25,247,4,0, +10022,25,263,4,0, +10022,25,270,4,0, +10022,25,283,4,0, +10022,25,286,4,0, +10022,25,304,4,0, +10022,25,311,4,0, +10022,25,317,4,0, +10022,25,332,4,0, +10022,25,333,4,0, +10022,25,337,4,0, +10022,25,349,4,0, +10022,25,374,4,0, +10022,25,406,4,0, +10022,25,411,4,0, +10022,25,414,4,0, +10022,25,416,4,0, +10022,25,419,4,0, +10022,25,421,4,0, +10022,25,423,4,0, +10022,25,428,4,0, +10022,25,430,4,0, +10022,25,434,4,0, +10022,25,442,4,0, +10022,25,444,4,0, +10022,25,525,4,0, +10022,25,776,4,0, +10022,25,784,4,0, +10022,25,799,4,0, +10022,25,814,4,0, +10022,25,851,4,0, +10022,25,883,4,0, +10022,25,913,4,0, 10023,14,82,1,1,2 10023,14,196,1,1,1 10023,14,286,1,8, @@ -567122,6 +572460,76 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10023,20,693,4,0, 10023,20,776,4,0, 10023,20,784,4,0, +10023,25,225,1,1,1 +10023,25,246,1,1,2 +10023,25,568,1,1,3 +10023,25,573,1,1,4 +10023,25,163,1,8, +10023,25,283,1,16, +10023,25,406,1,24, +10023,25,58,1,32, +10023,25,304,1,40, +10023,25,558,1,48, +10023,25,59,1,56, +10023,25,286,1,64, +10023,25,200,1,72, +10023,25,554,1,80, +10023,25,329,1,88, +10023,25,19,4,0, +10023,25,34,4,0, +10023,25,36,4,0, +10023,25,46,4,0, +10023,25,58,4,0, +10023,25,59,4,0, +10023,25,63,4,0, +10023,25,94,4,0, +10023,25,113,4,0, +10023,25,115,4,0, +10023,25,129,4,0, +10023,25,156,4,0, +10023,25,157,4,0, +10023,25,164,4,0, +10023,25,182,4,0, +10023,25,184,4,0, +10023,25,196,4,0, +10023,25,200,4,0, +10023,25,203,4,0, +10023,25,214,4,0, +10023,25,240,4,0, +10023,25,241,4,0, +10023,25,247,4,0, +10023,25,263,4,0, +10023,25,270,4,0, +10023,25,283,4,0, +10023,25,286,4,0, +10023,25,304,4,0, +10023,25,311,4,0, +10023,25,317,4,0, +10023,25,332,4,0, +10023,25,333,4,0, +10023,25,337,4,0, +10023,25,349,4,0, +10023,25,374,4,0, +10023,25,406,4,0, +10023,25,411,4,0, +10023,25,414,4,0, +10023,25,416,4,0, +10023,25,419,4,0, +10023,25,421,4,0, +10023,25,423,4,0, +10023,25,428,4,0, +10023,25,430,4,0, +10023,25,434,4,0, +10023,25,442,4,0, +10023,25,444,4,0, +10023,25,525,4,0, +10023,25,776,4,0, +10023,25,784,4,0, +10023,25,799,4,0, +10023,25,814,4,0, +10023,25,851,4,0, +10023,25,883,4,0, +10023,25,913,4,0, 10024,14,43,1,1,2 10024,14,453,1,1,1 10024,14,24,1,7, @@ -583620,6 +589028,16 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10086,25,566,4,0, 10086,25,678,4,0, 10086,25,851,4,0, +10086,25,356,4,0, +10086,25,282,4,0, +10086,25,264,4,0, +10086,25,808,4,0, +10086,25,244,4,0, +10086,25,248,4,0, +10086,25,797,4,0, +10086,25,806,4,0, +10086,25,675,4,0, +10086,25,917,4,0, 10087,16,33,1,1,4 10087,16,45,1,1,3 10087,16,52,1,1,5 @@ -586514,6 +591932,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10100,25,268,4,0, 10100,25,282,4,0, 10100,25,264,4,0, +10100,25,283,4,0, +10100,25,527,4,0, +10100,25,797,4,0, +10100,25,914,4,0, +10100,25,917,4,0, +10100,25,918,4,0, 10101,17,10,1,1,1 10101,17,111,1,1,2 10101,17,117,1,3, @@ -586816,6 +592240,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10101,25,851,4,0, 10101,25,861,4,0, 10101,25,883,4,0, +10101,25,38,4,0, +10101,25,283,4,0, +10101,25,813,4,0, +10101,25,675,4,0, +10101,25,174,4,0, 10102,17,333,1,0, 10102,17,111,1,1,5 10102,17,163,1,1,4 @@ -587080,6 +592509,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10102,25,851,4,0, 10102,25,861,4,0, 10102,25,883,4,0, +10102,25,38,4,0, +10102,25,283,4,0, +10102,25,813,4,0, +10102,25,675,4,0, +10102,25,174,4,0, 10103,17,181,1,1, 10103,17,39,1,4, 10103,17,46,1,7, @@ -587288,6 +592722,17 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10103,20,506,4,0, 10103,20,541,4,0, 10103,20,577,4,0, +10103,24,129,3,0,, +10103,24,156,3,0,, +10103,24,608,3,0,, +10103,24,428,3,0,, +10103,24,231,3,0,, +10103,24,412,3,0,, +10103,24,399,3,0,, +10103,24,423,3,0,, +10103,24,196,3,0,, +10103,24,605,3,0,, +10103,24,58,3,0,, 10103,25,39,1,1,1 10103,25,181,1,1,2 10103,25,50,1,4, @@ -587349,6 +592794,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10103,25,851,4,0, 10103,25,883,4,0, 10103,25,886,4,0, +10103,25,220,4,0, +10103,25,244,4,0, +10103,25,38,4,0, 10104,17,605,1,0, 10104,17,58,1,1,4 10104,17,109,1,1,6 @@ -587527,6 +592975,20 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10104,20,577,4,0, 10104,20,581,4,0, 10104,20,605,4,0, +10104,24,129,3,0,, +10104,24,347,3,0,, +10104,24,156,3,0,, +10104,24,608,3,0,, +10104,24,428,3,0,, +10104,24,231,3,0,, +10104,24,412,3,0,, +10104,24,416,3,0,, +10104,24,63,3,0,, +10104,24,399,3,0,, +10104,24,423,3,0,, +10104,24,196,3,0,, +10104,24,605,3,0,, +10104,24,58,3,0,, 10104,25,605,1,0, 10104,25,39,1,1,1 10104,25,59,1,1,2 @@ -587583,6 +593045,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10104,25,851,4,0, 10104,25,883,4,0, 10104,25,886,4,0, +10104,25,220,4,0, +10104,25,244,4,0, +10104,25,38,4,0, +10104,25,813,4,0, 10105,17,28,1,1,1 10105,17,232,1,1,2 10105,17,45,1,4, @@ -587830,6 +593296,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10105,25,851,4,0, 10105,25,328,4,0, 10105,25,479,4,0, +10105,25,815,4,0, +10105,25,319,4,0, 10106,17,328,1,0, 10106,17,28,1,1,5 10106,17,45,1,1,7 @@ -588086,6 +593554,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10106,25,328,4,0, 10106,25,479,4,0, 10106,25,253,4,0, +10106,25,38,4,0, +10106,25,283,4,0, +10106,25,482,4,0, +10106,25,815,4,0, +10106,25,675,4,0, +10106,25,319,4,0, +10106,25,174,4,0, 10107,17,10,1,1,1 10107,17,45,1,1,2 10107,17,44,1,6, @@ -588378,6 +593853,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10107,25,180,4,0, 10107,25,282,4,0, 10107,25,808,4,0, +10107,25,244,4,0, +10107,25,38,4,0, +10107,25,283,4,0, +10107,25,675,4,0, +10107,25,174,4,0, 10108,17,129,1,0, 10108,17,10,1,1,5 10108,17,44,1,1,7 @@ -588681,6 +594161,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10108,25,282,4,0, 10108,25,807,4,0, 10108,25,808,4,0, +10108,25,244,4,0, +10108,25,38,4,0, +10108,25,283,4,0, +10108,25,806,4,0, +10108,25,675,4,0, +10108,25,174,4,0, 10109,17,33,1,1,1 10109,17,111,1,1,2 10109,17,268,1,4, @@ -588911,6 +594397,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10109,25,528,4,0, 10109,25,667,4,0, 10109,25,851,4,0, +10109,25,38,4,0, +10109,25,916,4,0, +10109,25,527,4,0, +10109,25,174,4,0, 10110,17,33,1,1,1 10110,17,111,1,1,2 10110,17,268,1,1,3 @@ -589135,6 +594625,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10110,25,667,4,0, 10110,25,707,4,0, 10110,25,851,4,0, +10110,25,38,4,0, +10110,25,916,4,0, +10110,25,527,4,0, +10110,25,174,4,0, +10110,25,912,4,0, 10111,17,33,1,1,2 10111,17,111,1,1,3 10111,17,268,1,1,4 @@ -589383,6 +594878,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10111,25,707,4,0, 10111,25,776,4,0, 10111,25,851,4,0, +10111,25,38,4,0, +10111,25,916,4,0, +10111,25,527,4,0, +10111,25,800,4,0, +10111,25,174,4,0, +10111,25,912,4,0, 10112,17,1,1,1,1 10112,17,139,1,1,2 10112,17,106,1,4, @@ -589635,6 +595136,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10112,25,92,4,0, 10112,25,180,4,0, 10112,25,282,4,0, +10112,25,220,4,0, +10112,25,482,4,0, +10112,25,174,4,0, 10113,17,599,1,0, 10113,17,1,1,1,2 10113,17,44,1,1,5 @@ -589885,6 +595389,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10113,25,282,4,0, 10113,25,264,4,0, 10113,25,808,4,0, +10113,25,220,4,0, +10113,25,482,4,0, +10113,25,174,4,0, 10114,17,692,1,0, 10114,17,93,1,1,5 10114,17,95,1,1,4 @@ -591685,6 +597192,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10123,25,851,4,0, 10123,25,885,4,0, 10123,25,814,4,0, +10123,25,244,4,0, +10123,25,297,4,0, +10123,25,914,4,0, 10124,17,1,1,1, 10124,17,45,1,4, 10124,17,64,1,6, @@ -591840,6 +597350,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10124,25,851,4,0, 10124,25,885,4,0, 10124,25,814,4,0, +10124,25,244,4,0, +10124,25,297,4,0, +10124,25,914,4,0, 10125,17,1,1,1, 10125,17,45,1,4, 10125,17,64,1,6, @@ -591995,6 +597508,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10125,25,851,4,0, 10125,25,885,4,0, 10125,25,814,4,0, +10125,25,244,4,0, +10125,25,297,4,0, +10125,25,914,4,0, 10126,17,68,1,0, 10126,17,28,1,1,6 10126,17,33,1,1,4 @@ -592246,6 +597762,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10126,25,282,4,0, 10126,25,264,4,0, 10126,25,808,4,0, +10126,25,38,4,0, +10126,25,283,4,0, +10126,25,675,4,0, +10126,25,918,4,0, 10127,17,45,1,1,2 10127,17,55,1,1,1 10127,17,270,1,6, @@ -595019,6 +600539,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10143,25,885,4,0, 10143,25,180,4,0, 10143,25,807,4,0, +10143,25,220,4,0, +10143,25,244,4,0, +10143,25,174,4,0, 10144,17,10,1,1,3 10144,17,150,1,1,2 10144,17,310,1,1,4 @@ -596359,6 +601882,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10152,25,851,4,0, 10152,25,885,4,0, 10152,25,46,4,0, +10152,25,38,4,0, +10152,25,283,4,0, +10152,25,675,4,0, 10153,18,145,1,1,3 10153,18,169,1,1,5 10153,18,450,1,1,6 @@ -597336,6 +602862,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10161,25,360,4,0, 10161,25,282,4,0, 10161,25,808,4,0, +10161,25,38,4,0, +10161,25,283,4,0, +10161,25,675,4,0, +10161,25,319,4,0, +10161,25,174,4,0, 10162,20,33,1,1,1 10162,20,45,1,1,2 10162,20,39,1,5, @@ -597589,6 +603120,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10164,25,883,4,0, 10164,25,886,4,0, 10164,25,311,4,0, +10164,25,244,4,0, +10164,25,250,4,0, +10164,25,797,4,0, +10164,25,174,4,0, 10165,20,801,1,0, 10165,20,33,1,1,3 10165,20,45,1,1,5 @@ -597773,6 +603308,13 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10165,25,92,4,0, 10165,25,479,4,0, 10165,25,311,4,0, +10165,25,244,4,0, +10165,25,38,4,0, +10165,25,250,4,0, +10165,25,330,4,0, +10165,25,482,4,0, +10165,25,797,4,0, +10165,25,174,4,0, 10166,20,28,1,1,2 10166,20,64,1,1,1 10166,20,43,1,5, @@ -597955,6 +603497,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10167,25,605,4,0, 10167,25,802,4,0, 10167,25,851,4,0, +10167,25,220,4,0, +10167,25,38,4,0, +10167,25,482,4,0, +10167,25,174,4,0, 10168,20,1,1,1,12 10168,20,102,1,1,6 10168,20,113,1,1,7 @@ -598161,6 +603707,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10169,25,851,4,0, 10169,25,883,4,0, 10169,25,814,4,0, +10169,25,248,4,0, +10169,25,797,4,0, +10169,25,917,4,0, 10170,20,64,1,1,1 10170,20,116,1,1,2 10170,20,249,1,5, @@ -598270,6 +603819,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10170,25,885,4,0, 10170,25,282,4,0, 10170,25,814,4,0, +10170,25,38,4,0, +10170,25,283,4,0, +10170,25,811,4,0, +10170,25,675,4,0, 10171,20,16,1,1,1 10171,20,43,1,1,2 10171,20,371,1,5, @@ -598373,6 +603926,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10171,25,180,4,0, 10171,25,814,4,0, 10171,25,808,4,0, +10171,25,220,4,0, 10172,20,826,1,0, 10172,20,33,1,1,5 10172,20,45,1,1,7 @@ -598564,6 +604118,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10172,25,886,4,0, 10172,25,92,4,0, 10172,25,311,4,0, +10172,25,244,4,0, +10172,25,250,4,0, +10172,25,330,4,0, +10172,25,482,4,0, +10172,25,248,4,0, +10172,25,797,4,0, +10172,25,174,4,0, +10172,25,917,4,0, 10173,20,33,1,1,1 10173,20,106,1,1,2 10173,20,310,1,5, @@ -599518,6 +605080,12 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10184,25,268,4,0, 10184,25,92,4,0, 10184,25,253,4,0, +10184,25,283,4,0, +10184,25,527,4,0, +10184,25,482,4,0, +10184,25,675,4,0, +10184,25,319,4,0, +10184,25,917,4,0, 10185,20,33,1,1,2 10185,20,181,1,1,1 10185,20,54,1,6, @@ -599620,6 +605188,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10185,25,333,4,0, 10185,25,311,4,0, 10185,25,812,4,0, +10185,25,38,4,0, +10185,25,250,4,0, +10185,25,297,4,0, 10186,20,500,1,1,1 10186,20,589,1,1,2 10186,20,226,1,5, @@ -599727,6 +605298,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10186,25,605,4,0, 10186,25,678,4,0, 10186,25,851,4,0, +10186,25,356,4,0, +10186,25,244,4,0, +10186,25,797,4,0, +10186,25,917,4,0, 10187,20,39,1,1,2 10187,20,84,1,1,1 10187,20,43,1,5, @@ -599863,6 +605438,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10187,25,707,4,0, 10187,25,808,4,0, 10187,25,851,4,0, +10187,25,38,4,0, +10187,25,283,4,0, +10187,25,527,4,0, 10188,20,44,1,1,6 10188,20,98,1,1,5 10188,20,232,1,1,3 @@ -600287,6 +605865,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10191,25,885,4,0, 10191,25,886,4,0, 10191,25,264,4,0, +10191,25,38,4,0, +10191,25,250,4,0, +10191,25,811,4,0, 10192,20,10,1,1,2 10192,20,20,1,1,1 10192,20,43,1,6, @@ -600828,6 +606409,26 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10194,25,678,4,0, 10194,25,707,4,0, 10194,25,851,4,0, +10229,24,33,1,1,,9 +10229,24,52,1,5,,14 +10229,24,44,1,9,,18 +10229,24,424,1,15,,25 +10229,24,157,1,21,,31 +10229,24,242,1,29,,40 +10229,24,38,1,37,,48 +10229,24,394,1,47,,59 +10229,24,424,3,0,, +10229,24,249,3,0,, +10229,24,332,3,0,, +10229,24,129,3,0,, +10229,24,156,3,0,, +10229,24,157,3,0,, +10229,24,231,3,0,, +10229,24,555,3,0,, +10229,24,528,3,0,, +10229,24,200,3,0,, +10229,24,583,3,0,, +10229,24,53,3,0,, 10229,25,43,1,1,1 10229,25,52,1,1,2 10229,25,336,1,4, @@ -600888,6 +606489,36 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10229,25,851,4,0, 10229,25,46,4,0, 10229,25,479,4,0, +10229,25,38,4,0, +10229,25,915,4,0, +10229,25,815,4,0, +10230,24,33,1,1,,9 +10230,24,52,1,5,,14 +10230,24,44,1,9,,18 +10230,24,424,1,15,,25 +10230,24,157,1,21,,31 +10230,24,833,1,29,,40 +10230,24,242,1,29,,40 +10230,24,38,1,37,,48 +10230,24,394,1,47,,59 +10230,24,424,3,0,, +10230,24,422,3,0,, +10230,24,249,3,0,, +10230,24,523,3,0,, +10230,24,332,3,0,, +10230,24,129,3,0,, +10230,24,156,3,0,, +10230,24,157,3,0,, +10230,24,442,3,0,, +10230,24,231,3,0,, +10230,24,555,3,0,, +10230,24,416,3,0,, +10230,24,528,3,0,, +10230,24,444,3,0,, +10230,24,200,3,0,, +10230,24,583,3,0,, +10230,24,63,3,0,, +10230,24,53,3,0,, 10230,25,245,1,0, 10230,25,172,1,1,1 10230,25,424,1,1,2 @@ -600958,6 +606589,25 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10230,25,46,4,0, 10230,25,479,4,0, 10230,25,535,4,0, +10230,25,38,4,0, +10230,25,915,4,0, +10230,25,815,4,0, +10231,24,84,1,1,,9 +10231,24,33,1,5,,14 +10231,24,86,1,9,,18 +10231,24,209,1,15,,25 +10231,24,412,1,21,,31 +10231,24,85,1,29,,40 +10231,24,87,1,37,,48 +10231,24,120,1,47,,59 +10231,24,301,3,0,, +10231,24,129,3,0,, +10231,24,345,3,0,, +10231,24,156,3,0,, +10231,24,451,3,0,, +10231,24,412,3,0,, +10231,24,528,3,0,, +10231,24,85,3,0,, 10231,25,268,1,1,1 10231,25,33,1,1,2 10231,25,84,1,4, @@ -601012,6 +606662,27 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10231,25,268,4,0, 10231,25,360,4,0, 10231,25,803,4,0, +10231,25,38,4,0, +10231,25,527,4,0, +10232,24,84,1,1,,9 +10232,24,33,1,5,,14 +10232,24,86,1,9,,18 +10232,24,209,1,15,,25 +10232,24,412,1,21,,31 +10232,24,85,1,29,,40 +10232,24,87,1,37,,48 +10232,24,835,1,47,,59 +10232,24,120,1,47,,59 +10232,24,301,3,0,, +10232,24,129,3,0,, +10232,24,345,3,0,, +10232,24,156,3,0,, +10232,24,451,3,0,, +10232,24,412,3,0,, +10232,24,416,3,0,, +10232,24,528,3,0,, +10232,24,63,3,0,, +10232,24,85,3,0,, 10232,25,835,1,0, 10232,25,268,1,1,1 10232,25,33,1,1,2 @@ -601067,6 +606738,39 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10232,25,268,4,0, 10232,25,360,4,0, 10232,25,803,4,0, +10232,25,38,4,0, +10232,25,916,4,0, +10232,25,527,4,0, +10232,25,174,4,0, +10233,24,506,1,0,,35 +10233,24,98,1,1,,10 +10233,24,52,1,6,,15 +10233,24,205,1,11,,20 +10233,24,172,1,18,,28 +10233,24,129,1,25,,35 +10233,24,53,1,34,,45 +10233,24,844,1,40,,51 +10233,24,247,1,43,,54 +10233,24,315,1,43,,54 +10233,24,249,3,0,, +10233,24,523,3,0,, +10233,24,332,3,0,, +10233,24,129,3,0,, +10233,24,466,3,0,, +10233,24,347,3,0,, +10233,24,156,3,0,, +10233,24,7,3,0,, +10233,24,9,3,0,, +10233,24,409,3,0,, +10233,24,157,3,0,, +10233,24,421,3,0,, +10233,24,231,3,0,, +10233,24,595,3,0,, +10233,24,247,3,0,, +10233,24,416,3,0,, +10233,24,528,3,0,, +10233,24,63,3,0,, +10233,24,53,3,0,, 10233,25,844,1,0, 10233,25,360,1,1,1 10233,25,284,1,1,2 @@ -601138,6 +606842,32 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10233,25,264,4,0, 10233,25,807,4,0, 10233,25,809,4,0, +10233,25,38,4,0, +10233,25,283,4,0, +10233,25,915,4,0, +10233,25,174,4,0, +10234,24,40,1,1,,9 +10234,24,191,1,5,,14 +10234,24,42,1,9,,18 +10234,24,839,1,15,,25 +10234,24,352,1,21,,31 +10234,24,399,1,26,,38 +10234,24,398,1,29,,40 +10234,24,401,1,37,,48 +10234,24,38,1,47,,59 +10234,24,120,1,57,,71 +10234,24,301,3,0,, +10234,24,191,3,0,, +10234,24,129,3,0,, +10234,24,156,3,0,, +10234,24,398,3,0,, +10234,24,352,3,0,, +10234,24,196,3,0,, +10234,24,188,3,0,, +10234,24,247,3,0,, +10234,24,401,3,0,, +10234,24,58,3,0,, +10234,24,399,3,0,, 10234,25,33,1,1,1 10234,25,40,1,1,2 10234,25,106,1,4, @@ -601209,6 +606939,32 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10234,25,360,4,0, 10234,25,808,4,0, 10234,25,799,4,0, +10234,25,220,4,0, +10234,25,38,4,0, +10234,25,675,4,0, +10234,25,174,4,0, +10235,24,98,1,1,,10 +10235,24,249,1,6,,15 +10235,24,129,1,11,,20 +10235,24,163,1,18,,28 +10235,24,398,1,25,,35 +10235,24,14,1,34,,45 +10235,24,370,1,43,,54 +10235,24,206,3,0,, +10235,24,249,3,0,, +10235,24,332,3,0,, +10235,24,129,3,0,, +10235,24,347,3,0,, +10235,24,156,3,0,, +10235,24,398,3,0,, +10235,24,404,3,0,, +10235,24,421,3,0,, +10235,24,231,3,0,, +10235,24,247,3,0,, +10235,24,555,3,0,, +10235,24,116,3,0,, +10235,24,339,3,0,, +10235,24,409,3,0,, 10235,25,10,1,1,1 10235,25,43,1,1,2 10235,25,249,1,1,3 @@ -601276,6 +607032,19 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10235,25,410,4,0, 10235,25,264,4,0, 10235,25,808,4,0, +10235,25,811,4,0, +10235,25,482,4,0, +10235,25,675,4,0, +10236,24,400,1,0,,35 +10236,24,33,1,1,,10 +10236,24,453,1,6,,15 +10236,24,14,1,11,,20 +10236,24,352,1,18,,28 +10236,24,845,1,21,,31 +10236,24,163,1,25,,35 +10236,24,401,1,34,,45 +10236,24,399,1,40,,51 +10236,24,56,1,43,,54 10236,25,845,1,0, 10236,25,163,1,1,1 10236,25,389,1,1,2 @@ -601343,6 +607112,34 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10236,25,410,4,0, 10236,25,812,4,0, 10236,25,808,4,0, +10236,25,250,4,0, +10236,25,675,4,0, +10236,25,918,4,0, +10237,24,249,1,0,,14 +10237,24,71,1,1,,9 +10237,24,670,1,5,,14 +10237,24,78,1,9,,18 +10237,24,77,1,15,,25 +10237,24,412,1,21,,31 +10237,24,79,1,29,,40 +10237,24,409,1,34,,45 +10237,24,105,1,37,,48 +10237,24,348,1,37,,48 +10237,24,837,1,42,,55 +10237,24,437,1,47,,59 +10237,24,80,1,53,,66 +10237,24,370,1,57,,71 +10237,24,249,3,0,, +10237,24,332,3,0,, +10237,24,345,3,0,, +10237,24,116,3,0,, +10237,24,156,3,0,, +10237,24,608,3,0,, +10237,24,409,3,0,, +10237,24,398,3,0,, +10237,24,412,3,0,, +10237,24,416,3,0,, +10237,24,63,3,0,, 10237,25,837,1,0, 10237,25,298,1,1,1 10237,25,669,1,1,2 @@ -601408,6 +607205,27 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10237,25,669,4,0, 10237,25,311,4,0, 10237,25,803,4,0, +10237,25,244,4,0, +10237,25,572,4,0, +10237,25,813,4,0, +10237,25,811,4,0, +10237,25,918,4,0, +10238,24,425,1,1,,10 +10238,24,555,1,6,,15 +10238,24,129,1,11,,20 +10238,24,841,1,18,,28 +10238,24,163,1,25,,35 +10238,24,421,1,34,,45 +10238,24,417,1,43,,54 +10238,24,332,3,0,, +10238,24,129,3,0,, +10238,24,347,3,0,, +10238,24,156,3,0,, +10238,24,421,3,0,, +10238,24,188,3,0,, +10238,24,247,3,0,, +10238,24,555,3,0,, +10238,24,399,3,0,, 10238,25,10,1,1,1 10238,25,43,1,1,2 10238,25,259,1,4, @@ -601468,6 +607286,33 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10238,25,264,4,0, 10238,25,807,4,0, 10238,25,808,4,0, +10238,25,220,4,0, +10238,25,244,4,0, +10238,25,806,4,0, +10238,25,174,4,0, +10239,24,425,1,1,,10 +10239,24,555,1,6,,15 +10239,24,129,1,11,,20 +10239,24,841,1,18,,28 +10239,24,163,1,25,,35 +10239,24,421,1,34,,45 +10239,24,247,1,40,,51 +10239,24,417,1,43,,54 +10239,24,326,1,52,,64 +10239,24,249,3,0,, +10239,24,332,3,0,, +10239,24,129,3,0,, +10239,24,466,3,0,, +10239,24,347,3,0,, +10239,24,156,3,0,, +10239,24,421,3,0,, +10239,24,188,3,0,, +10239,24,247,3,0,, +10239,24,555,3,0,, +10239,24,416,3,0,, +10239,24,63,3,0,, +10239,24,53,3,0,, +10239,24,399,3,0,, 10239,25,421,1,0, 10239,25,10,1,1,1 10239,25,43,1,1,2 @@ -601541,6 +607386,36 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10239,25,807,4,0, 10239,25,809,4,0, 10239,25,808,4,0, +10239,25,220,4,0, +10239,25,244,4,0, +10239,25,806,4,0, +10239,25,675,4,0, +10239,25,174,4,0, +10240,24,98,1,1,,10 +10240,24,332,1,6,,15 +10240,24,239,1,11,,20 +10240,24,163,1,18,,28 +10240,24,403,1,20,,30 +10240,24,840,1,25,,35 +10240,24,355,1,25,,35 +10240,24,38,1,34,,45 +10240,24,413,1,43,,54 +10240,24,542,1,52,,64 +10240,24,249,3,0,, +10240,24,332,3,0,, +10240,24,129,3,0,, +10240,24,466,3,0,, +10240,24,829,3,0,, +10240,24,339,3,0,, +10240,24,156,3,0,, +10240,24,428,3,0,, +10240,24,157,3,0,, +10240,24,421,3,0,, +10240,24,595,3,0,, +10240,24,605,3,0,, +10240,24,416,3,0,, +10240,24,63,3,0,, +10240,24,94,3,0,, 10240,25,840,1,0, 10240,25,468,1,1,1 10240,25,143,1,1,2 @@ -601608,6 +607483,31 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10240,25,851,4,0, 10240,25,410,4,0, 10240,25,814,4,0, +10240,25,244,4,0, +10240,25,38,4,0, +10240,25,297,4,0, +10240,25,248,4,0, +10240,25,797,4,0, +10240,25,917,4,0, +10241,24,145,1,1,,10 +10241,24,491,1,6,,15 +10241,24,151,1,11,,20 +10241,24,352,1,18,,28 +10241,24,442,1,25,,35 +10241,24,406,1,25,,35 +10241,24,842,1,34,,45 +10241,24,56,1,43,,54 +10241,24,156,3,0,, +10241,24,157,3,0,, +10241,24,442,3,0,, +10241,24,231,3,0,, +10241,24,352,3,0,, +10241,24,188,3,0,, +10241,24,200,3,0,, +10241,24,85,3,0,, +10241,24,58,3,0,, +10241,24,434,3,0,, +10241,24,796,3,0,, 10241,25,842,1,0, 10241,25,33,1,1,1 10241,25,55,1,1,2 @@ -601655,6 +607555,36 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10241,25,861,4,0, 10241,25,886,4,0, 10241,25,360,4,0, +10241,25,330,4,0, +10241,25,482,4,0, +10241,25,806,4,0, +10241,25,174,4,0, +10242,24,145,1,1,,10 +10242,24,491,1,6,,15 +10242,24,151,1,11,,20 +10242,24,352,1,18,,28 +10242,24,442,1,25,,35 +10242,24,406,1,25,,35 +10242,24,842,1,34,,45 +10242,24,56,1,43,,54 +10242,24,249,3,0,, +10242,24,523,3,0,, +10242,24,156,3,0,, +10242,24,7,3,0,, +10242,24,9,3,0,, +10242,24,157,3,0,, +10242,24,442,3,0,, +10242,24,231,3,0,, +10242,24,352,3,0,, +10242,24,188,3,0,, +10242,24,416,3,0,, +10242,24,200,3,0,, +10242,24,63,3,0,, +10242,24,53,3,0,, +10242,24,85,3,0,, +10242,24,58,3,0,, +10242,24,434,3,0,, +10242,24,796,3,0,, 10242,25,231,1,0, 10242,25,842,1,1,1 10242,25,491,1,1,2 @@ -601725,6 +607655,41 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10242,25,282,4,0, 10242,25,311,4,0, 10242,25,808,4,0, +10242,25,330,4,0, +10242,25,482,4,0, +10242,25,806,4,0, +10242,25,784,4,0, +10242,25,174,4,0, +10242,25,913,4,0, +10243,24,157,1,0,,31 +10243,24,33,1,1,,9 +10243,24,181,1,5,,14 +10243,24,420,1,9,,18 +10243,24,44,1,15,,25 +10243,24,334,1,21,,31 +10243,24,242,1,29,,40 +10243,24,414,1,29,,40 +10243,24,836,1,37,,48 +10243,24,59,1,37,,48 +10243,24,38,1,47,,59 +10243,24,423,3,0,, +10243,24,301,3,0,, +10243,24,249,3,0,, +10243,24,523,3,0,, +10243,24,446,3,0,, +10243,24,829,3,0,, +10243,24,156,3,0,, +10243,24,157,3,0,, +10243,24,442,3,0,, +10243,24,352,3,0,, +10243,24,196,3,0,, +10243,24,414,3,0,, +10243,24,430,3,0,, +10243,24,416,3,0,, +10243,24,667,3,0,, +10243,24,444,3,0,, +10243,24,63,3,0,, +10243,24,58,3,0,, 10243,25,157,1,0, 10243,25,181,1,1,1 10243,25,229,1,1,2 @@ -601784,6 +607749,36 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10243,25,360,4,0, 10243,25,667,4,0, 10243,25,333,4,0, +10243,25,38,4,0, +10243,25,800,4,0, +10243,25,174,4,0, +10243,25,912,4,0, +10244,24,249,1,0,,15 +10244,24,16,1,1,,10 +10244,24,670,1,6,,15 +10244,24,355,1,11,,20 +10244,24,332,1,18,,28 +10244,24,345,1,21,,31 +10244,24,403,1,25,,35 +10244,24,396,1,30,,41 +10244,24,348,1,34,,45 +10244,24,843,1,34,,45 +10244,24,413,1,40,,51 +10244,24,437,1,43,,54 +10244,24,206,3,0,, +10244,24,249,3,0,, +10244,24,191,3,0,, +10244,24,332,3,0,, +10244,24,129,3,0,, +10244,24,345,3,0,, +10244,24,116,3,0,, +10244,24,339,3,0,, +10244,24,156,3,0,, +10244,24,427,3,0,, +10244,24,421,3,0,, +10244,24,412,3,0,, +10244,24,416,3,0,, +10244,24,63,3,0,, 10244,25,843,1,0, 10244,25,33,1,1,1 10244,25,45,1,1,2 @@ -601854,6 +607849,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10244,25,264,4,0, 10244,25,803,4,0, 10244,25,814,4,0, +10244,25,811,4,0, +10244,25,297,4,0, +10244,25,918,4,0, 10245,25,184,1,1,1 10245,25,232,1,1,2 10245,25,225,1,8, @@ -601989,6 +607987,20 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10246,25,851,4,0, 10246,25,883,4,0, 10246,25,886,4,0, +10247,24,33,1,1,,10 +10247,24,453,1,6,,15 +10247,24,44,1,11,,20 +10247,24,428,1,18,,28 +10247,24,242,1,25,,35 +10247,24,834,1,34,,45 +10247,24,38,1,43,,54 +10247,24,423,3,0,, +10247,24,129,3,0,, +10247,24,156,3,0,, +10247,24,428,3,0,, +10247,24,196,3,0,, +10247,24,401,3,0,, +10247,24,58,3,0,, 10247,25,39,1,1,1 10247,25,55,1,1,2 10247,25,33,1,4, @@ -602036,6 +608048,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10247,25,886,4,0, 10247,25,812,4,0, 10247,25,799,4,0, +10247,25,38,4,0, +10247,25,283,4,0, +10247,25,250,4,0, +10247,25,330,4,0, 10248,25,247,1,1,1 10248,25,39,1,1,2 10248,25,55,1,1,3 @@ -602092,6 +608108,11 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10248,25,253,4,0, 10248,25,812,4,0, 10248,25,799,4,0, +10248,25,220,4,0, +10248,25,38,4,0, +10248,25,283,4,0, +10248,25,250,4,0, +10248,25,330,4,0, 10249,25,310,1,1,1 10249,25,584,1,1,2 10249,25,259,1,5, @@ -602147,6 +608168,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10249,25,253,4,0, 10249,25,311,4,0, 10249,25,802,4,0, +10249,25,244,4,0, +10249,25,914,4,0, 10250,25,33,1,1,1 10250,25,39,1,1,2 10250,25,526,1,5, @@ -602200,6 +608223,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10250,25,885,4,0, 10250,25,667,4,0, 10250,25,808,4,0, +10250,25,38,4,0, +10250,25,283,4,0, +10250,25,675,4,0, +10250,25,174,4,0, 10251,25,33,1,1,1 10251,25,39,1,1,2 10251,25,526,1,5, @@ -602259,6 +608286,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10251,25,885,4,0, 10251,25,667,4,0, 10251,25,808,4,0, +10251,25,38,4,0, +10251,25,283,4,0, +10251,25,915,4,0, +10251,25,174,4,0, 10252,25,33,1,1,1 10252,25,39,1,1,2 10252,25,526,1,5, @@ -602315,6 +608346,10 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10252,25,886,4,0, 10252,25,667,4,0, 10252,25,808,4,0, +10252,25,38,4,0, +10252,25,283,4,0, +10252,25,250,4,0, +10252,25,174,4,0, 10253,25,39,1,1,1 10253,25,341,1,1,2 10253,25,33,1,4, @@ -602382,6 +608417,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10253,25,886,4,0, 10253,25,114,4,0, 10253,25,92,4,0, +10253,25,38,4,0, +10253,25,482,4,0, +10253,25,174,4,0, 10254,25,33,1,1,1 10254,25,39,1,1,2 10254,25,574,1,3, @@ -602433,6 +608471,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10254,25,667,4,0, 10254,25,253,4,0, 10254,25,808,4,0, +10254,25,38,4,0, +10254,25,283,4,0, +10254,25,174,4,0, 10255,25,111,1,1,1 10255,25,175,1,1,2 10255,25,189,1,4, @@ -602516,6 +608557,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10255,25,253,4,0, 10255,25,814,4,0, 10255,25,799,4,0, +10255,25,220,4,0, +10255,25,244,4,0, +10255,25,38,4,0, +10255,25,283,4,0, +10255,25,806,4,0, +10255,25,675,4,0, +10255,25,784,4,0, +10255,25,174,4,0, 10256,25,812,1,0, 10256,25,857,1,1,1 10256,25,48,1,1,2 @@ -602576,6 +608625,14 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10256,25,710,4,0, 10256,25,851,4,0, 10256,25,886,4,0, +10256,25,114,4,0, +10256,25,264,4,0, +10256,25,812,4,0, +10256,25,244,4,0, +10256,25,283,4,0, +10256,25,250,4,0, +10256,25,675,4,0, +10256,25,912,4,0, 10257,25,1,1,1,1 10257,25,266,1,1,2 10257,25,608,1,1,3 @@ -602631,6 +608688,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10257,25,885,4,0, 10257,25,886,4,0, 10257,25,162,4,0, +10257,25,38,4,0, 10258,25,55,1,1,1 10258,25,150,1,1,2 10258,25,106,1,6, @@ -602671,6 +608729,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10258,25,851,4,0, 10258,25,886,4,0, 10258,25,679,4,0, +10258,25,250,4,0, +10258,25,330,4,0, +10258,25,913,4,0, 10259,25,55,1,1,1 10259,25,150,1,1,2 10259,25,106,1,6, @@ -602711,6 +608772,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10259,25,851,4,0, 10259,25,886,4,0, 10259,25,679,4,0, +10259,25,250,4,0, +10259,25,330,4,0, +10259,25,913,4,0, 10260,25,45,1,1,1 10260,25,64,1,1,2 10260,25,102,1,1,3 @@ -602763,6 +608827,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10260,25,253,4,0, 10260,25,814,4,0, 10260,25,808,4,0, +10260,25,38,4,0, +10260,25,283,4,0, +10260,25,297,4,0, 10261,25,45,1,1,1 10261,25,64,1,1,2 10261,25,102,1,1,3 @@ -602815,6 +608882,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10261,25,253,4,0, 10261,25,814,4,0, 10261,25,808,4,0, +10261,25,38,4,0, +10261,25,283,4,0, +10261,25,297,4,0, 10262,25,45,1,1,1 10262,25,64,1,1,2 10262,25,102,1,1,3 @@ -602867,6 +608937,9 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10262,25,253,4,0, 10262,25,814,4,0, 10262,25,808,4,0, +10262,25,38,4,0, +10262,25,283,4,0, +10262,25,297,4,0, 10263,25,310,1,1,1 10263,25,33,1,1,2 10263,25,36,4,0, @@ -603523,6 +609596,8 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10272,25,776,4,0, 10272,25,851,4,0, 10272,25,885,4,0, +10272,25,38,4,0, +10272,25,912,4,0, 10273,25,22,1,1,1 10273,25,73,1,1,2 10273,25,98,1,1,3 @@ -603586,6 +609661,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10273,25,808,4,0, 10273,25,851,4,0, 10273,25,885,4,0, +10273,25,675,4,0, 10274,25,22,1,1,1 10274,25,73,1,1,2 10274,25,98,1,1,3 @@ -603649,6 +609725,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10274,25,808,4,0, 10274,25,851,4,0, 10274,25,885,4,0, +10274,25,675,4,0, 10275,25,22,1,1,1 10275,25,73,1,1,2 10275,25,98,1,1,3 @@ -603712,242 +609789,7 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10275,25,808,4,0, 10275,25,851,4,0, 10275,25,885,4,0, -1024,25,110,1,1,1 -1024,25,161,1,1,2 -1024,25,229,1,1,3 -1024,25,246,1,10, -1024,25,29,1,20, -1024,25,182,1,30, -1024,25,414,1,40, -1024,25,484,1,50, -1024,25,906,1,60, -1024,25,38,1,70, -1024,25,397,1,80, -1024,25,360,1,90, -1024,25,34,4,0, -1024,25,36,4,0, -1024,25,38,4,0, -1024,25,46,4,0, -1024,25,53,4,0, -1024,25,57,4,0, -1024,25,58,4,0, -1024,25,63,4,0, -1024,25,76,4,0, -1024,25,85,4,0, -1024,25,87,4,0, -1024,25,89,4,0, -1024,25,92,4,0, -1024,25,156,4,0, -1024,25,157,4,0, -1024,25,164,4,0, -1024,25,182,4,0, -1024,25,203,4,0, -1024,25,214,4,0, -1024,25,240,4,0, -1024,25,241,4,0, -1024,25,242,4,0, -1024,25,263,4,0, -1024,25,311,4,0, -1024,25,347,4,0, -1024,25,352,4,0, -1024,25,356,4,0, -1024,25,360,4,0, -1024,25,394,4,0, -1024,25,396,4,0, -1024,25,399,4,0, -1024,25,405,4,0, -1024,25,406,4,0, -1024,25,408,4,0, -1024,25,412,4,0, -1024,25,414,4,0, -1024,25,416,4,0, -1024,25,428,4,0, -1024,25,430,4,0, -1024,25,442,4,0, -1024,25,444,4,0, -1024,25,446,4,0, -1024,25,484,4,0, -1024,25,500,4,0, -1024,25,528,4,0, -1024,25,535,4,0, -1024,25,605,4,0, -1024,25,776,4,0, -1024,25,800,4,0, -1024,25,815,4,0, -1024,25,861,4,0, -1024,25,916,4,0, -1025,25,123,1,1,1 -1025,25,139,1,1,2 -1025,25,262,1,1,3 -1025,25,310,1,1,4 -1025,25,110,1,8, -1025,25,194,1,16, -1025,25,313,1,24, -1025,25,575,1,32, -1025,25,247,1,40, -1025,25,919,1,48, -1025,25,92,1,56, -1025,25,417,1,64, -1025,25,105,1,72, -1025,25,111,2,0, -1025,25,205,2,0, -1025,25,212,2,0, -1025,25,92,4,0, -1025,25,101,4,0, -1025,25,156,4,0, -1025,25,164,4,0, -1025,25,174,4,0, -1025,25,180,4,0, -1025,25,182,4,0, -1025,25,188,4,0, -1025,25,203,4,0, -1025,25,214,4,0, -1025,25,247,4,0, -1025,25,286,4,0, -1025,25,313,4,0, -1025,25,417,4,0, -1025,25,441,4,0, -1025,25,474,4,0, -1025,25,482,4,0, -1025,25,491,4,0, -1025,25,492,4,0, -1025,25,506,4,0, -1025,25,566,4,0, -1025,25,809,4,0, -1025,25,851,4,0, -1018,25,905,1,0, -1018,25,43,1,1,1 -1018,25,232,1,1,2 -1018,25,249,1,6, -1018,25,468,1,12, -1018,25,319,1,18, -1018,25,784,1,24, -1018,25,525,1,30, -1018,25,334,1,36, -1018,25,116,1,42, -1018,25,337,1,48, -1018,25,430,1,54, -1018,25,368,1,60, -1018,25,63,1,66, -1018,25,163,2,0, -1018,25,243,2,0, -1018,25,400,2,0, -1018,25,14,4,0, -1018,25,34,4,0, -1018,25,36,4,0, -1018,25,38,4,0, -1018,25,46,4,0, -1018,25,63,4,0, -1018,25,76,4,0, -1018,25,85,4,0, -1018,25,86,4,0, -1018,25,87,4,0, -1018,25,89,4,0, -1018,25,113,4,0, -1018,25,115,4,0, -1018,25,156,4,0, -1018,25,157,4,0, -1018,25,164,4,0, -1018,25,182,4,0, -1018,25,184,4,0, -1018,25,200,4,0, -1018,25,203,4,0, -1018,25,214,4,0, -1018,25,232,4,0, -1018,25,263,4,0, -1018,25,280,4,0, -1018,25,317,4,0, -1018,25,319,4,0, -1018,25,334,4,0, -1018,25,337,4,0, -1018,25,360,4,0, -1018,25,396,4,0, -1018,25,399,4,0, -1018,25,406,4,0, -1018,25,416,4,0, -1018,25,430,4,0, -1018,25,434,4,0, -1018,25,442,4,0, -1018,25,444,4,0, -1018,25,446,4,0, -1018,25,479,4,0, -1018,25,484,4,0, -1018,25,492,4,0, -1018,25,525,4,0, -1018,25,555,4,0, -1018,25,776,4,0, -1018,25,784,4,0, -1018,25,796,4,0, -1018,25,800,4,0, -1018,25,851,4,0, -1018,25,912,4,0, -1018,25,913,4,0, -1019,25,907,1,0, -1019,25,110,1,1,1 -1019,25,230,1,1,2 -1019,25,278,1,1,3 -1019,25,310,1,1,4 -1019,25,525,1,4, -1019,25,74,1,8, -1019,25,225,1,12, -1019,25,182,1,16, -1019,25,331,1,20, -1019,25,903,1,28, -1019,25,406,1,32, -1019,25,105,1,36, -1019,25,412,1,40, -1019,25,164,1,44, -1019,25,438,1,54, -1019,25,111,2,0, -1019,25,205,2,0, -1019,25,278,2,0, -1019,25,281,2,0, -1019,25,389,2,0, -1019,25,458,2,0, -1019,25,611,2,0, -1019,25,34,4,0, -1019,25,36,4,0, -1019,25,38,4,0, -1019,25,56,4,0, -1019,25,63,4,0, -1019,25,76,4,0, -1019,25,89,4,0, -1019,25,115,4,0, -1019,25,156,4,0, -1019,25,164,4,0, -1019,25,174,4,0, -1019,25,182,4,0, -1019,25,200,4,0, -1019,25,202,4,0, -1019,25,203,4,0, -1019,25,214,4,0, -1019,25,240,4,0, -1019,25,241,4,0, -1019,25,253,4,0, -1019,25,263,4,0, -1019,25,331,4,0, -1019,25,345,4,0, -1019,25,360,4,0, -1019,25,402,4,0, -1019,25,406,4,0, -1019,25,412,4,0, -1019,25,414,4,0, -1019,25,416,4,0, -1019,25,417,4,0, -1019,25,434,4,0, -1019,25,437,4,0, -1019,25,447,4,0, -1019,25,450,4,0, -1019,25,484,4,0, -1019,25,525,4,0, -1019,25,580,4,0, -1019,25,676,4,0, -1019,25,776,4,0, -1019,25,784,4,0, -1019,25,803,4,0, -1019,25,851,4,0, -1019,25,884,4,0, -1019,25,913,4,0, +10275,25,675,4,0, 10276,25,110,1,1,1 10276,25,161,1,1,2 10276,25,229,1,1,3 @@ -604076,2545 +609918,3 @@ pokemon_id,version_group_id,move_id,pokemon_move_method_id,level,order 10277,25,815,4,0, 10277,25,861,4,0, 10277,25,916,4,0, -243,25,46,4,0, -244,25,46,4,0, -245,25,46,4,0, -380,25,46,4,0, -381,25,46,4,0, -638,25,46,4,0, -639,25,46,4,0, -640,25,46,4,0, -643,25,46,4,0, -644,25,46,4,0, -646,25,46,4,0, -884,25,46,4,0, -901,25,46,4,0, -1020,25,46,4,0, -1020,25,23,1,1,1 -1020,25,43,1,1,2 -1020,25,510,1,1,3 -1020,25,241,1,1,4 -1020,25,424,1,7, -1020,25,336,1,14, -1020,25,44,1,21, -1020,25,337,1,28, -1020,25,306,1,35, -1020,25,234,1,42, -1020,25,908,1,49, -1020,25,407,1,56, -1020,25,126,1,63, -1020,25,436,1,70, -1020,25,200,1,77, -1020,25,394,1,84, -1020,25,833,1,91, -1020,25,24,2,0, -1020,25,246,2,0, -1020,25,568,2,0, -1020,25,34,4,0, -1020,25,36,4,0, -1020,25,38,4,0, -1020,25,53,4,0, -1020,25,63,4,0, -1020,25,83,4,0, -1020,25,89,4,0, -1020,25,126,4,0, -1020,25,156,4,0, -1020,25,164,4,0, -1020,25,179,4,0, -1020,25,182,4,0, -1020,25,184,4,0, -1020,25,200,4,0, -1020,25,203,4,0, -1020,25,214,4,0, -1020,25,241,4,0, -1020,25,242,4,0, -1020,25,257,4,0, -1020,25,263,4,0, -1020,25,311,4,0, -1020,25,315,4,0, -1020,25,337,4,0, -1020,25,349,4,0, -1020,25,394,4,0, -1020,25,406,4,0, -1020,25,416,4,0, -1020,25,422,4,0, -1020,25,424,4,0, -1020,25,434,4,0, -1020,25,442,4,0, -1020,25,444,4,0, -1020,25,488,4,0, -1020,25,523,4,0, -1020,25,525,4,0, -1020,25,535,4,0, -1020,25,555,4,0, -1020,25,684,4,0, -1020,25,706,4,0, -1020,25,707,4,0, -1020,25,784,4,0, -1020,25,799,4,0, -1020,25,815,4,0, -1020,25,851,4,0, -1020,25,913,4,0, -1020,25,915,4,0, -1021,25,46,4,0, -1021,25,239,1,1,1 -1021,25,241,1,1,2 -1021,25,351,1,1,3 -1021,25,23,1,1,4 -1021,25,268,1,7, -1021,25,225,1,14, -1021,25,604,1,21, -1021,25,435,1,28, -1021,25,525,1,35, -1021,25,347,1,42, -1021,25,909,1,49, -1021,25,692,1,56, -1021,25,804,1,63, -1021,25,406,1,70, -1021,25,192,1,77, -1021,25,776,1,84, -1021,25,87,1,91, -1021,25,246,2,0, -1021,25,34,4,0, -1021,25,36,4,0, -1021,25,38,4,0, -1021,25,63,4,0, -1021,25,76,4,0, -1021,25,85,4,0, -1021,25,86,4,0, -1021,25,87,4,0, -1021,25,89,4,0, -1021,25,156,4,0, -1021,25,164,4,0, -1021,25,182,4,0, -1021,25,184,4,0, -1021,25,200,4,0, -1021,25,203,4,0, -1021,25,214,4,0, -1021,25,241,4,0, -1021,25,242,4,0, -1021,25,263,4,0, -1021,25,268,4,0, -1021,25,269,4,0, -1021,25,304,4,0, -1021,25,311,4,0, -1021,25,347,4,0, -1021,25,406,4,0, -1021,25,416,4,0, -1021,25,422,4,0, -1021,25,434,4,0, -1021,25,451,4,0, -1021,25,484,4,0, -1021,25,486,4,0, -1021,25,521,4,0, -1021,25,525,4,0, -1021,25,527,4,0, -1021,25,528,4,0, -1021,25,555,4,0, -1021,25,598,4,0, -1021,25,604,4,0, -1021,25,707,4,0, -1021,25,776,4,0, -1021,25,784,4,0, -1021,25,851,4,0, -1021,25,913,4,0, -1021,25,916,4,0, -243,25,268,4,0, -644,25,268,4,0, -644,25,114,4,0, -10256,25,114,4,0, -10086,25,356,4,0, -10186,25,356,4,0, -1023,25,356,4,0, -1023,25,43,1,1,1 -1023,25,604,1,1,2 -1023,25,93,1,1,3 -1023,25,232,1,1,4 -1023,25,684,1,7, -1023,25,163,1,14, -1023,25,334,1,21, -1023,25,473,1,28, -1023,25,427,1,35, -1023,25,430,1,42, -1023,25,533,1,49, -1023,25,911,1,56, -1023,25,248,1,63, -1023,25,521,1,70, -1023,25,501,1,77, -1023,25,368,1,84, -1023,25,63,1,91, -1023,25,14,4,0, -1023,25,34,4,0, -1023,25,36,4,0, -1023,25,38,4,0, -1023,25,63,4,0, -1023,25,94,4,0, -1023,25,97,4,0, -1023,25,156,4,0, -1023,25,164,4,0, -1023,25,182,4,0, -1023,25,184,4,0, -1023,25,203,4,0, -1023,25,214,4,0, -1023,25,232,4,0, -1023,25,248,4,0, -1023,25,263,4,0, -1023,25,280,4,0, -1023,25,319,4,0, -1023,25,334,4,0, -1023,25,347,4,0, -1023,25,403,4,0, -1023,25,404,4,0, -1023,25,411,4,0, -1023,25,416,4,0, -1023,25,428,4,0, -1023,25,430,4,0, -1023,25,442,4,0, -1023,25,473,4,0, -1023,25,484,4,0, -1023,25,500,4,0, -1023,25,521,4,0, -1023,25,523,4,0, -1023,25,604,4,0, -1023,25,669,4,0, -1023,25,684,4,0, -1023,25,796,4,0, -1023,25,797,4,0, -1023,25,851,4,0, -1023,25,916,4,0, -1023,25,917,4,0, -639,25,479,4,0, -901,25,479,4,0, -75,25,360,4,0, -884,25,360,4,0, -10086,25,282,4,0, -638,25,410,4,0, -640,25,410,4,0, -639,25,667,4,0, -901,25,667,4,0, -646,25,333,4,0, -243,25,503,4,0, -245,25,503,4,0, -643,25,535,4,0, -640,25,669,4,0, -1022,25,669,4,0, -1022,25,30,1,1,1 -1022,25,43,1,1,2 -1022,25,88,1,1,3 -1022,25,604,1,1,4 -1022,25,98,1,7, -1022,25,163,1,14, -1022,25,97,1,21, -1022,25,427,1,28, -1022,25,68,1,35, -1022,25,317,1,42, -1022,25,533,1,49, -1022,25,910,1,56, -1022,25,14,1,63, -1022,25,224,1,70, -1022,25,501,1,77, -1022,25,444,1,84, -1022,25,416,1,91, -1022,25,14,4,0, -1022,25,34,4,0, -1022,25,36,4,0, -1022,25,38,4,0, -1022,25,63,4,0, -1022,25,89,4,0, -1022,25,94,4,0, -1022,25,97,4,0, -1022,25,156,4,0, -1022,25,164,4,0, -1022,25,182,4,0, -1022,25,184,4,0, -1022,25,201,4,0, -1022,25,203,4,0, -1022,25,214,4,0, -1022,25,263,4,0, -1022,25,269,4,0, -1022,25,280,4,0, -1022,25,317,4,0, -1022,25,332,4,0, -1022,25,334,4,0, -1022,25,350,4,0, -1022,25,370,4,0, -1022,25,398,4,0, -1022,25,403,4,0, -1022,25,404,4,0, -1022,25,416,4,0, -1022,25,428,4,0, -1022,25,442,4,0, -1022,25,444,4,0, -1022,25,473,4,0, -1022,25,523,4,0, -1022,25,528,4,0, -1022,25,604,4,0, -1022,25,675,4,0, -1022,25,800,4,0, -1022,25,851,4,0, -102,25,253,4,0, -901,25,253,4,0, -644,25,264,4,0, -10086,25,264,4,0, -901,25,264,4,0, -10256,25,264,4,0, -243,25,311,4,0, -244,25,311,4,0, -245,25,311,4,0, -249,25,311,4,0, -250,25,311,4,0, -380,25,311,4,0, -381,25,311,4,0, -643,25,311,4,0, -644,25,311,4,0, -646,25,311,4,0, -102,25,803,4,0, -640,25,803,4,0, -381,25,812,4,0, -10256,25,812,4,0, -249,25,814,4,0, -250,25,814,4,0, -357,25,814,4,0, -380,25,814,4,0, -381,25,814,4,0, -643,25,814,4,0, -644,25,814,4,0, -646,25,814,4,0, -10086,25,808,4,0, -249,25,799,4,0, -380,25,799,4,0, -381,25,799,4,0, -472,25,799,4,0, -643,25,799,4,0, -644,25,799,4,0, -646,25,799,4,0, -24,25,220,4,0, -37,25,220,4,0, -10103,25,220,4,0, -38,25,220,4,0, -10104,25,220,4,0, -39,25,220,4,0, -40,25,220,4,0, -52,25,220,4,0, -53,25,220,4,0, -88,25,220,4,0, -10112,25,220,4,0, -89,25,220,4,0, -10113,25,220,4,0, -92,25,220,4,0, -93,25,220,4,0, -94,25,220,4,0, -109,25,220,4,0, -110,25,220,4,0, -10167,25,220,4,0, -10171,25,220,4,0, -151,25,220,4,0, -174,25,220,4,0, -200,25,220,4,0, -204,25,220,4,0, -205,25,220,4,0, -206,25,220,4,0, -211,25,220,4,0, -10234,25,220,4,0, -218,25,220,4,0, -219,25,220,4,0, -228,25,220,4,0, -229,25,220,4,0, -280,25,220,4,0, -281,25,220,4,0, -282,25,220,4,0, -299,25,220,4,0, -302,25,220,4,0, -307,25,220,4,0, -308,25,220,4,0, -316,25,220,4,0, -317,25,220,4,0, -353,25,220,4,0, -354,25,220,4,0, -355,25,220,4,0, -356,25,220,4,0, -422,25,220,4,0, -423,25,220,4,0, -425,25,220,4,0, -426,25,220,4,0, -429,25,220,4,0, -442,25,220,4,0, -475,25,220,4,0, -476,25,220,4,0, -477,25,220,4,0, -478,25,220,4,0, -479,25,220,4,0, -10010,25,220,4,0, -10008,25,220,4,0, -10012,25,220,4,0, -10011,25,220,4,0, -10009,25,220,4,0, -480,25,220,4,0, -481,25,220,4,0, -487,25,220,4,0, -10007,25,220,4,0, -570,25,220,4,0, -10238,25,220,4,0, -571,25,220,4,0, -10239,25,220,4,0, -594,25,220,4,0, -607,25,220,4,0, -608,25,220,4,0, -609,25,220,4,0, -708,25,220,4,0, -709,25,220,4,0, -747,25,220,4,0, -748,25,220,4,0, -765,25,220,4,0, -766,25,220,4,0, -769,25,220,4,0, -770,25,220,4,0, -778,25,220,4,0, -10143,25,220,4,0, -779,25,220,4,0, -801,25,220,4,0, -855,25,220,4,0, -858,25,220,4,0, -871,25,220,4,0, -897,25,220,4,0, -902,25,220,4,0, -10248,25,220,4,0, -904,25,220,4,0, -918,25,220,4,0, -943,25,220,4,0, -946,25,220,4,0, -947,25,220,4,0, -948,25,220,4,0, -949,25,220,4,0, -961,25,220,4,0, -971,25,220,4,0, -972,25,220,4,0, -976,25,220,4,0, -982,25,220,4,0, -10255,25,220,4,0, -987,25,220,4,0, -1012,25,220,4,0, -1013,25,220,4,0, -35,25,244,4,0, -36,25,244,4,0, -37,25,244,4,0, -10103,25,244,4,0, -38,25,244,4,0, -10104,25,244,4,0, -39,25,244,4,0, -40,25,244,4,0, -52,25,244,4,0, -10107,25,244,4,0, -53,25,244,4,0, -10108,25,244,4,0, -54,25,244,4,0, -55,25,244,4,0, -61,25,244,4,0, -62,25,244,4,0, -79,25,244,4,0, -10164,25,244,4,0, -80,25,244,4,0, -10165,25,244,4,0, -92,25,244,4,0, -93,25,244,4,0, -94,25,244,4,0, -96,25,244,4,0, -97,25,244,4,0, -102,25,244,4,0, -150,25,244,4,0, -151,25,244,4,0, -163,25,244,4,0, -164,25,244,4,0, -174,25,244,4,0, -185,25,244,4,0, -186,25,244,4,0, -193,25,244,4,0, -196,25,244,4,0, -197,25,244,4,0, -199,25,244,4,0, -10172,25,244,4,0, -200,25,244,4,0, -203,25,244,4,0, -206,25,244,4,0, -234,25,244,4,0, -249,25,244,4,0, -250,25,244,4,0, -274,25,244,4,0, -275,25,244,4,0, -280,25,244,4,0, -281,25,244,4,0, -282,25,244,4,0, -283,25,244,4,0, -284,25,244,4,0, -302,25,244,4,0, -307,25,244,4,0, -308,25,244,4,0, -314,25,244,4,0, -325,25,244,4,0, -326,25,244,4,0, -350,25,244,4,0, -353,25,244,4,0, -354,25,244,4,0, -355,25,244,4,0, -356,25,244,4,0, -358,25,244,4,0, -370,25,244,4,0, -380,25,244,4,0, -381,25,244,4,0, -429,25,244,4,0, -430,25,244,4,0, -433,25,244,4,0, -436,25,244,4,0, -437,25,244,4,0, -438,25,244,4,0, -447,25,244,4,0, -448,25,244,4,0, -456,25,244,4,0, -457,25,244,4,0, -469,25,244,4,0, -475,25,244,4,0, -477,25,244,4,0, -478,25,244,4,0, -480,25,244,4,0, -481,25,244,4,0, -482,25,244,4,0, -483,25,244,4,0, -484,25,244,4,0, -488,25,244,4,0, -493,25,244,4,0, -549,25,244,4,0, -10237,25,244,4,0, -570,25,244,4,0, -10238,25,244,4,0, -571,25,244,4,0, -10239,25,244,4,0, -574,25,244,4,0, -575,25,244,4,0, -576,25,244,4,0, -607,25,244,4,0, -608,25,244,4,0, -609,25,244,4,0, -619,25,244,4,0, -620,25,244,4,0, -10240,25,244,4,0, -629,25,244,4,0, -630,25,244,4,0, -633,25,244,4,0, -634,25,244,4,0, -635,25,244,4,0, -638,25,244,4,0, -639,25,244,4,0, -640,25,244,4,0, -648,25,244,4,0, -10018,25,244,4,0, -700,25,244,4,0, -703,25,244,4,0, -707,25,244,4,0, -708,25,244,4,0, -709,25,244,4,0, -719,25,244,4,0, -720,25,244,4,0, -10086,25,244,4,0, -741,25,244,4,0, -10123,25,244,4,0, -10124,25,244,4,0, -10125,25,244,4,0, -742,25,244,4,0, -743,25,244,4,0, -765,25,244,4,0, -775,25,244,4,0, -778,25,244,4,0, -10143,25,244,4,0, -856,25,244,4,0, -857,25,244,4,0, -858,25,244,4,0, -870,25,244,4,0, -874,25,244,4,0, -876,25,244,4,0, -10186,25,244,4,0, -898,25,244,4,0, -899,25,244,4,0, -905,25,244,4,0, -10249,25,244,4,0, -908,25,244,4,0, -912,25,244,4,0, -913,25,244,4,0, -914,25,244,4,0, -926,25,244,4,0, -927,25,244,4,0, -930,25,244,4,0, -936,25,244,4,0, -937,25,244,4,0, -944,25,244,4,0, -945,25,244,4,0, -954,25,244,4,0, -956,25,244,4,0, -962,25,244,4,0, -963,25,244,4,0, -964,25,244,4,0, -10256,25,244,4,0, -973,25,244,4,0, -981,25,244,4,0, -982,25,244,4,0, -10255,25,244,4,0, -985,25,244,4,0, -1006,25,244,4,0, -1012,25,244,4,0, -1013,25,244,4,0, -1015,25,244,4,0, -1016,25,244,4,0, -23,25,38,4,0, -24,25,38,4,0, -27,25,38,4,0, -10101,25,38,4,0, -28,25,38,4,0, -10102,25,38,4,0, -35,25,38,4,0, -36,25,38,4,0, -37,25,38,4,0, -10103,25,38,4,0, -38,25,38,4,0, -10104,25,38,4,0, -39,25,38,4,0, -40,25,38,4,0, -49,25,38,4,0, -50,25,38,4,0, -51,25,38,4,0, -10106,25,38,4,0, -52,25,38,4,0, -10107,25,38,4,0, -10161,25,38,4,0, -53,25,38,4,0, -10108,25,38,4,0, -54,25,38,4,0, -55,25,38,4,0, -56,25,38,4,0, -57,25,38,4,0, -58,25,38,4,0, -10229,25,38,4,0, -59,25,38,4,0, -10230,25,38,4,0, -60,25,38,4,0, -61,25,38,4,0, -62,25,38,4,0, -74,25,38,4,0, -10109,25,38,4,0, -75,25,38,4,0, -10110,25,38,4,0, -76,25,38,4,0, -10111,25,38,4,0, -10165,25,38,4,0, -96,25,38,4,0, -97,25,38,4,0, -100,25,38,4,0, -10231,25,38,4,0, -101,25,38,4,0, -10232,25,38,4,0, -10167,25,38,4,0, -128,25,38,4,0, -10250,25,38,4,0, -10251,25,38,4,0, -10252,25,38,4,0, -130,25,38,4,0, -133,25,38,4,0, -134,25,38,4,0, -135,25,38,4,0, -136,25,38,4,0, -143,25,38,4,0, -144,25,38,4,0, -10170,25,38,4,0, -146,25,38,4,0, -150,25,38,4,0, -151,25,38,4,0, -10233,25,38,4,0, -161,25,38,4,0, -162,25,38,4,0, -164,25,38,4,0, -174,25,38,4,0, -179,25,38,4,0, -180,25,38,4,0, -181,25,38,4,0, -183,25,38,4,0, -184,25,38,4,0, -185,25,38,4,0, -186,25,38,4,0, -187,25,38,4,0, -188,25,38,4,0, -189,25,38,4,0, -190,25,38,4,0, -191,25,38,4,0, -192,25,38,4,0, -193,25,38,4,0, -194,25,38,4,0, -10253,25,38,4,0, -195,25,38,4,0, -196,25,38,4,0, -197,25,38,4,0, -198,25,38,4,0, -203,25,38,4,0, -204,25,38,4,0, -205,25,38,4,0, -206,25,38,4,0, -207,25,38,4,0, -211,25,38,4,0, -10234,25,38,4,0, -212,25,38,4,0, -214,25,38,4,0, -216,25,38,4,0, -217,25,38,4,0, -220,25,38,4,0, -221,25,38,4,0, -228,25,38,4,0, -229,25,38,4,0, -231,25,38,4,0, -232,25,38,4,0, -234,25,38,4,0, -243,25,38,4,0, -244,25,38,4,0, -245,25,38,4,0, -246,25,38,4,0, -247,25,38,4,0, -248,25,38,4,0, -249,25,38,4,0, -250,25,38,4,0, -261,25,38,4,0, -262,25,38,4,0, -270,25,38,4,0, -271,25,38,4,0, -272,25,38,4,0, -273,25,38,4,0, -274,25,38,4,0, -275,25,38,4,0, -288,25,38,4,0, -289,25,38,4,0, -296,25,38,4,0, -297,25,38,4,0, -299,25,38,4,0, -313,25,38,4,0, -314,25,38,4,0, -317,25,38,4,0, -322,25,38,4,0, -323,25,38,4,0, -324,25,38,4,0, -334,25,38,4,0, -335,25,38,4,0, -336,25,38,4,0, -339,25,38,4,0, -340,25,38,4,0, -341,25,38,4,0, -342,25,38,4,0, -349,25,38,4,0, -350,25,38,4,0, -357,25,38,4,0, -358,25,38,4,0, -371,25,38,4,0, -372,25,38,4,0, -373,25,38,4,0, -380,25,38,4,0, -381,25,38,4,0, -382,25,38,4,0, -383,25,38,4,0, -384,25,38,4,0, -396,25,38,4,0, -397,25,38,4,0, -398,25,38,4,0, -403,25,38,4,0, -404,25,38,4,0, -405,25,38,4,0, -419,25,38,4,0, -424,25,38,4,0, -430,25,38,4,0, -433,25,38,4,0, -434,25,38,4,0, -435,25,38,4,0, -438,25,38,4,0, -443,25,38,4,0, -444,25,38,4,0, -445,25,38,4,0, -446,25,38,4,0, -449,25,38,4,0, -450,25,38,4,0, -459,25,38,4,0, -460,25,38,4,0, -462,25,38,4,0, -469,25,38,4,0, -470,25,38,4,0, -471,25,38,4,0, -472,25,38,4,0, -473,25,38,4,0, -476,25,38,4,0, -481,25,38,4,0, -482,25,38,4,0, -493,25,38,4,0, -532,25,38,4,0, -533,25,38,4,0, -534,25,38,4,0, -550,25,38,4,0, -10016,25,38,4,0, -10247,25,38,4,0, -551,25,38,4,0, -552,25,38,4,0, -553,25,38,4,0, -580,25,38,4,0, -581,25,38,4,0, -585,25,38,4,0, -586,25,38,4,0, -610,25,38,4,0, -611,25,38,4,0, -612,25,38,4,0, -614,25,38,4,0, -620,25,38,4,0, -627,25,38,4,0, -628,25,38,4,0, -10240,25,38,4,0, -629,25,38,4,0, -630,25,38,4,0, -636,25,38,4,0, -637,25,38,4,0, -638,25,38,4,0, -639,25,38,4,0, -640,25,38,4,0, -643,25,38,4,0, -644,25,38,4,0, -661,25,38,4,0, -662,25,38,4,0, -663,25,38,4,0, -667,25,38,4,0, -668,25,38,4,0, -672,25,38,4,0, -673,25,38,4,0, -700,25,38,4,0, -703,25,38,4,0, -712,25,38,4,0, -713,25,38,4,0, -10243,25,38,4,0, -715,25,38,4,0, -721,25,38,4,0, -734,25,38,4,0, -735,25,38,4,0, -744,25,38,4,0, -745,25,38,4,0, -10126,25,38,4,0, -10152,25,38,4,0, -749,25,38,4,0, -750,25,38,4,0, -766,25,38,4,0, -775,25,38,4,0, -783,25,38,4,0, -784,25,38,4,0, -819,25,38,4,0, -820,25,38,4,0, -823,25,38,4,0, -834,25,38,4,0, -846,25,38,4,0, -847,25,38,4,0, -863,25,38,4,0, -875,25,38,4,0, -10185,25,38,4,0, -877,25,38,4,0, -10187,25,38,4,0, -878,25,38,4,0, -879,25,38,4,0, -884,25,38,4,0, -886,25,38,4,0, -887,25,38,4,0, -891,25,38,4,0, -892,25,38,4,0, -10191,25,38,4,0, -893,25,38,4,0, -896,25,38,4,0, -897,25,38,4,0, -899,25,38,4,0, -900,25,38,4,0, -901,25,38,4,0, -10272,25,38,4,0, -902,25,38,4,0, -10248,25,38,4,0, -904,25,38,4,0, -915,25,38,4,0, -916,25,38,4,0, -10254,25,38,4,0, -920,25,38,4,0, -923,25,38,4,0, -924,25,38,4,0, -925,25,38,4,0, -10257,25,38,4,0, -926,25,38,4,0, -927,25,38,4,0, -931,25,38,4,0, -10260,25,38,4,0, -10261,25,38,4,0, -10262,25,38,4,0, -933,25,38,4,0, -934,25,38,4,0, -942,25,38,4,0, -943,25,38,4,0, -944,25,38,4,0, -945,25,38,4,0, -956,25,38,4,0, -965,25,38,4,0, -966,25,38,4,0, -967,25,38,4,0, -968,25,38,4,0, -971,25,38,4,0, -972,25,38,4,0, -974,25,38,4,0, -975,25,38,4,0, -976,25,38,4,0, -977,25,38,4,0, -979,25,38,4,0, -980,25,38,4,0, -981,25,38,4,0, -982,25,38,4,0, -10255,25,38,4,0, -984,25,38,4,0, -985,25,38,4,0, -986,25,38,4,0, -988,25,38,4,0, -990,25,38,4,0, -992,25,38,4,0, -993,25,38,4,0, -995,25,38,4,0, -998,25,38,4,0, -1003,25,38,4,0, -1005,25,38,4,0, -1007,25,38,4,0, -1009,25,38,4,0, -1010,25,38,4,0, -1014,25,38,4,0, -25,25,283,4,0, -26,25,283,4,0, -10100,25,283,4,0, -27,25,283,4,0, -10101,25,283,4,0, -28,25,283,4,0, -10102,25,283,4,0, -35,25,283,4,0, -36,25,283,4,0, -39,25,283,4,0, -40,25,283,4,0, -48,25,283,4,0, -49,25,283,4,0, -50,25,283,4,0, -51,25,283,4,0, -10106,25,283,4,0, -52,25,283,4,0, -10107,25,283,4,0, -10161,25,283,4,0, -53,25,283,4,0, -10108,25,283,4,0, -54,25,283,4,0, -55,25,283,4,0, -56,25,283,4,0, -57,25,283,4,0, -60,25,283,4,0, -61,25,283,4,0, -62,25,283,4,0, -96,25,283,4,0, -97,25,283,4,0, -128,25,283,4,0, -10250,25,283,4,0, -10251,25,283,4,0, -10252,25,283,4,0, -130,25,283,4,0, -136,25,283,4,0, -10170,25,283,4,0, -151,25,283,4,0, -10233,25,283,4,0, -161,25,283,4,0, -162,25,283,4,0, -173,25,283,4,0, -174,25,283,4,0, -179,25,283,4,0, -180,25,283,4,0, -181,25,283,4,0, -185,25,283,4,0, -186,25,283,4,0, -188,25,283,4,0, -189,25,283,4,0, -190,25,283,4,0, -191,25,283,4,0, -192,25,283,4,0, -203,25,283,4,0, -206,25,283,4,0, -214,25,283,4,0, -220,25,283,4,0, -221,25,283,4,0, -225,25,283,4,0, -229,25,283,4,0, -231,25,283,4,0, -232,25,283,4,0, -261,25,283,4,0, -262,25,283,4,0, -273,25,283,4,0, -274,25,283,4,0, -275,25,283,4,0, -288,25,283,4,0, -289,25,283,4,0, -313,25,283,4,0, -314,25,283,4,0, -322,25,283,4,0, -323,25,283,4,0, -325,25,283,4,0, -326,25,283,4,0, -331,25,283,4,0, -332,25,283,4,0, -333,25,283,4,0, -334,25,283,4,0, -335,25,283,4,0, -336,25,283,4,0, -341,25,283,4,0, -342,25,283,4,0, -370,25,283,4,0, -396,25,283,4,0, -397,25,283,4,0, -398,25,283,4,0, -401,25,283,4,0, -402,25,283,4,0, -415,25,283,4,0, -416,25,283,4,0, -417,25,283,4,0, -424,25,283,4,0, -430,25,283,4,0, -435,25,283,4,0, -473,25,283,4,0, -482,25,283,4,0, -550,25,283,4,0, -10016,25,283,4,0, -10247,25,283,4,0, -552,25,283,4,0, -553,25,283,4,0, -580,25,283,4,0, -581,25,283,4,0, -585,25,283,4,0, -586,25,283,4,0, -610,25,283,4,0, -611,25,283,4,0, -612,25,283,4,0, -613,25,283,4,0, -614,25,283,4,0, -646,25,283,4,0, -667,25,283,4,0, -668,25,283,4,0, -669,25,283,4,0, -670,25,283,4,0, -671,25,283,4,0, -672,25,283,4,0, -673,25,283,4,0, -701,25,283,4,0, -702,25,283,4,0, -703,25,283,4,0, -719,25,283,4,0, -734,25,283,4,0, -735,25,283,4,0, -739,25,283,4,0, -740,25,283,4,0, -744,25,283,4,0, -745,25,283,4,0, -10126,25,283,4,0, -10152,25,283,4,0, -749,25,283,4,0, -750,25,283,4,0, -757,25,283,4,0, -758,25,283,4,0, -761,25,283,4,0, -762,25,283,4,0, -763,25,283,4,0, -765,25,283,4,0, -775,25,283,4,0, -784,25,283,4,0, -819,25,283,4,0, -820,25,283,4,0, -841,25,283,4,0, -844,25,283,4,0, -845,25,283,4,0, -848,25,283,4,0, -849,25,283,4,0, -10184,25,283,4,0, -863,25,283,4,0, -870,25,283,4,0, -874,25,283,4,0, -877,25,283,4,0, -10187,25,283,4,0, -878,25,283,4,0, -879,25,283,4,0, -902,25,283,4,0, -10248,25,283,4,0, -914,25,283,4,0, -915,25,283,4,0, -916,25,283,4,0, -10254,25,283,4,0, -926,25,283,4,0, -927,25,283,4,0, -931,25,283,4,0, -10260,25,283,4,0, -10261,25,283,4,0, -10262,25,283,4,0, -940,25,283,4,0, -941,25,283,4,0, -942,25,283,4,0, -943,25,283,4,0, -944,25,283,4,0, -945,25,283,4,0, -950,25,283,4,0, -951,25,283,4,0, -952,25,283,4,0, -957,25,283,4,0, -958,25,283,4,0, -959,25,283,4,0, -962,25,283,4,0, -964,25,283,4,0, -10256,25,283,4,0, -966,25,283,4,0, -967,25,283,4,0, -971,25,283,4,0, -972,25,283,4,0, -973,25,283,4,0, -976,25,283,4,0, -979,25,283,4,0, -981,25,283,4,0, -982,25,283,4,0, -10255,25,283,4,0, -984,25,283,4,0, -990,25,283,4,0, -151,25,572,4,0, -192,25,572,4,0, -275,25,572,4,0, -357,25,572,4,0, -549,25,572,4,0, -10237,25,572,4,0, -586,25,572,4,0, -669,25,572,4,0, -670,25,572,4,0, -671,25,572,4,0, -753,25,572,4,0, -754,25,572,4,0, -762,25,572,4,0, -763,25,572,4,0, -893,25,572,4,0, -906,25,572,4,0, -907,25,572,4,0, -908,25,572,4,0, -930,25,572,4,0, -58,25,915,4,0, -10229,25,915,4,0, -59,25,915,4,0, -10230,25,915,4,0, -10251,25,915,4,0, -130,25,915,4,0, -136,25,915,4,0, -146,25,915,4,0, -151,25,915,4,0, -10233,25,915,4,0, -218,25,915,4,0, -219,25,915,4,0, -228,25,915,4,0, -229,25,915,4,0, -322,25,915,4,0, -323,25,915,4,0, -324,25,915,4,0, -372,25,915,4,0, -373,25,915,4,0, -425,25,915,4,0, -426,25,915,4,0, -434,25,915,4,0, -435,25,915,4,0, -607,25,915,4,0, -608,25,915,4,0, -609,25,915,4,0, -662,25,915,4,0, -663,25,915,4,0, -668,25,915,4,0, -757,25,915,4,0, -758,25,915,4,0, -837,25,915,4,0, -838,25,915,4,0, -839,25,915,4,0, -909,25,915,4,0, -910,25,915,4,0, -911,25,915,4,0, -950,25,915,4,0, -952,25,915,4,0, -966,25,915,4,0, -967,25,915,4,0, -984,25,915,4,0, -988,25,915,4,0, -1004,25,915,4,0, -1007,25,915,4,0, -54,25,250,4,0, -55,25,250,4,0, -60,25,250,4,0, -61,25,250,4,0, -62,25,250,4,0, -79,25,250,4,0, -10164,25,250,4,0, -80,25,250,4,0, -10165,25,250,4,0, -90,25,250,4,0, -91,25,250,4,0, -10252,25,250,4,0, -130,25,250,4,0, -134,25,250,4,0, -151,25,250,4,0, -183,25,250,4,0, -184,25,250,4,0, -186,25,250,4,0, -194,25,250,4,0, -195,25,250,4,0, -199,25,250,4,0, -10172,25,250,4,0, -211,25,250,4,0, -245,25,250,4,0, -249,25,250,4,0, -270,25,250,4,0, -271,25,250,4,0, -272,25,250,4,0, -278,25,250,4,0, -279,25,250,4,0, -339,25,250,4,0, -340,25,250,4,0, -341,25,250,4,0, -342,25,250,4,0, -349,25,250,4,0, -350,25,250,4,0, -370,25,250,4,0, -380,25,250,4,0, -382,25,250,4,0, -384,25,250,4,0, -418,25,250,4,0, -419,25,250,4,0, -422,25,250,4,0, -423,25,250,4,0, -456,25,250,4,0, -457,25,250,4,0, -484,25,250,4,0, -10236,25,250,4,0, -550,25,250,4,0, -10016,25,250,4,0, -10247,25,250,4,0, -580,25,250,4,0, -581,25,250,4,0, -594,25,250,4,0, -690,25,250,4,0, -691,25,250,4,0, -779,25,250,4,0, -833,25,250,4,0, -834,25,250,4,0, -845,25,250,4,0, -846,25,250,4,0, -847,25,250,4,0, -875,25,250,4,0, -10185,25,250,4,0, -10191,25,250,4,0, -902,25,250,4,0, -10248,25,250,4,0, -912,25,250,4,0, -913,25,250,4,0, -914,25,250,4,0, -960,25,250,4,0, -961,25,250,4,0, -964,25,250,4,0, -10256,25,250,4,0, -978,25,250,4,0, -10258,25,250,4,0, -10259,25,250,4,0, -991,25,250,4,0, -1009,25,250,4,0, -54,25,330,4,0, -55,25,330,4,0, -60,25,330,4,0, -61,25,330,4,0, -62,25,330,4,0, -80,25,330,4,0, -10165,25,330,4,0, -130,25,330,4,0, -134,25,330,4,0, -151,25,330,4,0, -183,25,330,4,0, -184,25,330,4,0, -186,25,330,4,0, -194,25,330,4,0, -195,25,330,4,0, -199,25,330,4,0, -10172,25,330,4,0, -248,25,330,4,0, -270,25,330,4,0, -271,25,330,4,0, -272,25,330,4,0, -278,25,330,4,0, -279,25,330,4,0, -339,25,330,4,0, -340,25,330,4,0, -341,25,330,4,0, -342,25,330,4,0, -349,25,330,4,0, -350,25,330,4,0, -382,25,330,4,0, -419,25,330,4,0, -422,25,330,4,0, -423,25,330,4,0, -449,25,330,4,0, -450,25,330,4,0, -550,25,330,4,0, -10016,25,330,4,0, -10247,25,330,4,0, -690,25,330,4,0, -691,25,330,4,0, -692,25,330,4,0, -693,25,330,4,0, -704,25,330,4,0, -705,25,330,4,0, -10241,25,330,4,0, -706,25,330,4,0, -10242,25,330,4,0, -747,25,330,4,0, -748,25,330,4,0, -834,25,330,4,0, -871,25,330,4,0, -902,25,330,4,0, -10248,25,330,4,0, -938,25,330,4,0, -939,25,330,4,0, -960,25,330,4,0, -961,25,330,4,0, -978,25,330,4,0, -10258,25,330,4,0, -10259,25,330,4,0, -980,25,330,4,0, -10109,25,916,4,0, -10110,25,916,4,0, -10111,25,916,4,0, -101,25,916,4,0, -10232,25,916,4,0, -143,25,916,4,0, -145,25,916,4,0, -151,25,916,4,0, -181,25,916,4,0, -243,25,916,4,0, -405,25,916,4,0, -462,25,916,4,0, -476,25,916,4,0, -493,25,916,4,0, -604,25,916,4,0, -642,25,916,4,0, -10020,25,916,4,0, -644,25,916,4,0, -738,25,916,4,0, -871,25,916,4,0, -879,25,916,4,0, -894,25,916,4,0, -901,25,916,4,0, -923,25,916,4,0, -939,25,916,4,0, -941,25,916,4,0, -967,25,916,4,0, -984,25,916,4,0, -989,25,916,4,0, -990,25,916,4,0, -992,25,916,4,0, -995,25,916,4,0, -1008,25,916,4,0, -25,25,527,4,0, -26,25,527,4,0, -10100,25,527,4,0, -10109,25,527,4,0, -10110,25,527,4,0, -10111,25,527,4,0, -81,25,527,4,0, -82,25,527,4,0, -100,25,527,4,0, -10231,25,527,4,0, -101,25,527,4,0, -10232,25,527,4,0, -135,25,527,4,0, -151,25,527,4,0, -167,25,527,4,0, -168,25,527,4,0, -172,25,527,4,0, -179,25,527,4,0, -180,25,527,4,0, -181,25,527,4,0, -243,25,527,4,0, -403,25,527,4,0, -404,25,527,4,0, -405,25,527,4,0, -417,25,527,4,0, -462,25,527,4,0, -479,25,527,4,0, -10010,25,527,4,0, -10008,25,527,4,0, -10012,25,527,4,0, -10011,25,527,4,0, -10009,25,527,4,0, -540,25,527,4,0, -541,25,527,4,0, -542,25,527,4,0, -603,25,527,4,0, -604,25,527,4,0, -642,25,527,4,0, -10020,25,527,4,0, -702,25,527,4,0, -736,25,527,4,0, -737,25,527,4,0, -738,25,527,4,0, -766,25,527,4,0, -801,25,527,4,0, -849,25,527,4,0, -10184,25,527,4,0, -871,25,527,4,0, -877,25,527,4,0, -10187,25,527,4,0, -894,25,527,4,0, -918,25,527,4,0, -921,25,527,4,0, -922,25,527,4,0, -923,25,527,4,0, -938,25,527,4,0, -939,25,527,4,0, -940,25,527,4,0, -941,25,527,4,0, -989,25,527,4,0, -995,25,527,4,0, -10101,25,813,4,0, -10102,25,813,4,0, -10104,25,813,4,0, -144,25,813,4,0, -151,25,813,4,0, -215,25,813,4,0, -225,25,813,4,0, -281,25,813,4,0, -282,25,813,4,0, -350,25,813,4,0, -424,25,813,4,0, -461,25,813,4,0, -471,25,813,4,0, -475,25,813,4,0, -478,25,813,4,0, -542,25,813,4,0, -10237,25,813,4,0, -615,25,813,4,0, -620,25,813,4,0, -648,25,813,4,0, -10018,25,813,4,0, -762,25,813,4,0, -763,25,813,4,0, -873,25,813,4,0, -908,25,813,4,0, -913,25,813,4,0, -914,25,813,4,0, -62,25,811,4,0, -10170,25,811,4,0, -151,25,811,4,0, -214,25,811,4,0, -10235,25,811,4,0, -296,25,811,4,0, -297,25,811,4,0, -447,25,811,4,0, -448,25,811,4,0, -453,25,811,4,0, -454,25,811,4,0, -475,25,811,4,0, -532,25,811,4,0, -533,25,811,4,0, -534,25,811,4,0, -10237,25,811,4,0, -619,25,811,4,0, -620,25,811,4,0, -638,25,811,4,0, -639,25,811,4,0, -640,25,811,4,0, -648,25,811,4,0, -10018,25,811,4,0, -701,25,811,4,0, -10244,25,811,4,0, -739,25,811,4,0, -740,25,811,4,0, -766,25,811,4,0, -783,25,811,4,0, -784,25,811,4,0, -870,25,811,4,0, -889,25,811,4,0, -892,25,811,4,0, -10191,25,811,4,0, -903,25,811,4,0, -914,25,811,4,0, -922,25,811,4,0, -923,25,811,4,0, -979,25,811,4,0, -1006,25,811,4,0, -1010,25,811,4,0, -23,25,482,4,0, -24,25,482,4,0, -49,25,482,4,0, -51,25,482,4,0, -10106,25,482,4,0, -69,25,482,4,0, -70,25,482,4,0, -71,25,482,4,0, -10165,25,482,4,0, -88,25,482,4,0, -10112,25,482,4,0, -89,25,482,4,0, -10113,25,482,4,0, -92,25,482,4,0, -93,25,482,4,0, -94,25,482,4,0, -109,25,482,4,0, -110,25,482,4,0, -10167,25,482,4,0, -151,25,482,4,0, -167,25,482,4,0, -168,25,482,4,0, -194,25,482,4,0, -10253,25,482,4,0, -195,25,482,4,0, -10172,25,482,4,0, -211,25,482,4,0, -10235,25,482,4,0, -316,25,482,4,0, -317,25,482,4,0, -336,25,482,4,0, -342,25,482,4,0, -423,25,482,4,0, -434,25,482,4,0, -435,25,482,4,0, -453,25,482,4,0, -454,25,482,4,0, -641,25,482,4,0, -10019,25,482,4,0, -642,25,482,4,0, -10020,25,482,4,0, -645,25,482,4,0, -10021,25,482,4,0, -690,25,482,4,0, -691,25,482,4,0, -692,25,482,4,0, -693,25,482,4,0, -704,25,482,4,0, -705,25,482,4,0, -10241,25,482,4,0, -706,25,482,4,0, -10242,25,482,4,0, -721,25,482,4,0, -747,25,482,4,0, -748,25,482,4,0, -757,25,482,4,0, -758,25,482,4,0, -849,25,482,4,0, -10184,25,482,4,0, -890,25,482,4,0, -903,25,482,4,0, -904,25,482,4,0, -944,25,482,4,0, -945,25,482,4,0, -965,25,482,4,0, -966,25,482,4,0, -969,25,482,4,0, -970,25,482,4,0, -980,25,482,4,0, -994,25,482,4,0, -1014,25,482,4,0, -1015,25,482,4,0, -27,25,815,4,0, -28,25,815,4,0, -38,25,815,4,0, -50,25,815,4,0, -10105,25,815,4,0, -51,25,815,4,0, -10106,25,815,4,0, -10229,25,815,4,0, -59,25,815,4,0, -10230,25,815,4,0, -136,25,815,4,0, -146,25,815,4,0, -151,25,815,4,0, -219,25,815,4,0, -244,25,815,4,0, -250,25,815,4,0, -322,25,815,4,0, -323,25,815,4,0, -324,25,815,4,0, -383,25,815,4,0, -443,25,815,4,0, -444,25,815,4,0, -445,25,815,4,0, -449,25,815,4,0, -450,25,815,4,0, -485,25,815,4,0, -493,25,815,4,0, -551,25,815,4,0, -552,25,815,4,0, -553,25,815,4,0, -643,25,815,4,0, -645,25,815,4,0, -10021,25,815,4,0, -719,25,815,4,0, -721,25,815,4,0, -769,25,815,4,0, -770,25,815,4,0, -838,25,815,4,0, -839,25,815,4,0, -843,25,815,4,0, -844,25,815,4,0, -911,25,815,4,0, -936,25,815,4,0, -989,25,815,4,0, -144,25,297,4,0, -151,25,297,4,0, -163,25,297,4,0, -164,25,297,4,0, -198,25,297,4,0, -225,25,297,4,0, -278,25,297,4,0, -279,25,297,4,0, -333,25,297,4,0, -334,25,297,4,0, -396,25,297,4,0, -397,25,297,4,0, -398,25,297,4,0, -430,25,297,4,0, -580,25,297,4,0, -581,25,297,4,0, -627,25,297,4,0, -628,25,297,4,0, -10240,25,297,4,0, -629,25,297,4,0, -630,25,297,4,0, -661,25,297,4,0, -662,25,297,4,0, -663,25,297,4,0, -701,25,297,4,0, -10244,25,297,4,0, -741,25,297,4,0, -10123,25,297,4,0, -10124,25,297,4,0, -10125,25,297,4,0, -845,25,297,4,0, -873,25,297,4,0, -875,25,297,4,0, -10185,25,297,4,0, -913,25,297,4,0, -914,25,297,4,0, -931,25,297,4,0, -10260,25,297,4,0, -10261,25,297,4,0, -10262,25,297,4,0, -940,25,297,4,0, -941,25,297,4,0, -956,25,297,4,0, -962,25,297,4,0, -973,25,297,4,0, -36,25,248,4,0, -55,25,248,4,0, -80,25,248,4,0, -96,25,248,4,0, -97,25,248,4,0, -10169,25,248,4,0, -150,25,248,4,0, -151,25,248,4,0, -164,25,248,4,0, -196,25,248,4,0, -199,25,248,4,0, -10172,25,248,4,0, -200,25,248,4,0, -203,25,248,4,0, -234,25,248,4,0, -249,25,248,4,0, -250,25,248,4,0, -280,25,248,4,0, -281,25,248,4,0, -282,25,248,4,0, -325,25,248,4,0, -326,25,248,4,0, -339,25,248,4,0, -340,25,248,4,0, -355,25,248,4,0, -356,25,248,4,0, -358,25,248,4,0, -380,25,248,4,0, -381,25,248,4,0, -429,25,248,4,0, -433,25,248,4,0, -436,25,248,4,0, -437,25,248,4,0, -475,25,248,4,0, -477,25,248,4,0, -480,25,248,4,0, -481,25,248,4,0, -482,25,248,4,0, -488,25,248,4,0, -493,25,248,4,0, -574,25,248,4,0, -575,25,248,4,0, -576,25,248,4,0, -10240,25,248,4,0, -720,25,248,4,0, -10086,25,248,4,0, -765,25,248,4,0, -856,25,248,4,0, -857,25,248,4,0, -858,25,248,4,0, -898,25,248,4,0, -899,25,248,4,0, -954,25,248,4,0, -981,25,248,4,0, -1006,25,248,4,0, -1015,25,248,4,0, -10100,25,797,4,0, -40,25,797,4,0, -79,25,797,4,0, -10164,25,797,4,0, -80,25,797,4,0, -10165,25,797,4,0, -96,25,797,4,0, -97,25,797,4,0, -10169,25,797,4,0, -150,25,797,4,0, -151,25,797,4,0, -196,25,797,4,0, -199,25,797,4,0, -10172,25,797,4,0, -203,25,797,4,0, -280,25,797,4,0, -281,25,797,4,0, -282,25,797,4,0, -307,25,797,4,0, -308,25,797,4,0, -325,25,797,4,0, -326,25,797,4,0, -358,25,797,4,0, -436,25,797,4,0, -437,25,797,4,0, -475,25,797,4,0, -480,25,797,4,0, -481,25,797,4,0, -482,25,797,4,0, -488,25,797,4,0, -574,25,797,4,0, -575,25,797,4,0, -576,25,797,4,0, -10240,25,797,4,0, -720,25,797,4,0, -10086,25,797,4,0, -765,25,797,4,0, -779,25,797,4,0, -856,25,797,4,0, -857,25,797,4,0, -858,25,797,4,0, -876,25,797,4,0, -10186,25,797,4,0, -898,25,797,4,0, -899,25,797,4,0, -936,25,797,4,0, -954,25,797,4,0, -956,25,797,4,0, -976,25,797,4,0, -981,25,797,4,0, -985,25,797,4,0, -1006,25,797,4,0, -23,25,806,4,0, -24,25,806,4,0, -48,25,806,4,0, -49,25,806,4,0, -53,25,806,4,0, -10108,25,806,4,0, -92,25,806,4,0, -93,25,806,4,0, -94,25,806,4,0, -123,25,806,4,0, -151,25,806,4,0, -167,25,806,4,0, -168,25,806,4,0, -193,25,806,4,0, -206,25,806,4,0, -207,25,806,4,0, -212,25,806,4,0, -214,25,806,4,0, -283,25,806,4,0, -284,25,806,4,0, -302,25,806,4,0, -313,25,806,4,0, -314,25,806,4,0, -331,25,806,4,0, -332,25,806,4,0, -336,25,806,4,0, -350,25,806,4,0, -353,25,806,4,0, -354,25,806,4,0, -355,25,806,4,0, -356,25,806,4,0, -401,25,806,4,0, -402,25,806,4,0, -415,25,806,4,0, -416,25,806,4,0, -422,25,806,4,0, -423,25,806,4,0, -469,25,806,4,0, -472,25,806,4,0, -477,25,806,4,0, -487,25,806,4,0, -10007,25,806,4,0, -540,25,806,4,0, -541,25,806,4,0, -542,25,806,4,0, -551,25,806,4,0, -552,25,806,4,0, -553,25,806,4,0, -570,25,806,4,0, -10238,25,806,4,0, -571,25,806,4,0, -10239,25,806,4,0, -607,25,806,4,0, -608,25,806,4,0, -609,25,806,4,0, -636,25,806,4,0, -637,25,806,4,0, -666,25,806,4,0, -704,25,806,4,0, -705,25,806,4,0, -10241,25,806,4,0, -706,25,806,4,0, -10242,25,806,4,0, -707,25,806,4,0, -708,25,806,4,0, -709,25,806,4,0, -720,25,806,4,0, -10086,25,806,4,0, -736,25,806,4,0, -737,25,806,4,0, -738,25,806,4,0, -742,25,806,4,0, -743,25,806,4,0, -753,25,806,4,0, -754,25,806,4,0, -757,25,806,4,0, -758,25,806,4,0, -833,25,806,4,0, -834,25,806,4,0, -843,25,806,4,0, -844,25,806,4,0, -872,25,806,4,0, -873,25,806,4,0, -900,25,806,4,0, -917,25,806,4,0, -918,25,806,4,0, -919,25,806,4,0, -920,25,806,4,0, -944,25,806,4,0, -945,25,806,4,0, -947,25,806,4,0, -949,25,806,4,0, -950,25,806,4,0, -953,25,806,4,0, -954,25,806,4,0, -957,25,806,4,0, -958,25,806,4,0, -959,25,806,4,0, -982,25,806,4,0, -10255,25,806,4,0, -988,25,806,4,0, -35,25,800,4,0, -36,25,800,4,0, -10111,25,800,4,0, -151,25,800,4,0, -181,25,800,4,0, -185,25,800,4,0, -299,25,800,4,0, -384,25,800,4,0, -437,25,800,4,0, -476,25,800,4,0, -493,25,800,4,0, -703,25,800,4,0, -10243,25,800,4,0, -719,25,800,4,0, -834,25,800,4,0, -837,25,800,4,0, -838,25,800,4,0, -839,25,800,4,0, -874,25,800,4,0, -890,25,800,4,0, -932,25,800,4,0, -933,25,800,4,0, -934,25,800,4,0, -936,25,800,4,0, -950,25,800,4,0, -969,25,800,4,0, -970,25,800,4,0, -993,25,800,4,0, -994,25,800,4,0, -995,25,800,4,0, -1007,25,800,4,0, -24,25,675,4,0, -27,25,675,4,0, -10101,25,675,4,0, -28,25,675,4,0, -10102,25,675,4,0, -50,25,675,4,0, -51,25,675,4,0, -10106,25,675,4,0, -52,25,675,4,0, -10107,25,675,4,0, -10161,25,675,4,0, -53,25,675,4,0, -10108,25,675,4,0, -56,25,675,4,0, -57,25,675,4,0, -62,25,675,4,0, -128,25,675,4,0, -10250,25,675,4,0, -10170,25,675,4,0, -151,25,675,4,0, -168,25,675,4,0, -190,25,675,4,0, -197,25,675,4,0, -207,25,675,4,0, -211,25,675,4,0, -10234,25,675,4,0, -214,25,675,4,0, -215,25,675,4,0, -10235,25,675,4,0, -217,25,675,4,0, -221,25,675,4,0, -229,25,675,4,0, -232,25,675,4,0, -234,25,675,4,0, -243,25,675,4,0, -262,25,675,4,0, -275,25,675,4,0, -287,25,675,4,0, -288,25,675,4,0, -289,25,675,4,0, -297,25,675,4,0, -302,25,675,4,0, -331,25,675,4,0, -332,25,675,4,0, -335,25,675,4,0, -336,25,675,4,0, -354,25,675,4,0, -402,25,675,4,0, -405,25,675,4,0, -424,25,675,4,0, -434,25,675,4,0, -435,25,675,4,0, -454,25,675,4,0, -461,25,675,4,0, -472,25,675,4,0, -473,25,675,4,0, -475,25,675,4,0, -10236,25,675,4,0, -542,25,675,4,0, -553,25,675,4,0, -571,25,675,4,0, -10239,25,675,4,0, -586,25,675,4,0, -603,25,675,4,0, -604,25,675,4,0, -614,25,675,4,0, -625,25,675,4,0, -629,25,675,4,0, -630,25,675,4,0, -635,25,675,4,0, -673,25,675,4,0, -701,25,675,4,0, -720,25,675,4,0, -10086,25,675,4,0, -10126,25,675,4,0, -10152,25,675,4,0, -783,25,675,4,0, -784,25,675,4,0, -834,25,675,4,0, -845,25,675,4,0, -846,25,675,4,0, -847,25,675,4,0, -849,25,675,4,0, -10184,25,675,4,0, -859,25,675,4,0, -860,25,675,4,0, -861,25,675,4,0, -863,25,675,4,0, -870,25,675,4,0, -871,25,675,4,0, -892,25,675,4,0, -893,25,675,4,0, -896,25,675,4,0, -899,25,675,4,0, -901,25,675,4,0, -903,25,675,4,0, -904,25,675,4,0, -908,25,675,4,0, -917,25,675,4,0, -918,25,675,4,0, -920,25,675,4,0, -923,25,675,4,0, -937,25,675,4,0, -944,25,675,4,0, -945,25,675,4,0, -950,25,675,4,0, -960,25,675,4,0, -961,25,675,4,0, -964,25,675,4,0, -10256,25,675,4,0, -973,25,675,4,0, -979,25,675,4,0, -982,25,675,4,0, -10255,25,675,4,0, -983,25,675,4,0, -984,25,675,4,0, -993,25,675,4,0, -1002,25,675,4,0, -1003,25,675,4,0, -1005,25,675,4,0, -1006,25,675,4,0, -1010,25,675,4,0, -1014,25,675,4,0, -1017,25,675,4,0, -10273,25,675,4,0, -10274,25,675,4,0, -10275,25,675,4,0, -24,25,784,4,0, -147,25,784,4,0, -148,25,784,4,0, -149,25,784,4,0, -151,25,784,4,0, -181,25,784,4,0, -206,25,784,4,0, -207,25,784,4,0, -248,25,784,4,0, -334,25,784,4,0, -336,25,784,4,0, -350,25,784,4,0, -373,25,784,4,0, -380,25,784,4,0, -381,25,784,4,0, -384,25,784,4,0, -444,25,784,4,0, -445,25,784,4,0, -472,25,784,4,0, -483,25,784,4,0, -484,25,784,4,0, -487,25,784,4,0, -10007,25,784,4,0, -552,25,784,4,0, -553,25,784,4,0, -610,25,784,4,0, -611,25,784,4,0, -612,25,784,4,0, -635,25,784,4,0, -643,25,784,4,0, -644,25,784,4,0, -646,25,784,4,0, -706,25,784,4,0, -10242,25,784,4,0, -715,25,784,4,0, -758,25,784,4,0, -782,25,784,4,0, -783,25,784,4,0, -784,25,784,4,0, -884,25,784,4,0, -886,25,784,4,0, -887,25,784,4,0, -895,25,784,4,0, -967,25,784,4,0, -982,25,784,4,0, -10255,25,784,4,0, -995,25,784,4,0, -998,25,784,4,0, -1005,25,784,4,0, -1007,25,784,4,0, -1009,25,784,4,0, -10105,25,319,4,0, -10106,25,319,4,0, -10161,25,319,4,0, -81,25,319,4,0, -82,25,319,4,0, -100,25,319,4,0, -101,25,319,4,0, -135,25,319,4,0, -145,25,319,4,0, -151,25,319,4,0, -205,25,319,4,0, -436,25,319,4,0, -437,25,319,4,0, -448,25,319,4,0, -462,25,319,4,0, -476,25,319,4,0, -483,25,319,4,0, -485,25,319,4,0, -624,25,319,4,0, -625,25,319,4,0, -638,25,319,4,0, -707,25,319,4,0, -784,25,319,4,0, -801,25,319,4,0, -823,25,319,4,0, -848,25,319,4,0, -849,25,319,4,0, -10184,25,319,4,0, -863,25,319,4,0, -884,25,319,4,0, -957,25,319,4,0, -958,25,319,4,0, -959,25,319,4,0, -965,25,319,4,0, -966,25,319,4,0, -968,25,319,4,0, -983,25,319,4,0, -989,25,319,4,0, -990,25,319,4,0, -993,25,319,4,0, -994,25,319,4,0, -1000,25,319,4,0, -1008,25,319,4,0, -1010,25,319,4,0, -27,25,174,4,0, -10101,25,174,4,0, -28,25,174,4,0, -10102,25,174,4,0, -50,25,174,4,0, -51,25,174,4,0, -10106,25,174,4,0, -10107,25,174,4,0, -10161,25,174,4,0, -10108,25,174,4,0, -56,25,174,4,0, -57,25,174,4,0, -58,25,174,4,0, -59,25,174,4,0, -74,25,174,4,0, -10109,25,174,4,0, -75,25,174,4,0, -10110,25,174,4,0, -76,25,174,4,0, -10111,25,174,4,0, -79,25,174,4,0, -10164,25,174,4,0, -80,25,174,4,0, -10165,25,174,4,0, -88,25,174,4,0, -10112,25,174,4,0, -89,25,174,4,0, -10113,25,174,4,0, -92,25,174,4,0, -93,25,174,4,0, -94,25,174,4,0, -96,25,174,4,0, -97,25,174,4,0, -101,25,174,4,0, -10232,25,174,4,0, -102,25,174,4,0, -109,25,174,4,0, -110,25,174,4,0, -10167,25,174,4,0, -128,25,174,4,0, -10250,25,174,4,0, -10251,25,174,4,0, -10252,25,174,4,0, -133,25,174,4,0, -134,25,174,4,0, -135,25,174,4,0, -136,25,174,4,0, -143,25,174,4,0, -150,25,174,4,0, -151,25,174,4,0, -10233,25,174,4,0, -164,25,174,4,0, -185,25,174,4,0, -191,25,174,4,0, -192,25,174,4,0, -194,25,174,4,0, -10253,25,174,4,0, -195,25,174,4,0, -196,25,174,4,0, -197,25,174,4,0, -199,25,174,4,0, -10172,25,174,4,0, -200,25,174,4,0, -204,25,174,4,0, -205,25,174,4,0, -206,25,174,4,0, -211,25,174,4,0, -10234,25,174,4,0, -212,25,174,4,0, -214,25,174,4,0, -218,25,174,4,0, -219,25,174,4,0, -220,25,174,4,0, -221,25,174,4,0, -231,25,174,4,0, -232,25,174,4,0, -234,25,174,4,0, -246,25,174,4,0, -247,25,174,4,0, -248,25,174,4,0, -249,25,174,4,0, -273,25,174,4,0, -274,25,174,4,0, -275,25,174,4,0, -287,25,174,4,0, -288,25,174,4,0, -289,25,174,4,0, -297,25,174,4,0, -299,25,174,4,0, -316,25,174,4,0, -317,25,174,4,0, -322,25,174,4,0, -323,25,174,4,0, -324,25,174,4,0, -331,25,174,4,0, -332,25,174,4,0, -335,25,174,4,0, -336,25,174,4,0, -340,25,174,4,0, -353,25,174,4,0, -354,25,174,4,0, -355,25,174,4,0, -356,25,174,4,0, -357,25,174,4,0, -358,25,174,4,0, -422,25,174,4,0, -423,25,174,4,0, -425,25,174,4,0, -426,25,174,4,0, -429,25,174,4,0, -433,25,174,4,0, -438,25,174,4,0, -442,25,174,4,0, -446,25,174,4,0, -449,25,174,4,0, -450,25,174,4,0, -459,25,174,4,0, -460,25,174,4,0, -470,25,174,4,0, -471,25,174,4,0, -473,25,174,4,0, -476,25,174,4,0, -477,25,174,4,0, -478,25,174,4,0, -487,25,174,4,0, -10007,25,174,4,0, -532,25,174,4,0, -533,25,174,4,0, -534,25,174,4,0, -551,25,174,4,0, -552,25,174,4,0, -553,25,174,4,0, -10238,25,174,4,0, -10239,25,174,4,0, -586,25,174,4,0, -607,25,174,4,0, -608,25,174,4,0, -609,25,174,4,0, -614,25,174,4,0, -700,25,174,4,0, -704,25,174,4,0, -705,25,174,4,0, -10241,25,174,4,0, -706,25,174,4,0, -10242,25,174,4,0, -708,25,174,4,0, -709,25,174,4,0, -712,25,174,4,0, -713,25,174,4,0, -10243,25,174,4,0, -735,25,174,4,0, -749,25,174,4,0, -750,25,174,4,0, -766,25,174,4,0, -769,25,174,4,0, -770,25,174,4,0, -775,25,174,4,0, -778,25,174,4,0, -10143,25,174,4,0, -819,25,174,4,0, -820,25,174,4,0, -823,25,174,4,0, -837,25,174,4,0, -838,25,174,4,0, -839,25,174,4,0, -842,25,174,4,0, -854,25,174,4,0, -855,25,174,4,0, -863,25,174,4,0, -871,25,174,4,0, -874,25,174,4,0, -878,25,174,4,0, -879,25,174,4,0, -885,25,174,4,0, -886,25,174,4,0, -887,25,174,4,0, -896,25,174,4,0, -897,25,174,4,0, -899,25,174,4,0, -901,25,174,4,0, -904,25,174,4,0, -909,25,174,4,0, -910,25,174,4,0, -911,25,174,4,0, -915,25,174,4,0, -916,25,174,4,0, -10254,25,174,4,0, -932,25,174,4,0, -933,25,174,4,0, -934,25,174,4,0, -937,25,174,4,0, -943,25,174,4,0, -946,25,174,4,0, -947,25,174,4,0, -962,25,174,4,0, -965,25,174,4,0, -966,25,174,4,0, -968,25,174,4,0, -974,25,174,4,0, -975,25,174,4,0, -977,25,174,4,0, -979,25,174,4,0, -980,25,174,4,0, -981,25,174,4,0, -982,25,174,4,0, -10255,25,174,4,0, -988,25,174,4,0, -995,25,174,4,0, -1012,25,174,4,0, -1013,25,174,4,0, -1014,25,174,4,0, -75,25,912,4,0, -10110,25,912,4,0, -76,25,912,4,0, -10111,25,912,4,0, -143,25,912,4,0, -151,25,912,4,0, -205,25,912,4,0, -212,25,912,4,0, -248,25,912,4,0, -289,25,912,4,0, -342,25,912,4,0, -437,25,912,4,0, -450,25,912,4,0, -460,25,912,4,0, -462,25,912,4,0, -473,25,912,4,0, -476,25,912,4,0, -477,25,912,4,0, -485,25,912,4,0, -534,25,912,4,0, -614,25,912,4,0, -10243,25,912,4,0, -740,25,912,4,0, -874,25,912,4,0, -879,25,912,4,0, -901,25,912,4,0, -10272,25,912,4,0, -934,25,912,4,0, -959,25,912,4,0, -964,25,912,4,0, -10256,25,912,4,0, -966,25,912,4,0, -975,25,912,4,0, -990,25,912,4,0, -992,25,912,4,0, -1014,25,912,4,0, -130,25,913,4,0, -147,25,913,4,0, -148,25,913,4,0, -149,25,913,4,0, -151,25,913,4,0, -181,25,913,4,0, -333,25,913,4,0, -334,25,913,4,0, -350,25,913,4,0, -371,25,913,4,0, -372,25,913,4,0, -373,25,913,4,0, -380,25,913,4,0, -381,25,913,4,0, -384,25,913,4,0, -443,25,913,4,0, -444,25,913,4,0, -445,25,913,4,0, -610,25,913,4,0, -611,25,913,4,0, -612,25,913,4,0, -633,25,913,4,0, -634,25,913,4,0, -635,25,913,4,0, -643,25,913,4,0, -644,25,913,4,0, -646,25,913,4,0, -706,25,913,4,0, -10242,25,913,4,0, -715,25,913,4,0, -758,25,913,4,0, -782,25,913,4,0, -783,25,913,4,0, -784,25,913,4,0, -884,25,913,4,0, -886,25,913,4,0, -887,25,913,4,0, -895,25,913,4,0, -967,25,913,4,0, -978,25,913,4,0, -10258,25,913,4,0, -10259,25,913,4,0, -993,25,913,4,0, -998,25,913,4,0, -1005,25,913,4,0, -1007,25,913,4,0, -1008,25,913,4,0, -1009,25,913,4,0, -1011,25,913,4,0, -25,25,914,4,0, -26,25,914,4,0, -10100,25,914,4,0, -35,25,914,4,0, -36,25,914,4,0, -39,25,914,4,0, -40,25,914,4,0, -133,25,914,4,0, -134,25,914,4,0, -135,25,914,4,0, -136,25,914,4,0, -151,25,914,4,0, -173,25,914,4,0, -174,25,914,4,0, -183,25,914,4,0, -184,25,914,4,0, -196,25,914,4,0, -197,25,914,4,0, -280,25,914,4,0, -281,25,914,4,0, -282,25,914,4,0, -298,25,914,4,0, -334,25,914,4,0, -350,25,914,4,0, -380,25,914,4,0, -417,25,914,4,0, -456,25,914,4,0, -457,25,914,4,0, -470,25,914,4,0, -471,25,914,4,0, -475,25,914,4,0, -549,25,914,4,0, -581,25,914,4,0, -594,25,914,4,0, -648,25,914,4,0, -10018,25,914,4,0, -669,25,914,4,0, -670,25,914,4,0, -671,25,914,4,0, -700,25,914,4,0, -741,25,914,4,0, -10123,25,914,4,0, -10124,25,914,4,0, -10125,25,914,4,0, -743,25,914,4,0, -905,25,914,4,0, -10249,25,914,4,0, -911,25,914,4,0, -926,25,914,4,0, -927,25,914,4,0, -930,25,914,4,0, -1016,25,914,4,0, -10100,25,917,4,0, -39,25,917,4,0, -40,25,917,4,0, -48,25,917,4,0, -49,25,917,4,0, -54,25,917,4,0, -55,25,917,4,0, -80,25,917,4,0, -94,25,917,4,0, -96,25,917,4,0, -97,25,917,4,0, -102,25,917,4,0, -10169,25,917,4,0, -150,25,917,4,0, -151,25,917,4,0, -164,25,917,4,0, -193,25,917,4,0, -196,25,917,4,0, -198,25,917,4,0, -199,25,917,4,0, -10172,25,917,4,0, -200,25,917,4,0, -203,25,917,4,0, -249,25,917,4,0, -282,25,917,4,0, -326,25,917,4,0, -358,25,917,4,0, -381,25,917,4,0, -416,25,917,4,0, -429,25,917,4,0, -430,25,917,4,0, -433,25,917,4,0, -437,25,917,4,0, -469,25,917,4,0, -480,25,917,4,0, -481,25,917,4,0, -574,25,917,4,0, -575,25,917,4,0, -576,25,917,4,0, -10240,25,917,4,0, -671,25,917,4,0, -709,25,917,4,0, -715,25,917,4,0, -720,25,917,4,0, -10086,25,917,4,0, -743,25,917,4,0, -765,25,917,4,0, -779,25,917,4,0, -849,25,917,4,0, -10184,25,917,4,0, -858,25,917,4,0, -876,25,917,4,0, -10186,25,917,4,0, -899,25,917,4,0, -954,25,917,4,0, -981,25,917,4,0, -985,25,917,4,0, -1015,25,917,4,0, -25,25,918,4,0, -26,25,918,4,0, -10100,25,918,4,0, -62,25,918,4,0, -151,25,918,4,0, -190,25,918,4,0, -214,25,918,4,0, -215,25,918,4,0, -275,25,918,4,0, -296,25,918,4,0, -297,25,918,4,0, -307,25,918,4,0, -308,25,918,4,0, -335,25,918,4,0, -424,25,918,4,0, -447,25,918,4,0, -448,25,918,4,0, -453,25,918,4,0, -454,25,918,4,0, -461,25,918,4,0, -475,25,918,4,0, -10236,25,918,4,0, -534,25,918,4,0, -10237,25,918,4,0, -619,25,918,4,0, -620,25,918,4,0, -638,25,918,4,0, -639,25,918,4,0, -640,25,918,4,0, -663,25,918,4,0, -701,25,918,4,0, -10244,25,918,4,0, -739,25,918,4,0, -740,25,918,4,0, -10126,25,918,4,0, -766,25,918,4,0, -783,25,918,4,0, -784,25,918,4,0, -870,25,918,4,0, -903,25,918,4,0, -914,25,918,4,0, -918,25,918,4,0, -922,25,918,4,0, -923,25,918,4,0, -973,25,918,4,0, -1014,25,918,4,0, diff --git a/data/v2/csv/pokemon_species.csv b/data/v2/csv/pokemon_species.csv index 86376cf6..35a9ec27 100644 --- a/data/v2/csv/pokemon_species.csv +++ b/data/v2/csv/pokemon_species.csv @@ -131,7 +131,7 @@ id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id, 130,gyarados,1,129,64,2,2,9,4,45,50,0,5,1,1,1,0,0,154,14 131,lapras,1,,65,2,3,7,4,45,50,0,40,0,1,0,0,0,155,190 132,ditto,1,,66,7,1,8,-1,35,50,0,20,0,2,0,0,0,156, -133,eevee,1,,67,3,8,8,1,45,50,0,35,0,2,0,0,0,157,1 +133,eevee,1,,67,3,8,8,1,45,50,0,35,1,2,0,0,0,157,1 134,vaporeon,1,133,67,2,8,8,1,45,50,0,35,0,2,0,0,0,158,2 135,jolteon,1,133,67,10,8,8,1,45,50,0,35,0,2,0,0,0,159,3 136,flareon,1,133,67,8,8,8,1,45,50,0,35,0,2,0,0,0,160,4 @@ -874,7 +874,7 @@ id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id, 873,frosmoth,8,872,455,9,13,,4,75,50,0,20,0,2,0,0,0,873, 874,stonjourner,8,,456,4,7,,4,60,50,0,25,0,1,0,0,0,874, 875,eiscue,8,,457,2,6,,4,60,50,0,25,0,1,0,0,0,875, -876,indeedee,8,,458,7,6,,4,30,140,0,40,0,3,0,0,0,876, +876,indeedee,8,,458,7,6,,4,30,140,0,40,1,3,0,0,0,876, 877,morpeko,8,,459,10,12,,4,180,50,0,10,0,2,0,0,0,877, 878,cufant,8,,460,10,8,,4,190,50,0,25,0,2,0,0,0,878, 879,copperajah,8,878,460,5,8,,4,90,50,0,25,0,2,0,0,0,879, @@ -904,123 +904,123 @@ id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id, 903,sneasler,8,215,109,4,6,,4,135,,0,,0,4,0,0,0,903, 904,overqwil,8,211,106,1,3,,4,135,,0,,0,2,0,0,0,904, 905,enamorus,8,,477,6,4,,8,3,,0,,0,1,1,1,0,905, -906,sprigatito,9,,478,5,,,1,45,50,0,20,0,4,0,0,0,906, -907,floragato,9,906,478,5,,,1,45,50,0,20,0,4,0,0,0,907, -908,meowscarada,9,907,478,5,,,1,45,50,0,20,0,4,0,0,0,908, -909,fuecoco,9,,479,8,,,1,45,50,0,20,0,4,0,0,0,909, -910,crocalor,9,909,479,8,,,1,45,50,0,20,0,4,0,0,0,910, -911,skeledirge,9,910,479,8,,,1,45,50,0,20,0,4,0,0,0,911, -912,quaxly,9,,480,9,,,1,45,50,0,20,0,4,0,0,0,912, -913,quaxwell,9,912,480,2,,,1,45,50,0,20,0,4,0,0,0,913, -914,quaquaval,9,913,480,2,,,1,45,50,0,20,0,4,0,0,0,914, -915,lechonk,9,,481,4,,,4,255,50,0,15,0,2,0,0,0,915, -916,oinkologne,9,915,481,4,,,0,100,50,0,15,0,2,0,0,0,916, -917,tarountula,9,,482,9,,,4,255,50,0,15,0,5,0,0,0,918, -918,spidops,9,917,482,5,,,4,120,50,0,15,0,5,0,0,0,919, -919,nymble,9,,483,4,,,4,190,20,0,20,0,2,0,0,0,920, -920,lokix,9,919,483,4,,,4,30,0,0,20,0,2,0,0,0,921, -921,pawmi,9,,484,10,,,4,190,50,0,15,0,2,0,0,0,954, -922,pawmo,9,921,484,10,,,4,80,50,0,15,0,2,0,0,0,955, -923,pawmot,9,922,484,10,,,4,45,50,0,15,0,2,0,0,0,956, -924,tandemaus,9,,485,9,,,-1,150,50,0,10,0,3,0,0,0,945, -925,maushold,9,924,485,9,,,-1,75,50,0,10,0,3,0,0,0,946, -926,fidough,9,,486,10,,,4,190,50,0,20,0,4,0,0,0,970, -927,dachsbun,9,926,486,3,,,4,90,50,0,20,0,4,0,0,0,971, -928,smoliv,9,,487,5,,,4,255,50,0,20,0,4,0,0,0,935, -929,dolliv,9,928,487,5,,,4,120,50,0,20,0,4,0,0,0,936, -930,arboliva,9,929,487,5,,,4,45,50,0,20,0,4,0,0,0,937, -931,squawkabilly,9,,488,5,,,4,190,50,0,15,0,5,0,0,0,960, -932,nacli,9,,489,3,,,4,255,50,0,20,0,4,0,0,0,963, -933,naclstack,9,932,489,3,,,4,120,50,0,20,0,4,0,0,0,964, -934,garganacl,9,933,489,3,,,4,45,50,0,20,0,4,0,0,0,965, -935,charcadet,9,,490,8,,,4,90,50,0,35,0,1,0,0,0,1003, -936,armarouge,9,935,490,8,,,4,25,20,0,35,0,1,0,0,0,1004, -937,ceruledge,9,935,490,2,,,4,25,20,0,35,0,1,0,0,0,1005, -938,tadbulb,9,,491,10,,,4,190,50,0,20,0,2,0,0,0,940, -939,bellibolt,9,938,491,5,,,4,50,50,0,20,0,2,0,0,0,941, -940,wattrel,9,,492,1,,,4,180,50,0,20,0,4,0,0,0,957, -941,kilowattrel,9,940,492,10,,,4,90,50,0,20,0,4,0,0,0,958, -942,maschiff,9,,493,3,,,4,150,50,0,20,0,4,0,0,0,972, -943,mabosstiff,9,942,493,4,,,4,75,50,0,20,0,4,0,0,0,973, -944,shroodle,9,,494,4,,,4,190,50,0,20,0,4,0,0,0,968, -945,grafaiai,9,944,494,4,,,4,90,50,0,20,0,4,0,0,0,969, -946,bramblin,9,,495,3,,,4,190,50,0,20,0,2,0,0,0,974, -947,brambleghast,9,946,495,3,,,4,45,50,0,20,0,2,0,0,0,975, -948,toedscool,9,,496,10,,,4,190,50,0,20,0,4,0,0,0,1006, -949,toedscruel,9,948,496,1,,,4,90,50,0,20,0,4,0,0,0,1007, -950,klawf,9,,497,8,,,4,120,50,0,35,0,2,0,0,0,962, -951,capsakid,9,,498,5,,,4,190,50,0,20,0,2,0,0,0,938, -952,scovillain,9,951,498,5,,,4,75,50,0,20,0,2,0,0,0,939, -953,rellor,9,,499,3,,,4,190,50,0,20,0,3,0,0,0,922, -954,rabsca,9,953,499,5,,,4,45,50,0,20,0,3,0,0,0,923, -955,flittle,9,,500,10,,,4,120,50,0,20,0,4,0,0,0,926, -956,espathra,9,955,500,10,,,4,60,50,0,20,0,4,0,0,0,927, -957,tinkatink,9,,501,6,,,8,190,50,0,20,0,4,0,0,0,1000, -958,tinkatuff,9,957,501,6,,,8,90,50,0,20,0,4,0,0,0,1001, -959,tinkaton,9,958,501,6,,,8,45,50,0,20,0,4,0,0,0,1002, -960,wiglett,9,,502,9,,,4,255,50,0,20,0,2,0,0,0,929, -961,wugtrio,9,960,502,8,,,4,50,50,0,20,0,2,0,0,0,930, -962,bombirdier,9,,503,9,,,4,25,50,0,35,0,1,0,0,0,959, -963,finizen,9,,504,2,,,4,200,50,0,40,0,1,0,0,0,933, -964,palafin,9,963,504,2,,,4,45,50,0,40,0,1,0,0,0,934, -965,varoom,9,,505,4,,,4,190,50,0,20,0,2,0,0,0,942, -966,revavroom,9,965,505,4,,,4,75,50,0,20,0,2,0,0,0,943, -967,cyclizar,9,,506,5,,,4,190,50,0,30,0,4,0,0,0,953, -968,orthworm,9,,507,6,,,4,25,50,0,35,0,1,0,0,0,944, -969,glimmet,9,,508,2,,,4,70,50,0,30,0,4,0,0,0,966, -970,glimmora,9,969,508,2,,,4,25,50,0,30,0,4,0,0,0,967, -971,greavard,9,,509,9,,,4,120,50,0,20,0,4,0,0,0,924, -972,houndstone,9,971,509,9,,,4,60,50,0,20,0,4,0,0,0,925, -973,flamigo,9,,510,6,,,4,100,50,0,20,0,4,0,0,0,961, -974,cetoddle,9,,511,9,,,4,150,50,0,25,0,4,0,0,0,947, -975,cetitan,9,974,511,9,,,4,50,50,0,25,0,4,0,0,0,948, -976,veluza,9,,512,4,,,4,100,50,0,20,0,3,0,0,0,932, -977,dondozo,9,,513,2,,,4,25,50,0,40,0,1,0,0,0,931, -978,tatsugiri,9,,514,6,,,4,100,50,0,35,0,4,0,0,0,952, -979,annihilape,9,57,24,4,,,4,45,50,0,20,0,2,0,0,0,1010, -980,clodsire,9,194,96,3,,,4,90,50,0,20,0,2,0,0,0,1009, -981,farigiraf,9,203,101,3,,,4,45,50,0,20,0,2,0,0,0,928, -982,dudunsparce,9,206,103,10,,,4,45,50,0,20,0,2,0,0,0,917, -983,kingambit,9,625,317,1,,,4,25,50,0,20,0,2,0,0,0,1008, -984,great-tusk,9,,515,7,,,-1,30,0,0,50,0,1,0,0,0,978, -985,scream-tail,9,,516,6,,,-1,50,0,0,50,0,1,0,0,0,982, -986,brute-bonnet,9,,517,4,,,-1,50,0,0,50,0,1,0,0,0,979, -987,flutter-mane,9,,518,4,,,-1,30,0,0,50,0,1,0,0,0,983, -988,slither-wing,9,,519,8,,,-1,30,0,0,50,0,1,0,0,0,984, -989,sandy-shocks,9,,520,4,,,-1,30,0,0,50,0,1,0,0,0,981, -990,iron-treads,9,,521,4,,,-1,30,0,0,50,0,1,0,0,0,986, -991,iron-bundle,9,,522,8,,,-1,50,0,0,50,0,1,0,0,0,992, -992,iron-hands,9,,523,4,,,-1,50,0,0,50,0,1,0,0,0,989, -993,iron-jugulis,9,,524,2,,,-1,30,0,0,50,0,1,0,0,0,990, -994,iron-moth,9,,525,10,,,-1,30,0,0,50,0,1,0,0,0,988, -995,iron-thorns,9,,526,5,,,-1,30,0,0,50,0,1,0,0,0,991, -996,frigibax,9,,527,4,,,4,45,50,0,40,0,1,0,0,0,949, -997,arctibax,9,996,527,4,,,4,25,50,0,40,0,1,0,0,0,950, -998,baxcalibur,9,997,527,4,,,4,10,50,0,40,0,1,0,0,0,951, -999,gimmighoul,9,,528,3,,,-1,45,50,0,50,0,1,0,0,0,976, -1000,gholdengo,9,999,528,10,,,-1,45,50,0,50,0,1,0,0,0,977, -1001,wo-chien,9,,529,3,,,-1,6,0,0,50,0,1,0,1,0,996, -1002,chien-pao,9,,530,9,,,-1,6,0,0,50,0,1,0,1,0,995, -1003,ting-lu,9,,531,3,,,-1,6,0,0,50,0,1,0,1,0,994, -1004,chi-yu,9,,532,8,,,-1,6,0,0,50,0,1,0,1,0,997, -1005,roaring-moon,9,,533,5,,,-1,10,0,0,50,0,1,0,0,0,985, -1006,iron-valiant,9,,534,9,,,-1,10,0,0,50,0,1,0,0,0,993, -1007,koraidon,9,,535,8,,,-1,3,0,0,50,0,1,0,1,0,998, -1008,miraidon,9,,536,2,,,-1,3,0,0,50,0,1,0,1,0,999, -1009,walking-wake,9,,537,2,,,-1,5,0,0,50,0,1,0,0,0,1011, -1010,iron-leaves,9,,538,5,,,-1,5,0,0,50,0,1,0,0,0,1012, -1011,dipplin,9,840,442,5,,,-1,45,0,0,20,0,1,0,0,0,1013, -1012,poltchageist,9,,539,5,,,-1,120,0,0,50,0,1,0,0,0,1014, -1013,sinistcha,9,1012,539,5,,,-1,60,0,0,50,0,1,0,0,0,1015, -1014,okidogi,9,,540,1,,,-1,3,0,0,50,0,1,0,1,0,1016, -1015,munkidori,9,,541,1,,,-1,3,0,0,50,0,1,0,1,0,1017, -1016,fezandipiti,9,,542,1,,,-1,3,0,0,50,0,1,0,1,0,1018, -1017,ogerpon,9,,543,5,,,-1,5,0,0,50,0,1,0,1,0,1019, -1018,archaludon,9,884,465,9,,,4,10,50,0,30,0,2,0,0,0,1020, -1019,hydrapple,9,1011,442,5,,,4,10,50,0,20,0,5,0,0,0,1021, -1020,gouging-fire,9,,544,3,,,-1,10,0,0,50,0,1,0,0,0,1022, -1021,raging-bolt,9,,545,10,,,-1,10,0,0,50,0,1,0,0,0,1023, -1022,iron-boulder,9,,547,4,,,-1,10,0,0,50,0,1,0,0,0,1024, -1023,iron-crown,9,,546,2,,,-1,10,0,0,50,0,1,0,0,0,1025, -1024,terapagos,9,,548,2,,,-1,255,50,0,5,0,1,0,1,0,1026, -1025,pecharunt,9,,549,7,,,-1,3,0,0,20,0,1,0,0,1,1027, +906,sprigatito,9,,478,5,8,,1,45,50,0,20,0,4,0,0,0,906, +907,floragato,9,906,478,5,6,,1,45,50,0,20,0,4,0,0,0,907, +908,meowscarada,9,907,478,5,6,,1,45,50,0,20,0,4,0,0,0,908, +909,fuecoco,9,,479,8,6,,1,45,50,0,20,0,4,0,0,0,909, +910,crocalor,9,909,479,8,6,,1,45,50,0,20,0,4,0,0,0,910, +911,skeledirge,9,910,479,8,8,,1,45,50,0,20,0,4,0,0,0,911, +912,quaxly,9,,480,9,6,,1,45,50,0,20,0,4,0,0,0,912, +913,quaxwell,9,912,480,2,6,,1,45,50,0,20,0,4,0,0,0,913, +914,quaquaval,9,913,480,2,6,,1,45,50,0,20,0,4,0,0,0,914, +915,lechonk,9,,481,4,8,,4,255,50,0,15,0,2,0,0,0,915, +916,oinkologne,9,915,481,4,8,,0,100,50,0,15,1,2,0,0,0,916, +917,tarountula,9,,482,9,14,,4,255,50,0,15,0,5,0,0,0,918, +918,spidops,9,917,482,5,14,,4,120,50,0,15,0,5,0,0,0,919, +919,nymble,9,,483,4,14,,4,190,20,0,20,0,2,0,0,0,920, +920,lokix,9,919,483,4,12,,4,30,0,0,20,0,2,0,0,0,921, +921,pawmi,9,,484,10,8,,4,190,50,0,15,0,2,0,0,0,954, +922,pawmo,9,921,484,10,6,,4,80,50,0,15,0,2,0,0,0,955, +923,pawmot,9,922,484,10,6,,4,45,50,0,15,0,2,0,0,0,956, +924,tandemaus,9,,485,9,11,,-1,150,50,0,10,0,3,0,0,0,945, +925,maushold,9,924,485,9,11,,-1,75,50,0,10,0,3,0,0,0,946, +926,fidough,9,,486,10,8,,4,190,50,0,20,0,4,0,0,0,970, +927,dachsbun,9,926,486,3,8,,4,90,50,0,20,0,4,0,0,0,971, +928,smoliv,9,,487,5,7,,4,255,50,0,20,0,4,0,0,0,935, +929,dolliv,9,928,487,5,12,,4,120,50,0,20,0,4,0,0,0,936, +930,arboliva,9,929,487,5,12,,4,45,50,0,20,0,4,0,0,0,937, +931,squawkabilly,9,,488,5,9,,4,190,50,0,15,0,5,0,0,0,960, +932,nacli,9,,489,3,1,,4,255,50,0,20,0,4,0,0,0,963, +933,naclstack,9,932,489,3,8,,4,120,50,0,20,0,4,0,0,0,964, +934,garganacl,9,933,489,3,12,,4,45,50,0,20,0,4,0,0,0,965, +935,charcadet,9,,490,8,12,,4,90,50,0,35,0,1,0,0,0,1003, +936,armarouge,9,935,490,8,12,,4,25,20,0,35,0,1,0,0,0,1004, +937,ceruledge,9,935,490,2,12,,4,25,20,0,35,0,1,0,0,0,1005, +938,tadbulb,9,,491,10,1,,4,190,50,0,20,0,2,0,0,0,940, +939,bellibolt,9,938,491,5,12,,4,50,50,0,20,0,2,0,0,0,941, +940,wattrel,9,,492,1,9,,4,180,50,0,20,0,4,0,0,0,957, +941,kilowattrel,9,940,492,10,9,,4,90,50,0,20,0,4,0,0,0,958, +942,maschiff,9,,493,3,8,,4,150,50,0,20,0,4,0,0,0,972, +943,mabosstiff,9,942,493,4,8,,4,75,50,0,20,0,4,0,0,0,973, +944,shroodle,9,,494,4,8,,4,190,50,0,20,0,4,0,0,0,968, +945,grafaiai,9,944,494,4,6,,4,90,50,0,20,0,4,0,0,0,969, +946,bramblin,9,,495,3,1,,4,190,50,0,20,0,2,0,0,0,974, +947,brambleghast,9,946,495,3,1,,4,45,50,0,20,0,2,0,0,0,975, +948,toedscool,9,,496,10,7,,4,190,50,0,20,0,4,0,0,0,1006, +949,toedscruel,9,948,496,1,10,,4,90,50,0,20,0,4,0,0,0,1007, +950,klawf,9,,497,8,14,,4,120,50,0,35,0,2,0,0,0,962, +951,capsakid,9,,498,5,6,,4,190,50,0,20,0,2,0,0,0,938, +952,scovillain,9,951,498,5,6,,4,75,50,0,20,0,2,0,0,0,939, +953,rellor,9,,499,3,14,,4,190,50,0,20,0,3,0,0,0,922, +954,rabsca,9,953,499,5,14,,4,45,50,0,20,0,3,0,0,0,923, +955,flittle,9,,500,10,7,,4,120,50,0,20,0,4,0,0,0,926, +956,espathra,9,955,500,10,6,,4,60,50,0,20,0,4,0,0,0,927, +957,tinkatink,9,,501,6,12,,8,190,50,0,20,0,4,0,0,0,1000, +958,tinkatuff,9,957,501,6,12,,8,90,50,0,20,0,4,0,0,0,1001, +959,tinkaton,9,958,501,6,12,,8,45,50,0,20,0,4,0,0,0,1002, +960,wiglett,9,,502,9,5,,4,255,50,0,20,0,2,0,0,0,929, +961,wugtrio,9,960,502,8,5,,4,50,50,0,20,0,2,0,0,0,930, +962,bombirdier,9,,503,9,9,,4,25,50,0,35,0,1,0,0,0,959, +963,finizen,9,,504,2,3,,4,200,50,0,40,0,1,0,0,0,933, +964,palafin,9,963,504,2,3,,4,45,50,0,40,0,1,0,0,0,934, +965,varoom,9,,505,4,7,,4,190,50,0,20,0,2,0,0,0,942, +966,revavroom,9,965,505,4,7,,4,75,50,0,20,0,2,0,0,0,943, +967,cyclizar,9,,506,5,8,,4,190,50,0,30,0,4,0,0,0,953, +968,orthworm,9,,507,6,2,,4,25,50,0,35,0,1,0,0,0,944, +969,glimmet,9,,508,2,1,,4,70,50,0,30,0,4,0,0,0,966, +970,glimmora,9,969,508,2,1,,4,25,50,0,30,0,4,0,0,0,967, +971,greavard,9,,509,9,8,,4,120,50,0,20,0,4,0,0,0,924, +972,houndstone,9,971,509,9,8,,4,60,50,0,20,0,4,0,0,0,925, +973,flamigo,9,,510,6,9,,4,100,50,0,20,0,4,0,0,0,961, +974,cetoddle,9,,511,9,6,,4,150,50,0,25,0,4,0,0,0,947, +975,cetitan,9,974,511,9,6,,4,50,50,0,25,0,4,0,0,0,948, +976,veluza,9,,512,4,3,,4,100,50,0,20,0,3,0,0,0,932, +977,dondozo,9,,513,2,3,,4,25,50,0,40,0,1,0,0,0,931, +978,tatsugiri,9,,514,6,3,,4,100,50,0,35,0,4,0,0,0,952, +979,annihilape,9,57,24,4,12,,4,45,50,0,20,0,2,0,0,0,1010, +980,clodsire,9,194,96,3,8,,4,90,50,0,20,0,2,0,0,0,1009, +981,farigiraf,9,203,101,3,8,,4,45,50,0,20,0,2,0,0,0,928, +982,dudunsparce,9,206,103,10,2,,4,45,50,0,20,0,2,0,0,0,917, +983,kingambit,9,625,317,1,12,,4,25,50,0,20,0,2,0,0,0,1008, +984,great-tusk,9,,515,7,8,,-1,30,0,0,50,0,1,0,0,0,978, +985,scream-tail,9,,516,6,6,,-1,50,0,0,50,0,1,0,0,0,982, +986,brute-bonnet,9,,517,4,8,,-1,50,0,0,50,0,1,0,0,0,979, +987,flutter-mane,9,,518,4,9,,-1,30,0,0,50,0,1,0,0,0,983, +988,slither-wing,9,,519,8,8,,-1,30,0,0,50,0,1,0,0,0,984, +989,sandy-shocks,9,,520,4,8,,-1,30,0,0,50,0,1,0,0,0,981, +990,iron-treads,9,,521,4,8,,-1,30,0,0,50,0,1,0,0,0,986, +991,iron-bundle,9,,522,8,6,,-1,50,0,0,50,0,1,0,0,0,992, +992,iron-hands,9,,523,4,12,,-1,50,0,0,50,0,1,0,0,0,989, +993,iron-jugulis,9,,524,2,6,,-1,30,0,0,50,0,1,0,0,0,990, +994,iron-moth,9,,525,10,13,,-1,30,0,0,50,0,1,0,0,0,988, +995,iron-thorns,9,,526,5,6,,-1,30,0,0,50,0,1,0,0,0,991, +996,frigibax,9,,527,4,6,,4,45,50,0,40,0,1,0,0,0,949, +997,arctibax,9,996,527,4,6,,4,25,50,0,40,0,1,0,0,0,950, +998,baxcalibur,9,997,527,4,6,,4,10,50,0,40,0,1,0,0,0,951, +999,gimmighoul,9,,528,3,5,,-1,45,50,0,50,0,1,0,0,0,976, +1000,gholdengo,9,999,528,10,12,,-1,45,50,0,50,0,1,0,0,0,977, +1001,wo-chien,9,,529,3,2,,-1,6,0,0,50,0,1,0,1,0,996, +1002,chien-pao,9,,530,9,8,,-1,6,0,0,50,0,1,0,1,0,995, +1003,ting-lu,9,,531,3,8,,-1,6,0,0,50,0,1,0,1,0,994, +1004,chi-yu,9,,532,8,3,,-1,6,0,0,50,0,1,0,1,0,997, +1005,roaring-moon,9,,533,5,8,,-1,10,0,0,50,0,1,0,0,0,985, +1006,iron-valiant,9,,534,9,12,,-1,10,0,0,50,0,1,0,0,0,993, +1007,koraidon,9,,535,8,6,,-1,3,0,0,50,0,1,0,1,0,998, +1008,miraidon,9,,536,2,8,,-1,3,0,0,50,0,1,0,1,0,999, +1009,walking-wake,9,,537,2,6,,-1,5,0,0,50,0,1,0,0,0,1011, +1010,iron-leaves,9,,538,5,8,,-1,5,0,0,50,0,1,0,0,0,1012, +1011,dipplin,9,840,442,5,11,,-1,45,0,0,20,0,1,0,0,0,1013, +1012,poltchageist,9,,539,5,1,,-1,120,0,0,50,0,1,0,0,0,1014, +1013,sinistcha,9,1012,539,5,1,,-1,60,0,0,50,0,1,0,0,0,1015, +1014,okidogi,9,,540,1,6,,-1,3,0,0,50,0,1,0,1,0,1016, +1015,munkidori,9,,541,1,12,,-1,3,0,0,50,0,1,0,1,0,1017, +1016,fezandipiti,9,,542,1,9,,-1,3,0,0,50,0,1,0,1,0,1018, +1017,ogerpon,9,,543,5,12,,-1,5,0,0,50,0,1,0,1,0,1019, +1018,archaludon,9,884,465,9,6,,4,10,50,0,30,0,2,0,0,0,1020, +1019,hydrapple,9,1011,442,5,11,,4,10,50,0,20,0,5,0,0,0,1021, +1020,gouging-fire,9,,544,3,8,,-1,10,0,0,50,0,1,0,0,0,1022, +1021,raging-bolt,9,,545,10,8,,-1,10,0,0,50,0,1,0,0,0,1023, +1022,iron-boulder,9,,547,4,8,,-1,10,0,0,50,0,1,0,0,0,1024, +1023,iron-crown,9,,546,2,8,,-1,10,0,0,50,0,1,0,0,0,1025, +1024,terapagos,9,,548,2,8,,-1,255,50,0,5,0,1,0,1,0,1026, +1025,pecharunt,9,,549,7,1,,-1,3,0,0,20,0,1,0,0,1,1027, diff --git a/data/v2/csv/pokemon_species_flavor_text.csv b/data/v2/csv/pokemon_species_flavor_text.csv index fd832e6f..2bb905db 100644 --- a/data/v2/csv/pokemon_species_flavor_text.csv +++ b/data/v2/csv/pokemon_species_flavor_text.csv @@ -183571,4 +183571,38 @@ gives rise to the budding of fresh life across Hisui." 1007,40,9,"This seems to be the Winged King mentioned in an old expedition journal. It was said to have split the land with its bare fists." 1007,41,9,"This Pokémon resembles Cyclizar, but it is far burlier and more ferocious. Nothing is known about its ecology or other features." 1008,40,9,"Much remains unknown about this creature. It resembles Cyclizar, but it is far more ruthless and powerful." -1008,41,9,"This seems to be the Iron Serpent mentioned in an old book. The Iron Serpent is said to have turned the land to ash with its lightning." \ No newline at end of file +1008,41,9,"This seems to be the Iron Serpent mentioned in an old book. The Iron Serpent is said to have turned the land to ash with its lightning." +1009,40,9,"This ferocious creature is shrouded in mystery. It's named after an aquatic monster mentioned in an old expedition journal." +1009,41,9,"It resembles an illustration published in a paranormal magazine, said to be a depiction of a super-ancient Suicune." +1010,40,9,"Many of its physical characteristics match those of a Virizion from the future that was covered in a paranormal magazine." +1010,41,9,"According to the few eyewitness accounts that exist, it used its shining blades to julienne large trees and boulders." +1011,40,9,"Dipplin is two creatures in one Pokémon. Its evolution was triggered by a special apple grown only in one place." +1011,41,9,"The head sticking out belongs to the fore-wyrm, while the tail belongs to the core-wyrm. The two share one apple and help each other out." +1012,40,9,"Supposedly, the regrets of a tea ceremony master who died before perfecting his craft lingered in some matcha and became a Pokémon." +1012,41,9,"Poltchageist looks like a regional form of Sinistea, but it was recently discovered that the two Pokémon are entirely unrelated." +1013,40,9,"It pretends to be tea, trying to fool people into drinking it so it can drain their life-force. Its ruse is generally unsuccessful." +1013,41,9,"It prefers cool, dark places, such as the back of a shelf or the space beneath a home's floorboards. It wanders in search of prey after sunset." +1014,40,9,"After all its muscles were stimulated by the toxic chain around its neck, Okidogi transformed and gained a powerful physique." +1014,41,9,"Okidogi is a ruffian with a short temper. It can pulverize anything by swinging around the chain on its neck." +1015,40,9,"The chain is made from toxins that enhance capabilities. It stimulated Munkidori's brain and caused the Pokémon's psychic powers to bloom." +1015,41,9,"Munkidori keeps itself somewhere safe while it toys with its foes, using psychokinesis to induce intense dizziness." +1016,40,9,"Fezandipiti owes its beautiful looks and lovely voice to the toxic stimulants emanating from the chain wrapped around its body." +1016,41,9,"Fezandipiti beats its glossy wings to scatter pheromones that captivate people and Pokémon." +1017,40,9,"This Pokémon's type changes based on which mask it's wearing. It confounds its enemies with nimble movements and kicks." +1017,41,9,"This mischief-loving Pokémon is full of curiosity. It battles by drawing out the type-based energy contained within its masks." +1018,40,9,"It gathers static electricity from its surroundings. The beams it launches when down on all fours are tremendously powerful." +1018,41,9,"It digs holes on mountains, searching for food. It’s so durable that being caught in a cave-in won’t faze it." +1019,40,9,"Seven syrpents live inside an apple made of syrup. The syrpent in the center is the commander." +1019,41,9,"These capricious syrpents have banded together. On the rare occasion that their moods align, their true power is unleashed." +1020,40,9,"There are scant few reports of this creature being sighted. One short video shows it rampaging and spouting pillars of flame." +1020,41,9,"It resembles an eerie Pokémon once shown in a paranormal magazine. That Pokémon was said to be an Entei regenerated from a fossil." +1021,40,9,"It's said to incinerate everything around it with lightning launched from its fur. Very little is known about this creature." +1021,41,9,"It bears resemblance to a Pokémon that became a hot topic for a short while after a paranormal magazine touted it as Raikou's ancestor." +1022,40,9,"It resembles a Pokémon described in a dubious magazine as a Terrakion that had been modified by an evil organization." +1022,41,9,"It was named after a mysterious object recorded in an old book. Its body seems to be metallic." +1023,40,9,"It resembles a mysterious object introduced in a paranormal magazine as a cutting-edge weapon shaped like a Cobalion." +1023,41,9,"There was supposedly an incident in which it launched shining blades to cut everything around it to pieces. Little else is known about it." +1024,40,9,"Terapagos protects itself using its power to transform energy into hard crystals. This Pokémon is the source of the Terastal phenomenon." +1024,41,9,"It’s thought that this Pokémon lived in ancient Paldea until it got caught in seismic shifts and went extinct." +1025,40,9,"It feeds others toxic mochi that draw out desires and capabilities. Those who eat the mochi fall under Pecharunt’s control, chained to its will." +1025,41,9,"Its peach-shaped shell serves as storage for a potent poison. It makes poisonous mochi and serves them to people and Pokémon." diff --git a/data/v2/csv/pokemon_species_names.csv b/data/v2/csv/pokemon_species_names.csv index e0217cee..e0ed93c4 100644 --- a/data/v2/csv/pokemon_species_names.csv +++ b/data/v2/csv/pokemon_species_names.csv @@ -9879,7 +9879,7 @@ pokemon_species_id,local_language_id,name,genus 898,12,蕾冠王,国王宝可梦 899,1,アヤシシ,おおツノポケモン 899,2,Ayashishi, -899,3,신비록, +899,3,신비록,큰뿔포켓몬 899,4,詭角鹿,大角寶可夢 899,5,Cerbyllin,Pokémon Maxi Corne 899,6,Damythir,Vielender-Pokémon @@ -9890,7 +9890,7 @@ pokemon_species_id,local_language_id,name,genus 899,12,诡角鹿,大角宝可梦 900,1,バサギリ,まさかりポケモン 900,2,Basagiri, -900,3,사마자르, +900,3,사마자르,큰도끼포켓몬 900,4,劈斧螳螂,斧鉞寶可夢 900,5,Hachécateur,Pokémon Hache 900,6,Axantor,Axt-Pokémon @@ -9901,7 +9901,7 @@ pokemon_species_id,local_language_id,name,genus 900,12,劈斧螳螂,斧钺宝可梦 901,1,ガチグマ,でいたんポケモン 901,2,Gachiguma, -901,3,다투곰, +901,3,다투곰,이탄포켓몬 901,4,月月熊,泥炭寶可夢 901,5,Ursaking,Pokémon Tourbe 901,6,Ursaluna,Torf-Pokémon @@ -9912,7 +9912,7 @@ pokemon_species_id,local_language_id,name,genus 901,12,月月熊,泥炭宝可梦 902,1,イダイトウ,おおうおポケモン 902,2,Idaitou, -902,3,대쓰여너, +902,3,대쓰여너,큰물고기포켓몬 902,4,幽尾玄魚,大魚寶可夢 902,5,Paragruel,Pokémon Poissigrand 902,6,Salmagnis,Großfisch-Pokémon @@ -9923,7 +9923,7 @@ pokemon_species_id,local_language_id,name,genus 902,12,幽尾玄鱼,大鱼宝可梦 903,1,オオニューラ,クライミングポケモン 903,2,Oonyura, -903,3,포푸니크, +903,3,포푸니크,클라이밍포켓몬 903,4,大狃拉,攀崖寶可夢 903,5,Farfurex,Pokémon Grimpeur 903,6,Snieboss,Kletterei-Pokémon @@ -9934,7 +9934,7 @@ pokemon_species_id,local_language_id,name,genus 903,12,大狃拉,攀崖宝可梦 904,1,ハリーマン,けんざんポケモン 904,2,Hariman, -904,3,장침바루, +904,3,장침바루,침붕포켓몬몬 904,4,萬針魚,劍山寶可夢 904,5,Qwilpik,Pokémon Épineux 904,6,Myriador,Tausenddorn-Pokémon @@ -9945,7 +9945,7 @@ pokemon_species_id,local_language_id,name,genus 904,12,万针鱼,剑山宝可梦 905,1,ラブトロス,あいぞうポケモン 905,2,Lovetolos, -905,3,러브로스, +905,3,러브로스,애증포켓몬 905,4,眷戀雲,愛憎寶可夢 905,5,Amovénus,Pokémon Hainamour 905,6,Cupidos,Hassliebe-Pokémon @@ -9956,9 +9956,9 @@ pokemon_species_id,local_language_id,name,genus 905,12,眷恋云,爱憎宝可梦 906,1,ニャオハ,くさねこポケモン 906,2,Nyahoja, -906,3,나오하, +906,3,나오하,풀고양이포켓몬 906,4,新葉喵,草貓寶可夢 -906,5,Poussacha, +906,5,Poussacha,Chat Plante 906,6,Felori, 906,7,Sprigatito, 906,8,Sprigatito, @@ -9967,9 +9967,9 @@ pokemon_species_id,local_language_id,name,genus 906,12,新叶喵,草猫宝可梦 907,1,ニャローテ,くさねこポケモン 907,2,Nyarote, -907,3,나로테, +907,3,나로테,풀고양이포켓몬 907,4,蒂蕾喵,草貓寶可夢 -907,5,Matourgeon, +907,5,Matourgeon,Chat Plante 907,6,Feliospa, 907,7,Floragato, 907,8,Floragato, @@ -9978,9 +9978,9 @@ pokemon_species_id,local_language_id,name,genus 907,12,蒂蕾喵,草猫宝可梦 908,1,マスカーニャ,マジシャンポケモン 908,2,Masquernya, -908,3,마스카나, +908,3,마스카나,매지션포켓몬 908,4,魔幻假面喵,魔術師寶可夢 -908,5,Miascarade, +908,5,Miascarade,Magicien 908,6,Maskagato,Magier 908,7,Meowscarada, 908,8,Meowscarada, @@ -9989,9 +9989,9 @@ pokemon_species_id,local_language_id,name,genus 908,12,魔幻假面喵,魔术师宝可梦 909,1,ホゲータ,ほのおワニポケモン 909,2,Hogator, -909,3,뜨아거, +909,3,뜨아거,불꽃악어포켓몬 909,4,呆火鱷,火鱷寶可夢 -909,5,Chochodile, +909,5,Chochodile,Croco Feu 909,6,Krokel,Feuerkroko 909,7,Fuecoco, 909,8,Fuecoco, @@ -10000,9 +10000,9 @@ pokemon_species_id,local_language_id,name,genus 909,12,呆火鳄,火鳄宝可梦 910,1,アチゲータ,ほのおワニポケモン 910,2,Achigator, -910,3,악뜨거, +910,3,악뜨거,불꽃악어포켓몬 910,4,炙燙鱷,火鱷寶可夢 -910,5,Crocogril, +910,5,Crocogril,Croco Feu 910,6,Lokroko,Feuerkroko 910,7,Crocalor, 910,8,Crocalor, @@ -10011,9 +10011,9 @@ pokemon_species_id,local_language_id,name,genus 910,12,炙烫鳄,火鳄宝可梦 911,1,ラウドボーン,シンガーポケモン 911,2,Laudbon, -911,3,라우드본, +911,3,라우드본,싱어포켓몬 911,4,骨紋巨聲鱷,歌手寶可夢 -911,5,Flâmigator, +911,5,Flâmigator,Chanteur 911,6,Skelokrok,Sänger 911,7,Skeledirge, 911,8,Skeledirge, @@ -10022,9 +10022,9 @@ pokemon_species_id,local_language_id,name,genus 911,12,骨纹巨声鳄,歌手宝可梦 912,1,クワッス,こがもポケモン 912,2,Kuwassu, -912,3,꾸왁스, +912,3,꾸왁스,꼬마오리포켓몬 912,4,潤水鴨,小鴨寶可夢 -912,5,Coiffeton, +912,5,Coiffeton,Caneton 912,6,Kwaks,Jungente 912,7,Quaxly, 912,8,Quaxly, @@ -10033,9 +10033,9 @@ pokemon_species_id,local_language_id,name,genus 912,12,润水鸭,小鸭宝可梦 913,1,ウェルカモ,レッスンポケモン 913,2,Welkamo, -913,3,아꾸왁, +913,3,아꾸왁,레슨포켓몬 913,4,湧躍鴨,習藝寶可夢 -913,5,Canarbello, +913,5,Canarbello,Leçon 913,6,Fuentente,Übung 913,7,Quaxwell, 913,8,Quaxwell, @@ -10044,9 +10044,9 @@ pokemon_species_id,local_language_id,name,genus 913,12,涌跃鸭,习艺宝可梦 914,1,ウェーニバル,ダンサーポケモン 914,2,Wanival, -914,3,웨이니발, +914,3,웨이니발,댄서포켓몬 914,4,狂歡浪舞鴨,舞者寶可夢 -914,5,Palmaval, +914,5,Palmaval,Danseur 914,6,Bailonda,Tänzer 914,7,Quaquaval, 914,8,Quaquaval, @@ -10055,9 +10055,9 @@ pokemon_species_id,local_language_id,name,genus 914,12,狂欢浪舞鸭,舞者宝可梦 915,1,グルトン,ぶたポケモン 915,2,Gourton, -915,3,맛보돈, +915,3,맛보돈,돼지포켓몬 915,4,愛吃豚,豬寶可夢 -915,5,Gourmelet, +915,5,Gourmelet,Pourceau 915,6,Ferkuli,Schwein 915,7,Lechonk, 915,8,Lechonk, @@ -10066,9 +10066,9 @@ pokemon_species_id,local_language_id,name,genus 915,12,爱吃豚,猪宝可梦 916,1,パフュートン,ぶたポケモン 916,2,Perfuton, -916,3,퍼퓨돈, +916,3,퍼퓨돈,돼지포켓몬 916,4,飄香豚,豬寶可夢 -916,5,Fragroin, +916,5,Fragroin,Pourceau 916,6,Fragrunz,Schwein 916,7,Oinkologne, 916,8,Oinkologne, @@ -10077,9 +10077,9 @@ pokemon_species_id,local_language_id,name,genus 916,12,飘香豚,猪宝可梦 917,1,タマンチュラ,いとだまポケモン 917,2,Tamantula, -917,3,타랜툴라, +917,3,타랜툴라,실타래포켓몬 917,4,團珠蛛,線球寶可夢 -917,5,Tissenboule, +917,5,Tissenboule,Boule de Fil 917,6,Tarundel,Fadenkugel 917,7,Tarountula, 917,8,Tarountula, @@ -10088,9 +10088,9 @@ pokemon_species_id,local_language_id,name,genus 917,12,团珠蛛,线球宝可梦 918,1,ワナイダー,トラップポケモン 918,2,Wanaider, -918,3,트래피더, +918,3,트래피더,트랩포켓몬 918,4,操陷蛛,陷阱寶可夢 -918,5,Filentrappe, +918,5,Filentrappe,Piège 918,6,Spinsidias,Falle 918,7,Spidops, 918,8,Spidops, @@ -10099,9 +10099,9 @@ pokemon_species_id,local_language_id,name,genus 918,12,操陷蛛,陷阱宝可梦 919,1,マメバッタ,バッタポケモン 919,2,Mamebatta, -919,3,콩알뚜기, +919,3,콩알뚜기,메뚜기포켓몬 919,4,豆蟋蟀,蝗蟲寶可夢 -919,5,Lilliterelle, +919,5,Lilliterelle,Sauterelle 919,6,Micrick,Heuschrecke 919,7,Nymble, 919,8,Nymble, @@ -10110,9 +10110,9 @@ pokemon_species_id,local_language_id,name,genus 919,12,豆蟋蟀,蝗虫宝可梦 920,1,エクスレッグ,バッタポケモン 920,2,Exleg, -920,3,엑스레그, +920,3,엑스레그,메뚜기포켓몬 920,4,烈腿蝗,蝗蟲寶可夢 -920,5,Gambex, +920,5,Gambex,Sauterelle 920,6,Lextremo,Heuschrecke 920,7,Lokix, 920,8,Lokix, @@ -10121,9 +10121,9 @@ pokemon_species_id,local_language_id,name,genus 920,12,烈腿蝗,蝗虫宝可梦 921,1,パモ,ねずみポケモン 921,2,Pamo, -921,3,빠모, +921,3,빠모,쥐포켓몬 921,4,布撥,鼠寶可夢 -921,5,Pohm, +921,5,Pohm,Souris 921,6,Pamo,Maus 921,7,Pawmi, 921,8,Pawmi, @@ -10132,9 +10132,9 @@ pokemon_species_id,local_language_id,name,genus 921,12,布拨,鼠宝可梦 922,1,パモット,ねずみポケモン 922,2,Pamot, -922,3,빠모트, +922,3,빠모트,쥐포켓몬 922,4,布土撥,鼠寶可夢 -922,5,Pohmotte, +922,5,Pohmotte,Souris 922,6,Pamamo,Maus 922,7,Pawmo, 922,8,Pawmo, @@ -10143,9 +10143,9 @@ pokemon_species_id,local_language_id,name,genus 922,12,布土拨,鼠宝可梦 923,1,パーモット,てあてポケモン 923,2,Parmot, -923,3,빠르모트, +923,3,빠르모트,손길포켓몬 923,4,巴布土撥,押掌寶可夢 -923,5,Pohmarmotte, +923,5,Pohmarmotte,Pose Paume 923,6,Pamomamo,Behandlung 923,7,Pawmot, 923,8,Pawmot, @@ -10154,9 +10154,9 @@ pokemon_species_id,local_language_id,name,genus 923,12,巴布土拨,押掌宝可梦 924,1,ワッカネズミ,カップルポケモン 924,2,Wakkanezumi, -924,3,두리쥐, +924,3,두리쥐,커플포켓몬 924,4,一對鼠,成對寶可夢 -924,5,Compagnol, +924,5,Compagnol,Couple 924,6,Zwieps,Paar 924,7,Tandemaus, 924,8,Tandemaus, @@ -10165,9 +10165,9 @@ pokemon_species_id,local_language_id,name,genus 924,12,一对鼠,成对宝可梦 925,1,イッカネズミ,ファミリーポケモン 925,2,Ikkanezumi, -925,3,파밀리쥐, +925,3,파밀리쥐,패밀리포켓몬 925,4,一家鼠,家族寶可夢 -925,5,Famignol, +925,5,Famignol,Famille 925,6,Famieps,Familie 925,7,Maushold, 925,8,Maushold, @@ -10176,9 +10176,9 @@ pokemon_species_id,local_language_id,name,genus 925,12,一家鼠,家族宝可梦 926,1,パピモッチ,こいぬポケモン 926,2,Pupimocchi, -926,3,쫀도기, +926,3,쫀도기,강아지포켓몬 926,4,狗仔包,小狗寶可夢 -926,5,Pâtachiot, +926,5,Pâtachiot,Chiot 926,6,Hefel,Welpe 926,7,Fidough, 926,8,Fidough, @@ -10187,9 +10187,9 @@ pokemon_species_id,local_language_id,name,genus 926,12,狗仔包,小狗宝可梦 927,1,バウッツェル,いぬポケモン 927,2,Bowtzel, -927,3,바우첼, +927,3,바우첼,개포켓몬 927,4,麻花犬,狗寶可夢 -927,5,Briochien, +927,5,Briochien,Chien 927,6,Backel,Hund 927,7,Dachsbun, 927,8,Dachsbun, @@ -10198,9 +10198,9 @@ pokemon_species_id,local_language_id,name,genus 927,12,麻花犬,狗宝可梦 928,1,ミニーブ,オリーブポケモン 928,2,Minive, -928,3,미니브, +928,3,미니브,올리브포켓몬 928,4,迷你芙,橄欖寶可夢 -928,5,Olivini, +928,5,Olivini,Olive 928,6,Olini,Olive 928,7,Smoliv, 928,8,Smoliv, @@ -10209,9 +10209,9 @@ pokemon_species_id,local_language_id,name,genus 928,12,迷你芙,橄榄宝可梦 929,1,オリーニョ,オリーブポケモン 929,2,Olinyo, -929,3,올리뇨, +929,3,올리뇨,올리브포켓몬 929,4,奧利紐,橄欖寶可夢 -929,5,Olivado, +929,5,Olivado,Olive 929,6,Olivinio,Olive 929,7,Dolliv, 929,8,Dolliv, @@ -10220,9 +10220,9 @@ pokemon_species_id,local_language_id,name,genus 929,12,奥利纽,橄榄宝可梦 930,1,オリーヴァ,オリーブポケモン 930,2,Oliva, -930,3,올리르바, +930,3,올리르바,올리브포켓몬 930,4,奧利瓦,橄欖寶可夢 -930,5,Arboliva, +930,5,Arboliva,Olive 930,6,Olithena,Olive 930,7,Arboliva, 930,8,Arboliva, @@ -10231,9 +10231,9 @@ pokemon_species_id,local_language_id,name,genus 930,12,奥利瓦,橄榄宝可梦 931,1,イキリンコ,インコポケモン 931,2,Ikirinko, -931,3,시비꼬, +931,3,시비꼬,잉꼬포켓몬 931,4,怒鸚哥,鸚鵡寶可夢 -931,5,Tapatoès, +931,5,Tapatoès,Perroquet 931,6,Krawalloro,Sittich 931,7,Squawkabilly, 931,8,Squawkabilly, @@ -10242,9 +10242,9 @@ pokemon_species_id,local_language_id,name,genus 931,12,怒鹦哥,鹦鹉宝可梦 932,1,コジオ,がんえんポケモン 932,2,Kojio, -932,3,베베솔트, +932,3,베베솔트,암염포켓몬 932,4,鹽石寶,岩鹽寶可夢 -932,5,Selutin, +932,5,Selutin,Halite 932,6,Geosali,Steinsalz 932,7,Nacli, 932,8,Nacli, @@ -10253,9 +10253,9 @@ pokemon_species_id,local_language_id,name,genus 932,12,盐石宝,岩盐宝可梦 933,1,ジオヅム,がんえんポケモン 933,2,Jiodumu, -933,3,스태솔트, +933,3,스태솔트,암염포켓몬 933,4,鹽石壘,岩鹽寶可夢 -933,5,Amassel, +933,5,Amassel,Halite 933,6,Sedisal,Steinsalz 933,7,Naclstack, 933,8,Naclstack, @@ -10264,9 +10264,9 @@ pokemon_species_id,local_language_id,name,genus 933,12,盐石垒,岩盐宝可梦 934,1,キョジオーン,がんえんポケモン 934,2,Kyojiohn, -934,3,콜로솔트, +934,3,콜로솔트,암염포켓몬 934,4,鹽石巨靈,岩鹽寶可夢 -934,5,Gigansel, +934,5,Gigansel,Halite 934,6,Saltigant,Steinsalz 934,7,Garganacl, 934,8,Garganacl, @@ -10275,9 +10275,9 @@ pokemon_species_id,local_language_id,name,genus 934,12,盐石巨灵,岩盐宝可梦 935,1,カルボウ,ひのこポケモン 935,2,Carbou, -935,3,카르본, +935,3,카르본,불의아이포켓몬 935,4,炭小侍,小火星寶可夢 -935,5,Charbambin, +935,5,Charbambin,Enfant Feu 935,6,Knarbon,Feuerkind 935,7,Charcadet, 935,8,Charcadet, @@ -10286,9 +10286,9 @@ pokemon_species_id,local_language_id,name,genus 935,12,炭小侍,小火星宝可梦 936,1,グレンアルマ,ひのせんしポケモン 936,2,Gurenarma, -936,3,카디나르마, +936,3,카디나르마,불의전사포켓몬 936,4,紅蓮鎧騎,火戰士寶可夢 -936,5,Carmadura, +936,5,Carmadura,Feu Guerrier 936,6,Crimanzo,Feuerrüstung 936,7,Armarouge, 936,8,Armarouge, @@ -10297,9 +10297,9 @@ pokemon_species_id,local_language_id,name,genus 936,12,红莲铠骑,火战士宝可梦 937,1,ソウブレイズ,ひのけんしポケモン 937,2,Soublades, -937,3,파라블레이즈, +937,3,파라블레이즈,불의검사포켓몬 937,4,蒼炎刃鬼,火劍士寶可夢 -937,5,Malvalame, +937,5,Malvalame,Feu Bretteur 937,6,Azugladis,Feuerklingen 937,7,Ceruledge, 937,8,Ceruledge, @@ -10308,9 +10308,9 @@ pokemon_species_id,local_language_id,name,genus 937,12,苍炎刃鬼,火剑士宝可梦 938,1,ズピカ,でんきおたまポケモン 938,2,Zupika, -938,3,빈나두, +938,3,빈나두,전기올챙이포켓몬 938,4,光蚪仔,電蝌蚪寶可夢 -938,5,Têtampoule, +938,5,Têtampoule,Électêtard 938,6,Blipp,Stromquappe 938,7,Tadbulb, 938,8,Tadbulb, @@ -10319,9 +10319,9 @@ pokemon_species_id,local_language_id,name,genus 938,12,光蚪仔,电蝌蚪宝可梦 939,1,ハラバリー,でんきがえるポケモン 939,2,Harabarie, -939,3,찌리배리, +939,3,찌리배리,전기개구리포켓몬 939,4,電肚蛙,電蛙寶可夢 -939,5,Ampibidou, +939,5,Ampibidou,Élecrapaud 939,6,Wampitz,Stromfrosch 939,7,Bellibolt, 939,8,Bellibolt, @@ -10330,9 +10330,9 @@ pokemon_species_id,local_language_id,name,genus 939,12,电肚蛙,电蛙宝可梦 940,1,カイデン,うみつばめポケモン 940,2,Kaiden, -940,3,찌리비, +940,3,찌리비,바다제비포켓몬 940,4,電海燕,海燕寶可夢 -940,5,Zapétrel, +940,5,Zapétrel,Océanite 940,6,Voltrel,Sturmvogel 940,7,Wattrel, 940,8,Wattrel, @@ -10341,9 +10341,9 @@ pokemon_species_id,local_language_id,name,genus 940,12,电海燕,海燕宝可梦 941,1,タイカイデン,ぐんかんどりポケモン 941,2,Taikaiden, -941,3,찌리비크, +941,3,찌리비크,군함조포켓몬 941,4,大電海燕,軍艦鳥寶可夢 -941,5,Fulgulairo, +941,5,Fulgulairo,Frégate 941,6,Voltrean,Fregattvogel 941,7,Kilowattrel, 941,8,Kilowattrel, @@ -10352,9 +10352,9 @@ pokemon_species_id,local_language_id,name,genus 941,12,大电海燕,军舰鸟宝可梦 942,1,オラチフ,わかぞうポケモン 942,2,Orachifu, -942,3,오라티프, +942,3,오라티프,애송이포켓몬 942,4,偶叫獒,小輩寶可夢 -942,5,Grondogue, +942,5,Grondogue,Jeunot 942,6,Mobtiff,Halbstark 942,7,Maschiff, 942,8,Maschiff, @@ -10363,9 +10363,9 @@ pokemon_species_id,local_language_id,name,genus 942,12,偶叫獒,小辈宝可梦 943,1,マフィティフ,おやぶんポケモン 943,2,Mafitiff, -943,3,마피티프, +943,3,마피티프,두목포켓몬 943,4,獒教父,大佬寶可夢 -943,5,Dogrino, +943,5,Dogrino,Parrain 943,6,Mastifioso,Oberhaupt 943,7,Mabosstiff, 943,8,Mabosstiff, @@ -10374,9 +10374,9 @@ pokemon_species_id,local_language_id,name,genus 943,12,獒教父,大佬宝可梦 944,1,シルシュルー,どくねずみポケモン 944,2,Shirushrew, -944,3,땃쭈르, +944,3,땃쭈르,독쥐포켓몬 944,4,滋汁鼴,毒鼠寶可夢 -944,5,Gribouraigne, +944,5,Gribouraigne,Souris Venin 944,6,Sproxi,Giftmaus 944,7,Shroodle, 944,8,Shroodle, @@ -10385,9 +10385,9 @@ pokemon_species_id,local_language_id,name,genus 944,12,滋汁鼹,毒鼠宝可梦 945,1,タギングル,どくざるポケモン 945,2,Taggingru, -945,3,태깅구르, +945,3,태깅구르,독원숭이포켓몬 945,4,塗標客,毒猴寶可夢 -945,5,Tag-Tag, +945,5,Tag-Tag,Singe Venin 945,6,Affiti,Giftaffe 945,7,Grafaiai, 945,8,Grafaiai, @@ -10396,9 +10396,9 @@ pokemon_species_id,local_language_id,name,genus 945,12,涂标客,毒猴宝可梦 946,1,アノクサ,ころがりぐさポケモン 946,2,Anokusa, -946,3,그푸리, +946,3,그푸리,회전초포켓몬 946,4,納噬草,滾草寶可夢 -946,5,Virovent, +946,5,Virovent,Virevoltant 946,6,Weherba,Rollgras 946,7,Bramblin, 946,8,Bramblin, @@ -10407,9 +10407,9 @@ pokemon_species_id,local_language_id,name,genus 946,12,纳噬草,滚草宝可梦 947,1,アノホラグサ,ころがりぐさポケモン 947,2,Anohoragusa, -947,3,공푸리, +947,3,공푸리,회전초포켓몬 947,4,怖納噬草,滾草寶可夢 -947,5,Virevorreur, +947,5,Virevorreur,Virevoltant 947,6,Horrerba,Rollgras 947,7,Brambleghast, 947,8,Brambleghast, @@ -10418,9 +10418,9 @@ pokemon_species_id,local_language_id,name,genus 947,12,怖纳噬草,滚草宝可梦 948,1,ノノクラゲ,きくらげポケモン 948,2,Nonokurage, -948,3,들눈해, +948,3,들눈해,목이버섯포켓몬 948,4,原野水母,木耳寶可夢 -948,5,Terracool, +948,5,Terracool,Champiméduse 948,6,Tentagra,Quallenpilz 948,7,Toedscool, 948,8,Toedscool, @@ -10429,9 +10429,9 @@ pokemon_species_id,local_language_id,name,genus 948,12,原野水母,木耳宝可梦 949,1,リククラゲ,きくらげポケモン 949,2,Rikukurage, -949,3,육파리, +949,3,육파리,목이버섯포켓몬 949,4,陸地水母,木耳寶可夢 -949,5,Terracruel, +949,5,Terracruel,Champiméduse 949,6,Tenterra,Quallenpilz 949,7,Toedscruel, 949,8,Toedscruel, @@ -10440,9 +10440,9 @@ pokemon_species_id,local_language_id,name,genus 949,12,陆地水母,木耳宝可梦 950,1,ガケガニ,まちぶせポケモン 950,2,Gakegani, -950,3,절벼게, +950,3,절벼게,매복포켓몬 950,4,毛崖蟹,埋伏寶可夢 -950,5,Craparoi, +950,5,Craparoi,Embuscade 950,6,Klibbe,Lauer 950,7,Klawf, 950,8,Klawf, @@ -10451,9 +10451,9 @@ pokemon_species_id,local_language_id,name,genus 950,12,毛崖蟹,埋伏宝可梦 951,1,カプサイジ,ハバネロポケモン 951,2,Capsaiji, -951,3,캡싸이, +951,3,캡싸이,하바네로포켓몬 951,4,熱辣娃,熱辣寶可夢 -951,5,Pimito, +951,5,Pimito,Habanero 951,6,Chilingel,Habanero 951,7,Capsakid, 951,8,Capsakid, @@ -10462,9 +10462,9 @@ pokemon_species_id,local_language_id,name,genus 951,12,热辣娃,热辣宝可梦 952,1,スコヴィラン,ハバネロポケモン 952,2,Scovillain, -952,3,스코빌런, +952,3,스코빌런,하바네로포켓몬 952,4,狠辣椒,熱辣寶可夢 -952,5,Scovilain, +952,5,Scovilain,Habanero 952,6,Halupenjo,Habanero 952,7,Scovillain, 952,8,Scovillain, @@ -10473,9 +10473,9 @@ pokemon_species_id,local_language_id,name,genus 952,12,狠辣椒,热辣宝可梦 953,1,シガロコ,ころがしポケモン 953,2,Shigaroko, -953,3,구르데, +953,3,구르데,굴리기포켓몬 953,4,蟲滾泥,滾動寶可夢 -953,5,Léboulérou, +953,5,Léboulérou,Rouleur 953,6,Relluk,Wälz 953,7,Rellor, 953,8,Rellor, @@ -10484,9 +10484,9 @@ pokemon_species_id,local_language_id,name,genus 953,12,虫滚泥,滚动宝可梦 954,1,ベラカス,ころがしポケモン 954,2,Beracas, -954,3,베라카스, +954,3,베라카스,굴리기포켓몬 954,4,蟲甲聖,滾動寶可夢 -954,5,Bérasca, +954,5,Bérasca,Rouleur 954,6,Skarabaks,Wälz 954,7,Rabsca, 954,8,Rabsca, @@ -10495,9 +10495,9 @@ pokemon_species_id,local_language_id,name,genus 954,12,虫甲圣,滚动宝可梦 955,1,ヒラヒナ,フリルポケモン 955,2,Hirahina, -955,3,하느라기, +955,3,하느라기,프릴포켓몬 955,4,飄飄雛,褶邊寶可夢 -955,5,Flotillon, +955,5,Flotillon,Froufrou 955,6,Flattutu,Rüschen 955,7,Flittle, 955,8,Flittle, @@ -10506,9 +10506,9 @@ pokemon_species_id,local_language_id,name,genus 955,12,飘飘雏,褶边宝可梦 956,1,クエスパトラ,ダチョウポケモン 956,2,Cuespatra, -956,3,클레스퍼트라, +956,3,클레스퍼트라,타조포켓몬 956,4,超能艷鴕,鴕鳥寶可夢 -956,5,Cléopsytra, +956,5,Cléopsytra,Autruche 956,6,Psiopatra,Strauß 956,7,Espathra, 956,8,Espathra, @@ -10517,9 +10517,9 @@ pokemon_species_id,local_language_id,name,genus 956,12,超能艳鸵,鸵鸟宝可梦 957,1,カヌチャン,かなうちポケモン 957,2,Kanuchan, -957,3,어리짱, +957,3,어리짱,대장장이포켓몬 957,4,小鍛匠,錘鍊寶可夢 -957,5,Forgerette, +957,5,Forgerette,Forge 957,6,Forgita,Schmied 957,7,Tinkatink, 957,8,Tinkatink, @@ -10528,9 +10528,9 @@ pokemon_species_id,local_language_id,name,genus 957,12,小锻匠,锤炼宝可梦 958,1,ナカヌチャン,ハンマーポケモン 958,2,Nakanuchan, -958,3,벼리짱, +958,3,벼리짱,해머포켓몬 958,4,巧鍛匠,錘子寶可夢 -958,5,Forgella, +958,5,Forgella,Marteau 958,6,Tafforgita,Hammer 958,7,Tinkatuff, 958,8,Tinkatuff, @@ -10539,20 +10539,20 @@ pokemon_species_id,local_language_id,name,genus 958,12,巧锻匠,锤子宝可梦 959,1,デカヌチャン,ハンマーポケモン 959,2,Dekanuchan, -959,3,두드리짱, +959,3,두드리짱,해머포켓몬 959,4,巨鍛匠,錘子寶可夢 -959,5,Forgelina, +959,5,Forgelina,Marteau 959,6,Granforgita,Hammer 959,7,Tinkaton, 959,8,Tinkaton, 959,9,Tinkaton,Hammer Pokémon 959,11,デカヌチャン, 959,12,巨锻匠,锤子宝可梦 -960,1,ウミディグダ, +960,1,ウミディグダ,あなごポケモン 960,2,Umidigda, -960,3,바다그다,あなごポケモン +960,3,바다그다,정원장어포켓몬 960,4,海地鼠,糯鰻寶可夢 -960,5,Taupikeau, +960,5,Taupikeau,Congre 960,6,Schligda,Meeraal 960,7,Wiglett, 960,8,Wiglett, @@ -10561,9 +10561,9 @@ pokemon_species_id,local_language_id,name,genus 960,12,海地鼠,糯鳗宝可梦 961,1,ウミトリオ,あなごポケモン 961,2,Umitrio, -961,3,바닥트리오, +961,3,바닥트리오,정원장어포켓몬 961,4,三海地鼠,糯鰻寶可夢 -961,5,Triopikeau, +961,5,Triopikeau,Congre 961,6,Schligdri,Meeraal 961,7,Wugtrio, 961,8,Wugtrio, @@ -10572,9 +10572,9 @@ pokemon_species_id,local_language_id,name,genus 961,12,三海地鼠,糯鳗宝可梦 962,1,オトシドリ,おとしものポケモン 962,2,Otoshidori, -962,3,떨구새, +962,3,떨구새,낙하물포켓몬 962,4,下石鳥,掉東西寶可夢 -962,5,Lestombaile, +962,5,Lestombaile,Délesteur 962,6,Adebom,Abwurf 962,7,Bombirdier, 962,8,Bombirdier, @@ -10583,9 +10583,9 @@ pokemon_species_id,local_language_id,name,genus 962,12,下石鸟,掉东西宝可梦 963,1,ナミイルカ,イルカポケモン 963,2,Namiiruka, -963,3,맨돌핀, +963,3,맨돌핀,돌고래포켓몬 963,4,波普海豚,海豚寶可夢 -963,5,Dofin, +963,5,Dofin,Dauphin 963,6,Normifin,Delfin 963,7,Finizen, 963,8,Finizen, @@ -10594,9 +10594,9 @@ pokemon_species_id,local_language_id,name,genus 963,12,波普海豚,海豚宝可梦 964,1,イルカマン,イルカポケモン 964,2,Irukaman, -964,3,돌핀맨, +964,3,돌핀맨,돌고래포켓몬 964,4,海豚俠,海豚寶可夢 -964,5,Superdofin, +964,5,Superdofin,Dauphin/Super Héros 964,6,Delfinator,Delfin 964,7,Palafin, 964,8,Palafin, @@ -10605,9 +10605,9 @@ pokemon_species_id,local_language_id,name,genus 964,12,海豚侠,海豚宝可梦 965,1,ブロロン,たんきとうポケモン 965,2,Buroron, -965,3,부르롱, +965,3,부르롱,단기통포켓몬 965,4,噗隆隆,單汽缸寶可夢 -965,5,Vrombi, +965,5,Vrombi,Monocylindre 965,6,Knattox,Einzylinder 965,7,Varoom, 965,8,Varoom, @@ -10616,9 +10616,9 @@ pokemon_species_id,local_language_id,name,genus 965,12,噗隆隆,单汽缸宝可梦 966,1,ブロロローム,たきとうポケモン 966,2,Burororoom, -966,3,부르르룸, +966,3,부르르룸,다기통포켓몬 966,4,普隆隆姆,多汽缸寶可夢 -966,5,Vrombotor, +966,5,Vrombotor,Polycylindre 966,6,Knattatox,Mehrzylinder 966,7,Revavroom, 966,8,Revavroom, @@ -10627,9 +10627,9 @@ pokemon_species_id,local_language_id,name,genus 966,12,普隆隆姆,多汽缸宝可梦 967,1,モトトカゲ,ライドポケモン 967,2,Mototokage, -967,3,모토마, +967,3,모토마,라이드포켓몬 967,4,摩托蜥,坐騎寶可夢 -967,5,Motorizard, +967,5,Motorizard,Monture 967,6,Mopex,Ritt 967,7,Cyclizar, 967,8,Cyclizar, @@ -10638,9 +10638,9 @@ pokemon_species_id,local_language_id,name,genus 967,12,摩托蜥,坐骑宝可梦 968,1,ミミズズ,ミミズポケモン 968,2,Mimizuzu, -968,3,꿈트렁, +968,3,꿈트렁,지렁이포켓몬 968,4,拖拖蚓,蚯蚓寶可夢 -968,5,Ferdeter, +968,5,Ferdeter,Ver de Terre 968,6,Schlurm,Regenwurm 968,7,Orthworm, 968,8,Orthworm, @@ -10649,9 +10649,9 @@ pokemon_species_id,local_language_id,name,genus 968,12,拖拖蚓,蚯蚓宝可梦 969,1,キラーメ,こうせきポケモン 969,2,Kirame, -969,3,초롱순, +969,3,초롱순,광석포켓몬 969,4,晶光芽,礦石寶可夢 -969,5,Germéclat, +969,5,Germéclat,Minerai 969,6,Lumispross,Erz 969,7,Glimmet, 969,8,Glimmet, @@ -10660,9 +10660,9 @@ pokemon_species_id,local_language_id,name,genus 969,12,晶光芽,矿石宝可梦 970,1,キラフロル,こうせきポケモン 970,2,Kiraflor, -970,3,킬라플로르, +970,3,킬라플로르,광석포켓몬 970,4,晶光花,礦石寶可夢 -970,5,Floréclat, +970,5,Floréclat,Minerai 970,6,Lumiflora,Erz 970,7,Glimmora, 970,8,Glimmora, @@ -10671,9 +10671,9 @@ pokemon_species_id,local_language_id,name,genus 970,12,晶光花,矿石宝可梦 971,1,ボチ,おばけいぬポケモン 971,2,Bochi, -971,3,망망이, +971,3,망망이,유령개포켓몬 971,4,墓仔狗,鬼犬寶可夢 -971,5,Toutombe, +971,5,Toutombe,Fantôchien 971,6,Gruff,Geisterhund 971,7,Greavard, 971,8,Greavard, @@ -10682,9 +10682,9 @@ pokemon_species_id,local_language_id,name,genus 971,12,墓仔狗,鬼犬宝可梦 972,1,ハカドッグ,おばけいぬポケモン 972,2,Hakadog, -972,3,묘두기, +972,3,묘두기,유령개포켓몬 972,4,墓揚犬,鬼犬寶可夢 -972,5,Tomberro, +972,5,Tomberro,Fantôchien 972,6,Friedwuff,Geisterhund 972,7,Houndstone, 972,8,Houndstone, @@ -10693,9 +10693,9 @@ pokemon_species_id,local_language_id,name,genus 972,12,墓扬犬,鬼犬宝可梦 973,1,カラミンゴ,シンクロポケモン 973,2,Karamingo, -973,3,꼬이밍고, +973,3,꼬이밍고,싱크로포켓몬 973,4,纏紅鶴,同步寶可夢 -973,5,Flamenroule, +973,5,Flamenroule,Synchro 973,6,Flaminkno,Synchron 973,7,Flamigo, 973,8,Flamigo, @@ -10704,9 +10704,9 @@ pokemon_species_id,local_language_id,name,genus 973,12,纏红鹤,同步宝可梦 974,1,アルクジラ,りくくじらポケモン 974,2,Arukujira, -974,3,터벅고래, +974,3,터벅고래,육지고래포켓몬 974,4,走鯨,陸鯨寶可夢 -974,5,Piétacé, +974,5,Piétacé,Baleinapied 974,6,Flaniwal,Landwal 974,7,Cetoddle, 974,8,Cetoddle, @@ -10715,9 +10715,9 @@ pokemon_species_id,local_language_id,name,genus 974,12,走鲸,陆鲸宝可梦 975,1,ハルクジラ,りくくじらポケモン 975,2,Hulkujira, -975,3,우락고래, +975,3,우락고래,육지고래포켓몬 975,4,浩大鯨,陸鯨寶可夢 -975,5,Balbalèze, +975,5,Balbalèze,Baleinapied 975,6,Kolowal,Landwal 975,7,Cetitan, 975,8,Cetitan, @@ -10726,9 +10726,9 @@ pokemon_species_id,local_language_id,name,genus 975,12,浩大鲸,陆鲸宝可梦 976,1,ミガルーサ,きりはなしポケモン 976,2,Migalusa, -976,3,가비루사, +976,3,가비루사,분리포켓몬 976,4,輕身鱈,卸除寶可夢 -976,5,Délestin, +976,5,Délestin,Décharné 976,6,Agiluza,Abtrennung 976,7,Veluza, 976,8,Veluza, @@ -10737,9 +10737,9 @@ pokemon_species_id,local_language_id,name,genus 976,12,轻身鳕,卸除宝可梦 977,1,ヘイラッシャ,おおなまずポケモン 977,2,Heyrusher, -977,3,어써러셔, +977,3,어써러셔,큰메기포켓몬 977,4,吃吼霸,大鯰寶可夢 -977,5,Oyacata, +977,5,Oyacata,Grand Silure 977,6,Heerashai,Großwels 977,7,Dondozo, 977,8,Dondozo, @@ -10748,9 +10748,9 @@ pokemon_species_id,local_language_id,name,genus 977,12,吃吼霸,大鲶宝可梦 978,1,シャリタツ,ぎたいポケモン 978,2,Syaritatsu, -978,3,싸리용, +978,3,싸리용,의태포켓몬 978,4,米立龍,擬態寶可夢 -978,5,Nigirigon, +978,5,Nigirigon,Mimétisme 978,6,Nigiragi,Mimesen 978,7,Tatsugiri, 978,8,Tatsugiri, @@ -10759,9 +10759,9 @@ pokemon_species_id,local_language_id,name,genus 978,12,米立龙,拟态宝可梦 979,1,コノヨザル,ふんどざるポケモン 979,2,Konoyozaru, -979,3,저승갓숭, +979,3,저승갓숭,분노숭이포켓몬 979,4,棄世猴,憤怒猴寶可夢 -979,5,Courrousinge, +979,5,Courrousinge,Singe Furax 979,6,Epitaff,Zornaffe 979,7,Annihilape, 979,8,Annihilape, @@ -10770,9 +10770,9 @@ pokemon_species_id,local_language_id,name,genus 979,12,弃世猴,愤怒猴宝可梦 980,1,ドオー,とげうおポケモン 980,2,Dooh, -980,3,토오, +980,3,토오,가시물고기포켓몬 980,4,土王,刺魚寶可夢 -980,5,Terraiste, +980,5,Terraiste,Poissépine 980,6,Suelord,Dornfisch 980,7,Clodsire, 980,8,Clodsire, @@ -10781,9 +10781,9 @@ pokemon_species_id,local_language_id,name,genus 980,12,土王,刺鱼宝可梦 981,1,リキキリン,くびながポケモン 981,2,Rikikirin, -981,3,키키링, +981,3,키키링,긴목포켓몬 981,4,奇麒麟,長頸寶可夢 -981,5,Farigiraf, +981,5,Farigiraf,Long-Cou 981,6,Farigiraf,Langhals 981,7,Farigiraf, 981,8,Farigiraf, @@ -10792,9 +10792,9 @@ pokemon_species_id,local_language_id,name,genus 981,12,奇麒麟,长颈宝可梦 982,1,ノココッチ,つちへびポケモン 982,2,Nokokocchi, -982,3,노고고치, +982,3,노고고치,땅뱀포켓몬 982,4,土龍節節,地蛇寶可夢 -982,5,Deusolourdo, +982,5,Deusolourdo,Serpent 982,6,Dummimisel,Erdschlange 982,7,Dudunsparce, 982,8,Dudunsparce, @@ -10803,9 +10803,9 @@ pokemon_species_id,local_language_id,name,genus 982,12,土龙节节,地蛇宝可梦 983,1,ドドゲザン,だいとうポケモン 983,2,Dodogezan, -983,3,대도각참, +983,3,대도각참,대도포켓몬 983,4,仆刀將軍,大刀寶可夢 -983,5,Scalpereur, +983,5,Scalpereur,Pourfendant 983,6,Gladimperio,Langschwert 983,7,Kingambit, 983,8,Kingambit, @@ -10814,9 +10814,9 @@ pokemon_species_id,local_language_id,name,genus 983,12,仆刀将军,大刀宝可梦 984,1,イダイナキバ,パラドックスポケモン 984,2,Idainakiba, -984,3,위대한엄니, +984,3,위대한엄니,패러독스포켓몬 984,4,雄偉牙,悖謬寶可夢 -984,5,Fort-Ivoire, +984,5,Fort-Ivoire,Paradoxe 984,6,Riesenzahn,Paradox 984,7,Colmilargo, 984,8,Grandizanne, @@ -10825,9 +10825,9 @@ pokemon_species_id,local_language_id,name,genus 984,12,雄伟牙,悖谬宝可梦 985,1,サケブシッポ,パラドックスポケモン 985,2,Sakebushippo, -985,3,우렁찬꼬리, +985,3,우렁찬꼬리,패러독스포켓몬 985,4,吼叫尾,悖謬寶可夢 -985,5,Hurle-Queue, +985,5,Hurle-Queue,Paradoxe 985,6,Brüllschweif,Paradox 985,7,Colagrito, 985,8,Codaurlante, @@ -10836,9 +10836,9 @@ pokemon_species_id,local_language_id,name,genus 985,12,吼叫尾,悖谬宝可梦 986,1,アラブルタケ,パラドックスポケモン 986,2,Araburutake, -986,3,사나운버섯, +986,3,사나운버섯,패러독스포켓몬 986,4,猛惡菇,悖謬寶可夢 -986,5,Fongus-Furie, +986,5,Fongus-Furie,Paradoxe 986,6,Wutpilz,Paradox 986,7,Furioseta, 986,8,Fungofurioso, @@ -10847,9 +10847,9 @@ pokemon_species_id,local_language_id,name,genus 986,12,猛恶菇,悖谬宝可梦 987,1,ハバタクカミ,パラドックスポケモン 987,2,Habatakukami, -987,3,날개치는머리, +987,3,날개치는머리,패러독스포켓몬 987,4,振翼髮,悖謬寶可夢 -987,5,Flotte-Mèche, +987,5,Flotte-Mèche,Paradoxe 987,6,Flatterhaar,Paradox 987,7,Melenaleteo, 987,8,Crinealato, @@ -10858,9 +10858,9 @@ pokemon_species_id,local_language_id,name,genus 987,12,振翼发,悖谬宝可梦 988,1,チヲハウハネ,パラドックスポケモン 988,2,Chiwohauhane, -988,3,땅을기는날개, +988,3,땅을기는날개,패러독스포켓몬 988,4,爬地翅,悖謬寶可夢 -988,5,Rampe-Ailes, +988,5,Rampe-Ailes,Paradoxe 988,6,Kriechflügel,Paradox 988,7,Reptalada, 988,8,Alirasenti, @@ -10869,9 +10869,9 @@ pokemon_species_id,local_language_id,name,genus 988,12,爬地翅,悖谬宝可梦 989,1,スナノケガワ,パラドックスポケモン 989,2,Sunanokegawa, -989,3,모래털가죽, +989,3,모래털가죽,패러독스포켓몬 989,4,沙鐵皮,悖謬寶可夢 -989,5,Pelage-Sablé, +989,5,Pelage-Sablé,Paradoxe 989,6,Sandfell,Paradox 989,7,Pelarena, 989,8,Peldisabbia, @@ -10880,9 +10880,9 @@ pokemon_species_id,local_language_id,name,genus 989,12,沙铁皮,悖谬宝可梦 990,1,テツノワダチ,パラドックスポケモン 990,2,Tetsunowadachi, -990,3,무쇠바퀴, +990,3,무쇠바퀴,패러독스포켓몬 990,4,鐵轍跡,悖謬寶可夢 -990,5,Roue-de-Fer, +990,5,Roue-de-Fer,Paradoxe 990,6,Eisenrad,Paradox 990,7,Ferrodada, 990,8,Solcoferreo, @@ -10891,9 +10891,9 @@ pokemon_species_id,local_language_id,name,genus 990,12,铁轍迹,悖谬宝可梦 991,1,テツノツツミ,パラドックスポケモン 991,2,Tetsunotsutsumi, -991,3,무쇠보따리, +991,3,무쇠보따리,패러독스포켓몬 991,4,鐵包袱,悖謬寶可夢 -991,5,Hotte-de-Fer, +991,5,Hotte-de-Fer,Paradoxe 991,6,Eisenbündel,Paradox 991,7,Ferrosaco, 991,8,Saccoferreo, @@ -10902,9 +10902,9 @@ pokemon_species_id,local_language_id,name,genus 991,12,铁包袱,悖谬宝可梦 992,1,テツノカイナ,パラドックスポケモン 992,2,Tetsunokaina, -992,3,무쇠손, +992,3,무쇠손,패러독스포켓몬 992,4,鐵臂膀,悖謬寶可夢 -992,5,Paume-de-Fer, +992,5,Paume-de-Fer,Paradoxe 992,6,Eisenhand,Paradox 992,7,Ferropalmas, 992,8,Manoferrea, @@ -10913,9 +10913,9 @@ pokemon_species_id,local_language_id,name,genus 992,12,铁臂膀,悖谬宝可梦 993,1,テツノコウベ,パラドックスポケモン 993,2,Tetsunokoube, -993,3,무쇠머리, +993,3,무쇠머리,패러독스포켓몬 993,4,鐵脖頸,悖謬寶可夢 -993,5,Têtes-de-Fer, +993,5,Têtes-de-Fer,Paradoxe 993,6,Eisenhals,Paradox 993,7,Ferrocuello, 993,8,Colloferreo, @@ -10924,9 +10924,9 @@ pokemon_species_id,local_language_id,name,genus 993,12,铁脖颈,悖谬宝可梦 994,1,テツノドクガ,パラドックスポケモン 994,2,Tetsunodokuga, -994,3,무쇠독나방, +994,3,무쇠독나방,패러독스포켓몬 994,4,鐵毒蛾,悖謬寶可夢 -994,5,Mite-de-Fer, +994,5,Mite-de-Fer,Paradoxe 994,6,Eisenfalter,Paradox 994,7,Ferropolilla, 994,8,Falenaferrea, @@ -10935,9 +10935,9 @@ pokemon_species_id,local_language_id,name,genus 994,12,铁毒蛾,悖谬宝可梦 995,1,テツノイバラ,パラドックスポケモン 995,2,Tetsunoibara, -995,3,무쇠가시, +995,3,무쇠가시,패러독스포켓몬 995,4,鐵荊棘,悖謬寶可夢 -995,5,Épine-de-Fer, +995,5,Épine-de-Fer,Paradoxe 995,6,Eisendorn,Paradox 995,7,Ferropúas, 995,8,Spineferree, @@ -10946,9 +10946,9 @@ pokemon_species_id,local_language_id,name,genus 995,12,铁荆棘,悖谬宝可梦 996,1,セビエ,こおりビレポケモン 996,2,Sebie, -996,3,드니차, +996,3,드니차,얼음지느러미포켓몬 996,4,涼脊龍,冰鰭寶可夢 -996,5,Frigodo, +996,5,Frigodo,Glaçaileron 996,6,Frospino,Eisfinne 996,7,Frigibax, 996,8,Frigibax, @@ -10957,9 +10957,9 @@ pokemon_species_id,local_language_id,name,genus 996,12,凉脊龙,冰鳍宝可梦 997,1,セゴール,こおりビレポケモン 997,2,Segohru, -997,3,드니꽁, +997,3,드니꽁,얼음지느러미포켓몬 997,4,凍脊龍,冰鰭寶可夢 -997,5,Cryodo, +997,5,Cryodo,Glaçaileron 997,6,Cryospino,Eisfinne 997,7,Arctibax, 997,8,Arctibax, @@ -10968,9 +10968,9 @@ pokemon_species_id,local_language_id,name,genus 997,12,冻脊龙,冰鳍宝可梦 998,1,セグレイブ,ひょうりゅうポケモン 998,2,Seglaive, -998,3,드닐레이브, +998,3,드닐레이브,빙룡포켓몬 998,4,戟脊龍,冰龍寶可夢 -998,5,Glaivodo, +998,5,Glaivodo,Dragon Glace 998,6,Espinodon,Eisdrache 998,7,Baxcalibur, 998,8,Baxcalibur, @@ -10979,9 +10979,9 @@ pokemon_species_id,local_language_id,name,genus 998,12,戟脊龙,冰龙宝可梦 999,1,コレクレー,たからばこポケモン 999,2,Collecurei, -999,3,모으령, +999,3,모으령,보물상자포켓몬 999,4,索財靈,寶箱寶可夢 -999,5,Mordudor, +999,5,Mordudor,Coffrotrésor/Chassotrésor 999,6,Gierspenst,Schatztruhe 999,7,Gimmighoul, 999,8,Gimmighoul, @@ -10990,9 +10990,9 @@ pokemon_species_id,local_language_id,name,genus 999,12,索财灵,宝箱宝可梦 1000,1,サーフゴー,たからものポケモン 1000,2,Surfugo, -1000,3,타부자고, +1000,3,타부자고,보물생명체포켓몬 1000,4,賽富豪,寶者寶可夢 -1000,5,Gromago, +1000,5,Gromago,Trésor Animé 1000,6,Monetigo,Schatzwesen 1000,7,Gholdengo, 1000,8,Gholdengo, @@ -11001,9 +11001,9 @@ pokemon_species_id,local_language_id,name,genus 1000,12,赛富豪,宝者宝可梦 1001,1,チオンジェン,さいやくポケモン 1001,2,Chionjen, -1001,3,총지엔, +1001,3,총지엔,재액포켓몬 1001,4,古簡蝸,災厄寶可夢 -1001,5,Chongjian, +1001,5,Chongjian,Fléau 1001,6,Chongjian,Unheil 1001,7,Wo-Chien, 1001,8,Wo-Chien, @@ -11012,9 +11012,9 @@ pokemon_species_id,local_language_id,name,genus 1001,12,古简蜗,灾厄宝可梦 1002,1,パオジアン,さいやくポケモン 1002,2,Paojian, -1002,3,파오젠, +1002,3,파오젠,재액포켓몬 1002,4,古劍豹,災厄寶可夢 -1002,5,Baojian, +1002,5,Baojian,Fléau 1002,6,Baojian,Unheil 1002,7,Chien-Pao, 1002,8,Chien-Pao, @@ -11023,9 +11023,9 @@ pokemon_species_id,local_language_id,name,genus 1002,12,古剑豹,灾厄宝可梦 1003,1,ディンルー,さいやくポケモン 1003,2,Dinlu, -1003,3,딩루, +1003,3,딩루,재액포켓몬 1003,4,古鼎鹿,災厄寶可夢 -1003,5,Dinglu, +1003,5,Dinglu,Fléau 1003,6,Dinglu,Unheil 1003,7,Ting-Lu, 1003,8,Ting-Lu, @@ -11034,9 +11034,9 @@ pokemon_species_id,local_language_id,name,genus 1003,12,古鼎鹿,灾厄宝可梦 1004,1,イーユイ,さいやくポケモン 1004,2,Yiyui, -1004,3,위유이, +1004,3,위유이,재액포켓몬 1004,4,古玉魚,災厄寶可夢 -1004,5,Yuyu, +1004,5,Yuyu,Fléau 1004,6,Yuyu,Unheil 1004,7,Chi-Yu, 1004,8,Chi-Yu, @@ -11045,9 +11045,9 @@ pokemon_species_id,local_language_id,name,genus 1004,12,古玉鱼,灾厄宝可梦 1005,1,トドロクツキ,パラドックスポケモン 1005,2,Todorokutsuki, -1005,3,고동치는달, +1005,3,고동치는달,패러독스포켓몬 1005,4,轟鳴月,悖謬寶可夢 -1005,5,Rugit-Lune, +1005,5,Rugit-Lune,Paradoxe 1005,6,Donnersichel,Paradox 1005,7,Bramaluna, 1005,8,Lunaruggente, @@ -11056,9 +11056,9 @@ pokemon_species_id,local_language_id,name,genus 1005,12,轰鸣月,悖谬宝可梦 1006,1,テツノブジン,パラドックスポケモン 1006,2,Tetsunobujin, -1006,3,무쇠무인, +1006,3,무쇠무인,패러독스포켓몬 1006,4,鐵武者,悖謬寶可夢 -1006,5,Garde-de-Fer, +1006,5,Garde-de-Fer,Paradoxe 1006,6,Eisenkrieger,Paradox 1006,7,Ferropaladín, 1006,8,Eroeferreo, @@ -11067,9 +11067,9 @@ pokemon_species_id,local_language_id,name,genus 1006,12,铁武者,悖谬宝可梦 1007,1,コライドン,パラドックスポケモン 1007,2,Koraidon, -1007,3,코라이돈, +1007,3,코라이돈,패러독스포켓몬 1007,4,故勒頓,悖謬寶可夢 -1007,5,Koraidon, +1007,5,Koraidon,Paradoxe 1007,6,Koraidon,Paradox 1007,7,Koraidon, 1007,8,Koraidon, @@ -11078,9 +11078,9 @@ pokemon_species_id,local_language_id,name,genus 1007,12,故勒顿,悖谬宝可梦 1008,1,ミライドン,パラドックスポケモン 1008,2,Miraidon, -1008,3,미라이돈, +1008,3,미라이돈,패러독스포켓몬 1008,4,密勒頓,悖謬寶可夢 -1008,5,Miraidon, +1008,5,Miraidon,Paradoxe 1008,6,Miraidon,Paradox 1008,7,Miraidon, 1008,8,Miraidon, @@ -11089,9 +11089,9 @@ pokemon_species_id,local_language_id,name,genus 1008,12,密勒顿,悖谬宝可梦 1009,1,ウネルミナモ,パラドックスポケモン 1009,2,Uneruminamo, -1009,3,굽이치는물결, +1009,3,굽이치는물결,패러독스포켓몬 1009,4,波盪水,悖謬寶可夢 -1009,5,Serpente-Eau, +1009,5,Serpente-Eau,Paradoxe 1009,6,Windewoge,Paradox 1009,7,Ondulagua, 1009,8,Acquecrespe, @@ -11100,9 +11100,9 @@ pokemon_species_id,local_language_id,name,genus 1009,12,波荡水,悖谬宝可梦 1010,1,テツノイサハ,パラドックスポケモン 1010,2,Tetsunoisaha, -1010,3,무쇠잎새, +1010,3,무쇠잎새,패러독스포켓몬 1010,4,鐵斑葉,悖謬寶可夢 -1010,5,Vert-de-Fer, +1010,5,Vert-de-Fer,Paradoxe 1010,6,Eisenblatt,Paradox 1010,7,Ferroverdor, 1010,8,Fogliaferrea, @@ -11110,79 +11110,79 @@ pokemon_species_id,local_language_id,name,genus 1010,11,テツノイサハ, 1010,12,铁斑叶,悖谬宝可梦 1011,1,カミッチュ, -1011,3,과미르, +1011,3,과미르,사과사탕포켓몬 1011,4,裹蜜蟲, -1011,5,Pomdramour, +1011,5,Pomdramour,Sirop Pomme 1011,6,Sirapfel, 1011,7,Dipplin, 1011,8,Dipplin, -1011,9,Dipplin, +1011,9,Dipplin,Candy Apple Pokémon 1011,11,カミッチュ, 1011,12,裹蜜虫, 1012,1,チャデス, -1012,3,차데스, +1012,3,차데스,말차포켓몬 1012,4,斯魔茶, -1012,5,Poltchageist, +1012,5,Poltchageist,Matcha 1012,6,Mortcha, 1012,7,Poltchageist, 1012,8,Poltchageist, -1012,9,Poltchageist, +1012,9,Poltchageist,Matcha Pokémon 1012,11,チャデス, 1012,12,斯魔茶, 1013,1,ヤバソチャ, -1013,3,그우린차, +1013,3,그우린차,말차포켓몬 1013,4,來悲粗茶, -1013,5,Théffroyable, +1013,5,Théffroyable,Matcha 1013,6,Fatalitcha, 1013,7,Sinistcha, 1013,8,Sinistcha, -1013,9,Sinistcha, +1013,9,Sinistcha,Matcha Pokémon 1013,11,ヤバソチャ, 1013,12,来悲粗茶, 1014,1,イイネイヌ, -1014,3,조타구, +1014,3,조타구,수하포켓몬 1014,4,夠讚狗, -1014,5,Félicanis, +1014,5,Félicanis,Serviteur 1014,6,Boninu, 1014,7,Okidogi, 1014,8,Okidogi, -1014,9,Okidogi, +1014,9,Okidogi,Retainer Pokémon 1014,11,イイネイヌ, 1014,12,够赞狗, 1015,1,マシマシラ, -1015,3,이야후, +1015,3,이야후,수하포켓몬 1015,4,願增猿, -1015,5,Fortusimia, +1015,5,Fortusimia,Serviteur 1015,6,Benesaru, 1015,7,Munkidori, 1015,8,Munkidori, -1015,9,Munkidori, +1015,9,Munkidori,Retainer Pokémon 1015,11,マシマシラ, 1015,12,愿增猿, 1016,1,キチキギス, -1016,3,기로치, +1016,3,기로치,수하포켓몬 1016,4,吉雉雞, -1016,5,Favianos, +1016,5,Favianos,Serviteur 1016,6,Beatori, 1016,7,Fezandipiti, 1016,8,Fezandipiti, -1016,9,Fezandipiti, +1016,9,Fezandipiti,Retainer Pokémon 1016,11,キチキギス, 1016,12,吉雉鸡, 1017,1,オーガポン, -1017,3,오거폰, +1017,3,오거폰,가면포켓몬 1017,4,厄鬼椪, -1017,5,Ogerpon, +1017,5,Ogerpon,Masque 1017,6,Ogerpon, 1017,7,Ogerpon, 1017,8,Ogerpon, -1017,9,Ogerpon, +1017,9,Ogerpon,Mask Pokémon 1017,11,オーガポン, 1017,12,厄诡椪, 1018,1,ブリジュラス,ごうきんポケモン -1018,3,브리두라스, +1018,3,브리두라스,합금포켓몬 1018,4,鋁鋼橋龍, -1018,5,Pondralugon, +1018,5,Pondralugon,Alliage 1018,6,Briduradon, 1018,7,Archaludon, 1018,8,Archaludon, @@ -11190,9 +11190,9 @@ pokemon_species_id,local_language_id,name,genus 1018,11,ブリジュラス,ごうきんポケモン 1018,12,铝钢桥龙, 1019,1,カミツオロチ,りんごオロチポケモン -1019,3,과미드라, +1019,3,과미드라,사과이무기포켓몬 1019,4,蜜集大蛇, -1019,5,Pomdorochi, +1019,5,Pomdorochi,Hydre Pomme 1019,6,Hydrapfel, 1019,7,Hydrapple, 1019,8,Hydrapple, @@ -11200,49 +11200,49 @@ pokemon_species_id,local_language_id,name,genus 1019,11,カミツオロチ,りんごオロチポケモン 1019,12,蜜集大蛇, 1020,1,ウガツホムラ,パラドックスポケモン -1020,3,꿰뚫는화염, +1020,3,꿰뚫는화염,패러독스포켓몬 1020,4,破空焰, -1020,5,Feu-Perçant, +1020,5,Feu-Perçant,Paradoxe 1020,6,Keilflamme, 1020,7,Flamariete, 1020,8,Vampeaguzze, -1020,9,Gouging Fire,Paladox Pokémon +1020,9,Gouging Fire,Paradox Pokémon 1020,11,ウガツホムラ,パラドックスポケモン 1020,12,破空焰, 1021,1,タケルライコ,パラドックスポケモン -1021,3,날뛰는우레, +1021,3,날뛰는우레,패러독스포켓몬 1021,4,猛雷鼓, -1021,5,Ire-Foudre, +1021,5,Ire-Foudre,Paradoxe 1021,6,Furienblitz, 1021,7,Electrofuria, 1021,8,Furiatonante, -1021,9,Raging Bolt,Paladox Pokémon +1021,9,Raging Bolt,Paradox Pokémon 1021,11,タケルライコ,パラドックスポケモン 1021,12,猛雷鼓, 1022,1,テツノイワオ,パラドックスポケモン -1022,3,무쇠암석, +1022,3,무쇠암석,패러독스포켓몬 1022,4,铁磐岩, -1022,5,Roc-de-Fer, +1022,5,Roc-de-Fer,Paradoxe 1022,6,Eisenfels, 1022,7,Ferromole, 1022,8,Massoferreo, -1022,9,Iron Boulder,Paladox Pokémon +1022,9,Iron Boulder,Paradox Pokémon 1022,11,テツノイワオ,パラドックスポケモン 1022,12,鐵磐岩, 1023,1,テツノカシラ,パラドックスポケモン -1023,3,무쇠감투, +1023,3,무쇠감투,패러독스포켓몬 1023,4,铁头壳, -1023,5,Chef-de-Fer, +1023,5,Chef-de-Fer,Paradoxe 1023,6,Eisenhaupt, 1023,7,Ferrotesta, 1023,8,Capoferreo, -1023,9,Iron Crown,Paladox Pokémon +1023,9,Iron Crown,Paradox Pokémon 1023,11,テツノカシラ,パラドックスポケモン 1023,12,鐵頭殼, 1024,1,テラパゴス,テラスタルポケモン -1024,3,테라파고스, +1024,3,테라파고스,테라스탈포켓몬 1024,4,太樂巴戈斯, -1024,5,Terapagos, +1024,5,Terapagos,Téracristal 1024,6,Terapagos, 1024,7,Terapagos, 1024,8,Terapagos, @@ -11250,8 +11250,9 @@ pokemon_species_id,local_language_id,name,genus 1024,11,テラパゴス,テラスタルポケモン 1024,12,太乐巴戈斯, 1025,1,モモワロウ,しはいポケモン +1025,3,복숭악동,지배포켓몬 1025,4,桃歹郎, -1025,5,Pêchaminus, +1025,5,Pêchaminus,Emprise 1025,6,Infamomo, 1025,7,Pecharunt, 1025,8,Pecharunt, diff --git a/data/v2/csv/type_names.csv b/data/v2/csv/type_names.csv index 5a4b834a..a57cba16 100644 --- a/data/v2/csv/type_names.csv +++ b/data/v2/csv/type_names.csv @@ -179,6 +179,16 @@ type_id,local_language_id,name 18,9,Fairy 18,11,フェアリー 18,12,妖精 +19,1,ステラ +19,2, Stella +19,3, 스텔라 +19,4,星晶 +19,5,Stellaire +19,6,Stellar +19,7,Astral +19,8,Astrale +19,9,Stellar +19,11,ステラ 10001,1,??? 10001,3,??? 10001,4,??? diff --git a/data/v2/csv/types.csv b/data/v2/csv/types.csv index 0603c393..d0ec10c3 100644 --- a/data/v2/csv/types.csv +++ b/data/v2/csv/types.csv @@ -17,5 +17,6 @@ id,identifier,generation_id,damage_class_id 16,dragon,1,3 17,dark,2,3 18,fairy,6, +19,stellar,9, 10001,unknown,2, 10002,shadow,3, diff --git a/data/v2/csv/version_names.csv b/data/v2/csv/version_names.csv index f23d10fd..581fd5fa 100644 --- a/data/v2/csv/version_names.csv +++ b/data/v2/csv/version_names.csv @@ -364,3 +364,17 @@ version_id,local_language_id,name 41,8,Violetto 41,9,Violet 41,12,紫 +42,1,みどりのかめん +42,5,Le masque turquoise +42,6,Die türkisgrüne maske +42,7,La máscara turquesa +42,8,La maschera turchese +42,9,The teal mask +42,12,碧之假面 +43,1,あおのえんばん +43,5,Le disque indigo +43,6,Die indigoblaue scheibe +43,7,El disco índigo +43,8,Il disco indaco +43,9,The indigo disk +43,12,藍之圓盤 diff --git a/data/v2/sprites b/data/v2/sprites index ca5a7886..52427d46 160000 --- a/data/v2/sprites +++ b/data/v2/sprites @@ -1 +1 @@ -Subproject commit ca5a7886c10753144e6fae3b69d45a4d42a449b4 +Subproject commit 52427d467f3e3b22af3c9cefc807a7452196ccd7 diff --git a/default.nix b/default.nix new file mode 100644 index 00000000..c85dbe3e --- /dev/null +++ b/default.nix @@ -0,0 +1,32 @@ +with import { }; +pkgs.mkShell { + name = "onix-shellder"; + venvDir = "./.venv"; + buildInputs = [ + python310Packages.python + python310Packages.venvShellHook + + # Required dependancies + black + taglib + openssl + git + libxml2 + libxslt + libzip + zlib + ]; + + # Run this command, only after creating the virtual environment + postVenvCreation = '' + unset SOURCE_DATE_EPOCH + pip install -r requirements.txt + ''; + + postShellHook = '' + # allow pip to install wheels + unset SOURCE_DATE_EPOCH + zsh -l + ''; + +} diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 77e0dc5e..4df009e6 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -6,4 +6,4 @@ services: context: . dockerfile: ./Resources/docker/app/Dockerfile -# docker-compose -f docker-compose.yml -f docker-compose-dev.yml up -d +# docker compose -f docker-compose.yml -f docker-compose-dev.yml up -d diff --git a/docker-compose.yml b/docker-compose.yml index 7b53f7c7..10587881 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -44,7 +44,7 @@ services: - ./Resources/nginx/ssl:/ssl:ro - graphql_cache:/tmp/cache graphql-engine: - image: hasura/graphql-engine:v2.36.1-ce + image: hasura/graphql-engine:v2.36.4 ports: - "8080:8080" depends_on: diff --git a/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemon.yaml b/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemon.yaml index 27851bc1..4c7308c5 100644 --- a/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemon.yaml +++ b/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemon.yaml @@ -27,6 +27,13 @@ array_relationships: table: name: pokemon_v2_pokemonabilitypast schema: public + - name: pokemon_v2_pokemoncries + using: + foreign_key_constraint_on: + column: pokemon_id + table: + name: pokemon_v2_pokemoncries + schema: public - name: pokemon_v2_pokemonforms using: foreign_key_constraint_on: diff --git a/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemonabilitypast.yaml b/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemonabilitypast.yaml index 9e349111..bd9da154 100644 --- a/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemonabilitypast.yaml +++ b/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemonabilitypast.yaml @@ -11,3 +11,10 @@ object_relationships: - name: pokemon_v2_pokemon using: foreign_key_constraint_on: pokemon_id +select_permissions: + - role: anon + permission: + columns: '*' + filter: {} + limit: 100000 + allow_aggregations: true diff --git a/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemoncries.yaml b/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemoncries.yaml new file mode 100644 index 00000000..df3cde64 --- /dev/null +++ b/graphql/metadata/databases/default/tables/public_pokemon_v2_pokemoncries.yaml @@ -0,0 +1,14 @@ +table: + name: pokemon_v2_pokemoncries + schema: public +object_relationships: + - name: pokemon_v2_pokemon + using: + foreign_key_constraint_on: pokemon_id +select_permissions: + - role: anon + permission: + columns: '*' + filter: {} + limit: 100000 + allow_aggregations: true diff --git a/graphql/metadata/databases/default/tables/public_pokemon_v2_typeefficacypast.yaml b/graphql/metadata/databases/default/tables/public_pokemon_v2_typeefficacypast.yaml index 4c71b2b0..8c0d6de8 100644 --- a/graphql/metadata/databases/default/tables/public_pokemon_v2_typeefficacypast.yaml +++ b/graphql/metadata/databases/default/tables/public_pokemon_v2_typeefficacypast.yaml @@ -11,3 +11,10 @@ object_relationships: - name: pokemon_v2_type using: foreign_key_constraint_on: damage_type_id +select_permissions: + - role: anon + permission: + columns: '*' + filter: {} + limit: 100000 + allow_aggregations: true diff --git a/graphql/metadata/databases/default/tables/tables.yaml b/graphql/metadata/databases/default/tables/tables.yaml index 2e330142..85ecc995 100644 --- a/graphql/metadata/databases/default/tables/tables.yaml +++ b/graphql/metadata/databases/default/tables/tables.yaml @@ -110,6 +110,7 @@ - "!include public_pokemon_v2_pokemonabilitypast.yaml" - "!include public_pokemon_v2_pokemoncolor.yaml" - "!include public_pokemon_v2_pokemoncolorname.yaml" +- "!include public_pokemon_v2_pokemoncries.yaml" - "!include public_pokemon_v2_pokemondexnumber.yaml" - "!include public_pokemon_v2_pokemonegggroup.yaml" - "!include public_pokemon_v2_pokemonevolution.yaml" diff --git a/openapi.yml b/openapi.yml new file mode 100644 index 00000000..5e45840d --- /dev/null +++ b/openapi.yml @@ -0,0 +1,9385 @@ +openapi: 3.1.0 +info: + title: PokéAPI + version: 2.7.0 + description: "All the Pokémon data you'll ever need in one place, easily accessible\ + \ through a modern free open-source RESTful API.\n\n## What is this?\n\nThis is\ + \ a full RESTful API linked to an extensive database detailing everything about\ + \ the Pokémon main game series.\n\nWe've covered everything from Pokémon to Berry\ + \ Flavors.\n\n## Where do I start?\n\nWe have awesome [documentation](https://pokeapi.co/docs/v2)\ + \ on how to use this API. It takes minutes to get started.\n\nThis API will always\ + \ be publicly available and will never require any extensive setup process to\ + \ consume.\n\nCreated by [**Paul Hallett**(]https://github.com/phalt) and other\ + \ [**PokéAPI contributors***](https://github.com/PokeAPI/pokeapi#contributing)\ + \ around the world. Pokémon and Pokémon character names are trademarks of Nintendo.\n\ + \ " +paths: + /api/v2/ability/: + get: + operationId: ability_list + description: Abilities provide passive effects for Pokémon in battle or in the + overworld. Pokémon have multiple possible abilities but can have only one + ability at a time. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Ability) + for greater detail. + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedAbilitySummaryList' + description: '' + /api/v2/ability/{id}/: + get: + operationId: ability_retrieve + description: Abilities provide passive effects for Pokémon in battle or in the + overworld. Pokémon have multiple possible abilities but can have only one + ability at a time. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Ability) + for greater detail. + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/AbilityDetail' + description: '' + /api/v2/berry/: + get: + operationId: berry_list + description: Berries are small fruits that can provide HP and status condition + restoration, stat enhancement, and even damage negation when eaten by Pokémon. + Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Berry) for greater + detail. + summary: List berries + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - berries + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedBerrySummaryList' + description: '' + /api/v2/berry/{id}/: + get: + operationId: berry_retrieve + description: Berries are small fruits that can provide HP and status condition + restoration, stat enhancement, and even damage negation when eaten by Pokémon. + Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Berry) for greater + detail. + summary: Get a berry + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - berries + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/BerryDetail' + description: '' + /api/v2/berry-firmness/: + get: + operationId: berry_firmness_list + description: Berries can be soft or hard. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Category:Berries_by_firmness) + for greater detail. + summary: List berry firmness + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - berries + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedBerryFirmnessSummaryList' + description: '' + /api/v2/berry-firmness/{id}/: + get: + operationId: berry_firmness_retrieve + description: Berries can be soft or hard. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Category:Berries_by_firmness) + for greater detail. + summary: Get berry by firmness + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - berries + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/BerryFirmnessDetail' + description: '' + /api/v2/berry-flavor/: + get: + operationId: berry_flavor_list + description: Flavors determine whether a Pokémon will benefit or suffer from + eating a berry based on their **nature**. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Flavor) + for greater detail. + summary: List berry flavors + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - berries + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedBerryFlavorSummaryList' + description: '' + /api/v2/berry-flavor/{id}/: + get: + operationId: berry_flavor_retrieve + description: Flavors determine whether a Pokémon will benefit or suffer from + eating a berry based on their **nature**. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Flavor) + for greater detail. + summary: Get berries by flavor + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - berries + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/BerryFlavorDetail' + description: '' + /api/v2/characteristic/: + get: + operationId: characteristic_list + description: Characteristics indicate which stat contains a Pokémon's highest + IV. A Pokémon's Characteristic is determined by the remainder of its highest + IV divided by 5 (gene_modulo). Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Characteristic) + for greater detail. + summary: List charecterictics + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedCharacteristicSummaryList' + description: '' + /api/v2/characteristic/{id}/: + get: + operationId: characteristic_retrieve + description: Characteristics indicate which stat contains a Pokémon's highest + IV. A Pokémon's Characteristic is determined by the remainder of its highest + IV divided by 5 (gene_modulo). Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Characteristic) + for greater detail. + summary: Get characteristic + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/CharacteristicDetail' + description: '' + /api/v2/contest-type/: + get: + operationId: contest_type_list + description: Contest types are categories judges used to weigh a Pokémon's condition + in Pokémon contests. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Contest_condition) + for greater detail. + summary: List contest types + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - contests + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedContestTypeSummaryList' + description: '' + /api/v2/contest-type/{id}/: + get: + operationId: contest_type_retrieve + description: Contest types are categories judges used to weigh a Pokémon's condition + in Pokémon contests. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Contest_condition) + for greater detail. + summary: Get contest type + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - contests + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ContestTypeDetail' + description: '' + /api/v2/contest-effect/: + get: + operationId: contest_effect_list + description: Contest effects refer to the effects of moves when used in contests. + summary: List contest effects + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - contests + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedContestEffectSummaryList' + description: '' + /api/v2/contest-effect/{id}/: + get: + operationId: contest_effect_retrieve + description: Contest effects refer to the effects of moves when used in contests. + summary: Get contest effect + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - contests + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ContestEffectDetail' + description: '' + /api/v2/egg-group/: + get: + operationId: egg_group_list + description: Egg Groups are categories which determine which Pokémon are able + to interbreed. Pokémon may belong to either one or two Egg Groups. Check out + [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Egg_Group) for greater + detail. + summary: List egg groups + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedEggGroupSummaryList' + description: '' + /api/v2/egg-group/{id}/: + get: + operationId: egg_group_retrieve + description: Egg Groups are categories which determine which Pokémon are able + to interbreed. Pokémon may belong to either one or two Egg Groups. Check out + [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Egg_Group) for greater + detail. + summary: Get egg group + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/EggGroupDetail' + description: '' + /api/v2/encounter-method/: + get: + operationId: encounter_method_list + description: Methods by which the player might can encounter Pokémon in the + wild, e.g., walking in tall grass. Check out Bulbapedia for greater detail. + summary: List encounter methods + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - encounters + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedEncounterMethodSummaryList' + description: '' + /api/v2/encounter-method/{id}/: + get: + operationId: encounter_method_retrieve + description: Methods by which the player might can encounter Pokémon in the + wild, e.g., walking in tall grass. Check out Bulbapedia for greater detail. + summary: Get encounter method + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - encounters + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/EncounterMethodDetail' + description: '' + /api/v2/encounter-condition/: + get: + operationId: encounter_condition_list + description: Conditions which affect what pokemon might appear in the wild, + e.g., day or night. + summary: List encounter conditions + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - encounters + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedEncounterConditionSummaryList' + description: '' + /api/v2/encounter-condition/{id}/: + get: + operationId: encounter_condition_retrieve + description: Conditions which affect what pokemon might appear in the wild, + e.g., day or night. + summary: Get encounter condition + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - encounters + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/EncounterConditionDetail' + description: '' + /api/v2/encounter-condition-value/: + get: + operationId: encounter_condition_value_list + description: Encounter condition values are the various states that an encounter + condition can have, i.e., time of day can be either day or night. + summary: List encounter condition values + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - encounters + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedEncounterConditionValueSummaryList' + description: '' + /api/v2/encounter-condition-value/{id}/: + get: + operationId: encounter_condition_value_retrieve + description: Encounter condition values are the various states that an encounter + condition can have, i.e., time of day can be either day or night. + summary: Get encounter condition value + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - encounters + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/EncounterConditionValueDetail' + description: '' + /api/v2/evolution-chain/: + get: + operationId: evolution_chain_list + description: Evolution chains are essentially family trees. They start with + the lowest stage within a family and detail evolution conditions for each + as well as Pokémon they can evolve into up through the hierarchy. + summary: List evolution chains + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - evolution + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedEvolutionChainSummaryList' + description: '' + /api/v2/evolution-chain/{id}/: + get: + operationId: evolution_chain_retrieve + description: Evolution chains are essentially family trees. They start with + the lowest stage within a family and detail evolution conditions for each + as well as Pokémon they can evolve into up through the hierarchy. + summary: Get evolution chain + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - evolution + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/EvolutionChainDetail' + description: '' + /api/v2/evolution-trigger/: + get: + operationId: evolution_trigger_list + description: Evolution triggers are the events and conditions that cause a Pokémon + to evolve. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Methods_of_evolution) + for greater detail. + summary: List evolution triggers + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - evolution + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedEvolutionTriggerSummaryList' + description: '' + /api/v2/evolution-trigger/{id}/: + get: + operationId: evolution_trigger_retrieve + description: Evolution triggers are the events and conditions that cause a Pokémon + to evolve. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Methods_of_evolution) + for greater detail. + summary: Get evolution trigger + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - evolution + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/EvolutionTriggerDetail' + description: '' + /api/v2/generation/: + get: + operationId: generation_list + description: A generation is a grouping of the Pokémon games that separates + them based on the Pokémon they include. In each generation, a new set of Pokémon, + Moves, Abilities and Types that did not exist in the previous generation are + released. + summary: List genrations + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedGenerationSummaryList' + description: '' + /api/v2/generation/{id}/: + get: + operationId: generation_retrieve + description: A generation is a grouping of the Pokémon games that separates + them based on the Pokémon they include. In each generation, a new set of Pokémon, + Moves, Abilities and Types that did not exist in the previous generation are + released. + summary: Get genration + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/GenerationDetail' + description: '' + /api/v2/gender/: + get: + operationId: gender_list + description: Genders were introduced in Generation II for the purposes of breeding + Pokémon but can also result in visual differences or even different evolutionary + lines. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Gender) + for greater detail. + summary: List genders + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedGenderSummaryList' + description: '' + /api/v2/gender/{id}/: + get: + operationId: gender_retrieve + description: Genders were introduced in Generation II for the purposes of breeding + Pokémon but can also result in visual differences or even different evolutionary + lines. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Gender) + for greater detail. + summary: Get gender + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/GenderDetail' + description: '' + /api/v2/growth-rate/: + get: + operationId: growth_rate_list + description: Growth rates are the speed with which Pokémon gain levels through + experience. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Experience) + for greater detail. + summary: List growth rates + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedGrowthRateSummaryList' + description: '' + /api/v2/growth-rate/{id}/: + get: + operationId: growth_rate_retrieve + description: Growth rates are the speed with which Pokémon gain levels through + experience. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Experience) + for greater detail. + summary: Get growth rate + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/GrowthRateDetail' + description: '' + /api/v2/item/: + get: + operationId: item_list + description: An item is an object in the games which the player can pick up, + keep in their bag, and use in some manner. They have various uses, including + healing, powering up, helping catch Pokémon, or to access a new area. + summary: List items + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedItemSummaryList' + description: '' + /api/v2/item/{id}/: + get: + operationId: item_retrieve + description: An item is an object in the games which the player can pick up, + keep in their bag, and use in some manner. They have various uses, including + healing, powering up, helping catch Pokémon, or to access a new area. + summary: Get item + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ItemDetail' + description: '' + /api/v2/item-category/: + get: + operationId: item_category_list + description: Item categories determine where items will be placed in the players + bag. + summary: List item categories + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedItemCategorySummaryList' + description: '' + /api/v2/item-category/{id}/: + get: + operationId: item_category_retrieve + description: Item categories determine where items will be placed in the players + bag. + summary: Get item category + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ItemCategoryDetail' + description: '' + /api/v2/item-attribute/: + get: + operationId: item_attribute_list + description: Item attributes define particular aspects of items, e.g."usable + in battle" or "consumable". + summary: List item attributes + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedItemAttributeSummaryList' + description: '' + /api/v2/item-attribute/{id}/: + get: + operationId: item_attribute_retrieve + description: Item attributes define particular aspects of items, e.g."usable + in battle" or "consumable". + summary: Get item attribute + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ItemAttributeDetail' + description: '' + /api/v2/item-fling-effect/: + get: + operationId: item_fling_effect_list + description: The various effects of the move"Fling" when used with different + items. + summary: List item fling effects + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedItemFlingEffectSummaryList' + description: '' + /api/v2/item-fling-effect/{id}/: + get: + operationId: item_fling_effect_retrieve + description: The various effects of the move"Fling" when used with different + items. + summary: Get item fling effect + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ItemFlingEffectDetail' + description: '' + /api/v2/item-pocket/: + get: + operationId: item_pocket_list + description: Pockets within the players bag used for storing items by category. + summary: List item pockets + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedItemPocketSummaryList' + description: '' + /api/v2/item-pocket/{id}/: + get: + operationId: item_pocket_retrieve + description: Pockets within the players bag used for storing items by category. + summary: Get item pocket + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - items + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ItemPocketDetail' + description: '' + /api/v2/language/: + get: + operationId: language_list + description: Languages for translations of API resource information. + summary: List languages + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - utility + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedLanguageSummaryList' + description: '' + /api/v2/language/{id}/: + get: + operationId: language_retrieve + description: Languages for translations of API resource information. + summary: Get language + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - utility + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/LanguageDetail' + description: '' + /api/v2/location/: + get: + operationId: location_list + description: Locations that can be visited within the games. Locations make + up sizable portions of regions, like cities or routes. + summary: List locations + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedLocationSummaryList' + description: '' + /api/v2/location/{id}/: + get: + operationId: location_retrieve + description: Locations that can be visited within the games. Locations make + up sizable portions of regions, like cities or routes. + summary: Get location + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/LocationDetail' + description: '' + /api/v2/location-area/: + get: + operationId: location_area_list + description: Location areas are sections of areas, such as floors in a building + or cave. Each area has its own set of possible Pokémon encounters. + summary: List location areas + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedLocationAreaSummaryList' + description: '' + /api/v2/location-area/{id}/: + get: + operationId: location_area_retrieve + description: Location areas are sections of areas, such as floors in a building + or cave. Each area has its own set of possible Pokémon encounters. + summary: Get location area + parameters: + - in: path + name: id + schema: + type: integer + description: A unique integer value identifying this location area. + required: true + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/LocationAreaDetail' + description: '' + /api/v2/machine/: + get: + operationId: machine_list + description: Machines are the representation of items that teach moves to Pokémon. + They vary from version to version, so it is not certain that one specific + TM or HM corresponds to a single Machine. + summary: List machines + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - machines + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMachineSummaryList' + description: '' + /api/v2/machine/{id}/: + get: + operationId: machine_retrieve + description: Machines are the representation of items that teach moves to Pokémon. + They vary from version to version, so it is not certain that one specific + TM or HM corresponds to a single Machine. + summary: Get machine + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - machines + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MachineDetail' + description: '' + /api/v2/move/: + get: + operationId: move_list + description: Moves are the skills of Pokémon in battle. In battle, a Pokémon + uses one move each turn. Some moves (including those learned by Hidden Machine) + can be used outside of battle as well, usually for the purpose of removing + obstacles or exploring new areas. + summary: List moves + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMoveSummaryList' + description: '' + /api/v2/move/{id}/: + get: + operationId: move_retrieve + description: Moves are the skills of Pokémon in battle. In battle, a Pokémon + uses one move each turn. Some moves (including those learned by Hidden Machine) + can be used outside of battle as well, usually for the purpose of removing + obstacles or exploring new areas. + summary: Get move + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MoveDetail' + description: '' + /api/v2/move-ailment/: + get: + operationId: move_ailment_list + description: Move Ailments are status conditions caused by moves used during + battle. See [Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/Status_condition) + for greater detail. + summary: List move meta ailments + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMoveMetaAilmentSummaryList' + description: '' + /api/v2/move-ailment/{id}/: + get: + operationId: move_ailment_retrieve + description: Move Ailments are status conditions caused by moves used during + battle. See [Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/Status_condition) + for greater detail. + summary: Get move meta ailment + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MoveMetaAilmentDetail' + description: '' + /api/v2/move-battle-style/: + get: + operationId: move_battle_style_list + description: Styles of moves when used in the Battle Palace. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Battle_Frontier_(Generation_III)) + for greater detail. + summary: List move battle styles + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMoveBattleStyleSummaryList' + description: '' + /api/v2/move-battle-style/{id}/: + get: + operationId: move_battle_style_retrieve + description: Styles of moves when used in the Battle Palace. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Battle_Frontier_(Generation_III)) + for greater detail. + summary: Get move battle style + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MoveBattleStyleDetail' + description: '' + /api/v2/move-category/: + get: + operationId: move_category_list + description: Very general categories that loosely group move effects. + summary: List move meta categories + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMoveMetaCategorySummaryList' + description: '' + /api/v2/move-category/{id}/: + get: + operationId: move_category_retrieve + description: Very general categories that loosely group move effects. + summary: Get move meta category + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MoveMetaCategoryDetail' + description: '' + /api/v2/move-damage-class/: + get: + operationId: move_damage_class_list + description: Damage classes moves can have, e.g. physical, special, or non-damaging. + summary: List move damage classes + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMoveDamageClassSummaryList' + description: '' + /api/v2/move-damage-class/{id}/: + get: + operationId: move_damage_class_retrieve + description: Damage classes moves can have, e.g. physical, special, or non-damaging. + summary: Get move damage class + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MoveDamageClassDetail' + description: '' + /api/v2/move-learn-method/: + get: + operationId: move_learn_method_list + description: Methods by which Pokémon can learn moves. + summary: List move learn methods + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMoveLearnMethodSummaryList' + description: '' + /api/v2/move-learn-method/{id}/: + get: + operationId: move_learn_method_retrieve + description: Methods by which Pokémon can learn moves. + summary: Get move learn method + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MoveLearnMethodDetail' + description: '' + /api/v2/move-target/: + get: + operationId: move_target_list + description: Targets moves can be directed at during battle. Targets can be + Pokémon, environments or even other moves. + summary: List move targets + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMoveTargetSummaryList' + description: '' + /api/v2/move-target/{id}/: + get: + operationId: move_target_retrieve + description: Targets moves can be directed at during battle. Targets can be + Pokémon, environments or even other moves. + summary: Get move target + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - moves + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/MoveTargetDetail' + description: '' + /api/v2/nature/: + get: + operationId: nature_list + description: Natures influence how a Pokémon's stats grow. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Nature) + for greater detail. + summary: List natures + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedNatureSummaryList' + description: '' + /api/v2/nature/{id}/: + get: + operationId: nature_retrieve + description: Natures influence how a Pokémon's stats grow. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Nature) + for greater detail. + summary: Get nature + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/NatureDetail' + description: '' + /api/v2/pal-park-area/: + get: + operationId: pal_park_area_list + description: Areas used for grouping Pokémon encounters in Pal Park. They're + like habitats that are specific to Pal Park. + summary: List pal park areas + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPalParkAreaSummaryList' + description: '' + /api/v2/pal-park-area/{id}/: + get: + operationId: pal_park_area_retrieve + description: Areas used for grouping Pokémon encounters in Pal Park. They're + like habitats that are specific to Pal Park. + summary: Get pal park area + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PalParkAreaDetail' + description: '' + /api/v2/pokedex/: + get: + operationId: pokedex_list + description: A Pokédex is a handheld electronic encyclopedia device; one which + is capable of recording and retaining information of the various Pokémon in + a given region with the exception of the national dex and some smaller dexes + related to portions of a region. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pokedex) + for greater detail. + summary: List pokedex + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokedexSummaryList' + description: '' + /api/v2/pokedex/{id}/: + get: + operationId: pokedex_retrieve + description: A Pokédex is a handheld electronic encyclopedia device; one which + is capable of recording and retaining information of the various Pokémon in + a given region with the exception of the national dex and some smaller dexes + related to portions of a region. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pokedex) + for greater detail. + summary: Get pokedex + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokedexDetail' + description: '' + /api/v2/pokemon/: + get: + operationId: pokemon_list + description: Pokémon are the creatures that inhabit the world of the Pokémon + games. They can be caught using Pokéballs and trained by battling with other + Pokémon. Each Pokémon belongs to a specific species but may take on a variant + which makes it differ from other Pokémon of the same species, such as base + stats, available abilities and typings. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_(species)) + for greater detail. + summary: List pokemon + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokemonSummaryList' + description: '' + /api/v2/pokemon/{id}/: + get: + operationId: pokemon_retrieve + description: Pokémon are the creatures that inhabit the world of the Pokémon + games. They can be caught using Pokéballs and trained by battling with other + Pokémon. Each Pokémon belongs to a specific species but may take on a variant + which makes it differ from other Pokémon of the same species, such as base + stats, available abilities and typings. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_(species)) + for greater detail. + summary: Get pokemon + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokemonDetail' + description: '' + /api/v2/pokemon-color/: + get: + operationId: pokemon_color_list + description: Colors used for sorting Pokémon in a Pokédex. The color listed + in the Pokédex is usually the color most apparent or covering each Pokémon's + body. No orange category exists; Pokémon that are primarily orange are listed + as red or brown. + summary: List pokemon colors + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokemonColorSummaryList' + description: '' + /api/v2/pokemon-color/{id}/: + get: + operationId: pokemon_color_retrieve + description: Colors used for sorting Pokémon in a Pokédex. The color listed + in the Pokédex is usually the color most apparent or covering each Pokémon's + body. No orange category exists; Pokémon that are primarily orange are listed + as red or brown. + summary: Get pokemon color + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokemonColorDetail' + description: '' + /api/v2/pokemon-form/: + get: + operationId: pokemon_form_list + description: Some Pokémon may appear in one of multiple, visually different + forms. These differences are purely cosmetic. For variations within a Pokémon + species, which do differ in more than just visuals, the 'Pokémon' entity is + used to represent such a variety. + summary: List pokemon forms + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokemonFormSummaryList' + description: '' + /api/v2/pokemon-form/{id}/: + get: + operationId: pokemon_form_retrieve + description: Some Pokémon may appear in one of multiple, visually different + forms. These differences are purely cosmetic. For variations within a Pokémon + species, which do differ in more than just visuals, the 'Pokémon' entity is + used to represent such a variety. + summary: Get pokemon form + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokemonFormDetail' + description: '' + /api/v2/pokemon-habitat/: + get: + operationId: pokemon_habitat_list + description: Habitats are generally different terrain Pokémon can be found in + but can also be areas designated for rare or legendary Pokémon. + summary: List pokemom habitas + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokemonHabitatSummaryList' + description: '' + /api/v2/pokemon-habitat/{id}/: + get: + operationId: pokemon_habitat_retrieve + description: Habitats are generally different terrain Pokémon can be found in + but can also be areas designated for rare or legendary Pokémon. + summary: Get pokemom habita + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokemonHabitatDetail' + description: '' + /api/v2/pokemon-shape/: + get: + operationId: pokemon_shape_list + description: Shapes used for sorting Pokémon in a Pokédex. + summary: List pokemon shapes + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokemonShapeSummaryList' + description: '' + /api/v2/pokemon-shape/{id}/: + get: + operationId: pokemon_shape_retrieve + description: Shapes used for sorting Pokémon in a Pokédex. + summary: Get pokemon shape + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokemonShapeDetail' + description: '' + /api/v2/pokemon-species/: + get: + operationId: pokemon_species_list + description: A Pokémon Species forms the basis for at least one Pokémon. Attributes + of a Pokémon species are shared across all varieties of Pokémon within the + species. A good example is Wormadam; Wormadam is the species which can be + found in three different varieties, Wormadam-Trash, Wormadam-Sandy and Wormadam-Plant. + summary: List pokemon species + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokemonSpeciesSummaryList' + description: '' + /api/v2/pokemon-species/{id}/: + get: + operationId: pokemon_species_retrieve + description: A Pokémon Species forms the basis for at least one Pokémon. Attributes + of a Pokémon species are shared across all varieties of Pokémon within the + species. A good example is Wormadam; Wormadam is the species which can be + found in three different varieties, Wormadam-Trash, Wormadam-Sandy and Wormadam-Plant. + summary: Get pokemon species + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokemonSpeciesDetail' + description: '' + /api/v2/pokeathlon-stat/: + get: + operationId: pokeathlon_stat_list + description: Pokeathlon Stats are different attributes of a Pokémon's performance + in Pokéathlons. In Pokéathlons, competitions happen on different courses; + one for each of the different Pokéathlon stats. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9athlon) + for greater detail. + summary: List pokeathlon stats + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedPokeathlonStatSummaryList' + description: '' + /api/v2/pokeathlon-stat/{id}/: + get: + operationId: pokeathlon_stat_retrieve + description: Pokeathlon Stats are different attributes of a Pokémon's performance + in Pokéathlons. In Pokéathlons, competitions happen on different courses; + one for each of the different Pokéathlon stats. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9athlon) + for greater detail. + summary: Get pokeathlon stat + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PokeathlonStatDetail' + description: '' + /api/v2/region/: + get: + operationId: region_list + description: A region is an organized area of the Pokémon world. Most often, + the main difference between regions is the species of Pokémon that can be + encountered within them. + summary: List regions + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedRegionSummaryList' + description: '' + /api/v2/region/{id}/: + get: + operationId: region_retrieve + description: A region is an organized area of the Pokémon world. Most often, + the main difference between regions is the species of Pokémon that can be + encountered within them. + summary: Get region + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - location + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/RegionDetail' + description: '' + /api/v2/stat/: + get: + operationId: stat_list + description: Stats determine certain aspects of battles. Each Pokémon has a + value for each stat which grows as they gain levels and can be altered momentarily + by effects in battles. + summary: List stats + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedStatSummaryList' + description: '' + /api/v2/stat/{id}/: + get: + operationId: stat_retrieve + description: Stats determine certain aspects of battles. Each Pokémon has a + value for each stat which grows as they gain levels and can be altered momentarily + by effects in battles. + summary: Get stat + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/StatDetail' + description: '' + /api/v2/super-contest-effect/: + get: + operationId: super_contest_effect_list + description: Super contest effects refer to the effects of moves when used in + super contests. + summary: List super contest effects + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - contests + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedSuperContestEffectSummaryList' + description: '' + /api/v2/super-contest-effect/{id}/: + get: + operationId: super_contest_effect_retrieve + description: Super contest effects refer to the effects of moves when used in + super contests. + summary: Get super contest effect + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - contests + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/SuperContestEffectDetail' + description: '' + /api/v2/type/: + get: + operationId: type_list + description: 'Types are properties for Pokémon and their moves. Each type has + three properties: which types of Pokémon it is super effective against, which + types of Pokémon it is not very effective against, and which types of Pokémon + it is completely ineffective against.' + summary: List types + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedTypeSummaryList' + description: '' + /api/v2/type/{id}/: + get: + operationId: type_retrieve + description: 'Types are properties for Pokémon and their moves. Each type has + three properties: which types of Pokémon it is super effective against, which + types of Pokémon it is not very effective against, and which types of Pokémon + it is completely ineffective against.' + summary: Get types + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - pokemon + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/TypeDetail' + description: '' + /api/v2/version/: + get: + operationId: version_list + description: Versions of the games, e.g., Red, Blue or Yellow. + summary: List versions + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedVersionSummaryList' + description: '' + /api/v2/version/{id}/: + get: + operationId: version_retrieve + description: Versions of the games, e.g., Red, Blue or Yellow. + summary: Get version + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/VersionDetail' + description: '' + /api/v2/version-group/: + get: + operationId: version_group_list + description: Version groups categorize highly similar versions of the games. + summary: List version groups + parameters: + - name: limit + required: false + in: query + description: Number of results to return per page. + schema: + type: integer + - name: offset + required: false + in: query + description: The initial index from which to return the results. + schema: + type: integer + - in: query + name: q + schema: + type: string + description: "> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\n\ + Case-insensitive query applied on the `name` property. " + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedVersionGroupSummaryList' + description: '' + /api/v2/version-group/{id}/: + get: + operationId: version_group_retrieve + description: Version groups categorize highly similar versions of the games. + summary: Get version group + parameters: + - in: path + name: id + schema: + type: string + description: This parameter can be a string or an integer. + required: true + tags: + - games + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/VersionGroupDetail' + description: '' + /api/v2/pokemon/{pokemon_id}/encounters: + get: + operationId: pokemon_encounters_retrieve + description: Handles Pokemon Encounters as a sub-resource. + summary: Get pokemon encounter + parameters: + - in: path + name: pokemon_id + schema: + type: string + pattern: ^\d+$ + required: true + tags: + - encounters + security: + - cookieAuth: [] + - basicAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + type: array + items: + type: object + required: + - location_area + - version_details + properties: + location_area: + type: object + required: + - name + - url + properties: + name: + type: string + example: cerulean-city-area + url: + type: string + format: uri + example: https://pokeapi.co/api/v2/location-area/281/ + version_details: + type: array + items: + type: object + required: + - encounter_details + - max_chance + - version + properties: + encounter_details: + type: array + items: + type: object + required: + - chance + - condition_values + - max_level + - method + - min_level + properties: + chance: + type: number + example: 100 + condition_values: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + example: story-progress-beat-red + url: + type: string + format: uri + example: https://pokeapi.co/api/v2/encounter-condition-value/55/ + max_level: + type: number + example: 10 + method: + type: object + required: + - name + - url + properties: + name: + type: string + example: gift + url: + type: string + format: uri + example: https://pokeapi.co/api/v2/encounter-method/18/ + min_level: + type: number + example: 10 + max_chance: + type: number + example: 100 + version: + type: object + required: + - name + - url + properties: + name: + type: string + example: red + url: + type: string + format: uri + example: https://pokeapi.co/api/v2/version/1/ + description: '' +components: + schemas: + AbilityChange: + type: object + properties: + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + effect_entries: + type: array + items: + $ref: '#/components/schemas/AbilityChangeEffectText' + readOnly: true + required: + - effect_entries + - version_group + AbilityChangeEffectText: + type: object + properties: + effect: + type: string + maxLength: 6000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - effect + - language + AbilityDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + is_main_series: + type: boolean + generation: + $ref: '#/components/schemas/GenerationSummary' + names: + type: array + items: + $ref: '#/components/schemas/AbilityName' + readOnly: true + effect_entries: + type: array + items: + $ref: '#/components/schemas/AbilityEffectText' + readOnly: true + effect_changes: + type: array + items: + $ref: '#/components/schemas/AbilityChange' + readOnly: true + flavor_text_entries: + type: array + items: + $ref: '#/components/schemas/AbilityFlavorText' + readOnly: true + pokemon: + type: array + items: + type: object + required: + - is_hidden + - slot + - pokemon + properties: + is_hidden: + type: boolean + slot: + type: integer + format: int32 + examples: + - 3 + pokemon: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - gloom + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon/44/ + readOnly: true + required: + - effect_changes + - effect_entries + - flavor_text_entries + - generation + - id + - name + - names + - pokemon + AbilityEffectText: + type: object + properties: + effect: + type: string + maxLength: 6000 + short_effect: + type: string + maxLength: 300 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - effect + - language + - short_effect + AbilityFlavorText: + type: object + properties: + flavor_text: + type: string + language: + $ref: '#/components/schemas/LanguageSummary' + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + required: + - flavor_text + - language + - version_group + AbilityName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + AbilitySummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + BerryDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + growth_time: + type: integer + max_harvest: + type: integer + natural_gift_power: + type: integer + size: + type: integer + smoothness: + type: integer + soil_dryness: + type: integer + firmness: + $ref: '#/components/schemas/BerryFirmnessSummary' + flavors: + type: array + items: + type: object + required: + - potency + - flavor + properties: + potency: + type: integer + examples: + - 10 + flavor: + type: object + require: + - name + - url + properties: + name: + type: string + description: The name of the flavor + examples: + - spicy + url: + type: string + format: uri + description: The URL to get more information about the flavor + examples: + - https://pokeapi.co/api/v2/berry-flavor/1/ + readOnly: true + item: + $ref: '#/components/schemas/ItemSummary' + natural_gift_type: + $ref: '#/components/schemas/TypeSummary' + required: + - firmness + - flavors + - growth_time + - id + - item + - max_harvest + - name + - natural_gift_power + - natural_gift_type + - size + - smoothness + - soil_dryness + BerryFirmnessDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + berries: + type: array + items: + $ref: '#/components/schemas/BerrySummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/BerryFirmnessName' + readOnly: true + required: + - berries + - id + - name + - names + BerryFirmnessName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + BerryFirmnessSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + BerryFlavorDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + berries: + type: array + items: + type: object + required: + - potency + - berry + properties: + potency: + type: integer + examples: + - 10 + berry: + type: object + require: + - name + - url + properties: + name: + type: string + description: The name of the berry + examples: + - rowap + url: + type: string + format: uri + description: The URL to get more information about the berry + examples: + - https://pokeapi.co/api/v2/berry/64/ + readOnly: true + contest_type: + $ref: '#/components/schemas/ContestTypeSummary' + names: + type: array + items: + $ref: '#/components/schemas/BerryFlavorName' + readOnly: true + required: + - berries + - contest_type + - id + - name + - names + BerryFlavorName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + BerryFlavorSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + BerrySummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + CharacteristicDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + CharacteristicDetail: + type: object + properties: + id: + type: integer + readOnly: true + gene_modulo: + type: integer + possible_values: + type: array + items: + type: integer + format: int32 + examples: + - - 0 + - 5 + - 10 + - 15 + - 20 + - 25 + - 30 + readOnly: true + highest_stat: + $ref: '#/components/schemas/StatSummary' + descriptions: + type: array + items: + $ref: '#/components/schemas/CharacteristicDescription' + readOnly: true + required: + - descriptions + - gene_modulo + - highest_stat + - id + - possible_values + CharacteristicSummary: + type: object + properties: + url: + type: string + format: uri + readOnly: true + required: + - url + ContestEffectDetail: + type: object + properties: + id: + type: integer + readOnly: true + appeal: + type: integer + jam: + type: integer + effect_entries: + type: array + items: + $ref: '#/components/schemas/ContestEffectEffectText' + readOnly: true + flavor_text_entries: + type: array + items: + $ref: '#/components/schemas/ContestEffectFlavorText' + readOnly: true + required: + - appeal + - effect_entries + - flavor_text_entries + - id + - jam + ContestEffectEffectText: + type: object + properties: + effect: + type: string + maxLength: 6000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - effect + - language + ContestEffectFlavorText: + type: object + properties: + flavor_text: + type: string + maxLength: 500 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - flavor_text + - language + ContestEffectSummary: + type: object + properties: + url: + type: string + format: uri + readOnly: true + required: + - url + ContestTypeDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + berry_flavor: + allOf: + - $ref: '#/components/schemas/BerryFlavorSummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/ContestTypeName' + readOnly: true + required: + - berry_flavor + - id + - name + - names + ContestTypeName: + type: object + properties: + name: + type: string + maxLength: 100 + color: + type: string + maxLength: 10 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - color + - language + - name + ContestTypeSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + EggGroupDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/EggGroupName' + readOnly: true + pokemon_species: + type: array + items: + type: object + required: + - potency + - flavor + properties: + name: + type: string + description: Pokemon species name. + examples: + - bulbasaur + url: + type: string + format: uri + description: The URL to get more information about the species + examples: + - https://pokeapi.co/api/v2/pokemon-species/1/ + readOnly: true + required: + - id + - name + - names + - pokemon_species + EggGroupName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + EggGroupSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + EncounterConditionDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + values: + type: array + items: + $ref: '#/components/schemas/EncounterConditionValueSummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/EncounterConditionName' + readOnly: true + required: + - id + - name + - names + - values + EncounterConditionName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + EncounterConditionSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + EncounterConditionValueDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + condition: + $ref: '#/components/schemas/EncounterConditionSummary' + names: + type: array + items: + $ref: '#/components/schemas/EncounterConditionValueName' + readOnly: true + required: + - condition + - id + - name + - names + EncounterConditionValueName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + EncounterConditionValueSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + EncounterMethodDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + order: + type: + - integer + - 'null' + names: + type: array + items: + $ref: '#/components/schemas/EncounterMethodName' + readOnly: true + required: + - id + - name + - names + EncounterMethodName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + EncounterMethodSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + EvolutionChainDetail: + type: object + properties: + id: + type: integer + readOnly: true + baby_trigger_item: + $ref: '#/components/schemas/ItemSummary' + chain: + type: object + required: + - evolution_details + - evolves_to + - is_baby + - species + properties: + evolution_details: + type: array + items: {} + examples: [] + evolves_to: + type: array + items: + type: object + required: + - evolution_details + - evolves_to + - is_baby + - species + properties: + evolution_details: + type: array + items: + type: object + required: + - gender + - held_item + - item + - known_move + - known_move_type + - location + - min_affection + - min_beauty + - min_happiness + - min_level + - needs_overworld_rain + - party_species + - party_type + - relative_physical_stats + - time_of_day + - trade_species + - trigger + - turn_upside_down + properties: + gender: + type: object + nullable: true + required: + - name + - url + properties: + name: + type: string + examples: + - 1 + url: + type: string + format: uri + examples: + - 2 + held_item: + type: object + nullable: true + required: + - name + - url + properties: + name: + type: string + examples: + - 1 + url: + type: string + format: uri + examples: + - 2 + item: + type: object + nullable: true + required: + - name + - url + properties: + name: + type: string + examples: + - 1 + url: + type: string + format: uri + examples: + - 2 + known_move: + type: '' + nullable: true + known_move_type: + type: '' + nullable: true + location: + type: object + nullable: true + required: + - name + - url + properties: + name: + type: string + url: + type: string + format: uri + min_affection: + type: integer + format: int32 + nullable: true + min_beauty: + type: integer + format: int32 + nullable: true + min_happiness: + type: integer + format: int32 + nullable: true + min_level: + type: integer + format: int32 + nullable: true + needs_overworld_rain: + type: boolean + nullable: true + party_species: + type: string + nullable: true + party_type: + type: string + nullable: true + relative_physical_stats: + type: string + nullable: true + time_of_day: + type: string + trade_species: + type: string + nullable: true + trigger: + type: object + required: + - name + - url + properties: + name: + type: string + url: + type: string + format: uri + turn_upside_down: + type: boolean + is_baby: + type: boolean + species: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - happiny + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon-species/440/ + is_baby: + type: boolean + species: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - happiny + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon-species/440/ + readOnly: true + required: + - baby_trigger_item + - chain + - id + EvolutionChainSummary: + type: object + properties: + url: + type: string + format: uri + readOnly: true + required: + - url + EvolutionTriggerDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/EvolutionTriggerName' + readOnly: true + pokemon_species: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - ivysaur + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon-species/2/ + readOnly: true + required: + - id + - name + - names + - pokemon_species + EvolutionTriggerName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + EvolutionTriggerSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + Experience: + type: object + properties: + level: + type: integer + experience: + type: integer + required: + - experience + - level + GenderDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + pokemon_species_details: + type: array + items: + type: object + required: + - rate + - pokemon_species + properties: + rate: + type: integer + format: int32 + examples: + - 1 + pokemon_species: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bulbasaur + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon-species/1/ + readOnly: true + required_for_evolution: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - wormadam + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon-species/413/ + readOnly: true + required: + - id + - name + - pokemon_species_details + - required_for_evolution + GenderSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + GenerationDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + abilities: + type: array + items: + $ref: '#/components/schemas/AbilitySummary' + readOnly: true + main_region: + $ref: '#/components/schemas/RegionSummary' + moves: + type: array + items: + $ref: '#/components/schemas/MoveSummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/GenerationName' + readOnly: true + pokemon_species: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesSummary' + readOnly: true + types: + type: array + items: + $ref: '#/components/schemas/TypeSummary' + readOnly: true + version_groups: + type: array + items: + $ref: '#/components/schemas/VersionGroupSummary' + readOnly: true + required: + - abilities + - id + - main_region + - moves + - name + - names + - pokemon_species + - types + - version_groups + GenerationName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + GenerationSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + GrowthRateDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + GrowthRateDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + formula: + type: string + maxLength: 500 + descriptions: + type: array + items: + $ref: '#/components/schemas/GrowthRateDescription' + readOnly: true + levels: + type: array + items: + $ref: '#/components/schemas/Experience' + readOnly: true + pokemon_species: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesSummary' + readOnly: true + required: + - descriptions + - formula + - id + - levels + - name + - pokemon_species + GrowthRateSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + ItemAttributeDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + ItemAttributeDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + descriptions: + type: array + items: + $ref: '#/components/schemas/ItemAttributeDescription' + readOnly: true + items: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - master-ball + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/item/1/ + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/ItemAttributeName' + readOnly: true + required: + - descriptions + - id + - items + - name + - names + ItemAttributeName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + ItemAttributeSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + ItemCategoryDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + items: + type: array + items: + $ref: '#/components/schemas/ItemSummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/ItemCategoryName' + readOnly: true + pocket: + $ref: '#/components/schemas/ItemPocketSummary' + required: + - id + - items + - name + - names + - pocket + ItemCategoryName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + ItemCategorySummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + ItemDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + cost: + type: + - integer + - 'null' + fling_power: + type: + - integer + - 'null' + fling_effect: + $ref: '#/components/schemas/ItemFlingEffectSummary' + attributes: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - countable + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/item-attribute/1/ + readOnly: true + category: + $ref: '#/components/schemas/ItemCategorySummary' + effect_entries: + type: array + items: + $ref: '#/components/schemas/ItemEffectText' + readOnly: true + flavor_text_entries: + type: array + items: + $ref: '#/components/schemas/ItemFlavorText' + readOnly: true + game_indices: + type: array + items: + $ref: '#/components/schemas/ItemGameIndex' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/ItemName' + readOnly: true + held_by_pokemon: + type: array + items: + type: object + required: + - pokemon + - version-details + properties: + pokemon: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - farfetchd + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon/83/ + version-details: + type: array + items: + type: object + required: + - rarity + - version + properties: + rarity: + type: integer + format: int32 + examples: + - 5 + version: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - ruby + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version/7/ + readOnly: true + sprites: + type: object + required: + - default + properties: + default: + type: string + format: uri + examples: + - https://pokeapi.co/media/sprites/items/master-ball.png + readOnly: true + baby_trigger_for: + type: object + required: + - url + properties: + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/evolution-chain/51/ + readOnly: true + machines: + type: array + items: + type: object + required: + - machine + - version_group + properties: + machine: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/machine/1/ + version_group: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - sword-shield + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version-group/20/ + readOnly: true + required: + - attributes + - baby_trigger_for + - category + - effect_entries + - flavor_text_entries + - fling_effect + - game_indices + - held_by_pokemon + - id + - machines + - name + - names + - sprites + ItemEffectText: + type: object + properties: + effect: + type: string + maxLength: 6000 + short_effect: + type: string + maxLength: 300 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - effect + - language + - short_effect + ItemFlavorText: + type: object + properties: + text: + type: string + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - text + - version_group + ItemFlingEffectDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + effect_entries: + type: array + items: + $ref: '#/components/schemas/ItemFlingEffectEffectText' + readOnly: true + items: + type: array + items: + $ref: '#/components/schemas/ItemSummary' + readOnly: true + required: + - effect_entries + - id + - items + - name + ItemFlingEffectEffectText: + type: object + properties: + effect: + type: string + maxLength: 6000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - effect + - language + ItemFlingEffectSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + ItemGameIndex: + type: object + properties: + game_index: + type: integer + generation: + $ref: '#/components/schemas/GenerationSummary' + required: + - game_index + - generation + ItemName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + ItemPocketDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + categories: + type: array + items: + $ref: '#/components/schemas/ItemCategorySummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/ItemPocketName' + readOnly: true + required: + - categories + - id + - name + - names + ItemPocketName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + ItemPocketSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + ItemSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + LanguageDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + official: + type: boolean + iso639: + type: string + maxLength: 10 + iso3166: + type: string + maxLength: 2 + names: + type: array + items: + $ref: '#/components/schemas/LanguageName' + readOnly: true + required: + - id + - iso3166 + - iso639 + - name + - names + LanguageName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + LanguageSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + LocationAreaDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + game_index: + type: integer + encounter_method_rates: + type: array + items: + type: object + required: + - encounter_method + - version_details + properties: + encounter_method: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - old-rod + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/encounter-method/2/ + version_details: + type: array + items: + type: object + required: + - rate + - version + properties: + rate: + type: integer + format: int32 + examples: + - 5 + version: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - platinum + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version/14/ + readOnly: true + location: + $ref: '#/components/schemas/LocationSummary' + names: + type: array + items: + $ref: '#/components/schemas/LocationAreaName' + readOnly: true + pokemon_encounters: + type: array + items: + type: object + required: + - pokemon + - version_details + properties: + pokemon: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - tentacool + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon/72/ + version_details: + type: array + items: + type: object + required: + - version + - max_chance + - encounter_details + properties: + version: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - diamond + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version/12/ + max_chance: + type: integer + format: int32 + examples: + - 60 + encounter_details: + type: object + required: + - min_level + - max_level + - condition_value + - chance + - method + properties: + min_level: + type: integer + format: int32 + examples: + - 20 + max_level: + type: integer + format: int32 + examples: + - 30 + condition_values: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - slot2-sapphire + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/encounter-condition-value/10/ + chance: + type: integer + format: int32 + examples: + - 60 + method: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - surf + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/encounter-method/5/ + readOnly: true + required: + - encounter_method_rates + - game_index + - id + - location + - name + - names + - pokemon_encounters + LocationAreaName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + LocationAreaSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + LocationDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + region: + $ref: '#/components/schemas/RegionSummary' + names: + type: array + items: + $ref: '#/components/schemas/LocationName' + readOnly: true + game_indices: + type: array + items: + $ref: '#/components/schemas/LocationGameIndex' + readOnly: true + areas: + type: array + items: + $ref: '#/components/schemas/LocationAreaSummary' + readOnly: true + required: + - areas + - game_indices + - id + - name + - names + - region + LocationGameIndex: + type: object + properties: + game_index: + type: integer + generation: + $ref: '#/components/schemas/GenerationSummary' + required: + - game_index + - generation + LocationName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + LocationSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + MachineDetail: + type: object + properties: + id: + type: integer + readOnly: true + item: + $ref: '#/components/schemas/ItemSummary' + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + move: + $ref: '#/components/schemas/MoveSummary' + required: + - id + - item + - move + - version_group + MachineSummary: + type: object + properties: + url: + type: string + format: uri + readOnly: true + required: + - url + MoveBattleStyleDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/MoveBattleStyleName' + readOnly: true + required: + - id + - name + - names + MoveBattleStyleName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + MoveBattleStyleSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + MoveChange: + type: object + properties: + accuracy: + type: + - integer + - 'null' + power: + type: + - integer + - 'null' + pp: + type: + - integer + - 'null' + effect_chance: + type: integer + effect_entries: + type: array + items: + type: object + required: + - effect + - short_effect + - language + properties: + effect: + type: string + examples: + - Inflicts [regular damage]{mechanic:regular-damage}. + short_effect: + type: string + examples: + - Inflicts regular damage with no additional effect. + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + readOnly: true + type: + $ref: '#/components/schemas/TypeSummary' + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + required: + - effect_chance + - effect_entries + - type + - version_group + MoveDamageClassDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + MoveDamageClassDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + descriptions: + type: array + items: + $ref: '#/components/schemas/MoveDamageClassDescription' + readOnly: true + moves: + type: array + items: + $ref: '#/components/schemas/MoveSummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/MoveDamageClassName' + readOnly: true + required: + - descriptions + - id + - moves + - name + - names + MoveDamageClassName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + MoveDamageClassSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + MoveDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + accuracy: + type: + - integer + - 'null' + effect_chance: + type: integer + pp: + type: + - integer + - 'null' + priority: + type: + - integer + - 'null' + power: + type: + - integer + - 'null' + contest_combos: + type: object + required: + - normal + - super + properties: + normal: + type: object + required: + - use_before + - use_after + properties: + use_before: + type: array + nullable: true + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - fire-punch + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/7/ + use_after: + type: array + nullable: true + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - ice-punch + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/8/ + super: + type: object + required: + - use_before + - use_after + properties: + use_before: + type: array + nullable: true + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - night-slash + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/400/ + use_after: + type: array + nullable: true + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - focus-energy + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/116/ + readOnly: true + contest_type: + $ref: '#/components/schemas/ContestTypeSummary' + contest_effect: + $ref: '#/components/schemas/ContestEffectSummary' + damage_class: + $ref: '#/components/schemas/MoveDamageClassSummary' + effect_entries: + type: array + items: + type: object + required: + - effect + - short_effect + - language + properties: + effect: + type: string + examples: + - Inflicts [regular damage]{mechanic:regular-damage}. + short_effect: + type: string + examples: + - Inflicts regular damage with no additional effect. + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + readOnly: true + effect_changes: + type: array + items: + type: object + required: + - effect_entries + - version_group + properties: + effect_entries: + type: array + items: + type: object + required: + - effect + - language + properties: + effect: + type: string + examples: + - Hits Pokémon under the effects of dig and fly. + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + version_group: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - gold-silver + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version-group/3/ + readOnly: true + generation: + $ref: '#/components/schemas/GenerationSummary' + meta: + allOf: + - $ref: '#/components/schemas/MoveMeta' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/MoveName' + readOnly: true + past_values: + type: array + items: + $ref: '#/components/schemas/MoveChange' + readOnly: true + stat_changes: + type: array + items: + type: object + required: + - change + - stat + properties: + change: + type: integer + format: int32 + examples: + - 2 + stat: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - attack + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/stat/1/ + readOnly: true + super_contest_effect: + $ref: '#/components/schemas/SuperContestEffectSummary' + target: + $ref: '#/components/schemas/MoveTargetSummary' + type: + $ref: '#/components/schemas/TypeSummary' + machines: + type: array + items: + type: object + required: + - machine + - version_group + properties: + machine: + type: object + required: + - url + properties: + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/machine/1/ + version_group: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - sword-shield + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version-group/1/ + readOnly: true + flavor_text_entries: + type: array + items: + $ref: '#/components/schemas/MoveFlavorText' + readOnly: true + learned_by_pokemon: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - clefairy + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon/35/ + readOnly: true + required: + - contest_combos + - contest_effect + - contest_type + - damage_class + - effect_chance + - effect_changes + - effect_entries + - flavor_text_entries + - generation + - id + - learned_by_pokemon + - machines + - meta + - name + - names + - past_values + - stat_changes + - super_contest_effect + - target + - type + MoveFlavorText: + type: object + properties: + flavor_text: + type: string + language: + $ref: '#/components/schemas/LanguageSummary' + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + required: + - flavor_text + - language + - version_group + MoveLearnMethodDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + MoveLearnMethodDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/MoveLearnMethodName' + readOnly: true + descriptions: + type: array + items: + $ref: '#/components/schemas/MoveLearnMethodDescription' + readOnly: true + version_groups: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - red-blue + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version-group/1/ + readOnly: true + required: + - descriptions + - id + - name + - names + - version_groups + MoveLearnMethodName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + MoveLearnMethodSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + MoveMeta: + type: object + properties: + ailment: + $ref: '#/components/schemas/MoveMetaAilmentSummary' + category: + $ref: '#/components/schemas/MoveMetaCategorySummary' + min_hits: + type: + - integer + - 'null' + max_hits: + type: + - integer + - 'null' + min_turns: + type: + - integer + - 'null' + max_turns: + type: + - integer + - 'null' + drain: + type: + - integer + - 'null' + healing: + type: + - integer + - 'null' + crit_rate: + type: + - integer + - 'null' + ailment_chance: + type: + - integer + - 'null' + flinch_chance: + type: + - integer + - 'null' + stat_chance: + type: + - integer + - 'null' + required: + - ailment + - category + MoveMetaAilmentDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + moves: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - thunder-punch + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/9/ + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/MoveMetaAilmentName' + readOnly: true + required: + - id + - moves + - name + - names + MoveMetaAilmentName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + MoveMetaAilmentSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + MoveMetaCategoryDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + MoveMetaCategoryDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + descriptions: + type: array + items: + $ref: '#/components/schemas/MoveMetaCategoryDescription' + readOnly: true + moves: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - sing + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/47/ + readOnly: true + required: + - descriptions + - id + - moves + - name + MoveMetaCategorySummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + MoveName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + MoveSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + MoveTargetDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + MoveTargetDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + descriptions: + type: array + items: + $ref: '#/components/schemas/MoveTargetDescription' + readOnly: true + moves: + type: array + items: + $ref: '#/components/schemas/MoveSummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/MoveTargetName' + readOnly: true + required: + - descriptions + - id + - moves + - name + - names + MoveTargetName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + MoveTargetSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + NatureBattleStylePreference: + type: object + properties: + low_hp_preference: + type: integer + high_hp_preference: + type: integer + move_battle_style: + $ref: '#/components/schemas/MoveBattleStyleSummary' + required: + - high_hp_preference + - low_hp_preference + - move_battle_style + NatureDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + decreased_stat: + $ref: '#/components/schemas/StatSummary' + increased_stat: + $ref: '#/components/schemas/StatSummary' + likes_flavor: + $ref: '#/components/schemas/BerryFlavorSummary' + hates_flavor: + $ref: '#/components/schemas/BerryFlavorSummary' + berries: + type: array + items: + $ref: '#/components/schemas/BerrySummary' + readOnly: true + pokeathlon_stat_changes: + type: array + items: + type: object + required: + - max_change + - pokeathlon_stat + properties: + max_change: + type: integer + format: int32 + examples: + - 1 + pokeathlon_stat: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - power + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokeathlon-stat/2/ + readOnly: true + move_battle_style_preferences: + type: array + items: + $ref: '#/components/schemas/NatureBattleStylePreference' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/NatureName' + readOnly: true + required: + - berries + - decreased_stat + - hates_flavor + - id + - increased_stat + - likes_flavor + - move_battle_style_preferences + - name + - names + - pokeathlon_stat_changes + NatureName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + NatureSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PaginatedAbilitySummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/AbilitySummary' + PaginatedBerryFirmnessSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/BerryFirmnessSummary' + PaginatedBerryFlavorSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/BerryFlavorSummary' + PaginatedBerrySummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/BerrySummary' + PaginatedCharacteristicSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/CharacteristicSummary' + PaginatedContestEffectSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/ContestEffectSummary' + PaginatedContestTypeSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/ContestTypeSummary' + PaginatedEggGroupSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/EggGroupSummary' + PaginatedEncounterConditionSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/EncounterConditionSummary' + PaginatedEncounterConditionValueSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/EncounterConditionValueSummary' + PaginatedEncounterMethodSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/EncounterMethodSummary' + PaginatedEvolutionChainSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/EvolutionChainSummary' + PaginatedEvolutionTriggerSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/EvolutionTriggerSummary' + PaginatedGenderSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/GenderSummary' + PaginatedGenerationSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/GenerationSummary' + PaginatedGrowthRateSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/GrowthRateSummary' + PaginatedItemAttributeSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/ItemAttributeSummary' + PaginatedItemCategorySummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/ItemCategorySummary' + PaginatedItemFlingEffectSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/ItemFlingEffectSummary' + PaginatedItemPocketSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/ItemPocketSummary' + PaginatedItemSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/ItemSummary' + PaginatedLanguageSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/LanguageSummary' + PaginatedLocationAreaSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/LocationAreaSummary' + PaginatedLocationSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/LocationSummary' + PaginatedMachineSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MachineSummary' + PaginatedMoveBattleStyleSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MoveBattleStyleSummary' + PaginatedMoveDamageClassSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MoveDamageClassSummary' + PaginatedMoveLearnMethodSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MoveLearnMethodSummary' + PaginatedMoveMetaAilmentSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MoveMetaAilmentSummary' + PaginatedMoveMetaCategorySummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MoveMetaCategorySummary' + PaginatedMoveSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MoveSummary' + PaginatedMoveTargetSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/MoveTargetSummary' + PaginatedNatureSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/NatureSummary' + PaginatedPalParkAreaSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PalParkAreaSummary' + PaginatedPokeathlonStatSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokeathlonStatSummary' + PaginatedPokedexSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokedexSummary' + PaginatedPokemonColorSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokemonColorSummary' + PaginatedPokemonFormSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokemonFormSummary' + PaginatedPokemonHabitatSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokemonHabitatSummary' + PaginatedPokemonShapeSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokemonShapeSummary' + PaginatedPokemonSpeciesSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesSummary' + PaginatedPokemonSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/PokemonSummary' + PaginatedRegionSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/RegionSummary' + PaginatedStatSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/StatSummary' + PaginatedSuperContestEffectSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/SuperContestEffectSummary' + PaginatedTypeSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/TypeSummary' + PaginatedVersionGroupSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/VersionGroupSummary' + PaginatedVersionSummaryList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=400&limit=100 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?offset=200&limit=100 + results: + type: array + items: + $ref: '#/components/schemas/VersionSummary' + PalParkAreaDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/PalParkAreaName' + readOnly: true + pokemon_encounters: + type: array + items: + type: object + required: + - base_score + - pokemon-species + - rate + properties: + base_score: + type: integer + format: int32 + examples: + - 50 + pokemon-species: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bulbasaur + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon-species/1/ + rate: + type: integer + format: int32 + examples: + - 30 + readOnly: true + required: + - id + - name + - names + - pokemon_encounters + PalParkAreaName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + PalParkAreaSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokeathlonStatDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + affecting_natures: + type: object + required: + - decrease + - increase + properties: + decrease: + type: array + items: + type: object + required: + - max_change + - nature + properties: + max_change: + type: integer + format: int32 + maximum: -1 + examples: + - -1 + nature: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - hardy + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/nature/1/ + increase: + type: array + items: + type: object + required: + - max_change + - nature + properties: + max_change: + type: integer + format: int32 + minimum: 1 + examples: + - 2 + nature: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - hardy + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/nature/1/ + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/PokeathlonStatName' + readOnly: true + required: + - affecting_natures + - id + - name + - names + PokeathlonStatName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + PokeathlonStatSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokedexDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + PokedexDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + is_main_series: + type: boolean + descriptions: + type: array + items: + $ref: '#/components/schemas/PokedexDescription' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/PokedexName' + readOnly: true + pokemon_entries: + type: array + items: + type: object + required: + - entry_number + - pokemon_species + properties: + entry_number: + type: integer + format: int32 + examples: + - 1 + pokemon_species: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bulbasaur + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon-species/1/ + readOnly: true + region: + $ref: '#/components/schemas/RegionSummary' + version_groups: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - the-teal-mask + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version-group/26/ + readOnly: true + required: + - descriptions + - id + - name + - names + - pokemon_entries + - region + - version_groups + PokedexName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + PokedexSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokemonColorDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/PokemonColorName' + readOnly: true + pokemon_species: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesSummary' + readOnly: true + required: + - id + - name + - names + - pokemon_species + PokemonColorName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + PokemonColorSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokemonDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + base_experience: + type: + - integer + - 'null' + height: + type: + - integer + - 'null' + is_default: + type: boolean + order: + type: + - integer + - 'null' + weight: + type: + - integer + - 'null' + abilities: + type: array + items: + type: object + required: + - ability + - is_hidden + - slot + properties: + ability: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - sand-veil + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/ability/8/ + is_hidden: + type: boolean + slot: + type: integer + format: int32 + examples: + - 1 + readOnly: true + past_abilities: + type: array + items: + type: object + required: + - abilities + - generation + properties: + abilities: + type: array + items: + type: object + required: + - ability + - is_hidden + - slot + properties: + ability: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - levitate + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/ability/26/ + is_hidden: + type: boolean + slot: + type: integer + format: int32 + examples: + - 1 + generation: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - generation-vi + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/generation/6/ + readOnly: true + forms: + type: array + items: + $ref: '#/components/schemas/PokemonFormSummary' + readOnly: true + game_indices: + type: array + items: + $ref: '#/components/schemas/PokemonGameIndex' + readOnly: true + held_items: + type: object + required: + - item + - version_details + properties: + item: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - soft-sand + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/item/214/ + version_details: + type: array + items: + type: object + required: + - rarity + - version + properties: + rarity: + type: integer + format: int32 + examples: + - 5 + version: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - diamond + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version/12/ + readOnly: true + location_area_encounters: + type: string + examples: + - https://pokeapi.co/api/v2/pokemon/1/encounters + readOnly: true + moves: + type: array + items: + type: object + required: + - move + - version_group_details + properties: + move: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - scratch + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/10/ + version_group_details: + type: array + items: + type: object + required: + - level_learned_at + - move_learn_method + - version_group + properties: + level_learned_at: + type: integer + format: int32 + examples: + - 1 + move_learn_method: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - level-up + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move-learn-method/1/ + version_group: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - red-blue + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version-group/1/ + readOnly: true + species: + $ref: '#/components/schemas/PokemonSpeciesSummary' + sprites: + type: object + properties: + front_default: + type: string + format: uri + exmaple: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/1.png + additionalProperties: + type: string + format: uri + nullable: true + examples: + - https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/1.png + examples: + - back_default: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/1.png + back_female: null + back_shiny: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/1.png + back_shiny_female: null + front_default: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png + front_female: null + front_shiny: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/1.png + front_shiny_female: null + readOnly: true + cries: + type: object + required: + - latest + - legacy + properties: + latest: + type: string + format: uri + examples: + - https://raw.githubusercontent.com/PokeAPI/cries/main/cries/pokemon/latest/50.ogg + legacy: + type: string + format: uri + examples: + - https://raw.githubusercontent.com/PokeAPI/cries/main/cries/pokemon/legacy/50.ogg + readOnly: true + stats: + type: array + items: + $ref: '#/components/schemas/PokemonStat' + readOnly: true + types: + type: array + items: + type: object + required: + - slot + - type + properties: + slot: + type: integer + format: int32 + examples: + - 1 + type: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - ghost + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/8/ + readOnly: true + past_types: + type: array + items: + type: object + required: + - generation + - types + properties: + generation: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - generation-v + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/generation/5/ + types: + type: array + items: + type: object + required: + - slot + - type + properties: + slot: + type: integer + format: int32 + examples: + - 1 + type: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - normal + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/1/ + readOnly: true + required: + - abilities + - cries + - forms + - game_indices + - held_items + - id + - location_area_encounters + - moves + - name + - past_abilities + - past_types + - species + - sprites + - stats + - types + PokemonDexEntry: + type: object + properties: + entry_number: + type: integer + pokedex: + $ref: '#/components/schemas/PokedexSummary' + required: + - entry_number + - pokedex + PokemonFormDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + order: + type: + - integer + - 'null' + form_order: + type: + - integer + - 'null' + is_default: + type: boolean + is_battle_only: + type: boolean + is_mega: + type: boolean + form_name: + type: string + maxLength: 30 + pokemon: + $ref: '#/components/schemas/PokemonSummary' + sprites: + type: object + properties: + default: + type: string + format: uri + examples: + - https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/412.png + additionalProperties: + type: string + format: uri + nullable: true + examples: + - https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/412.png + examples: + - back_default: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/412.png + back_female: null + back_shiny: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/412.png + back_shiny_female: null + front_default: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/412.png + front_female: null + front_shiny: https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/412.png + front_shiny_female: null + readOnly: true + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + form_names: + type: array + items: + type: object + required: + - language + - name + properties: + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + name: + type: string + examples: + - Plant Cloak + readOnly: true + names: + type: array + items: + type: object + required: + - language + - name + properties: + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + name: + type: string + examples: + - Plant Cloak + readOnly: true + types: + type: array + items: + type: object + required: + - slot + - type + properties: + slot: + type: integer + format: int32 + examples: + - 1 + type: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bug + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/7/ + readOnly: true + required: + - form_name + - form_names + - id + - name + - names + - pokemon + - sprites + - types + - version_group + PokemonFormSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokemonGameIndex: + type: object + properties: + game_index: + type: integer + version: + $ref: '#/components/schemas/VersionSummary' + required: + - game_index + - version + PokemonHabitatDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/PokemonHabitatName' + readOnly: true + pokemon_species: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesSummary' + readOnly: true + required: + - id + - name + - names + - pokemon_species + PokemonHabitatName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + PokemonHabitatSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokemonShapeDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + awesome_names: + type: array + items: + type: object + required: + - awesome_name + - language + properties: + awesome_name: + type: string + examples: + - Pomaceous + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + readOnly: true + names: + type: array + items: + type: object + required: + - url + - name + properties: + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + name: + type: string + examples: + - Ball + readOnly: true + pokemon_species: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesSummary' + readOnly: true + required: + - awesome_names + - id + - name + - names + - pokemon_species + PokemonShapeSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokemonSpeciesDescription: + type: object + properties: + description: + type: string + maxLength: 1000 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + PokemonSpeciesDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + order: + type: + - integer + - 'null' + gender_rate: + type: + - integer + - 'null' + capture_rate: + type: + - integer + - 'null' + base_happiness: + type: + - integer + - 'null' + is_baby: + type: boolean + is_legendary: + type: boolean + is_mythical: + type: boolean + hatch_counter: + type: + - integer + - 'null' + has_gender_differences: + type: boolean + forms_switchable: + type: boolean + growth_rate: + $ref: '#/components/schemas/GrowthRateSummary' + pokedex_numbers: + type: array + items: + $ref: '#/components/schemas/PokemonDexEntry' + readOnly: true + egg_groups: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - monster + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/egg-group/1/ + readOnly: true + color: + $ref: '#/components/schemas/PokemonColorSummary' + shape: + $ref: '#/components/schemas/PokemonShapeSummary' + evolves_from_species: + $ref: '#/components/schemas/PokemonSpeciesSummary' + evolution_chain: + $ref: '#/components/schemas/EvolutionChainSummary' + habitat: + $ref: '#/components/schemas/PokemonHabitatSummary' + generation: + $ref: '#/components/schemas/GenerationSummary' + names: + type: array + items: + type: object + required: + - language + - name + properties: + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + name: + type: string + examples: + - bulbasaur + readOnly: true + pal_park_encounters: + type: array + items: + type: object + required: + - area + - base_score + - rate + properties: + area: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - field + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pal-park-area/2/ + base_score: + type: integer + format: int32 + examples: + - 50 + rate: + type: integer + format: int32 + examples: + - 30 + readOnly: true + form_descriptions: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesDescription' + readOnly: true + flavor_text_entries: + type: array + items: + $ref: '#/components/schemas/PokemonSpeciesFlavorText' + readOnly: true + genera: + type: array + items: + type: object + required: + - genus + - language + properties: + genus: + type: string + examples: + - Seed Pokémon + language: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - en + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/language/9/ + readOnly: true + varieties: + type: array + items: + type: object + required: + - is_default + - pokemon + properties: + is_default: + type: boolean + pokemon: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bulbasaur + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokemon/1/ + readOnly: true + required: + - color + - egg_groups + - evolution_chain + - evolves_from_species + - flavor_text_entries + - form_descriptions + - genera + - generation + - growth_rate + - habitat + - id + - name + - names + - pal_park_encounters + - pokedex_numbers + - shape + - varieties + PokemonSpeciesFlavorText: + type: object + properties: + flavor_text: + type: string + language: + $ref: '#/components/schemas/LanguageSummary' + version: + $ref: '#/components/schemas/VersionSummary' + required: + - flavor_text + - language + - version + PokemonSpeciesSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + PokemonStat: + type: object + properties: + base_stat: + type: integer + effort: + type: integer + stat: + $ref: '#/components/schemas/StatSummary' + required: + - base_stat + - effort + - stat + PokemonSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + RegionDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + locations: + type: array + items: + $ref: '#/components/schemas/LocationSummary' + readOnly: true + main_generation: + allOf: + - $ref: '#/components/schemas/GenerationSummary' + readOnly: true + names: + type: array + items: + $ref: '#/components/schemas/RegionName' + readOnly: true + pokedexes: + type: array + items: + $ref: '#/components/schemas/PokedexSummary' + readOnly: true + version_groups: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - red-blue + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/version-group/1/ + readOnly: true + required: + - id + - locations + - main_generation + - name + - names + - pokedexes + - version_groups + RegionName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + RegionSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + StatDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + game_index: + type: integer + is_battle_only: + type: boolean + affecting_moves: + type: object + required: + - decrease + - increase + properties: + increase: + type: array + items: + type: object + required: + - change + - move + properties: + change: + type: integer + format: int32 + examples: + - -1 + move: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - swords-dance + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/14/ + decrease: + type: array + items: + type: object + required: + - change + - move + properties: + change: + type: integer + format: int32 + examples: + - 5 + move: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - growl + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move/45/ + readOnly: true + affecting_natures: + type: object + required: + - increase + - decrease + properties: + increase: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - lonely + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/nature/6/ + decrease: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bold + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/nature/2/ + readOnly: true + characteristics: + type: array + items: + $ref: '#/components/schemas/CharacteristicSummary' + readOnly: true + move_damage_class: + $ref: '#/components/schemas/MoveDamageClassSummary' + names: + type: array + items: + $ref: '#/components/schemas/StatName' + readOnly: true + required: + - affecting_moves + - affecting_natures + - characteristics + - game_index + - id + - move_damage_class + - name + - names + StatName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + StatSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + SuperContestEffectDetail: + type: object + properties: + id: + type: integer + readOnly: true + appeal: + type: integer + flavor_text_entries: + type: array + items: + $ref: '#/components/schemas/SuperContestEffectFlavorText' + readOnly: true + moves: + type: array + items: + $ref: '#/components/schemas/MoveSummary' + readOnly: true + required: + - appeal + - flavor_text_entries + - id + - moves + SuperContestEffectFlavorText: + type: object + properties: + flavor_text: + type: string + maxLength: 500 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - flavor_text + - language + SuperContestEffectSummary: + type: object + properties: + url: + type: string + format: uri + readOnly: true + required: + - url + TypeDetail: + type: object + description: Serializer for the Type resource + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + damage_relations: + type: object + required: + - no_damage_to + - half_damage_to + - double_damage_to + - no_damage_from + - half_damage_from + - double_damage_from + properties: + no_damage_to: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - flying + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/3/ + half_damage_to: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bug + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/7/ + double_damage_to: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - poison + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/4/ + no_damage_from: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - electric + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/13/ + half_damage_from: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - poison + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/4/ + double_damage_from: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - water + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/11/ + readOnly: true + past_damage_relations: + type: array + items: + type: object + required: + - generation + - damage_relations + properties: + generation: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - generation-v + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/generation/5/ + damage_relations: + type: object + required: + - no_damage_to + - half_damage_to + - double_damage_to + - no_damage_from + - half_damage_from + - double_damage_from + properties: + no_damage_to: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - flying + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/3/ + half_damage_to: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - bug + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/7/ + double_damage_to: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - poison + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/4/ + no_damage_from: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - electric + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/13/ + half_damage_from: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - poison + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/4/ + double_damage_from: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - water + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/type/11/ + readOnly: true + game_indices: + type: array + items: + $ref: '#/components/schemas/TypeGameIndex' + readOnly: true + generation: + $ref: '#/components/schemas/GenerationSummary' + move_damage_class: + $ref: '#/components/schemas/MoveDamageClassSummary' + names: + type: array + items: + $ref: '#/components/schemas/AbilityName' + readOnly: true + pokemon: + type: array + items: + type: object + required: + - potency + - flavor + properties: + slot: + type: integer + examples: + - 1 + pokemon: + type: object + require: + - name + - url + properties: + name: + type: string + description: The name of the pokemon + examples: + - sandshrew + url: + type: string + format: uri + description: The URL to get more information about the pokemon + examples: + - https://pokeapi.co/api/v2/pokemon/27/ + readOnly: true + moves: + type: array + items: + $ref: '#/components/schemas/MoveSummary' + readOnly: true + required: + - damage_relations + - game_indices + - generation + - id + - move_damage_class + - moves + - name + - names + - past_damage_relations + - pokemon + TypeGameIndex: + type: object + properties: + game_index: + type: integer + generation: + $ref: '#/components/schemas/GenerationSummary' + required: + - game_index + - generation + TypeSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + VersionDetail: + type: object + description: |- + Should have a link to Version Group info but the Circular + dependency and compilation order fight eachother and I'm + not sure how to add anything other than a hyperlink + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + names: + type: array + items: + $ref: '#/components/schemas/VersionName' + readOnly: true + version_group: + $ref: '#/components/schemas/VersionGroupSummary' + required: + - id + - name + - names + - version_group + VersionGroupDetail: + type: object + properties: + id: + type: integer + readOnly: true + name: + type: string + maxLength: 100 + order: + type: + - integer + - 'null' + generation: + $ref: '#/components/schemas/GenerationSummary' + move_learn_methods: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - level-up + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/move-learn-method/1/ + readOnly: true + pokedexes: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - kanto + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/pokedex/2/ + readOnly: true + regions: + type: array + items: + type: object + required: + - name + - url + properties: + name: + type: string + examples: + - kanto + url: + type: string + format: uri + examples: + - https://pokeapi.co/api/v2/region/1/ + readOnly: true + versions: + type: array + items: + $ref: '#/components/schemas/VersionSummary' + readOnly: true + required: + - generation + - id + - move_learn_methods + - name + - pokedexes + - regions + - versions + VersionGroupSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + VersionName: + type: object + properties: + name: + type: string + maxLength: 100 + language: + $ref: '#/components/schemas/LanguageSummary' + required: + - language + - name + VersionSummary: + type: object + properties: + name: + type: string + maxLength: 100 + url: + type: string + format: uri + readOnly: true + required: + - name + - url + securitySchemes: + basicAuth: + type: http + scheme: basic + cookieAuth: + type: apiKey + in: cookie + name: sessionid +servers: +- url: https://pokeapi.co +tags: +- name: pokemon + description: Pokémon are the creatures that inhabit the world of the Pokémon games. + They can be caught using Pokéballs and trained by battling with other Pokémon. + Each Pokémon belongs to a specific species but may take on a variant which makes + it differ from other Pokémon of the same species, such as base stats, available + abilities and typings. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_(species)) + for greater detail. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon +- name: evolution + description: Evolution is a process in which a Pokémon changes into a different + species of Pokémon. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/Evolution +- name: berries + description: Berries can be soft or hard. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Category:Berries_by_firmness) + for greater detail. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/Berry +- name: items + description: An item is an object in the games which the player can pick up, keep + in their bag, and use in some manner. They have various uses, including healing, + powering up, helping catch Pokémon, or to access a new area. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/Item +- name: machines + description: Machines are the representation of items that teach moves to Pokémon. + They vary from version to version, so it is not certain that one specific TM or + HM corresponds to a single Machine. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/TM +- name: location + description: Locations that can be visited within the games. Locations make up sizable + portions of regions, like cities or routes. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/List_of_locations_by_index_number +- name: contest + description: Pokémon Contests are a type of competition often contrasted with Pokémon + battles and held in Contest Halls + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_Contest +- name: moves + description: Moves are the skills of Pokémon in battle. In battle, a Pokémon uses + one move each turn. Some moves (including those learned by Hidden Machine) can + be used outside of battle as well, usually for the purpose of removing obstacles + or exploring new areas. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/List_of_locations_by_name +- name: encounters +- name: games + description: The Pokémon games are all video games in the Pokémon franchise. + externalDocs: + description: Find more info here + url: https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_games +- name: utility +externalDocs: + url: https://pokeapi.co/docs/v2 diff --git a/pokemon_v2/README.md b/pokemon_v2/README.md index aacb4cba..3bc00d0e 100644 --- a/pokemon_v2/README.md +++ b/pokemon_v2/README.md @@ -1,3182 +1 @@ - -# Pokeapi V2 API Reference - - - - - - - - - - - - -
API Endpoints
- - - - - -
- -## Resource Lists -Calling any api endpoint without a resource id or name will return a paginated list of available resources for that api. By default, a list 'page' will contain up to 20 resources. If you would like to change this just add a 'limit' query param, e.g. `limit=60`. - -### GET api/v2/{endpoint} - -###### example response for non-named resources - -```json -{ - "count": 365, - "next": "http://pokeapi.co/api/v2/evolution-chain/?limit=20&offset=20", - "previous": null, - "results": [{ - "url": "http://pokeapi.co/api/v2/evolution-chain/1/" - }] -} -``` - -#### APIResourceList - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| count | The total number of resources available from this api | integer | -| next | The url for the next 'page' in the list | string | -| previous | The url for the previous page in the list | boolean | -| results | The list of non-named api resources | list [APIResource](#apiresource) | - - -###### example response for named resources - -```json -{ - "count": 248, - "next": "http://pokeapi.co/api/v2/ability/?limit=20&offset=20", - "previous": null, - "results": [{ - "name": "stench", - "url": "http://pokeapi.co/api/v2/ability/1/" - }] -} -``` - -#### NamedAPIResourceList - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| count | The total number of resources available from this api | integer | -| next | The url for the next 'page' in the list | string | -| previous | The url for the previous page in the list | boolean | -| results | The list of named api resources | list [NamedAPIResource](#namedapiresource) | - - - -

Berries

- -## Berries -Berries are small fruits that can provide HP and status condition restoration, stat enhancement, and even damage negation when eaten by pokemon. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Berry) for greater detail. - -### GET api/v2/berry/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "cheri", - "growth_time": 3, - "max_harvest": 5, - "natural_gift_power": 60, - "size": 20, - "smoothness": 25, - "soil_dryness": 15, - "firmness": { - "name": "soft", - "url": "http://pokeapi.co/api/v2/berry-firmness/2/" - }, - "flavors": [{ - "potency": 10, - "flavor": { - "name": "spicy", - "url": "http://pokeapi.co/api/v2/berry-flavor/1/" - } - }], - "item": { - "name": "cheri-berry", - "url": "http://pokeapi.co/api/v2/item/126/" - }, - "natural_gift_type": { - "name": "fire", - "url": "http://pokeapi.co/api/v2/type/10/" - } -} - -``` - -###### response models - -#### Berry - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this berry resource | integer | -| name | The name for this berry resource | string | -| growth_time | Time it takes the tree to grow one stage, in hours. Berry trees go through four of these growth stages before they can be picked. | integer | -| max_harvest | The maximum number of these berries that can grow on one tree in Generation IV | integer | -| natural_gift_power | The power of the move "Natural Gift" when used with this Berry | integer | -| size | The size of this Berry, in millimeters | integer | -| smoothness | The smoothness of this Berry, used in making Pokéblocks or Poffins | integer | -| soil_dryness | The speed at which this Berry dries out the soil as it grows. A higher rate means the soil dries more quickly. | integer | -| firmness | The firmness of this berry, used in making Pokéblocks or Poffins | [NamedAPIResource](#namedapiresource) ([BerryFirmness](#berry-firmnesses)) | -| flavors | A list of references to each flavor a berry can have and the potency of each of those flavors in regard to this berry | list [BerryFlavorMap](#berryflavormap) | -| item | Berries are actually items. This is a reference to the item specific data for this berry. | [NamedAPIResource](#namedapiresource) ([Item](#items)) | -| natural_gift_type | The Type the move "Natural Gift" has when used with this Berry | [NamedAPIResource](#namedapiresource) ([Type](#types)) | - -#### BerryFlavorMap - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| potency | How powerful the referenced flavor is for this berry | integer | -| flavor | The referenced berry flavor | [NamedAPIResource](#namedapiresource) ([BerryFlavor](#berry-flavors)) | - - -## Berry Firmnesses - -### GET api/v2/berry-firmness/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "very-soft", - "berries": [{ - "name": "pecha", - "url": "http://pokeapi.co/api/v2/berry/3/" - }], - "names": [{ - "name": "Very Soft", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} - -``` - -###### response models - -#### BerryFirmness - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this berry firmness resource | integer | -| name | The name for this berry firmness resource | string | -| berries | A list of the berries with this firmness | list [NamedAPIResource](#namedapiresource) ([Berry](#berries)) | -| names | The name of this berry firmness listed in different languages | list [Name](#resourcename) | - - - -## Berry Flavors -Flavors determine whether a pokemon will benefit or suffer from eating a berry based on their [nature](#natures). Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Flavor) for greater detail. - -### GET api/v2/berry-flavor/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "spicy", - "berries": [{ - "potency": 10, - "berry": { - "name": "rowap", - "url": "http://pokeapi.co/api/v2/berry/64/" - } - }], - "contest_type": { - "name": "cool", - "url": "http://pokeapi.co/api/v2/contest-type/1/" - }, - "names": [{ - "name": "Spicy", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} - -``` - -###### response models - -#### BerryFlavor - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this berry flavor resource | integer | -| name | The name for this berry flavor resource | string | -| berries | A list of the berries with this flavor | list [FlavorBerryMap](#flavorberrymap) | -| contest_type | The contest type that correlates with this berry flavor | [NamedAPIResource](#namedapiresource) ([ContestType](#contest-types)) | -| names | The name of this berry flavor listed in different languages | list [Name](#resourcename) | - -#### FlavorBerryMap - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| potency | How powerful the referenced flavor is for this berry | integer | -| berry | The berry with the referenced flavor | [NamedAPIResource](#namedapiresource) ([Berry](#berry)) | - - - -

Contests

- -## Contest Types -Contest types are categories judges used to weigh a pokémon's condition in pokemon contests. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Contest_condition) for greater detail. - -### GET api/v2/contest-type/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "cool", - "berry_flavor": { - "name": "spicy", - "url": "http://pokeapi.co/api/v2/berry-flavor/1/" - }, - "names": [{ - "name": "Cool", - "color": "Red", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} - -``` - -###### response models - -#### ContestType - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this contest type resource | integer | -| name | The name for this contest type resource | string | -| berry_flavor | The berry flavor that correlates with this contest type | [NamedAPIResource](#namedapiresource) ([BerryFlavor](#berry-flavors)) | -| names | The name of this contest type listed in different languages | list [Name](#resourcename) | - - - -## Contest Effects -Contest effects refer to the effects of moves when used in contests. - -### GET api/v2/contest-effect/{id} - -###### example response - -```json -{ - "id": 1, - "appeal": 4, - "jam": 0, - "effect_entries": [{ - "effect": "Gives a high number of appeal points wth no other effects.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "flavor_text_entries": [{ - "flavor_text": "A highly appealing move.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} - -``` - -###### response models - -#### ContestEffect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this contest type resource | integer | -| appeal | The base number of hearts the user of this move gets | string | -| jam | The base number of hearts the user's opponent loses | integer | -| effect_entries | The result of this contest effect listed in different languages | list [Effect](#effect) | -| flavor_text_entries | The flavor text of this contest effect listed in different languages | list [FlavorText](#flavortext) | - - -## Super Contest Effects -Super contest effects refer to the effects of moves when used in super contests. - -### GET api/v2/super-contest-effect/{id} - -###### example response - -```json -{ - "id": 1, - "appeal": 2, - "flavor_text_entries": [{ - "flavor_text": "Enables the user to perform first in the next turn.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "moves": [{ - "name": "agility", - "url": "http://pokeapi.co/api/v2/move/97/" - }] -} -``` - -###### response models - -#### SuperContestEffect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this super contest effect resource | integer | -| appeal | The level of appeal this super contest effect has | string | -| flavor_text_entries | The flavor text of this super contest effect listed in different languages | list [FlavorText](#flavortext) | -| moves | A list of moves that have the effect when used in super contests | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | - - - -

Encounters

- -## Encounter Methods -Methods by which the player can encounter pokémon in the wild, e.g., walking in tall grass. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Wild_Pokémon) for greater detail. - -### GET api/v2/encounter-method/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "walk", - "order": 1, - "names": [{ - "name": "Walking in tall grass or a cave", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} - -``` - -###### response models - -#### EncounterMethod - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this encounter method resource | integer | -| name | The name for this encounter method resource | string | -| order | A good value for sorting | integer | -| names | The name of this encounter method listed in different languages | list [Name](#resourcename) | - - - -## Encounter Conditions -Conditions which affect what pokémon might appear in the wild, e.g., day or night. - -### GET api/v2/encounter-condition/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "swarm", - "values": [{ - "name": "swarm-yes", - "url": "http://pokeapi.co/api/v2/encounter-condition-value/1/" - }, { - "name": "swarm-no", - "url": "http://pokeapi.co/api/v2/encounter-condition-value/2/" - }], - "names": [{ - "name": "Schwarm", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }] -} - -``` - -###### response models - -#### EncounterCondition - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this encounter condition resource | integer | -| name | The name for this encounter condition resource | string | -| names | The name of this encounter method listed in different languages | list [Name](#resourcename) | -| values | A list of possible values for this encounter condition | list [NamedAPIResource](#namedapiresource) ([EncounterConditionValue](#encounter-condition-values)) | - - - -## Encounter Condition Values -Encounter condition values are the various states that an encounter condition can have, i.e., Time of day can be either day or night. - -### GET api/v2/encounter-condition-value/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "swarm-yes", - "condition": { - "name": "swarm", - "url": "http://pokeapi.co/api/v2/encounter-condition/1/" - }, - "names": [{ - "name": "Während eines Schwarms", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }] -} - -``` - -###### response models - -#### EncounterConditionValue - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this encounter condition value resource | integer | -| name | The name for this encounter condition value resource | string | -| condition | The condition this encounter condition value pertains to | list [NamedAPIResource](#namedapiresource) ([EncounterCondition](#encounter-conditions)) | -| names | The name of this encounter condition value listed in different languages | list [Name](#resourcename) | - - - -

Evolution

- -## Evolution Chains -Evolution chains are essentially family trees. They start with the lowest stage within a family and detail evolution conditions for each as well as pokémon they can evolve into up through the hierarchy. - -### GET api/v2/evolution-chain/{id} - -###### example response - -```json -{ - "id": 7, - "baby_trigger_item": null, - "chain": { - "is_baby": false, - "species": { - "name": "rattata", - "url": "http://pokeapi.co/api/v2/pokemon-species/19/" - }, - "evolution_details": null, - "evolves_to": [{ - "is_baby": false, - "species": { - "name": "raticate", - "url": "http://pokeapi.co/api/v2/pokemon-species/20/" - }, - "evolution_details": { - "item": null, - "trigger": { - "name": "level-up", - "url": "http://pokeapi.co/api/v2/evolution-trigger/1/" - }, - "gender": null, - "held_item": null, - "known_move": null, - "known_move_type": null, - "location": null, - "min_level": 20, - "min_happiness": null, - "min_beauty": null, - "min_affection": null, - "needs_overworld_rain": false, - "party_species": null, - "party_type": null, - "relative_physical_stats": null, - "time_of_day": "", - "trade_species": null, - "turn_upside_down": false - }, - "evolves_to": [] - }] - } -} -``` - -###### response models - -#### EvolutionChain - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this evolution chain resource | integer | -| baby_trigger_item | The item that a pokémon would be holding when mating that would trigger the egg hatching a baby pokémon rather than a basic pokémon | [NamedAPIResource](#namedapiresource) ([Item](#items)) | -| chain | The base chain link object. Each link contains evolution details for a pokémon in the chain. Each link references the next pokémon in the natural evolution order. | [ChainLink](#chainlink) | - -#### ChainLink - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| is_baby | Whether or not this link is for a baby pokémon. This would only ever be true on the base link. | boolean | -| species | The pokemon species at this point in the evolution chain | [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | -| evolution_details | All details regarding the specific details of the referenced pokémon species evolution | [EvolutionDetail](#evolutiondetail) | -| evolves_to | A List of chain objects. | list [ChainLink](#chainlink) | - -#### EvolutionDetail - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| item | The item required to cause evolution this into pokémon species | [NamedAPIResource](#namedapiresource) ([Item](#items)) | -| trigger | The type of event that triggers evolution into this pokémon species | [NamedAPIResource](#namedapiresource) ([EvolutionTrigger](#evolution-triggers)) | -| gender | The gender the evolving pokémon species must be in order to evolve into this pokémon species | [NamedAPIResource](#namedapiresource) ([Gender](#genders)) | -| held_item | The item the evolving pokémon species must be holding during the evolution trigger event to evolve into this pokémon species | [NamedAPIResource](#namedapiresource) ([Item](#items)) | -| known_move | The move that must be known by the evolving pokémon species during the evolution trigger event in order to evolve into this pokémon species | [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| known_move_type | The evolving pokémon species must know a move with this type during the evolution trigger event in order to evolve into this pokémon species | [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| location | The location the evolution must be triggered at. | [NamedAPIResource](#namedapiresource) ([Location](#locations)) | -| min_level | The minimum required level of the evolving pokémon species to evolve into this pokémon species | integer | -| min_happiness | The minimum required level of happiness the evolving pokémon species to evolve into this pokémon species | integer | -| min_beauty | The minimum required level of beauty the evolving pokémon species to evolve into this pokémon species | integer | -| min_affection | The minimum required level of affection the evolving pokémon species to evolve into this pokémon species | integer | -| needs_overworld_rain | Whether or not it must be raining in the overworld to cause evolution this pokémon species | boolean | -| party_species | The pokémon species that must be in the players party in order for the evolving pokémon species to evolve into this pokémon species | [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | -| party_type | The player must have a pokémon of this type in their party during the evolution trigger event in order for the evolving pokémon species to evolve into this pokémon species | [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| relative_physical_stats | The required relation between the Pokémon's Attack and Defense stats. 1 means Attack > Defense. 0 means Attack = Defense. -1 means Attack < Defense. | integer | -| time_of_day | The required time of day. Day or night. | string | -| trade_species | Pokémon species for which this one must be traded. | [NamedAPIResource](#namedapiresource) ([Pokémon Species](#pokemon-species)) | -| turn_upside_down | Whether or not the 3DS needs to be turned upside-down as this Pokémon levels up. | boolean | - - -## Evolution Triggers -Evolution triggers are the events and conditions that cause a pokémon to evolve. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Methods_of_evolution) for greater detail. - -### GET api/v2/evolution-trigger/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "level-up", - "names": [{ - "name": "Level up", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "pokemon_species": [{ - "name": "ivysaur", - "url": "http://pokeapi.co/api/v2/pokemon-species/2/" - }] -} - -``` - -###### response models - -#### EvolutionTrigger - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this evolution trigger resource | integer | -| name | The name for this evolution trigger resource | string | -| names | The name of this evolution trigger listed in different languages | list [Name](#resourcename) | -| pokemon_species | A list of pokémon species that result from this evolution trigger | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - - - -

Games

- -## Generations -A generation is a grouping of the Pokémon games that separates them based on the Pokémon they include. In each generation, a new set of Pokémon, Moves, Abilities and Types that did not exist in the previous generation are released. - -### GET api/v2/generation/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "generation-i", - "abilities": [], - "main_region": { - "name": "kanto", - "url": "http://pokeapi.co/api/v2/region/1/" - }, - "moves": [{ - "name": "pound", - "url": "http://pokeapi.co/api/v2/move/1/" - }], - "names": [{ - "name": "Generation I", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "pokemon_species": [{ - "name": "bulbasaur", - "url": "http://pokeapi.co/api/v2/pokemon-species/1/" - }], - "types": [{ - "name": "normal", - "url": "http://pokeapi.co/api/v2/type/1/" - }], - "version_groups": [{ - "name": "red-blue", - "url": "http://pokeapi.co/api/v2/version-group/1/" - }] -} - -``` - -###### response models - -#### Generation - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this generation resource | integer | -| name | The name for this generation resource | string | -| abilities | A list of abilities that were introduced in this generation | list [NamedAPIResource](#namedapiresource) ([Ability](#abilities)) | -| names | The name of this generation listed in different languages | list [Name](#resourcename) | -| main_region | The main region travelled in this generation | [NamedAPIResource](#namedapiresource) ([Region](#regions)) | -| moves | A list of moves that were introduced in this generation | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| pokemon_species | A list of pokémon species that were introduced in this generation | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | -| types | A list of types that were introduced in this generation | list [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| version_groups | A list of version groups that were introduced in this generation | list [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - - - -## Pokedexes -A Pokédex is a handheld electronic encyclopedia device; one which is capable of recording and retaining information of the various Pokémon in a given region with the exception of the national dex and some smaller dexes related to portions of a region. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pokedex) for greater detail. (Note: no official plural of 'pokédex' is known, 'standard' -(e)s is used here) - -### GET api/v2/pokedex/{id or name} - -###### example response - -```json -{ - "id": 2, - "name": "kanto", - "is_main_series": true, - "descriptions": [{ - "description": "Rot/Blau/Gelb Kanto Dex", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "names": [{ - "name": "Kanto", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "pokemon_entries": [{ - "entry_number": 1, - "pokemon_species": { - "name": "bulbasaur", - "url": "http://pokeapi.co/api/v2/pokemon-species/1/" - } - }], - "region": { - "name": "kanto", - "url": "http://pokeapi.co/api/v2/region/1/" - }, - "version_groups": [{ - "name": "red-blue", - "url": "http://pokeapi.co/api/v2/version-group/1/" - }] -} -``` - -###### response models - -#### Pokedex - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokédex resource | integer | -| name | The name for this pokédex resource | string | -| is_main_series | Whether or not this pokédex originated in the main series of the video games | boolean | -| descriptions | The description of this pokédex listed in different languages | list [Description](#description) | -| names | The name of this pokédex listed in different languages | list [Name](#resourcename) | -| pokemon_entries | A list of pokémon catalogued in this pokédex and their indexes | list [PokemonEntry](#pokemonentry) | -| region | The region this pokédex catalogues pokémon for | [NamedAPIResource](#namedapiresource) ([Region](#regions)) | -| version_groups | A list of version groups this pokédex is relevent to | list [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - -#### PokemonEntry - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| entry_number | The index of this pokémon species entry within the pokédex | integer | -| pokemon_species | The pokémon species being encountered | [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - - - -## Versions -Versions of the games, e.g., Red, Blue or Yellow. - -### GET api/v2/version/{id or name} - -###### example response - -```json - -{ - "id": 1, - "name": "red", - "names": [{ - "name": "Rot", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "version_group": { - "name": "red-blue", - "url": "http://pokeapi.co/api/v2/version-group/1/" - } -} -``` - -###### response models - -#### Version - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this version resource | integer | -| name | The name for this version resource | string | -| names | The name of this version listed in different languages | list [Name](#resourcename) | -| version_group | The version group this version belongs to | [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - - -## Version Groups -Version groups categorize highly similar versions of the games. - -### GET api/v2/version-group/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "red-blue", - "order": 1, - "generation": { - "name": "generation-i", - "url": "http://pokeapi.co/api/v2/generation/1/" - }, - "move_learn_methods": [{ - "name": "level-up", - "url": "http://pokeapi.co/api/v2/move-learn-method/1/" - }], - "pokedexes": [{ - "name": "kanto", - "url": "http://pokeapi.co/api/v2/pokedex/2/" - }], - "regions": [{ - "name": "kanto", - "url": "http://pokeapi.co/api/v2/region/1/" - }], - "versions": [{ - "name": "red", - "url": "http://pokeapi.co/api/v2/version/1/" - }] -} -``` - -###### response models - -#### VersionGroup - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this version group resource | integer | -| name | The name for this version group resource | string | -| order | Order for sorting. Almost by date of release, except similar versions are grouped together. | integer | -| generation | The generation this version was introduced in | list [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| move_learn_methods | A list of methods in which pokemon can learn moves in this version group | list [NamedAPIResource](#namedapiresource) ([MoveLearnMethod](#move-learn-methods)) | -| names | The name of this version group listed in different languages | list [Name](#resourcename) | -| pokedexes | A list of pokedexes introduces in this version group | list [NamedAPIResource](#namedapiresource) ([Pokedex](#pokedexes)) | -| regions | A list of regions that can be visited in this version group | list [NamedAPIResource](#namedapiresource) ([Region](#regions)) | -| versions | The versions this version group owns | list [NamedAPIResource](#namedapiresource) ([Version](#versions)) | - - -

Items

- -## Items -An item is an object in the games which the player can pick up, keep in their bag, and use in some manner. They have various uses, including healing, powering up, helping catch Pokémon, or to access a new area. - -### GET api/v2/item/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "master-ball", - "cost": 0, - "fling_power": 10, - "fling_effect": { - "name":"flinch", - "url":"http://pokeapi.co/api/v2/item-fling-effect/7/" - }, - "attributes": [{ - "name": "holdable", - "url": "http://pokeapi.co/api/v2/item-attribute/5/" - }], - "category": { - "name": "standard-balls", - "url": "http://pokeapi.co/api/v2/item-category/34/" - }, - "effect_entries": [{ - "effect": "Used in battle\n: [Catches]{mechanic:catch} a wild Pokémon without fail.\n\n If used in a trainer battle, nothing happens and the ball is lost.", - "short_effect": "Catches a wild Pokémon every time.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "flavor_text_entries": [{ - "text": "野生の ポケモンを 必ず\n捕まえることが できる\n最高 性能の ボール。", - "version_group": { - "name": "x-y", - "url": "http://pokeapi.co/api/v2/version-group/15/" - }, - "language": { - "name": "ja-kanji", - "url": "http://pokeapi.co/api/v2/language/11/" - } - }], - "game_indices": [{ - "game_index": 1, - "generation": { - "name": "generation-vi", - "url": "http://pokeapi.co/api/v2/generation/6/" - } - }], - "names": [{ - "name": "Master Ball", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "held_by_pokemon": [{ - "pokemon": { - "name": "chansey", - "url": "http://pokeapi.co/api/v2/pokemon/113/" - }, - "version_details": [{ - "rarity": 50, - "version": { - "name": "soulsilver", - "url": "http://pokeapi.co/api/v2/version/16/" - } - }] - }], - "baby_trigger_for": { - "url":"http://pokeapi.co/api/v2/evolution-chain/1/" - } -} -``` - -###### response models - -#### Item - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this item resource | integer | -| name | The name for this item resource | string | -| cost | The price of this item in stores | integer | -| fling_power | The power of the move Fling when used with this item. | integer | -| fling_effect | The effect of the move Fling when used with this item | [ItemFlingEffect](#item-fling-effects) | -| attributes | A list of attributes this item has | list [NamedAPIResource](#namedapiresource) ([ItemAttribute](#item-attributes)) | -| category | The category of items this item falls into | [ItemCategory](#item-categories) | -| effect_entries | The effect of this ability listed in different languages | list [VerboseEffect](#verboseeffect) | -| flavor_text_entries | The flavor text of this ability listed in different languages | list [VersionGroupFlavorText](#versiongroupflavortext) | -| game_indices | A list of game indices relevent to this item by generation | list [GenerationGameIndex](#generationgameindex) | -| names | The name of this item listed in different languages | list [Name](#resourcename) | -| held_by_pokemon | A list of pokémon that might be found in the wild holding this item | list [HeldByPokemon](#heldbypokemon) | -| baby_trigger_for | An evolution chain this item requires to produce a bay during mating | list [APIResource](#apiresource) ([EvolutionChain](#evolution-chains)) | - -#### HeldByPokemon - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| pokemon | The pokemon who might be holding the item | [NamedAPIResource](#namedapiresource) ([Pokemon](#pokemon)) | -| version_details | Details on chance of the pokemon having the item based on version | list [VersionDetails](#helditemversiondetails) | - -#### HeldItemVersionDetails - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| rarity | The chance of the pokemon holding the item | integer | -| version | The version the rarity applies | [NamedAPIResource](#namedapiresource) ([Version](#version)) | -## Item Attributes -Item attributes define particular aspects of items, e.g. "usable in battle" or "consumable". - -### GET api/v2/item-attribute/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "countable", - "descriptions": [{ - "description": "Has a count in the bag", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "items": [{ - "name": "master-ball", - "url": "http://pokeapi.co/api/v2/item/1/" - }], - "names": [{ - "name": "Countable", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} -``` - -###### response models - -#### ItemAttribute - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this item attribute resource | integer | -| name | The name for this item attribute resource | string | -| items | A list of items that have this attribute | list [NamedAPIResource](#namedapiresource) ([Item](#items)) | -| names | The name of this item attribute listed in different languages | list [Name](#resourcename) | -| descriptions | The description of this item attribute listed in different languages | list [Description](#description) | - - -## Item Categories -Item categories determine where items will be placed in the players bag. - -### GET api/v2/item-category/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "stat-boosts", - "items": [{ - "name": "guard-spec", - "url": "http://pokeapi.co/api/v2/item/55/" - }], - "names": [{ - "name": "Stat boosts", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "pocket": { - "name": "battle", - "url": "http://pokeapi.co/api/v2/item-pocket/7/" - } -} -``` - -###### response models - -#### ItemCategory - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this item category resource | integer | -| name | The name for this item category resource | string | -| items | A list of items that are a part of this category | list [NamedAPIResource](#namedapiresource) ([Item](#items)) | -| names | The name of this item category listed in different languages | list [Name](#resourcename) | -| pocket | The pocket items in this category would be put in | [NamedAPIResource](#namedapiresource) ([ItemPocket](#item-pockets)) | - - -## Item Fling Effects -The various effects of the move "Fling" when used with different items. - -### GET api/v2/item-fling-effect/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "badly-poison", - "effect_entries": [{ - "effect": "Badly poisons the target.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "items": [{ - "name": "toxic-orb", - "url": "http://pokeapi.co/api/v2/item/249/" - }] -} -``` - -###### response models - -#### ItemFlingEffect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this fling effect resource | integer | -| name | The name for this fling effect resource | string | -| effect_entries | The result of this fling effect listed in different languages | list [Effect](#effect) | -| items | A list of items that have this fling effect | list [NamedAPIResource](#namedapiresource) ([Item](#items)) | - - -## Item Pockets -Pockets within the players bag used for storing items by category. - -### GET api/v2/item-pocket/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "misc", - "categories": [{ - "name": "collectibles", - "url": "http://pokeapi.co/api/v2/item-category/9/" - }], - "names": [{ - "name": "Items", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} -``` - -###### response models - -#### ItemPocket - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this item pocket resource | integer | -| name | The name for this item pocket resource | string | -| categories | A list of item categories that are relevent to this item pocket | list [NamedAPIResource](#namedapiresource) ([ItemCategory](#item-categories)) | -| names | The name of this item pocket listed in different languages | list [Name](#resourcename) | - - -

Moves

- -## Moves -Moves are the skills of pokémon in battle. In battle, a Pokémon uses one move each turn. Some moves (including those learned by Hidden Machine) can be used outside of battle as well, usually for the purpose of removing obstacles or exploring new areas. - -### GET api/v2/move/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "pound", - "accuracy": 100, - "effect_chance": null, - "pp": 35, - "priority": 0, - "power": 40, - "contest_combos": { - "normal": { - "use_before": [{ - "name": "double-slap", - "url": "http://pokeapi.co/api/v2/move/3/" - }, { - "name": "headbutt", - "url": "http://pokeapi.co/api/v2/move/29/" - }, { - "name": "feint-attack", - "url": "http://pokeapi.co/api/v2/move/185/" - }], - "use_after": null - }, - "super": { - "use_before": null, - "use_after": null - } - }, - "contest_type": { - "name": "tough", - "url": "http://pokeapi.co/api/v2/contest-type/5/" - }, - "contest_effect": { - "url": "http://pokeapi.co/api/v2/contest-effect/1/" - }, - "damage_class": { - "name": "physical", - "url": "http://pokeapi.co/api/v2/move-damage-class/2/" - }, - "effect_entries": [{ - "effect": "Inflicts [regular damage]{mechanic:regular-damage}.", - "short_effect": "Inflicts regular damage with no additional effect.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "effect_changes": [], - "generation": { - "name": "generation-i", - "url": "http://pokeapi.co/api/v2/generation/1/" - }, - "meta": { - "ailment": { - "name": "none", - "url": "http://pokeapi.co/api/v2/move-ailment/0/" - }, - "category": { - "name": "damage", - "url": "http://pokeapi.co/api/v2/move-category/0/" - }, - "min_hits": null, - "max_hits": null, - "min_turns": null, - "max_turns": null, - "drain": 0, - "healing": 0, - "crit_rate": 0, - "ailment_chance": 0, - "flinch_chance": 0, - "stat_chance": 0 - }, - "names": [{ - "name": "Pound", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "past_values": [], - "stat_changes": [], - "super_contest_effect": { - "url": "http://pokeapi.co/api/v2/super-contest-effect/5/" - }, - "target": { - "name": "selected-pokemon", - "url": "http://pokeapi.co/api/v2/move-target/10/" - }, - "type": { - "name": "normal", - "url": "http://pokeapi.co/api/v2/type/1/" - } -} -``` - -###### response models - -#### Move - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this move resource | integer | -| name | The name for this move resource | string | -| accuracy | The percent value of how likely this move is to be successful | integer | -| effect_chance | The percent value of how likely it is this moves effect will happen | integer | -| pp | Power points. The number of times this move can be used | integer | -| priority | A value between -8 and 8. Sets the order in which moves are executed during battle. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Priority) for greater detail. | integer | -| power | The base power of this move with a value of 0 if it does not have a base power | integer | -| contest_combos | A detail of normal and super contest combos that require this move | list [ContestComboSets](#contestcombosets) | -| contest_type | The type of appeal this move gives a pokémon when used in a contest | [NamedAPIResource](#namedapiresource) ([ContestType](#contest-types)) | -| contest_effect | The effect the move has when used in a contest | [NamedAPIResource](#namedapiresource) ([ContestEffect](#contest-effects)) | -| damage_class | The type of damage the move inflicts on the target, e.g. physical | [NamedAPIResource](#namedapiresource) ([MoveDamageClass](#move-damage-classes)) | -| effect_entries | The effect of this move listed in different languages | list [VerboseEffect](#verboseeffect) | -| effect_changes | The list of previous effects this move has had across version groups of the games | list [AbilityEffectChange](#abilityeffectchange) | -| generation | The generation in which this move was introduced | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| meta | Meta data about this move | [MoveMetaData](#movemetadata) | -| names | The name of this move listed in different languages | list [Name](#resourcename) | -| past_values | A list of move resource value changes across ersion groups of the game | list [PastMoveStatValues](#pastmovestatvalues) | -| stat_changes | A list of stats this moves effects and how much it effects them | list [MoveStatChange](#movestatchange) | -| super_contest_effect | The effect the move has when used in a super contest | [NamedAPIResource](#namedapiresource) ([ContestEffect](#contest-effects)) | -| target | The type of target that will recieve the effects of the attack | [NamedAPIResource](#namedapiresource) ([MoveTarget](#move-targets)) | -| type | The elemental type of this move | [NamedAPIResource](#namedapiresource) ([Type](#types)) | - -#### ContestComboSets - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| normal | A detail of moves this move can be used before or after, granting additional appeal points in contests | list [ContestComboDetail](#contestcombodetail) | -| super | A detail of moves this move can be used before or after, granting additional appeal points in super contests | list [ContestComboDetail](#contestcombodetail) | - -#### ContestComboDetail - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| use_before | A list of moves to use before this move | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| use_after | A list of moves to use after this move | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | - -#### MoveMetaData - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| ailment | The status ailment this move inflicts on its target | [NamedAPIResource](#namedapiresource) ([MoveAilment](#move-ailments)) | -| category | The category of move this move falls under, e.g. damage or ailment | [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| min_hits | The minimum number of times this move hits. Null if it always only hits once. | integer | -| max_hits | The maximum number of times this move hits. Null if it always only hits once. | integer | -| min_turns | The minimum number of turns this move continues to take effect. Null if it always only lasts one turn. | integer | -| max_turns | The maximum number of turns this move continues to take effect. Null if it always only lasts one turn. | integer | -| drain | HP drain (if positive) or Recoil damage (if negative), in percent of damage done | integer | -| healing | The amount of hp gained by the attacking pokémon, in percent of it's maximum HP | integer | -| crit_rate | Critical hit rate bonus | integer | -| ailment_chance | The likelyhood this attack will cause an ailment | integer | -| flinch_chance | The likelyhood this attack will cause the target pokémon to flinch | integer | -| stat_chance | The likelyhood this attack will cause a stat change in the target pokémon | integer | - -#### MoveStatChange - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| change | The amount of change | integer | -| stat | The stat being affected | [NamedAPIResource](#namedapiresource) ([Stat](#stats)) | - -#### PastMoveStatValues - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| accuracy | The percent value of how likely this move is to be successful | integer | -| effect_chance | The percent value of how likely it is this moves effect will take effect | integer | -| power | The base power of this move with a value of 0 if it does not have a base power | integer | -| pp | Power points. The number of times this move can be used | integer | -| effect_entries | The effect of this move listed in different languages | list [VerboseEffect](#verboseeffect) | -| type | The elemental type of this move | [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| version group | The version group in which these move stat values were in effect | [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - - -## Move Ailments -Move Ailments are status conditions caused by moves used during battle. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/http://bulbapedia.bulbagarden.net/wiki/Status_condition) for greater detail. - -### GET api/v2/move-ailment/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "paralysis", - "moves": [{ - "name": "thunder-punch", - "url": "http://pokeapi.co/api/v2/move/9/" - }], - "names": [{ - "name": "Paralysis", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} -``` - -###### response models - -#### Move Ailment - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this move ailment resource | integer | -| name | The name for this move ailment resource | string | -| moves | A list of moves that cause this ailment | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| names | The name of this move ailment listed in different languages | list [Name](#resourcename) | - - -## Move Battle Styles -Styles of moves when used in the Battle Palace. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Battle_Frontier_(Generation_III)) for greater detail. - -### GET api/v2/move-battle-style/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "attack", - "names": [{ - "name": "Attack", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} -``` - -###### response models - -#### Move Battle Style - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this move battle style resource | integer | -| name | The name for this move battle style resource | string | -| names | The name of this move battle style listed in different languages | list [Name](#resourcename) | - - -## Move Categories -Very general categories that loosely group move effects. - -### GET api/v2/move-category/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "ailment", - "descriptions": [{ - "description": "No damage; inflicts status ailment", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "moves": [{ - "name": "sing", - "url": "http://pokeapi.co/api/v2/move/47/" - }] -} -``` - -###### response models - -#### Move Category - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this move category resource | integer | -| name | The name for this move category resource | string | -| moves | A list of moves that fall into this category | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| descriptions | The description of this move ailment listed in different languages | list [Description](#description) | - - -## Move Damage Classes -Damage classes moves can have, e.g. physical, special, or status (non-damaging). - -### GET api/v2/move-damage-class/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "status", - "descriptions": [{ - "description": "ダメージない", - "language": { - "name": "ja", - "url": "http://pokeapi.co/api/v2/language/1/" - } - }], - "moves": [{ - "name": "swords-dance", - "url": "http://pokeapi.co/api/v2/move/14/" - }] -} -``` - -###### response models - -#### Move Damage Class - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this move damage class resource | integer | -| name | The name for this move damage class resource | string | -| descriptions | The description of this move damage class listed in different languages | list [Description](#description) | -| moves | A list of moves that fall into this damage class | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| names | The name of this move damage class listed in different languages | list [Name](#resourcename) | - - -## Move Learn Methods -Methods by which pokémon can learn moves. - -### GET api/v2/move-learn-method/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "level-up", - "names": [{ - "name": "Level up", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "descriptions": [{ - "description": "Wird gelernt, wenn ein Pokémon ein bestimmtes Level erreicht.", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "version_groups": [{ - "name": "red-blue", - "url": "http://pokeapi.co/api/v2/version-group/1/" - }] -} -``` - -###### response models - -#### Move Learn Method - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this move learn method resource | integer | -| name | The name for this move learn method resource | string | -| descriptions | The description of this move learn method listed in different languages | list [Description](#description) | -| names | The name of this move learn method listed in different languages | list [Name](#resourcename) | -| version_groups | A list of version groups where moves can be learned through this method | list [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - - -## Move Targets -Targets moves can be directed at during battle. Targets can be pokémon, environments or even other moves. - -### GET api/v2/move-target/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "specific-move", - "descriptions": [{ - "description": "Eine spezifische Fähigkeit. Wie diese Fähigkeit genutzt wird hängt von den genutzten Fähigkeiten ab.", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "moves": [{ - "name": "counter", - "url": "http://pokeapi.co/api/v2/move/68/" - }], - "names": [{ - "name": "Spezifische Fähigkeit", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }] -} -``` - -###### response models - -#### Move Target - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this move target resource | integer | -| name | The name for this move target resource | string | -| descriptions | The description of this move target listed in different languages | list [Description](#description) | -| moves | A list of moves that that are directed at this target | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| names | The name of this move target listed in different languages | list [Name](#resourcename) | - - - -

Locations

- -## Locations -Locations that can be visited within the games. Locations make up sizable portions of regions, like cities or routes. - -### GET api/v2/location/{id} - -###### example response - -```json -{ - "id": 1, - "name": "canalave-city", - "region": { - "name": "sinnoh", - "url": "http://pokeapi.co/api/v2/region/4/" - }, - "names": [{ - "name": "Canalave City", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "game_indices": [{ - "game_index": 7, - "generation": { - "name": "generation-iv", - "url": "http://pokeapi.co/api/v2/generation/4/" - } - }], - "areas": [{ - "name": "canalave-city-area", - "url": "http://pokeapi.co/api/v2/location-area/1/" - }] -} -``` - -###### response models - -#### Location - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this location resource | integer | -| name | The name for this location resource | string | -| region | The region this location can be found in | [NamedAPIResource](#namedapiresource) ([Region](#regions)) | -| names | The name of this language listed in different languages | list [Name](#resourcename) | -| game_indices | A list of game indices relevent to this location by generation | list [GenerationGameIndex](#generationgameindex) | -| areas | Areas that can be found within this location | [APIResource](#apiresource) ([LocationArea](#location-areas)) | - - -## Location Areas -Location areas are sections of areas, such as floors in a building or cave. Each area has its own set of possible pokemon encounters. - -### GET api/v2/location-area/{id} - -###### example response - -```json -{ - "id": 1, - "name": "canalave-city-area", - "game_index": 1, - "encounter_method_rates": [{ - "encounter_method": { - "name": "old-rod", - "url": "http://pokeapi.co/api/v2/encounter-method/2/" - }, - "version_details": [{ - "rate": 25, - "version": { - "name": "platinum", - "url": "http://pokeapi.co/api/v2/version/14/" - } - }] - }], - "location": { - "name": "canalave-city", - "url": "http://pokeapi.co/api/v2/location/1/" - }, - "names": [{ - "name": "", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "pokemon_encounters": [{ - "pokemon": { - "name": "tentacool", - "url": "http://pokeapi.co/api/v2/pokemon/72/" - }, - "version_details": [{ - "version": { - "name": "diamond", - "url": "http://pokeapi.co/api/v2/version/12/" - }, - "max_chance": 60, - "encounter_details": [{ - "min_level": 20, - "max_level": 30, - "condition_values": [], - "chance": 60, - "method": { - "name": "surf", - "url": "http://pokeapi.co/api/v2/encounter-method/5/" - } - }] - }] - }] -} -``` - -###### response models - -#### LocationArea - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this location resource | integer | -| name | The name for this location resource | string | -| game_index | The internal id of an api resource within game data | integer | -| encounter_method_rates | A list of methods in which pokémon may be encountered in this area and how likely the method will occur depending on the version of the game | list [EncounterMethodRate](#encountermethodrate) | -| location | The region this location can be found in | [NamedAPIResource](#namedapiresource) ([Region](#regions)) | -| names | The name of this location area listed in different languages | list [Name](#resourcename) | -| pokemon_encounters | A list of pokémon that can be encountered in this area along with version specific details about the encounter | list [PokemonEncounter](#pokemonencounter) | - -#### EncounterMethodRate - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| encounter_method | The method in which pokémon may be encountered in an area. | [EncounterMethod](#encountermehtod) | -| version_details | The chance of the encounter to occur on a version of the game. | list [EncounterVersionDetails](#encounterversiondetails) | - -#### EncounterVersionDetails - -| Name | Description | Data Type | -| ------- | ----------- | --------- | -| rate | The chance of an encounter to occur. | integer | -| version | The version of the game in which the encounter can occur with the given chance. | [NamedAPIResource](#namedapiresource) ([Version](#version)) | - -#### PokemonEncounter - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| pokemon | The pokémon being encountered | [NamedAPIResource](#namedapiresource) ([Pokemon](#pokemon)) | -| version_details | A list of versions and encounters with pokémon that might happen in the referenced location area | list [VersionEncounterDetail](#versionencounterdetail) | - - -## Pal Park Areas -Areas used for grouping pokémon encounters in Pal Park. They're like habitats that are specific to Pal Park. - -### GET api/v2/pal-park-area/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "forest", - "names": [{ - "name": "Forest", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "pokemon_encounters": [{ - "base_score": 30, - "rate": 50, - "pokemon_species": { - "name": "caterpie", - "url": "http://pokeapi.co/api/v2/pokemon-species/10/" - } - }] -} -``` - -###### response models - -#### PalParkArea - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pal park area resource | integer | -| name | The name for this pal park area resource | string | -| names | The name of this pal park area listed in different languages | list [Name](#resourcename) | -| pokemon_encounters | A list of pokémon encountered in thi pal park area along with details | list [PalParkEncounterSpecies](#palparkencounterspecies) | - -#### PalParkEncounterSpecies - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| base_score | The base score given to the player when this pokémon is caught during a pal park run | integer | -| rate | The base rate for encountering this pokémon in this pal park area | integer | -| pokemon_species | The pokémon species being encountered | [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemonspecies)) | - - -## Regions -A region is an organized area of the pokémon world. Most often, the main difference between regions is the species of pokémon that can be encountered within them. - -### GET api/v2/region/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "kanto", - "locations": [{ - "name": "celadon-city", - "url": "http://pokeapi.co/api/v2/location/67/" - }], - "main_generation": { - "name": "generation-i", - "url": "http://pokeapi.co/api/v2/generation/1/" - }, - "names": [{ - "name": "Kanto", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "pokedexes": [{ - "name": "kanto", - "url": "http://pokeapi.co/api/v2/pokedex/2/" - }], - "version_groups": [{ - "name": "red-blue", - "url": "http://pokeapi.co/api/v2/version-group/1/" - }] -} -``` - -###### response models - -#### Region - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this region resource | integer | -| name | The name for this region resource | string | -| locations | A list of locations that can be found in this region | [NamedAPIResource](#namedapiresource) ([Location](#locations)) | -| main_generation | The generation this region was introduced in | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| names | The name of this region listed in different languages | list [Name](#resourcename) | -| pokedexes | A list of pokédexes that catalogue pokemon in this region | list [NamedAPIResource](#namedapiresource) ([Pokedex](#pokedexes)) | -| version_groups | A list of version groups where this region can be visited | list [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - - -

Pokemon

- -## Abilities - -Abilities provide passive effects for pokémon in battle or in the overworld. Pokémon have mutiple possible abilities but can have only one ability at a time. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Ability) for greater detail. - -### GET api/v2/ability/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "stench", - "is_main_series": true, - "generation": { - "name": "generation-iii", - "url": "http://pokeapi.co/api/v2/generation/3/" - }, - "names": [{ - "name": "Stench", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "effect_entries": [{ - "effect": "This Pokémon's damaging moves have a 10% chance to make the target [flinch]{mechanic:flinch} with each hit if they do not already cause flinching as a secondary effect.\n\nThis ability does not stack with a held item.\n\nOverworld: The wild encounter rate is halved while this Pokémon is first in the party.", - "short_effect": "Has a 10% chance of making target Pokémon [flinch]{mechanic:flinch} with each hit.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "effect_changes": [{ - "version_group": { - "name": "black-white", - "url": "http://pokeapi.co/api/v2/version-group/11/" - }, - "effect_entries": [{ - "effect": "Has no effect in battle.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] - }], - "flavor_text_entries": [{ - "flavor_text": "臭くて 相手が\nひるむ ことがある。", - "language": { - "name": "ja-kanji", - "url": "http://pokeapi.co/api/v2/language/11/" - }, - "version_group": { - "name": "x-y", - "url": "http://pokeapi.co/api/v2/version-group/15/" - } - }], - "pokemon": [{ - "is_hidden": true, - "slot": 3, - "pokemon": { - "name": "gloom", - "url": "http://pokeapi.co/api/v2/pokemon/44/" - } - }] -} -``` - -###### response models - -#### Ability - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this ability resource | integer | -| name | The name for this ability resource | string | -| is_main_series | Whether or not this ability originated in the main series of the video games | boolean | -| generation | The generation this ability originated in | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| names | The name of this ability listed in different languages | list [Name](#resourcename) | -| effect_entries | The effect of this ability listed in different languages | list [VerboseEffect](#verboseeffect) | -| effect_changes | The list of previous effects this ability has had across version groups | list [AbilityEffectChange](#abilityeffectchange) | -| flavor_text_entries | The flavor text of this ability listed in different languages | list [VersionGroupFlavorText](#versiongroupflavortext) | -| pokemon | A list of pokémon that could potentially have this ability | list [AbilityPokemon](#abilitypokemon) | - -#### AbilityEffectChange - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| effect_entries | The previous effect of this ability listed in different languages | [Effect](#effect) | -| version_group | The version group in which the previous effect of this ability originated | [NamedAPIResource](#namedapiresource) ([VersionGroup](#versiongroups)) | - -#### AbilityFlavorText - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| flavor_text | The localized name for an api resource in a specific language | string | -| language | The language this name is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | -| version_group | The version group that uses this flavor text | [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - -#### AbilityPokemon - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| is_hidden | Whether or not this a hidden ability for the referenced pokémon | boolean | -| slot | Pokémon have 3 ability 'slots' which hold references to possible abilities they could have. This is the slot of this ability for the referenced pokémon. | integer | -| pokemon | The pokémon this ability could belong to | [NamedAPIResource](#namedapiresource) ([Pokemon](#pokemon)) | - - -## Characteristics -Characteristics indicate which stat contains a Pokémon's highest IV. A Pokémon's Characteristic is determined by the remainder of its highest IV divided by 5 (gene_modulo). Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Characteristic) for greater detail. - -### GET api/v2/characteristic/{id} - -###### example response - -```json -{ - "id": 1, - "gene_modulo": 0, - "possible_values": [0, 5, 10, 15, 20, 25, 30], - "highest_stat": { - "name": "hp", - "url": "http://pokeapi.co/api/v2/stat/1/" - }, - "descriptions": [{ - "description": "Loves to eat", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} - -``` - -###### response models - -#### Characteristic - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this characteristic resource | integer | -| gene_modulo | The remainder of the highest stat/IV divided by 5 | integer | -| possible_values | The possible values of the highest stat that would result in a pokémon recieving this characteristic when divided by 5 | list integer | -| descriptions | The descriptions of this characteristic listed in different languages | list [Description](#description) | - - -## Egg Groups -Egg Groups are categories which determine which Pokémon are able to interbreed. Pokémon may belong to either one or two Egg Groups. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Egg_Group) for greater detail. - -### GET api/v2/egg-group/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "monster", - "names": [{ - "name": "かいじゅう", - "language": { - "name": "ja", - "url": "http://pokeapi.co/api/v2/language/1/" - } - }], - "pokemon_species": [{ - "name": "bulbasaur", - "url": "http://pokeapi.co/api/v2/pokemon-species/1/" - }] -} - -``` - -###### response models - -#### EggGroup - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this egg group resource | integer | -| name | The name for this egg group resource | string | -| names | The name of this egg group listed in different languages | list [Name](#resourcename) | -| pokemon_species | A list of all pokémon species that are members of this egg group | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - - -## Genders -Genders were introduced in Generation II for the purposes of breeding pokémon but can also result in visual differences or even different evolutionary lines. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Gender) for greater detail. - -### GET api/v2/gender/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "female", - "pokemon_species_details": [{ - "rate": 1, - "pokemon_species": { - "name": "bulbasaur", - "url": "http://pokeapi.co/api/v2/pokemon-species/1/" - } - }], - "required_for_evolution": [{ - "name": "wormadam", - "url": "http://pokeapi.co/api/v2/pokemon-species/413/" - }] -} - -``` - -###### response models - -#### Gender - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this gender resource | integer | -| name | The name for this gender resource | string | -| pokemon_species_details | A list of pokémon species that can be this gender and how likely it is that they will be | list [PokemonSpeciesGender](#pokemonspeciesgender) | -| required_for_evolution | A list of pokémon species that required this gender in order for a pokémon to evolve into them | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - - -#### PokemonSpeciesGender - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| rate | The chance of this Pokémon being female, in eighths; or -1 for genderless | integer | -| pokemon_species | A pokemon species that can be the referenced gender | [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - - -## Growth Rates -Growth rates are the speed with which pokémon gain levels through experience. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Experience) for greater detail. - -### GET api/v2/growth-rate/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "slow", - "formula": "\\frac{5x^3}{4}", - "descriptions": [{ - "description": "langsam", - "language": { - "name": "de", - "url": "http://pokeapi.co/api/v2/language/6/" - } - }], - "levels": [{ - "level": 100, - "experience": 1250000 - }], - "pokemon_species": [{ - "name": "growlithe", - "url": "http://pokeapi.co/api/v2/pokemon-species/58/" - }] -} -``` - -###### response models - -#### Growth Rate - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this gender resource | integer | -| name | The name for this gender resource | string | -| formula | The formula used to calculate the rate at which the pokémon species gains level | string | -| descriptions | The descriptions of this characteristic listed in different languages | list [Description](#description) | -| levels | A list of levels and the amount of experienced needed to atain them based on this growth rate | list [GrowthRateExperienceLevel](#growthrateexperiencelevel) | -| pokemon_species | A list of pokémon species that gain levels at this growth rate | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - -#### GrowthRateExperienceLevel - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| level | The level gained | integer | -| experience | The amount of experience required to reach the referenced level | integer | - - -## Natures -Natures influence how a pokémon's stats grow. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Nature) for greater detail. - -### GET api/v2/nature/{id or name} - -###### example response - -```json -{ - "id": 2, - "name": "bold", - "decreased_stat": { - "name": "attack", - "url": "http://pokeapi.co/api/v2/stat/2/" - }, - "increased_stat": { - "name": "defense", - "url": "http://pokeapi.co/api/v2/stat/3/" - }, - "likes_flavor": { - "name": "sour", - "url": "http://pokeapi.co/api/v2/berry-flavor/5/" - }, - "hates_flavor": { - "name": "spicy", - "url": "http://pokeapi.co/api/v2/berry-flavor/1/" - }, - "pokeathlon_stat_changes": [{ - "max_change": -2, - "pokeathlon_stat": { - "name": "speed", - "url": "http://pokeapi.co/api/v2/pokeathlon-stat/1/" - } - }], - "move_battle_style_preferences": [{ - "low_hp_preference": 32, - "high_hp_preference": 30, - "move_battle_style": { - "name": "attack", - "url": "http://pokeapi.co/api/v2/move-battle-style/1/" - } - }], - "names": [{ - "name": "ずぶとい", - "language": { - "name": "ja", - "url": "http://pokeapi.co/api/v2/language/1/" - } - }] -} -``` - -###### response models - -#### Nature - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this nature resource | integer | -| name | The name for this nature resource | string | -| decreased_stat | The stat decreased by 10% in pokémon with this nature | [NamedAPIResource](#namedapiresource) ([Stat](#stats)) | -| increased_stat | The stat increased by 10% in pokémon with this nature | [NamedAPIResource](#namedapiresource) ([Stat](#stats)) | -| hates_flavor | The flavor hated by pokémon with this nature | [NamedAPIResource](#namedapiresource) ([BerryFlavor](#berry-flavors)) | -| likes_flavor | The flavor liked by pokémon with this nature | [NamedAPIResource](#namedapiresource) ([BerryFlavor](#berry-flavors)) | -| pokeathlon_stat_changes | A list of pokéathlon stats this nature effects and how much it effects them | list [NatureStatChange](#naturestatchange) | -| move_battle_style_preferences | A list of battle styles and how likely a pokémon with this nature is to use them in the Battle Palace or Battle Tent. | list [MoveBattleStylePreference](#movebattlestylepreference) | -| names | The name of this nature listed in different languages | list [Name](#resourcename) | - -#### NatureStatChange - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| change | The amount of change | integer | -| stat | The stat being affected | [NamedAPIResource](#namedapiresource) ([PokeathlonStat](#pokeathlon-stats)) | - -#### MoveBattleStylePreference - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| low_hp_preference | Chance of using the move, in percent, if HP is under one half | integer | -| high_hp_preference | Chance of using the move, in percent, if HP is over one half | integer | -| move_battle_style | The move battle style | [NamedAPIResource](#namedapiresource) ([MoveBattleStyle](#move-battle-styles)) | - - -## Pokéathlon Stats -Pokéathlon Stats are different attributes of a pokémon's performance in pokeathlons. In Pokéathlons, competitions happen on different courses; one for each of the different pokeathlon stats. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pokéathlon) for greater detail. - -### GET api/v2/pokeathlon-stat/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "speed", - "affecting_natures": { - "increase": [{ - "max_change": 2, - "nature": { - "name": "timid", - "url": "http://pokeapi.co/api/v2/nature/5/" - } - }], - "decrease": [{ - "max_change": -1, - "nature": { - "name": "hardy", - "url": "http://pokeapi.co/api/v2/nature/1/" - } - }] - }, - "names": [{ - "name": "Speed", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} -``` - -###### response models - -#### PokeathlonStat - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokéathlon stat resource | integer | -| name | The name for this pokéathlon stat resource | string | -| names | The name of this pokéathlon stat listed in different languages | list [Name](#resourcename) | -| affecting_natures | A detail of natures which affect this pokéathlon stat positively or negatively | [NaturePokeathlonStatAffectSets](#naturepokeathlonstataffectsets) | - -#### NaturePokeathlonStatAffectSets - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| increase | A list of natures and how they change the referenced pokéathlon stat | list [NaturePokeathlonStatAffect](#naturepokeathlonstataffect) | -| decrease | A list of natures and how they change the referenced pokéathlon stat | list [NaturePokeathlonStatAffect](#naturepokeathlonstataffect) | - -#### NaturePokeathlonStatAffect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| max_change | The maximum amount of change to the referenced pokéathlon stat | integer | -| nature | The nature causing the change | [NamedAPIResource](#namedapiresource) ([Nature](#natures)) | - - - -## Pokémon -Pokémon are the creatures that inhabit the world of the pokemon games. They can be caught using pokéballs and trained by battling with other pokémon. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pokémon_(species)) for greater detail. - -### GET api/v2/pokemon/{id or name} - -###### example response - -```json -{ - "id": 35, - "name": "clefairy", - "base_experience": 113, - "height": 6, - "is_default": true, - "order": 56, - "weight": 75, - "abilities": [{ - "is_hidden": true, - "slot": 3, - "ability": { - "name": "friend-guard", - "url": "https://pokeapi.co/api/v2/ability/132/" - } - }], - "forms": [{ - "name": "clefairy", - "url": "https://pokeapi.co/api/v2/pokemon-form/35/" - }], - "game_indices": [{ - "game_index": 35, - "version": { - "name": "white-2", - "url": "https://pokeapi.co/api/v2/version/22/" - } - }], - "held_items": [{ - "item": { - "name": "moon-stone", - "url": "https://pokeapi.co/api/v2/item/81/" - }, - "version_details": [{ - "rarity": 5, - "version": { - "name": "ruby", - "url": "https://pokeapi.co/api/v2/version/7/" - } - }] - }], - "location_area_encounters": "/api/v2/pokemon/35/encounters", - "moves": [{ - "move": { - "name": "pound", - "url": "https://pokeapi.co/api/v2/move/1/" - }, - "version_group_details": [{ - "level_learned_at": 1, - "version_group": { - "name": "red-blue", - "url": "https://pokeapi.co/api/v2/version-group/1/" - }, - "move_learn_method": { - "name": "level-up", - "url": "https://pokeapi.co/api/v2/move-learn-method/1/" - } - }] - }], - "species": { - "name": "clefairy", - "url": "https://pokeapi.co/api/v2/pokemon-species/35/" - }, - "stats": [{ - "base_stat": 35, - "effort": 0, - "stat": { - "name": "speed", - "url": "https://pokeapi.co/api/v2/stat/6/" - } - }], - "types": [{ - "slot": 1, - "type": { - "name": "fairy", - "url": "https://pokeapi.co/api/v2/type/18/" - } - }], - "past_types": [{ - "generation": { - "name": "generation-v", - "url": "https://pokeapi.co/api/v2/generation/5/" - }, - "types": [ - { - "slot": 1, - "type": { - "name": "normal", - "url": "https://pokeapi.co/api/v2/type/1/" - } - } - ] - }] -} -``` - -###### response models - -#### Pokemon - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokémon resource | integer | -| name | The name for this pokémon resource | string | -| base_experience | The base experience gained for defeating this pokémon | integer | -| height | The height of this pokémon | integer | -| is_default | Set for exactly one pokémon used as the default for each species | boolean | -| order | Order for sorting. Almost national order, except families are grouped together. | integer | -| weight | The mass of this pokémon | integer | -| abilities | A list of abilities this pokémon could potentially have | list [PokemonAbility](#pokemonability) | -| forms | A list of forms this pokémon can take on | list [NamedAPIResource](#namedapiresource) ([PokemonForm](#pokemon-forms)) | -| game_indices | A list of game indices relevent to pokémon item by generation | list [VersionGameIndex](#versiongameindex) | -| held_items | A list of items this pokémon may be holding when encountered | list [NamedAPIResource](#namedapiresource) ([Item](#items)) | -| location_area_encounters | A list of location areas as well as encounter details pertaining to specific versions | list [LocationAreaEncounter](#locationareaencounter) | -| moves | A list of moves along with learn methods and level details pertaining to specific version groups | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | -| species | The species this pokémon belongs to | [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | -| stats | A list of base stat values for this pokémon | list [NamedAPIResource](#namedapiresource) ([Stat](#stats)) | -| types | A list of details showing types this pokémon has | list [PokemonType](#pokemontype) | -| past_types | A list of details showing types this pokémon had in previous generations | list [PokemonTypePast](#pokemontypepast) | - -#### PokemonAbility - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| is_hidden | Whether or not this is a hidden ability | boolean | -| slot | The slot this ability occupies in this pokémon species | integer | -| ability | The ability the pokémon may have | [NamedAPIResource](#namedapiresource) ([Ability](#abilities)) | - -#### PokemonType - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| slot | The order the pokémon types are listed in | integer | -| type | The type the referenced pokémon has | string | - -#### PokemonFormType - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| slot | The order the Pokémon form types are listed in | integer | -| type | The type the referenced Pokémon form has | string | - -#### PokemonTypePast - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| generation | The last generation in which the referenced pokémon had the listed types | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| types | The types the referenced pokémon had up to and including the listed generation | list [PokemonType](#pokemontype) | - -#### LocationAreaEncounter - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| location_area | The location area the referenced pokémon can be encountered in | [APIResource](#apiresource) ([LocationArea](#location-areas)) | -| version_details | A list of versions and encounters with the referenced pokémon that might happen | list [VersionEncounterDetail](#versionencounterdetail) | - - -## Pokémon Colors -Colors used for sorting pokémon in a pokédex. The color listed in the Pokédex is usually the color most apparent or covering each Pokémon's body. No orange category exists; Pokémon that are primarily orange are listed as red or brown. - -### GET api/v2/pokemon-color/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "black", - "names": [{ - "name": "黒い", - "language": { - "name": "ja", - "url": "http://pokeapi.co/api/v2/language/1/" - } - }], - "pokemon_species": [{ - "name": "snorlax", - "url": "http://pokeapi.co/api/v2/pokemon-species/143/" - }] -} -``` - -###### response models - -#### PokemonColor - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokémon color resource | integer | -| name | The name for this pokémon color resource | string | -| names | The name of this pokémon color listed in different languages | list [Name](#resourcename) | -| pokemon_species | A list of the pokémon species that have this color | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - - -## Pokémon Forms -Some pokémon have the ability to take on different forms. At times, these differences are purely cosmetic and have no bearing on the difference in the Pokémon's stats from another; however, several Pokémon differ in stats (other than HP), type, and Ability depending on their form. - -### GET api/v2/pokemon-form/{id or name} - -###### example response - -```json -{ - "id": 10041, - "name": "arceus-bug", - "order": 631, - "form_order": 7, - "is_default": false, - "is_battle_only": false, - "is_mega": false, - "form_name": "bug", - "pokemon": { - "name": "arceus", - "url": "https://pokeapi.co/api/v2/pokemon/493/" - }, - "version_group": { - "name": "diamond-pearl", - "url": "https://pokeapi.co/api/v2/version-group/8/" - }, - "types": [ - { - "slot": 1, - "type": { - "name": "bug", - "url": "https://pokeapi.co/api/v2/type/7/" - } - } - ] -} -``` - -###### response models - -#### PokemonForm - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokémon form resource | integer | -| name | The name for this pokémon form resource | string | -| order | The order in which forms should be sorted within all forms. Multiple forms may have equal order, in which case they should fall back on sorting by name. | integer | -| form_order | The order in which forms should be sorted within a species' forms | integer | -| is_default | True for exactly one form used as the default for each pokémon | boolean | -| is_battle_only | Whether or not this form can only happen during battle | boolean | -| is_mega | Whether or not this form requires mega evolution | boolean | -| form_name | The name of this form | string | -| pokemon | The pokémon that can take on this form | [NamedAPIResource](#namedapiresource) ([Pokemon](#pokemon)) | -| version_group | The version group this pokémon form was introduced in | [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | -| types | A list of details showing types this Pokémon form has, if they differ from the types of the Pokémon that can take on this form | list [PokemonFormType](#pokemonformtype) | - - -## Pokémon Habitats -Habitats are generally different terrain pokémon can be found in but can also be areas designated for rare or legendary pokémon. - -### GET api/v2/pokemon-habitat/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "cave", - "names": [ - { - "name": "grottes", - "language": { - "name": "fr", - "url": "http://pokeapi.co/api/v2/language/5/" - } - } - ], - "pokemon_species": [ - { - "name": "zubat", - "url": "http://pokeapi.co/api/v2/pokemon-species/41/" - } - ] -} -``` - -###### response models - -#### PokemonHabitat - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokémon habitat resource | integer | -| name | The name for this pokémon habitat resource | string | -| names | The name of this pokémon habitat listed in different languages | list [Name](#resourcename) | -| pokemon_species | A list of the pokémon species that can be found in this habitat | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - - -## Pokémon Shapes -Shapes used for sorting pokémon in a pokédex. - -### GET api/v2/pokemon-shape/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "ball", - "awesome_names": [ - { - "awesome_name": "Pomaceous", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - } - ], - "names": [ - { - "name": "Ball", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - } - ], - "pokemon_species": [ - { - "name": "shellder", - "url": "http://pokeapi.co/api/v2/pokemon-species/90/" - } - ] -} -``` - -###### response models - -#### PokemonShape - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokémon shape resource | integer | -| name | The name for this pokémon shape resource | string | -| awesome_names | The "scientific" name of this pokémon shape listed in different languages | list [AwesomeName](#awesomename) | -| names | The name of this pokémon shape listed in different languages | list [Name](#resourcename) | -| pokemon_species | A list of the pokémon species that have this shape | list [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | - -#### AwesomeName - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| awesome_name | The localized "scientific" name for an api resource in a specific language | string | -| language | The language this "scientific" name is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | - - -## Pokémon Species -A Pokémon Species forms the basis for at least one pokémon. Attributes of a Pokémon species are shared across all varieties of pokémon within the species. A good example is Wormadam; Wormadam is the species which can be found in three different varieties, Wormadam-Trash, Wormadam-Sandy and Wormadam-Plant. - -### GET api/v2/pokemon-species/{id or name} - -###### example response - -```json -{ - "id": 413, - "name": "wormadam", - "order": 441, - "gender_rate": 8, - "capture_rate": 45, - "base_happiness": 70, - "is_baby": false, - "hatch_counter": 15, - "has_gender_differences": false, - "forms_switchable": false, - "growth_rate": { - "name": "medium", - "url": "http://pokeapi.co/api/v2/growth-rate/2/" - }, - "pokedex_numbers": [{ - "entry_number": 45, - "pokedex": { - "name": "kalos-central", - "url": "http://pokeapi.co/api/v2/pokedex/12/" - } - }], - "egg_groups": [{ - "name": "bug", - "url": "http://pokeapi.co/api/v2/egg-group/3/" - }], - "color": { - "name": "gray", - "url": "http://pokeapi.co/api/v2/pokemon-color/4/" - }, - "shape": { - "name": "squiggle", - "url": "http://pokeapi.co/api/v2/pokemon-shape/2/" - }, - "evolves_from_species": { - "name": "burmy", - "url": "http://pokeapi.co/api/v2/pokemon-species/412/" - }, - "evolution_chain": { - "url": "http://pokeapi.co/api/v2/evolution-chain/213/" - }, - "habitat": null, - "generation": { - "name": "generation-iv", - "url": "http://pokeapi.co/api/v2/generation/4/" - }, - "names": [{ - "name": "Wormadam", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "form_descriptions": [{ - "description": "Forms have different stats and movepools. During evolution, Burmy's current cloak becomes Wormadam's form, and can no longer be changed.", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "genera": [{ - "genus": "Bagworm", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }], - "varieties": [{ - "is_default": true, - "pokemon": { - "name": "wormadam-plant", - "url": "http://pokeapi.co/api/v2/pokemon/413/" - } - }] -} -``` - -###### response models - -#### PokemonSpecies - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this pokémon species resource | integer | -| name | The name for this pokémon species resource | string | -| order | The order in which species should be sorted. Based on National Dex order, except families are grouped together and sorted by stage. | integer | -| gender_rate | The chance of this Pokémon being female, in eighths; or -1 for genderless | integer | -| capture_rate | The base capture rate; up to 255. The higher the number, the easier the catch. | integer | -| base_happiness | The happiness when caught by a normal pokéball; up to 255. The higher the number, the happier the pokémon. | integer | -| is_baby | Whether or not this is a baby pokémon | boolean | -| hatch_counter | Initial hatch counter: one must walk 255 × (hatch_counter + 1) steps before this Pokémon's egg hatches, unless utilizing bonuses like Flame Body's | integer | -| has_gender_differences | Whether or not this pokémon can have different genders | boolean | -| forms_switchable | Whether or not this pokémon has multiple forms and can switch between them | boolean | -| growth_rate | The rate at which this pokémon species gains levels | [NamedAPIResource](#namedapiresource) ([GrowthRate](#growth-rates)) | -| pokedex_numbers | A list of pokedexes and the indexes reserved within them for this pokémon species | list [PokemonSpeciesDexEntry](#pokemonspeciesdexentry) | -| egg_groups | A list of egg groups this pokémon species is a member of | list [NamedAPIResource](#namedapiresource) ([EggGroup](#egg-groups)) | -| color | The color of this pokémon for gimmicky pokedex search | list [NamedAPIResource](#namedapiresource) ([PokemonColor](#pokemon-colors)) | -| shape | The shape of this pokémon for gimmicky pokedex search | list [NamedAPIResource](#namedapiresource) ([PokemonShape](#pokemon-shapes)) | -| evolves_from_species | The pokémon species that evolves into this pokemon_species | [NamedAPIResource](#namedapiresource) ([PokemonSpecies](#pokemon-species)) | -| evolution_chain | The evolution chain this pokémon species is a member of | [APIResource](#apiresource) ([EvolutionChain](#evolution-chains)) | -| habitat | The habitat this pokémon species can be encountered in | [NamedAPIResource](#namedapiresource) ([PokemonHabitat](#pokemon-habitats)) | -| generation | The generation this pokémon species was introduced in | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| names | The name of this pokémon species listed in different languages | list [Name](#resourcename) | -| pal_park_encounters | A list of encounters that can be had with this pokémon species in pal park | list [PalParkEncounterArea](#palparkencounterarea) | -| form_descriptions | Descriptions of different forms pokémon take on within the pokémon species | list [Description](#description) | -| genera | The genus of this pokémon species listed in multiple languages | [Genus](#genus) | -| varieties | A list of the pokémon that exist within this pokémon species | list [NamedAPIResource](#namedapiresource) ([Pokemon](#pokemon)) | - -#### Genus - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| genus | The localized genus for the referenced pokémon species | string | -| language | The language this genus is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | - -#### PokemonSpeciesDexEntry - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| entry_number | The index number within the pokédex | integer | -| name | The pokédex the referenced pokémon species can be found in | [NamedAPIResource](#namedapiresource) ([Pokedex](#pokedexes)) | - -#### PalParkEncounterArea - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| base_score | The base score given to the player when the referenced pokemon is caught during a pal park run | integer | -| rate | The base rate for encountering the referenced pokemon in this pal park area | integer | -| area | The pal park area where this encounter happens | [NamedAPIResource](#namedapiresource) ([PalParkArea](#pal-park-areas)) | - - -## Stats -Stats determine certain aspects of battles. Each pokémon has a value for each stat which grows as they gain levels and can be altered momenarily by effects in battles. - -### GET api/v2/stat/{id or name} - -###### example response - -```json -{ - "id": 2, - "name": "attack", - "game_index": 2, - "is_battle_only": false, - "affecting_moves": { - "increase": [{ - "change": 2, - "move": { - "name": "swords-dance", - "url": "http://pokeapi.co/api/v2/move/14/" - } - }], - "decrease": [{ - "change": -1, - "move": { - "name": "growl", - "url": "http://pokeapi.co/api/v2/move/45/" - } - }] - }, - "affecting_natures": { - "increase": [{ - "name": "lonely", - "url": "http://pokeapi.co/api/v2/nature/6/" - }], - "decrease": [{ - "name": "bold", - "url": "http://pokeapi.co/api/v2/nature/2/" - }] - }, - "characteristics": [{ - "url": "http://pokeapi.co/api/v2/characteristic/2/" - }], - "move_damage_class": { - "name": "physical", - "url": "http://pokeapi.co/api/v2/move-damage-class/2/" - }, - "names": [{ - "name": "こうげき", - "language": { - "name": "ja", - "url": "http://pokeapi.co/api/v2/language/1/" - } - }] -} -``` - -###### response models - -#### Stat - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this stat resource | integer | -| name | The name for this stat resource | string | -| game_index | ID the games use for this stat | integer | -| is_battle_only | Whether this stat only exists within a battle | boolean | -| affecting_moves | A detail of moves which affect this stat positively or negatively | [MoveStatAffectSets](#movestataffectsets) | -| affecting_natures | A detail of natures which affect this stat positively or negatively | [NatureStatAffectSets](#naturestataffectsets) | -| characteristics | A list of characteristics that are set on a pokemon when its highest base stat is this stat | list [APIResource](#apiresource) ([Characteristic](#characteristics)) | -| move_damage_class | The class of damage this stat is directly related to | [NamedAPIResource](#namedapiresource) ([MoveDamageClass](#move-damage-classes)) | -| names | The name of this region listed in different languages | list [Name](#resourcename) | - -#### MoveStatAffectSets - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| increase | A list of moves and how they change the referenced stat | list [MoveStatAffect](#movestataffect) | -| decrease | A list of moves and how they change the referenced stat | list [MoveStatAffect](#movestataffect) | - -#### MoveStatAffect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| max_change | The maximum amount of change to the referenced stat | integer | -| move | The move causing the change | [NamedAPIResource](#namedapiresource) ([Move](#moves)) | - -#### NatureStatAffectSets - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| increase | A list of natures and how they change the referenced stat | list [NatureStatAffect](#naturestataffect) | -| decrease | A list of natures and how they change the referenced stat | list [NatureStatAffect](#naturestataffect) | - -#### NatureStatAffect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| max_change | The maximum amount of change to the referenced stat | integer | -| nature | The nature causing the change | [NamedAPIResource](#namedapiresource) ([Nature](#natures)) | - - - - -## Types -Types are properties for Pokémon and their moves. Each type has three properties: which types of Pokémon it is super effective against, which types of Pokémon it is not very effective against, and which types of Pokémon it is completely ineffective against. - -### GET api/v2/type/{id or name} - -###### example response - -```json -{ - "id": 8, - "name": "ghost", - "damage_relations": { - "no_damage_to": [ - { - "name": "normal", - "url": "https://pokeapi.co/api/v2/type/1/" - } - ], - "half_damage_to": [ - { - "name": "dark", - "url": "https://pokeapi.co/api/v2/type/17/" - } - ], - "double_damage_to": [ - { - "name": "ghost", - "url": "https://pokeapi.co/api/v2/type/8/" - } - ], - "no_damage_from": [ - { - "name": "normal", - "url": "https://pokeapi.co/api/v2/type/1/" - } - ], - "half_damage_from": [ - { - "name": "poison", - "url": "https://pokeapi.co/api/v2/type/4/" - } - ], - "double_damage_from": [ - { - "name": "ghost", - "url": "https://pokeapi.co/api/v2/type/8/" - } - ] - }, - "past_damage_relations": [ - { - "generation": { - "name": "generation-v", - "url": "https://pokeapi.co/api/v2/generation/5/" - }, - "damage_relations": { - "no_damage_to": [ - { - "name": "normal", - "url": "https://pokeapi.co/api/v2/type/1/" - } - ], - "half_damage_to": [ - { - "name": "steel", - "url": "https://pokeapi.co/api/v2/type/9/" - } - ], - "double_damage_to": [ - { - "name": "ghost", - "url": "https://pokeapi.co/api/v2/type/8/" - } - ], - "no_damage_from": [ - { - "name": "normal", - "url": "https://pokeapi.co/api/v2/type/1/" - } - ], - "half_damage_from": [ - { - "name": "poison", - "url": "https://pokeapi.co/api/v2/type/4/" - } - ], - "double_damage_from": [ - { - "name": "ghost", - "url": "https://pokeapi.co/api/v2/type/8/" - } - ] - } - } - ], - "game_indices": [ - { - "game_index": 8, - "generation": { - "name": "generation-i", - "url": "https://pokeapi.co/api/v2/generation/1/" - } - } - ], - "generation": { - "name": "generation-i", - "url": "https://pokeapi.co/api/v2/generation/1/" - }, - "move_damage_class": { - "name": "physical", - "url": "https://pokeapi.co/api/v2/move-damage-class/2/" - }, - "names": [ - { - "name": "ゴースト", - "language": { - "name": "ja-Hrkt", - "url": "https://pokeapi.co/api/v2/language/1/" - } - } - ], - "pokemon": [ - { - "slot": 1, - "pokemon": { - "name": "gastly", - "url": "https://pokeapi.co/api/v2/pokemon/92/" - } - } - ], - "moves": [ - { - "name": "night-shade", - "url": "https://pokeapi.co/api/v2/move/101/" - } - ] -} -``` - -###### response models - -#### Type - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this type resource | integer | -| name | The name for this type resource | string | -| damage_relations | A detail of how effective this type is toward others and vice versa | [TypeRelations](#typerelations) | -| past_damage_relations | A list of details of how effective this type was toward others and vice versa in previous generations | list [TypeRelationsPast](#typerelationspast) | -| game_indices | A list of game indices relevent to this item by generation | list [GenerationGameIndex](#generationgameindex) | -| generation | The generation this type was introduced in | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| move_damage_class | The class of damage inflicted by this type | [NamedAPIResource](#namedapiresource) ([MoveDamageClass](#move-damage-classes)) | -| names | The name of this type listed in different languages | list [Name](#resourcename) | -| pokemon | A list of details of pokemon that have this type | [TypePokemon](#typepokemon) | -| moves | A list of moves that have this type | list [NamedAPIResource](#namedapiresource) ([Move](#moves)) | - -#### TypePokemon - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| slot | The order the pokemons types are listed in | integer | -| pokemon | The pokemon that has the referenced type | [NamedAPIResource](#namedapiresource) ([Pokemon](#pokemon)) | - -#### TypeRelations - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| no_damage_to | A list of types this type has no effect on | list [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| half_damage_to | A list of types this type is not very effect against | list [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| double_damage_to | A list of types this type is very effect against | list [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| no_damage_from | A list of types that have no effect on this type | list [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| half_damage_from | A list of types that are not very effective against this type | list [NamedAPIResource](#namedapiresource) ([Type](#types)) | -| double_damage_from | A list of types that are very effective against this type | list [NamedAPIResource](#namedapiresource) ([Type](#types)) | - -#### TypeRelationsPast - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| generation | The last generation in which the referenced type had the listed damage relations | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | -| damage_relations | The damage relations the referenced type had up to and including the listed generation | list [TypeRelations](#typerelations) | - - -

Utility

- -## Languages -Languages for translations of api resource information. - -### GET api/v2/language/{id or name} - -###### example response - -```json -{ - "id": 1, - "name": "ja", - "official": true, - "iso639": "ja", - "iso3166": "jp", - "names": [{ - "name": "Japanese", - "language": { - "name": "en", - "url": "http://pokeapi.co/api/v2/language/9/" - } - }] -} -``` - -###### response models - -#### Language - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| id | The identifier for this language resource | integer | -| name | The name for this language resource | string | -| official | Whether or not the games are published in this language | boolean | -| iso639 | The two-letter code of the country where this language is spoken. Note that it is not unique. | string | -| iso3166 | The two-letter code of the language. Note that it is not unique. | string | -| names | The name of this language listed in different languages | list [Name](#resourcename) | - - - -## Common Models - -#### APIResource - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| url | The url of the referenced resource | string | - - -#### Description - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| description | The localized description for an api resource in a specific language | string | -| language | The language this description is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | - - -#### Effect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| effect | The localized effect text for an api resource in a specific language | string | -| language | The language this effect is in | [NamedAPIResource](#namedapiresource) ([Language](#language)) | - - -#### Encounter - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| min_level | The lowest level the pokemon could be encountered at | integer | -| max_level | The highest level the pokemon could be encountered at | integer | -| condition_values | A list of condition values that must be in effect for this encounter to occur | list [NamedAPIResource](#namedapiresource) ([EncounterConditionValue](#encounter-condition-values)) | -| chance | percent chance that this encounter will occur | integer | -| method | The method by which this encounter happens | [NamedAPIResource](#namedapiresource) ([EncounterMethod](#encounter-methods)) | - - -#### FlavorText - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| flavor_text | The localized name for an api resource in a specific language | string | -| language | The language this flavor text is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | - - -#### GenerationGameIndex - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| game_index | The internal id of an api resource within game data | integer | -| generation | The generation relevent to this game index | [NamedAPIResource](#namedapiresource) ([Generation](#generations)) | - -#### Name - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| name | The localized name for an api resource in a specific language | string | -| language | The language this name is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | - - -#### NamedAPIResource - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| name | The name of the referenced resource | string | -| url | The url of the referenced resource | string | - - -#### VerboseEffect - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| effect | The localized effect text for an api resource in a specific language | string | -| short_effect | The localized effect text in brief | string | -| language | The language this effect is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | - - -#### VersionEncounterDetail - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| version | The game version this encounter happens in | [NamedAPIResource](#namedapiresource) ([Version](#versions)) | -| max_chance | The total percentage of all encounter potential | integer | -| encounter_details | A list of encounters and their specifics | list [Encounter](#encounters) | - - -#### VersionGameIndex - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| game_index | The internal id of an api resource within game data | integer | -| version | The version relevant to this game index | [NamedAPIResource](#namedapiresource) ([Version](#versions)) | - - -#### VersionGroupFlavorText - -| Name | Description | Data Type | -| ---- | ----------- | --------- | -| text | The localized name for an api resource in a specific language | string | -| language | The language this name is in | [NamedAPIResource](#namedapiresource) ([Language](#languages)) | -| version_group | The version group which uses this flavor text | [NamedAPIResource](#namedapiresource) ([VersionGroup](#version-groups)) | - - +https://pokeapi.co/docs/v2 diff --git a/pokemon_v2/api.py b/pokemon_v2/api.py index 790f62b9..dac98772 100644 --- a/pokemon_v2/api.py +++ b/pokemon_v2/api.py @@ -4,6 +4,9 @@ from rest_framework.response import Response from rest_framework.views import APIView from django.shortcuts import get_object_or_404 from django.http import Http404 +from django.db.models import Q +from drf_spectacular.utils import extend_schema, extend_schema_view, OpenApiParameter +from drf_spectacular.types import OpenApiTypes from .models import * from .serializers import * @@ -38,6 +41,15 @@ class NameOrIdRetrieval: idPattern = re.compile(r"^-?[0-9]+$") namePattern = re.compile(r"^[0-9A-Za-z\-\+]+$") + def get_queryset(self): + queryset = super().get_queryset() + filter = self.request.GET.get("q", "") + + if filter: + queryset = queryset.filter(Q(name__icontains=filter)) + + return queryset + def get_object(self): queryset = self.get_queryset() queryset = self.filter_queryset(queryset) @@ -59,9 +71,30 @@ class NameOrIdRetrieval: return resp +q_query_string_parameter = OpenApiParameter( + name="q", + description="> Only available locally and not at [pokeapi.co](https://pokeapi.co/docs/v2)\nCase-insensitive query applied on the `name` property. ", + location=OpenApiParameter.QUERY, + type=OpenApiTypes.STR, +) + +retrieve_path_parameter = OpenApiParameter( + name="id", + description="This parameter can be a string or an integer.", + location=OpenApiParameter.PATH, + type=OpenApiTypes.STR, + required=True, +) + + +@extend_schema_view(list=extend_schema(parameters=[q_query_string_parameter])) class PokeapiCommonViewset( ListOrDetailSerialRelation, NameOrIdRetrieval, viewsets.ReadOnlyModelViewSet ): + @extend_schema(parameters=[retrieve_path_parameter]) + def retrieve(self, request, pk=None): + return super().retrieve(request, pk) + pass @@ -70,299 +103,879 @@ class PokeapiCommonViewset( ########## +@extend_schema( + description="Abilities provide passive effects for Pokémon in battle or in the overworld. Pokémon have multiple possible abilities but can have only one ability at a time. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Ability) for greater detail.", + tags=["pokemon"], +) class AbilityResource(PokeapiCommonViewset): queryset = Ability.objects.all() serializer_class = AbilityDetailSerializer list_serializer_class = AbilitySummarySerializer +@extend_schema( + description="Berries are small fruits that can provide HP and status condition restoration, stat enhancement, and even damage negation when eaten by Pokémon. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Berry) for greater detail.", + tags=["berries"], + summary="Get a berry", +) +@extend_schema_view( + list=extend_schema( + summary="List berries", + ) +) class BerryResource(PokeapiCommonViewset): queryset = Berry.objects.all() serializer_class = BerryDetailSerializer list_serializer_class = BerrySummarySerializer +@extend_schema( + description="Berries can be soft or hard. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Category:Berries_by_firmness) for greater detail.", + tags=["berries"], + summary="Get berry by firmness", +) +@extend_schema_view( + list=extend_schema( + summary="List berry firmness", + ) +) class BerryFirmnessResource(PokeapiCommonViewset): queryset = BerryFirmness.objects.all() serializer_class = BerryFirmnessDetailSerializer list_serializer_class = BerryFirmnessSummarySerializer +@extend_schema( + description="Flavors determine whether a Pokémon will benefit or suffer from eating a berry based on their **nature**. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Flavor) for greater detail.", + summary="Get berries by flavor", + tags=["berries"], +) +@extend_schema_view( + list=extend_schema( + summary="List berry flavors", + ) +) class BerryFlavorResource(PokeapiCommonViewset): queryset = BerryFlavor.objects.all() serializer_class = BerryFlavorDetailSerializer list_serializer_class = BerryFlavorSummarySerializer +@extend_schema( + description="Characteristics indicate which stat contains a Pokémon's highest IV. A Pokémon's Characteristic is determined by the remainder of its highest IV divided by 5 (gene_modulo). Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Characteristic) for greater detail.", + summary="Get characteristic", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List charecterictics", + ) +) class CharacteristicResource(PokeapiCommonViewset): queryset = Characteristic.objects.all() serializer_class = CharacteristicDetailSerializer list_serializer_class = CharacteristicSummarySerializer +@extend_schema( + description="Contest effects refer to the effects of moves when used in contests.", + tags=["contests"], + summary="Get contest effect", +) +@extend_schema_view( + list=extend_schema( + summary="List contest effects", + ) +) class ContestEffectResource(PokeapiCommonViewset): queryset = ContestEffect.objects.all() serializer_class = ContestEffectDetailSerializer list_serializer_class = ContestEffectSummarySerializer +@extend_schema( + description="Contest types are categories judges used to weigh a Pokémon's condition in Pokémon contests. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Contest_condition) for greater detail.", + summary="Get contest type", + tags=["contests"], +) +@extend_schema_view( + list=extend_schema( + summary="List contest types", + ) +) class ContestTypeResource(PokeapiCommonViewset): queryset = ContestType.objects.all() serializer_class = ContestTypeDetailSerializer list_serializer_class = ContestTypeSummarySerializer +@extend_schema( + description="Egg Groups are categories which determine which Pokémon are able to interbreed. Pokémon may belong to either one or two Egg Groups. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Egg_Group) for greater detail.", + summary="Get egg group", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List egg groups", + ) +) class EggGroupResource(PokeapiCommonViewset): queryset = EggGroup.objects.all() serializer_class = EggGroupDetailSerializer list_serializer_class = EggGroupSummarySerializer +@extend_schema( + description="Conditions which affect what pokemon might appear in the wild, e.g., day or night.", + summary="Get encounter condition", + tags=["encounters"], +) +@extend_schema_view( + list=extend_schema( + summary="List encounter conditions", + ) +) class EncounterConditionResource(PokeapiCommonViewset): queryset = EncounterCondition.objects.all() serializer_class = EncounterConditionDetailSerializer list_serializer_class = EncounterConditionSummarySerializer +@extend_schema( + description="Encounter condition values are the various states that an encounter condition can have, i.e., time of day can be either day or night.", + summary="Get encounter condition value", + tags=["encounters"], +) +@extend_schema_view( + list=extend_schema( + summary="List encounter condition values", + ) +) class EncounterConditionValueResource(PokeapiCommonViewset): queryset = EncounterConditionValue.objects.all() serializer_class = EncounterConditionValueDetailSerializer list_serializer_class = EncounterConditionValueSummarySerializer +@extend_schema( + description="Methods by which the player might can encounter Pokémon in the wild, e.g., walking in tall grass. Check out Bulbapedia for greater detail.", + summary="Get encounter method", + tags=["encounters"], +) +@extend_schema_view( + list=extend_schema( + summary="List encounter methods", + ) +) class EncounterMethodResource(PokeapiCommonViewset): queryset = EncounterMethod.objects.all() serializer_class = EncounterMethodDetailSerializer list_serializer_class = EncounterMethodSummarySerializer +@extend_schema( + description="Evolution chains are essentially family trees. They start with the lowest stage within a family and detail evolution conditions for each as well as Pokémon they can evolve into up through the hierarchy.", + summary="Get evolution chain", + tags=["evolution"], +) +@extend_schema_view( + list=extend_schema( + summary="List evolution chains", + ) +) class EvolutionChainResource(PokeapiCommonViewset): queryset = EvolutionChain.objects.all() serializer_class = EvolutionChainDetailSerializer list_serializer_class = EvolutionChainSummarySerializer +@extend_schema( + description="Evolution triggers are the events and conditions that cause a Pokémon to evolve. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Methods_of_evolution) for greater detail.", + summary="Get evolution trigger", + tags=["evolution"], +) +@extend_schema_view( + list=extend_schema( + summary="List evolution triggers", + ) +) class EvolutionTriggerResource(PokeapiCommonViewset): queryset = EvolutionTrigger.objects.all() serializer_class = EvolutionTriggerDetailSerializer list_serializer_class = EvolutionTriggerSummarySerializer +@extend_schema( + description="A generation is a grouping of the Pokémon games that separates them based on the Pokémon they include. In each generation, a new set of Pokémon, Moves, Abilities and Types that did not exist in the previous generation are released.", + summary="Get genration", + tags=["games"], +) +@extend_schema_view( + list=extend_schema( + summary="List genrations", + ) +) class GenerationResource(PokeapiCommonViewset): queryset = Generation.objects.all() serializer_class = GenerationDetailSerializer list_serializer_class = GenerationSummarySerializer +@extend_schema( + description="Genders were introduced in Generation II for the purposes of breeding Pokémon but can also result in visual differences or even different evolutionary lines. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Gender) for greater detail.", + summary="Get gender", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List genders", + ) +) class GenderResource(PokeapiCommonViewset): queryset = Gender.objects.all() serializer_class = GenderDetailSerializer list_serializer_class = GenderSummarySerializer +@extend_schema( + description="Growth rates are the speed with which Pokémon gain levels through experience. Check out [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Experience) for greater detail.", + summary="Get growth rate", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List growth rates", + ) +) class GrowthRateResource(PokeapiCommonViewset): queryset = GrowthRate.objects.all() serializer_class = GrowthRateDetailSerializer list_serializer_class = GrowthRateSummarySerializer +@extend_schema( + description="An item is an object in the games which the player can pick up, keep in their bag, and use in some manner. They have various uses, including healing, powering up, helping catch Pokémon, or to access a new area.", + summary="Get item", + tags=["items"], +) +@extend_schema_view( + list=extend_schema( + summary="List items", + ) +) class ItemResource(PokeapiCommonViewset): queryset = Item.objects.all() serializer_class = ItemDetailSerializer list_serializer_class = ItemSummarySerializer +@extend_schema( + description="Item categories determine where items will be placed in the players bag.", + summary="Get item category", + tags=["items"], +) +@extend_schema_view( + list=extend_schema( + summary="List item categories", + ) +) class ItemCategoryResource(PokeapiCommonViewset): queryset = ItemCategory.objects.all() serializer_class = ItemCategoryDetailSerializer list_serializer_class = ItemCategorySummarySerializer +@extend_schema( + description='Item attributes define particular aspects of items, e.g."usable in battle" or "consumable".', + summary="Get item attribute", + tags=["items"], +) +@extend_schema_view( + list=extend_schema( + summary="List item attributes", + ) +) class ItemAttributeResource(PokeapiCommonViewset): queryset = ItemAttribute.objects.all() serializer_class = ItemAttributeDetailSerializer list_serializer_class = ItemAttributeSummarySerializer +@extend_schema( + description='The various effects of the move"Fling" when used with different items.', + summary="Get item fling effect", + tags=["items"], +) +@extend_schema_view( + list=extend_schema( + summary="List item fling effects", + ) +) class ItemFlingEffectResource(PokeapiCommonViewset): queryset = ItemFlingEffect.objects.all() serializer_class = ItemFlingEffectDetailSerializer list_serializer_class = ItemFlingEffectSummarySerializer +@extend_schema( + description="Pockets within the players bag used for storing items by category.", + summary="Get item pocket", + tags=["items"], +) +@extend_schema_view( + list=extend_schema( + summary="List item pockets", + ) +) class ItemPocketResource(PokeapiCommonViewset): queryset = ItemPocket.objects.all() serializer_class = ItemPocketDetailSerializer list_serializer_class = ItemPocketSummarySerializer +@extend_schema( + description="Languages for translations of API resource information.", + summary="Get language", + tags=["utility"], +) +@extend_schema_view( + list=extend_schema( + summary="List languages", + ) +) class LanguageResource(PokeapiCommonViewset): queryset = Language.objects.all() serializer_class = LanguageDetailSerializer list_serializer_class = LanguageSummarySerializer +@extend_schema( + description="Locations that can be visited within the games. Locations make up sizable portions of regions, like cities or routes.", + summary="Get location", + tags=["location"], +) +@extend_schema_view( + list=extend_schema( + summary="List locations", + ) +) class LocationResource(PokeapiCommonViewset): queryset = Location.objects.all() serializer_class = LocationDetailSerializer list_serializer_class = LocationSummarySerializer +@extend_schema( + description="Location areas are sections of areas, such as floors in a building or cave. Each area has its own set of possible Pokémon encounters.", + summary="Get location area", + tags=["location"], +) +@extend_schema_view( + list=extend_schema( + summary="List location areas", + ) +) class LocationAreaResource(ListOrDetailSerialRelation, viewsets.ReadOnlyModelViewSet): queryset = LocationArea.objects.all() serializer_class = LocationAreaDetailSerializer list_serializer_class = LocationAreaSummarySerializer +@extend_schema( + description="Machines are the representation of items that teach moves to Pokémon. They vary from version to version, so it is not certain that one specific TM or HM corresponds to a single Machine.", + summary="Get machine", + tags=["machines"], +) +@extend_schema_view( + list=extend_schema( + summary="List machines", + ) +) class MachineResource(PokeapiCommonViewset): queryset = Machine.objects.all() serializer_class = MachineDetailSerializer list_serializer_class = MachineSummarySerializer +@extend_schema( + description="Moves are the skills of Pokémon in battle. In battle, a Pokémon uses one move each turn. Some moves (including those learned by Hidden Machine) can be used outside of battle as well, usually for the purpose of removing obstacles or exploring new areas.", + summary="Get move", + tags=["moves"], +) +@extend_schema_view( + list=extend_schema( + summary="List moves", + ) +) class MoveResource(PokeapiCommonViewset): queryset = Move.objects.all() serializer_class = MoveDetailSerializer list_serializer_class = MoveSummarySerializer +@extend_schema( + description="Damage classes moves can have, e.g. physical, special, or non-damaging.", + summary="Get move damage class", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List move damage classes", + ) +) class MoveDamageClassResource(PokeapiCommonViewset): queryset = MoveDamageClass.objects.all() serializer_class = MoveDamageClassDetailSerializer list_serializer_class = MoveDamageClassSummarySerializer +@extend_schema( + description="Move Ailments are status conditions caused by moves used during battle. See [Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/Status_condition) for greater detail.", + summary="Get move meta ailment", + tags=["moves"], +) +@extend_schema_view( + list=extend_schema( + summary="List move meta ailments", + ) +) class MoveMetaAilmentResource(PokeapiCommonViewset): queryset = MoveMetaAilment.objects.all() serializer_class = MoveMetaAilmentDetailSerializer list_serializer_class = MoveMetaAilmentSummarySerializer +@extend_schema( + description="Styles of moves when used in the Battle Palace. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Battle_Frontier_(Generation_III)) for greater detail.", + summary="Get move battle style", + tags=["moves"], +) +@extend_schema_view( + list=extend_schema( + summary="List move battle styles", + ) +) class MoveBattleStyleResource(PokeapiCommonViewset): queryset = MoveBattleStyle.objects.all() serializer_class = MoveBattleStyleDetailSerializer list_serializer_class = MoveBattleStyleSummarySerializer +@extend_schema( + description="Very general categories that loosely group move effects.", + summary="Get move meta category", + tags=["moves"], +) +@extend_schema_view( + list=extend_schema( + summary="List move meta categories", + ) +) class MoveMetaCategoryResource(PokeapiCommonViewset): queryset = MoveMetaCategory.objects.all() serializer_class = MoveMetaCategoryDetailSerializer list_serializer_class = MoveMetaCategorySummarySerializer +@extend_schema( + description="Methods by which Pokémon can learn moves.", + summary="Get move learn method", + tags=["moves"], +) +@extend_schema_view( + list=extend_schema( + summary="List move learn methods", + ) +) class MoveLearnMethodResource(PokeapiCommonViewset): queryset = MoveLearnMethod.objects.all() serializer_class = MoveLearnMethodDetailSerializer list_serializer_class = MoveLearnMethodSummarySerializer +@extend_schema( + description="Targets moves can be directed at during battle. Targets can be Pokémon, environments or even other moves.", + summary="Get move target", + tags=["moves"], +) +@extend_schema_view( + list=extend_schema( + summary="List move targets", + ) +) class MoveTargetResource(PokeapiCommonViewset): queryset = MoveTarget.objects.all() serializer_class = MoveTargetDetailSerializer list_serializer_class = MoveTargetSummarySerializer +@extend_schema( + description="Natures influence how a Pokémon's stats grow. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Nature) for greater detail.", + summary="Get nature", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List natures", + ) +) class NatureResource(PokeapiCommonViewset): queryset = Nature.objects.all() serializer_class = NatureDetailSerializer list_serializer_class = NatureSummarySerializer +@extend_schema( + description="Areas used for grouping Pokémon encounters in Pal Park. They're like habitats that are specific to Pal Park.", + summary="Get pal park area", + tags=["location"], +) +@extend_schema_view( + list=extend_schema( + summary="List pal park areas", + ) +) class PalParkAreaResource(PokeapiCommonViewset): queryset = PalParkArea.objects.all() serializer_class = PalParkAreaDetailSerializer list_serializer_class = PalParkAreaSummarySerializer +@extend_schema( + description="Pokeathlon Stats are different attributes of a Pokémon's performance in Pokéathlons. In Pokéathlons, competitions happen on different courses; one for each of the different Pokéathlon stats. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9athlon) for greater detail.", + summary="Get pokeathlon stat", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokeathlon stats", + ) +) class PokeathlonStatResource(PokeapiCommonViewset): queryset = PokeathlonStat.objects.all() serializer_class = PokeathlonStatDetailSerializer list_serializer_class = PokeathlonStatSummarySerializer +@extend_schema( + description="A Pokédex is a handheld electronic encyclopedia device; one which is capable of recording and retaining information of the various Pokémon in a given region with the exception of the national dex and some smaller dexes related to portions of a region. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pokedex) for greater detail.", + summary="Get pokedex", + tags=["games"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokedex", + ) +) class PokedexResource(PokeapiCommonViewset): queryset = Pokedex.objects.all() serializer_class = PokedexDetailSerializer list_serializer_class = PokedexSummarySerializer +@extend_schema( + description="Colors used for sorting Pokémon in a Pokédex. The color listed in the Pokédex is usually the color most apparent or covering each Pokémon's body. No orange category exists; Pokémon that are primarily orange are listed as red or brown.", + summary="Get pokemon color", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokemon colors", + ) +) class PokemonColorResource(PokeapiCommonViewset): queryset = PokemonColor.objects.all() serializer_class = PokemonColorDetailSerializer list_serializer_class = PokemonColorSummarySerializer +@extend_schema( + description="Some Pokémon may appear in one of multiple, visually different forms. These differences are purely cosmetic. For variations within a Pokémon species, which do differ in more than just visuals, the 'Pokémon' entity is used to represent such a variety.", + summary="Get pokemon form", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokemon forms", + ) +) class PokemonFormResource(PokeapiCommonViewset): queryset = PokemonForm.objects.all() serializer_class = PokemonFormDetailSerializer list_serializer_class = PokemonFormSummarySerializer +@extend_schema( + description="Habitats are generally different terrain Pokémon can be found in but can also be areas designated for rare or legendary Pokémon.", + summary="Get pokemom habita", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokemom habitas", + ) +) class PokemonHabitatResource(PokeapiCommonViewset): queryset = PokemonHabitat.objects.all() serializer_class = PokemonHabitatDetailSerializer list_serializer_class = PokemonHabitatSummarySerializer +@extend_schema( + description="Shapes used for sorting Pokémon in a Pokédex.", + summary="Get pokemon shape", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokemon shapes", + ) +) class PokemonShapeResource(PokeapiCommonViewset): queryset = PokemonShape.objects.all() serializer_class = PokemonShapeDetailSerializer list_serializer_class = PokemonShapeSummarySerializer +@extend_schema( + description="Pokémon are the creatures that inhabit the world of the Pokémon games. They can be caught using Pokéballs and trained by battling with other Pokémon. Each Pokémon belongs to a specific species but may take on a variant which makes it differ from other Pokémon of the same species, such as base stats, available abilities and typings. See [Bulbapedia](http://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_(species)) for greater detail.", + summary="Get pokemon", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokemon", + ), +) class PokemonResource(PokeapiCommonViewset): queryset = Pokemon.objects.all() serializer_class = PokemonDetailSerializer list_serializer_class = PokemonSummarySerializer +@extend_schema( + description="A Pokémon Species forms the basis for at least one Pokémon. Attributes of a Pokémon species are shared across all varieties of Pokémon within the species. A good example is Wormadam; Wormadam is the species which can be found in three different varieties, Wormadam-Trash, Wormadam-Sandy and Wormadam-Plant.", + summary="Get pokemon species", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List pokemon species", + ) +) class PokemonSpeciesResource(PokeapiCommonViewset): queryset = PokemonSpecies.objects.all().order_by("id") serializer_class = PokemonSpeciesDetailSerializer list_serializer_class = PokemonSpeciesSummarySerializer +@extend_schema( + description="A region is an organized area of the Pokémon world. Most often, the main difference between regions is the species of Pokémon that can be encountered within them.", + summary="Get region", + tags=["location"], +) +@extend_schema_view( + list=extend_schema( + summary="List regions", + ) +) class RegionResource(PokeapiCommonViewset): queryset = Region.objects.all() serializer_class = RegionDetailSerializer list_serializer_class = RegionSummarySerializer +@extend_schema( + description="Stats determine certain aspects of battles. Each Pokémon has a value for each stat which grows as they gain levels and can be altered momentarily by effects in battles.", + summary="Get stat", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List stats", + ) +) class StatResource(PokeapiCommonViewset): queryset = Stat.objects.all() serializer_class = StatDetailSerializer list_serializer_class = StatSummarySerializer +@extend_schema( + description="Super contest effects refer to the effects of moves when used in super contests.", + summary="Get super contest effect", + tags=["contests"], +) +@extend_schema_view( + list=extend_schema( + summary="List super contest effects", + ) +) class SuperContestEffectResource(PokeapiCommonViewset): queryset = SuperContestEffect.objects.all() serializer_class = SuperContestEffectDetailSerializer list_serializer_class = SuperContestEffectSummarySerializer +@extend_schema( + description="Types are properties for Pokémon and their moves. Each type has three properties: which types of Pokémon it is super effective against, which types of Pokémon it is not very effective against, and which types of Pokémon it is completely ineffective against.", + summary="Get types", + tags=["pokemon"], +) +@extend_schema_view( + list=extend_schema( + summary="List types", + ) +) class TypeResource(PokeapiCommonViewset): queryset = Type.objects.all() serializer_class = TypeDetailSerializer list_serializer_class = TypeSummarySerializer +@extend_schema( + description="Versions of the games, e.g., Red, Blue or Yellow.", + summary="Get version", + tags=["games"], +) +@extend_schema_view( + list=extend_schema( + summary="List versions", + ) +) class VersionResource(PokeapiCommonViewset): queryset = Version.objects.all() serializer_class = VersionDetailSerializer list_serializer_class = VersionSummarySerializer +@extend_schema( + description="Version groups categorize highly similar versions of the games.", + summary="Get version group", + tags=["games"], +) +@extend_schema_view( + list=extend_schema( + summary="List version groups", + ) +) class VersionGroupResource(PokeapiCommonViewset): queryset = VersionGroup.objects.all() serializer_class = VersionGroupDetailSerializer list_serializer_class = VersionGroupSummarySerializer +@extend_schema( + description="Handles Pokemon Encounters as a sub-resource.", + summary="Get pokemon encounter", + tags=["encounters"], + responses={ + "200": { + "type": "array", + "items": { + "type": "object", + "required": ["location_area", "version_details"], + "properties": { + "location_area": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "example": "cerulean-city-area"}, + "url": { + "type": "string", + "format": "uri", + "example": "https://pokeapi.co/api/v2/location-area/281/", + }, + }, + }, + "version_details": { + "type": "array", + "items": { + "type": "object", + "required": ["encounter_details", "max_chance", "version"], + "properties": { + "encounter_details": { + "type": "array", + "items": { + "type": "object", + "required": [ + "chance", + "condition_values", + "max_level", + "method", + "min_level", + ], + "properties": { + "chance": { + "type": "number", + "example": 100, + }, + "condition_values": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "example": "story-progress-beat-red", + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://pokeapi.co/api/v2/encounter-condition-value/55/", + }, + }, + }, + }, + "max_level": { + "type": "number", + "example": 10, + }, + "method": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "example": "gift", + }, + "url": { + "type": "string", + "format": "uri", + "example": "https://pokeapi.co/api/v2/encounter-method/18/", + }, + }, + }, + "min_level": { + "type": "number", + "example": 10, + }, + }, + }, + }, + "max_chance": {"type": "number", "example": 100}, + "version": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "example": "red"}, + "url": { + "type": "string", + "format": "uri", + "example": "https://pokeapi.co/api/v2/version/1/", + }, + }, + }, + }, + }, + }, + }, + }, + } + }, +) class PokemonEncounterView(APIView): - """ - Handles Pokemon Encounters as a sub-resource. - """ - def get(self, request, pokemon_id): self.context = dict(request=request) diff --git a/pokemon_v2/migrations/0015_pokemoncries.py b/pokemon_v2/migrations/0015_pokemoncries.py new file mode 100644 index 00000000..05099ce1 --- /dev/null +++ b/pokemon_v2/migrations/0015_pokemoncries.py @@ -0,0 +1,41 @@ +# Generated by Django 3.2.23 on 2024-02-02 18:02 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + dependencies = [ + ("pokemon_v2", "0014_auto_20231121_1209"), + ] + + operations = [ + migrations.CreateModel( + name="PokemonCries", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("cries", models.JSONField()), + ( + "pokemon", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + related_name="pokemoncries", + to="pokemon_v2.pokemon", + ), + ), + ], + options={ + "abstract": False, + }, + ), + ] diff --git a/pokemon_v2/migrations/0016_typesprites.py b/pokemon_v2/migrations/0016_typesprites.py new file mode 100644 index 00000000..a9e752d6 --- /dev/null +++ b/pokemon_v2/migrations/0016_typesprites.py @@ -0,0 +1,41 @@ +# Generated by Django 3.2.23 on 2024-07-29 02:09 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + dependencies = [ + ("pokemon_v2", "0015_pokemoncries"), + ] + + operations = [ + migrations.CreateModel( + name="TypeSprites", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("sprites", models.JSONField()), + ( + "type", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + related_name="typesprites", + to="pokemon_v2.type", + ), + ), + ], + options={ + "abstract": False, + }, + ), + ] diff --git a/pokemon_v2/migrations/0017_pokemonmovemastery.py b/pokemon_v2/migrations/0017_pokemonmovemastery.py new file mode 100644 index 00000000..35b26433 --- /dev/null +++ b/pokemon_v2/migrations/0017_pokemonmovemastery.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.23 on 2024-09-22 08:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("pokemon_v2", "0016_typesprites"), + ] + + operations = [ + migrations.AddField( + model_name="pokemonmove", + name="mastery", + field=models.IntegerField(blank=True, null=True), + ), + ] diff --git a/pokemon_v2/models.py b/pokemon_v2/models.py index ed6622dc..f9ab450a 100644 --- a/pokemon_v2/models.py +++ b/pokemon_v2/models.py @@ -773,6 +773,10 @@ class TypeEfficacyPast(HasTypeEfficacy, HasGeneration): pass +class TypeSprites(HasType): + sprites = models.JSONField() + + ################# # STAT MODELS # ################# @@ -1757,6 +1761,7 @@ class MoveLearnMethodDescription(IsDescription, HasMoveLearnMethod): class PokemonMove(HasPokemon, HasMoveLearnMethod, HasVersionGroup, HasMove, HasOrder): level = models.IntegerField() + mastery = models.IntegerField(null=True, blank=True) class PokemonShape(HasName): @@ -1796,3 +1801,7 @@ class PokemonTypePast(HasPokemon, HasType, HasGeneration): class PokemonSprites(HasPokemon): sprites = models.JSONField() + + +class PokemonCries(HasPokemon): + cries = models.JSONField() diff --git a/pokemon_v2/serializers.py b/pokemon_v2/serializers.py index b1acff77..c59bb3e5 100644 --- a/pokemon_v2/serializers.py +++ b/pokemon_v2/serializers.py @@ -2,6 +2,7 @@ from collections import OrderedDict import json from django.urls import reverse from rest_framework import serializers +from drf_spectacular.utils import extend_schema_field # pylint: disable=redefined-builtin @@ -477,6 +478,16 @@ class CharacteristicDetailSerializer(serializers.ModelSerializer): "descriptions", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "integer", + "format": "int32", + }, + "examples": [[0, 5, 10, 15, 20, 25, 30]], + } + ) def get_values(self, obj): mod = obj.gene_mod_5 values = [] @@ -609,6 +620,23 @@ class RegionDetailSerializer(serializers.ModelSerializer): "version_groups", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["red-blue"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/version-group/1/"], + }, + }, + }, + } + ) def get_region_version_groups(self, obj): vg_regions = VersionGroupRegion.objects.filter(region=obj) data = VersionGroupRegionSerializer( @@ -676,6 +704,32 @@ class GenderDetailSerializer(serializers.ModelSerializer): model = Gender fields = ("id", "name", "pokemon_species_details", "required_for_evolution") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["rate", "pokemon_species"], + "properties": { + "rate": {"type": "integer", "format": "int32", "examples": [1]}, + "pokemon_species": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bulbasaur"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/pokemon-species/1/" + ], + }, + }, + }, + }, + }, + } + ) def get_species(self, obj): species_objects = [] @@ -698,6 +752,23 @@ class GenderDetailSerializer(serializers.ModelSerializer): return details + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["wormadam"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokemon-species/413/"], + }, + }, + }, + } + ) def get_required(self, obj): evo_objects = PokemonEvolution.objects.filter(gender=obj) species_list = [] @@ -907,6 +978,62 @@ class LocationAreaDetailSerializer(serializers.ModelSerializer): "pokemon_encounters", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["encounter_method", "version_details"], + "properties": { + "encounter_method": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["old-rod"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/encounter-method/2/" + ], + }, + }, + }, + "version_details": { + "type": "array", + "items": { + "type": "object", + "required": ["rate", "version"], + "properties": { + "rate": { + "type": "integer", + "format": "int32", + "examples": [5], + }, + "version": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["platinum"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version/14/" + ], + }, + }, + }, + }, + }, + }, + }, + }, + } + ) def get_method_rates(self, obj): # Get encounters related to this area and pull out unique encounter methods encounter_rates = LocationAreaEncounterRate.objects.filter( @@ -948,6 +1075,121 @@ class LocationAreaDetailSerializer(serializers.ModelSerializer): return encounter_rate_list + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["pokemon", "version_details"], + "properties": { + "pokemon": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["tentacool"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokemon/72/"], + }, + }, + }, + "version_details": { + "type": "array", + "items": { + "type": "object", + "required": ["version", "max_chance", "encounter_details"], + "properties": { + "version": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["diamond"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version/12/" + ], + }, + }, + }, + "max_chance": { + "type": "integer", + "format": "int32", + "examples": [60], + }, + "encounter_details": { + "type": "object", + "required": [ + "min_level", + "max_level", + "condition_value", + "chance", + "method", + ], + "properties": { + "min_level": { + "type": "integer", + "format": "int32", + "examples": [20], + }, + "max_level": { + "type": "integer", + "format": "int32", + "examples": [30], + }, + "condition_values": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["slot2-sapphire"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/encounter-condition-value/10/" + ], + }, + }, + }, + "chance": { + "type": "integer", + "format": "int32", + "examples": [60], + }, + "method": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["surf"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/encounter-method/5/" + ], + }, + }, + }, + }, + }, + }, + }, + }, + }, + }, + } + ) def get_encounters(self, obj): # get versions for later use version_objects = Version.objects.all() @@ -1119,6 +1361,31 @@ class AbilityDetailSerializer(serializers.ModelSerializer): "pokemon", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["is_hidden", "slot", "pokemon"], + "properties": { + "is_hidden": {"type": "boolean"}, + "slot": {"type": "integer", "format": "int32", "examples": [3]}, + "pokemon": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["gloom"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokemon/44/"], + }, + }, + }, + }, + }, + } + ) def get_ability_pokemon(self, obj): pokemon_ability_objects = PokemonAbility.objects.filter(ability=obj) data = PokemonAbilitySerializer( @@ -1169,6 +1436,73 @@ class StatDetailSerializer(serializers.ModelSerializer): "names", ) + @extend_schema_field( + field={ + "type": "object", + "required": ["decrease", "increase"], + "properties": { + "increase": { + "type": "array", + "items": { + "type": "object", + "required": ["change", "move"], + "properties": { + "change": { + "type": "integer", + "format": "int32", + "examples": [-1], + }, + "move": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["swords-dance"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/move/14/" + ], + }, + }, + }, + }, + }, + }, + "decrease": { + "type": "array", + "items": { + "type": "object", + "required": ["change", "move"], + "properties": { + "change": { + "type": "integer", + "format": "int32", + "examples": [5], + }, + "move": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["growl"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/move/45/" + ], + }, + }, + }, + }, + }, + }, + }, + } + ) def get_moves_that_affect(self, obj): stat_change_objects = MoveMetaStatChange.objects.filter(stat=obj) stat_changes = MoveMetaStatChangeSerializer( @@ -1185,6 +1519,44 @@ class StatDetailSerializer(serializers.ModelSerializer): return changes + @extend_schema_field( + field={ + "type": "object", + "required": ["increase", "decrease"], + "properties": { + "increase": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["lonely"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/nature/6/"], + }, + }, + }, + }, + "decrease": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bold"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/nature/2/"], + }, + }, + }, + }, + }, + } + ) def get_natures_that_affect(self, obj): increase_objects = Nature.objects.filter(increased_stat=obj) increases = NatureSummarySerializer( @@ -1279,6 +1651,23 @@ class ItemAttributeDetailSerializer(serializers.ModelSerializer): model = ItemAttribute fields = ("id", "name", "descriptions", "items", "names") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["master-ball"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/item/1/"], + }, + }, + }, + } + ) def get_attribute_items(self, obj): item_map_objects = ItemAttributeMap.objects.filter(item_attribute=obj) items = [] @@ -1395,6 +1784,36 @@ class ItemDetailSerializer(serializers.ModelSerializer): "machines", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["machine", "version_group"], + "properties": { + "machine": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/machine/1/"], + }, + "version_group": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["sword-shield"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version-group/20/" + ], + }, + }, + }, + }, + }, + } + ) def get_item_machines(self, obj): machine_objects = Machine.objects.filter(item=obj) @@ -1415,10 +1834,42 @@ class ItemDetailSerializer(serializers.ModelSerializer): return machines + @extend_schema_field( + field={ + "type": "object", + "required": ["default"], + "properties": { + "default": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/media/sprites/items/master-ball.png" + ], + } + }, + } + ) def get_item_sprites(self, obj): sprites_object = ItemSprites.objects.get(item_id=obj) return sprites_object.sprites + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["countable"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/item-attribute/1/"], + }, + }, + }, + } + ) def get_item_attributes(self, obj): item_attribute_maps = ItemAttributeMap.objects.filter(item=obj) serializer = ItemAttributeMapSerializer( @@ -1436,6 +1887,60 @@ class ItemDetailSerializer(serializers.ModelSerializer): return attributes + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["pokemon", "version-details"], + "properties": { + "pokemon": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["farfetchd"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokemon/83/"], + }, + }, + }, + "version-details": { + "type": "array", + "items": { + "type": "object", + "required": ["rarity", "version"], + "properties": { + "rarity": { + "type": "integer", + "format": "int32", + "examples": [5], + }, + "version": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["ruby"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version/7/" + ], + }, + }, + }, + }, + }, + }, + }, + }, + } + ) def get_held_by_pokemon(self, obj): pokemon_items = PokemonItem.objects.filter(item=obj).order_by("pokemon_id") pokemon_ids = pokemon_items.values("pokemon_id").distinct() @@ -1468,6 +1973,19 @@ class ItemDetailSerializer(serializers.ModelSerializer): return pokemon_list + @extend_schema_field( + field={ + "type": "object", + "required": ["url"], + "properties": { + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/evolution-chain/51/"], + } + }, + } + ) def get_baby_trigger_for(self, obj): try: chain_object = EvolutionChain.objects.get(baby_trigger_item=obj) @@ -1532,6 +2050,36 @@ class NatureDetailSerializer(serializers.ModelSerializer): "names", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["max_change", "pokeathlon_stat"], + "properties": { + "max_change": { + "type": "integer", + "format": "int32", + "examples": [1], + }, + "pokeathlon_stat": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["power"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/pokeathlon-stat/2/" + ], + }, + }, + }, + }, + }, + } + ) def get_pokeathlon_stats(self, obj): pokeathlon_stat_objects = NaturePokeathlonStat.objects.filter(nature=obj) pokeathlon_stats = NaturePokeathlonStatSerializer( @@ -1587,6 +2135,35 @@ class BerryFlavorDetailSerializer(serializers.ModelSerializer): model = BerryFlavor fields = ("id", "name", "berries", "contest_type", "names") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["potency", "berry"], + "properties": { + "potency": {"type": "integer", "examples": [10]}, + "berry": { + "type": "object", + "require": ["name", "url"], + "properties": { + "name": { + "type": "string", + "description": "The name of the berry", + "examples": ["rowap"], + }, + "url": { + "type": "string", + "format": "uri", + "description": "The URL to get more information about the berry", + "examples": ["https://pokeapi.co/api/v2/berry/64/"], + }, + }, + }, + }, + }, + } + ) def get_berries_with_flavor(self, obj): flavor_map_objects = BerryFlavorMap.objects.filter( berry_flavor=obj, potency__gt=0 @@ -1624,6 +2201,37 @@ class BerryDetailSerializer(serializers.ModelSerializer): "natural_gift_type", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["potency", "flavor"], + "properties": { + "potency": {"type": "integer", "examples": [10]}, + "flavor": { + "type": "object", + "require": ["name", "url"], + "properties": { + "name": { + "type": "string", + "description": "The name of the flavor", + "examples": ["spicy"], + }, + "url": { + "type": "string", + "format": "uri", + "description": "The URL to get more information about the flavor", + "examples": [ + "https://pokeapi.co/api/v2/berry-flavor/1/" + ], + }, + }, + }, + }, + }, + } + ) def get_berry_flavors(self, obj): flavor_map_objects = BerryFlavorMap.objects.filter(berry=obj) flavor_maps = BerryFlavorMapSerializer( @@ -1666,6 +2274,28 @@ class EggGroupDetailSerializer(serializers.ModelSerializer): model = EggGroup fields = ("id", "name", "names", "pokemon_species") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["potency", "flavor"], + "properties": { + "name": { + "type": "string", + "description": "Pokemon species name.", + "examples": ["bulbasaur"], + }, + "url": { + "type": "string", + "format": "uri", + "description": "The URL to get more information about the species", + "examples": ["https://pokeapi.co/api/v2/pokemon-species/1/"], + }, + }, + }, + } + ) def get_species(self, obj): results = PokemonEggGroup.objects.filter(egg_group=obj) data = PokemonEggGroupSerializer(results, many=True, context=self.context).data @@ -1710,6 +2340,12 @@ class TypeNameSerializer(serializers.ModelSerializer): fields = ("name", "language") +class TypeSpriteSerializer(serializers.ModelSerializer): + class Meta: + model = TypeSprites + fields = ("sprites",) + + class TypeDetailSerializer(serializers.ModelSerializer): """ Serializer for the Type resource @@ -1727,6 +2363,7 @@ class TypeDetailSerializer(serializers.ModelSerializer): ) pokemon = serializers.SerializerMethodField("get_type_pokemon") moves = MoveSummarySerializer(many=True, read_only=True, source="move") + sprites = serializers.SerializerMethodField("get_type_sprites") class Meta: model = Type @@ -1741,10 +2378,16 @@ class TypeDetailSerializer(serializers.ModelSerializer): "names", "pokemon", "moves", + "sprites", ) + def get_type_sprites(self, obj): + sprites_object = TypeSprites.objects.get(type_id=obj) + return sprites_object.sprites + # adds an entry for the given type with the given damage # factor in the given direction to the set of relations + def add_type_entry(self, relations, type, damage_factor, direction="_damage_to"): if damage_factor == 200: relations["double" + direction].append( @@ -1759,6 +2402,111 @@ class TypeDetailSerializer(serializers.ModelSerializer): TypeSummarySerializer(type, context=self.context).data ) + @extend_schema_field( + field={ + "type": "object", + "required": [ + "no_damage_to", + "half_damage_to", + "double_damage_to", + "no_damage_from", + "half_damage_from", + "double_damage_from", + ], + "properties": { + "no_damage_to": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["flying"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/3/"], + }, + }, + }, + }, + "half_damage_to": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bug"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/7/"], + }, + }, + }, + }, + "double_damage_to": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["poison"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/4/"], + }, + }, + }, + }, + "no_damage_from": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["electric"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/13/"], + }, + }, + }, + }, + "half_damage_from": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["poison"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/4/"], + }, + }, + }, + }, + "double_damage_from": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["water"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/11/"], + }, + }, + }, + }, + }, + } + ) def get_type_relationships(self, obj): relations = OrderedDict() relations["no_damage_to"] = [] @@ -1823,6 +2571,159 @@ class TypeDetailSerializer(serializers.ModelSerializer): return # returns past type relationships for the given type object + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["generation", "damage_relations"], + "properties": { + "generation": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["generation-v"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/generation/5/"], + }, + }, + }, + "damage_relations": { + "type": "object", + "required": [ + "no_damage_to", + "half_damage_to", + "double_damage_to", + "no_damage_from", + "half_damage_from", + "double_damage_from", + ], + "properties": { + "no_damage_to": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["flying"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/type/3/" + ], + }, + }, + }, + }, + "half_damage_to": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bug"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/type/7/" + ], + }, + }, + }, + }, + "double_damage_to": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["poison"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/type/4/" + ], + }, + }, + }, + }, + "no_damage_from": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["electric"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/type/13/" + ], + }, + }, + }, + }, + "half_damage_from": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["poison"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/type/4/" + ], + }, + }, + }, + }, + "double_damage_from": { + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["water"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/type/11/" + ], + }, + }, + }, + }, + }, + }, + }, + }, + } + ) def get_type_past_relationships(self, obj): # collect data from DB damage_type_results = list(TypeEfficacyPast.objects.filter(damage_type=obj)) @@ -1917,6 +2818,35 @@ class TypeDetailSerializer(serializers.ModelSerializer): gen_introduced = Generation.objects.get(pk=type_obj.generation.id) return gen_introduced.id <= current_gen.id + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["potency", "flavor"], + "properties": { + "slot": {"type": "integer", "examples": [1]}, + "pokemon": { + "type": "object", + "require": ["name", "url"], + "properties": { + "name": { + "type": "string", + "description": "The name of the pokemon", + "examples": ["sandshrew"], + }, + "url": { + "type": "string", + "format": "uri", + "description": "The URL to get more information about the pokemon", + "examples": ["https://pokeapi.co/api/v2/pokemon/27/"], + }, + }, + }, + }, + }, + } + ) def get_type_pokemon(self, obj): poke_type_objects = PokemonType.objects.filter(type=obj) poke_types = PokemonTypeSerializer( @@ -2023,6 +2953,23 @@ class MoveMetaAilmentDetailSerializer(serializers.ModelSerializer): model = MoveMetaAilment fields = ("id", "name", "moves", "names") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["thunder-punch"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/move/9/"], + }, + }, + }, + } + ) def get_ailment_moves(self, obj): move_meta_objects = MoveMeta.objects.filter(move_meta_ailment=obj) moves = [] @@ -2053,6 +3000,23 @@ class MoveMetaCategoryDetailSerializer(serializers.ModelSerializer): model = MoveMetaCategory fields = ("id", "name", "descriptions", "moves") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["sing"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/move/47/"], + }, + }, + }, + } + ) def get_category_moves(self, obj): move_meta_objects = MoveMeta.objects.filter(move_meta_category=obj) moves = [] @@ -2147,6 +3111,41 @@ class MoveChangeSerializer(serializers.ModelSerializer): "version_group", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["effect", "short_effect", "language"], + "properties": { + "effect": { + "type": "string", + "examples": [ + "Inflicts [regular damage]{mechanic:regular-damage}." + ], + }, + "short_effect": { + "type": "string", + "examples": [ + "Inflicts regular damage with no additional effect." + ], + }, + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + }, + }, + }, + }, + } + ) def get_effects(self, obj): effect_texts = MoveEffectEffectText.objects.filter(move_effect=obj.move_effect) data = MoveEffectEffectTextSerializer( @@ -2244,6 +3243,23 @@ class MoveDetailSerializer(serializers.ModelSerializer): "learned_by_pokemon", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["clefairy"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokemon/35/"], + }, + }, + }, + } + ) def get_learned_by_pokemon(self, obj): pokemon_moves = PokemonMove.objects.filter(move_id=obj).order_by("pokemon_id") @@ -2261,6 +3277,42 @@ class MoveDetailSerializer(serializers.ModelSerializer): return pokemon_list + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["machine", "version_group"], + "properties": { + "machine": { + "type": "object", + "required": ["url"], + "properties": { + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/machine/1/"], + } + }, + }, + "version_group": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["sword-shield"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version-group/1/" + ], + }, + }, + }, + }, + }, + } + ) def get_move_machines(self, obj): machine_objects = Machine.objects.filter(move=obj) @@ -2281,6 +3333,110 @@ class MoveDetailSerializer(serializers.ModelSerializer): return machines + @extend_schema_field( + field={ + "type": "object", + "required": ["normal", "super"], + "properties": { + "normal": { + "type": "object", + "required": ["use_before", "use_after"], + "properties": { + "use_before": { + "type": "array", + "nullable": True, + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["fire-punch"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/move/7/" + ], + }, + }, + }, + }, + "use_after": { + "type": "array", + "nullable": True, + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["ice-punch"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/move/8/" + ], + }, + }, + }, + }, + }, + }, + "super": { + "type": "object", + "required": ["use_before", "use_after"], + "properties": { + "use_before": { + "type": "array", + "nullable": True, + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["night-slash"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/move/400/" + ], + }, + }, + }, + }, + "use_after": { + "type": "array", + "nullable": True, + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["focus-energy"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/move/116/" + ], + }, + }, + }, + }, + }, + }, + }, + } + ) def get_combos(self, obj): normal_before_objects = ContestCombo.objects.filter(first_move=obj) normal_before_data = ContestComboSerializer( @@ -2338,14 +3494,109 @@ class MoveDetailSerializer(serializers.ModelSerializer): return details + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["effect", "short_effect", "language"], + "properties": { + "effect": { + "type": "string", + "examples": [ + "Inflicts [regular damage]{mechanic:regular-damage}." + ], + }, + "short_effect": { + "type": "string", + "examples": [ + "Inflicts regular damage with no additional effect." + ], + }, + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + }, + }, + }, + }, + } + ) def get_effect_text(self, obj): effect_texts = MoveEffectEffectText.objects.filter(move_effect=obj.move_effect) data = MoveEffectEffectTextSerializer( effect_texts, many=True, context=self.context ).data + if len(data) > 0: + for key, value in data[0].items(): + if "$effect_chance%" in value: + data[0][key] = value.replace( + "$effect_chance", f"{obj.move_effect_chance}" + ) return data + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["effect_entries", "version_group"], + "properties": { + "effect_entries": { + "type": "array", + "items": { + "type": "object", + "required": ["effect", "language"], + "properties": { + "effect": { + "type": "string", + "examples": [ + "Hits Pokémon under the effects of dig and fly." + ], + }, + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/language/9/" + ], + }, + }, + }, + }, + }, + }, + "version_group": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["gold-silver"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version-group/3/" + ], + }, + }, + }, + }, + }, + } + ) def get_effect_change_text(self, obj): effect_changes = MoveEffectChange.objects.filter(move_effect=obj.move_effect) data = MoveEffectChangeSerializer( @@ -2354,6 +3605,30 @@ class MoveDetailSerializer(serializers.ModelSerializer): return data + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["change", "stat"], + "properties": { + "change": {"type": "integer", "format": "int32", "examples": [2]}, + "stat": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["attack"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/stat/1/"], + }, + }, + }, + }, + }, + } + ) def get_move_stat_change(self, obj): stat_change_objects = MoveMetaStatChange.objects.filter(move=obj) stat_changes = MoveMetaStatChangeSerializer( @@ -2398,6 +3673,37 @@ class PalParkAreaDetailSerializer(serializers.ModelSerializer): model = PalParkArea fields = ("id", "name", "names", "pokemon_encounters") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["base_score", "pokemon-species", "rate"], + "properties": { + "base_score": { + "type": "integer", + "format": "int32", + "examples": [50], + }, + "pokemon-species": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bulbasaur"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/pokemon-species/1/" + ], + }, + }, + }, + "rate": {"type": "integer", "format": "int32", "examples": [30]}, + }, + }, + } + ) def get_encounters(self, obj): pal_park_objects = PalPark.objects.filter(pal_park_area=obj) parks = PalParkSerializer( @@ -2482,6 +3788,30 @@ class PokemonFormDetailSerializer(serializers.ModelSerializer): "types", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["language", "name"], + "properties": { + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + }, + }, + "name": {"type": "string", "examples": ["Plant Cloak"]}, + }, + }, + } + ) def get_pokemon_form_names(self, obj): form_results = PokemonFormName.objects.filter( pokemon_form=obj, name__regex=".+" @@ -2497,6 +3827,30 @@ class PokemonFormDetailSerializer(serializers.ModelSerializer): return data + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["language", "name"], + "properties": { + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + }, + }, + "name": {"type": "string", "examples": ["Plant Cloak"]}, + }, + }, + } + ) def get_pokemon_form_pokemon_names(self, obj): form_results = PokemonFormName.objects.filter( pokemon_form=obj, pokemon_name__regex=".+" @@ -2513,10 +3867,68 @@ class PokemonFormDetailSerializer(serializers.ModelSerializer): return data + @extend_schema_field( + field={ + "type": "object", + "properties": { + "default": { + "type": "string", + "format": "uri", + "examples": [ + "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/412.png" + ], + } + }, + "additionalProperties": { # Stoplight Elements doesn't render this well + "type": "string", + "format": "uri", + "nullable": True, + "examples": [ + "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/412.png" + ], + }, + "examples": [ + { + "back_default": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/412.png", + "back_female": None, + "back_shiny": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/412.png", + "back_shiny_female": None, + "front_default": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/412.png", + "front_female": None, + "front_shiny": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/412.png", + "front_shiny_female": None, + } + ], + } + ) def get_pokemon_form_sprites(self, obj): sprites_object = PokemonFormSprites.objects.get(pokemon_form_id=obj) return sprites_object.sprites + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["slot", "type"], + "properties": { + "slot": {"type": "integer", "format": "int32", "examples": [1]}, + "type": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bug"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/7/"], + }, + }, + }, + }, + }, + } + ) def get_pokemon_form_types(self, obj): form_type_objects = PokemonFormType.objects.filter(pokemon_form=obj) form_types = PokemonFormTypeSerializer( @@ -2600,6 +4012,29 @@ class MoveLearnMethodDetailSerializer(serializers.ModelSerializer): model = MoveLearnMethod fields = ("id", "name", "names", "descriptions", "version_groups") + # "version_groups": [ + # { + # "name": "red-blue", + # "url": "https://pokeapi.co/api/v2/version-group/1/" + # }, + + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["red-blue"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/version-group/1/"], + }, + }, + }, + } + ) def get_method_version_groups(self, obj): version_group_objects = VersionGroupMoveLearnMethod.objects.filter( move_learn_method=obj @@ -2644,6 +4079,23 @@ class PokemonShapeDetailSerializer(serializers.ModelSerializer): model = PokemonShape fields = ("id", "name", "awesome_names", "names", "pokemon_species") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["url", "name"], + "properties": { + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + "name": {"type": "string", "examples": ["Ball"]}, + }, + }, + } + ) def get_shape_names(self, obj): results = PokemonShapeName.objects.filter(pokemon_shape_id=obj) serializer = PokemonShapeNameSerializer( @@ -2656,6 +4108,46 @@ class PokemonShapeDetailSerializer(serializers.ModelSerializer): return data + # "awesome_names": [ + # { + # "awesome_name": "Pomacé", + # "language": { + # "name": "fr", + # "url": "https://pokeapi.co/api/v2/language/5/" + # } + # }, + # { + # "awesome_name": "Pomaceous", + # "language": { + # "name": "en", + # "url": "https://pokeapi.co/api/v2/language/9/" + # } + # } + # ], + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["awesome_name", "language"], + "properties": { + "awesome_name": {"type": "string", "examples": ["Pomaceous"]}, + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + }, + }, + }, + }, + } + ) def get_shape_awesome_names(self, obj): results = PokemonShapeName.objects.filter(pokemon_shape_id=obj) serializer = PokemonShapeNameSerializer( @@ -2722,6 +4214,7 @@ class PokemonDetailSerializer(serializers.ModelSerializer): held_items = serializers.SerializerMethodField("get_pokemon_held_items") location_area_encounters = serializers.SerializerMethodField("get_encounters") sprites = serializers.SerializerMethodField("get_pokemon_sprites") + cries = serializers.SerializerMethodField("get_pokemon_cries") class Meta: model = Pokemon @@ -2742,15 +4235,416 @@ class PokemonDetailSerializer(serializers.ModelSerializer): "moves", "species", "sprites", + "cries", "stats", "types", "past_types", ) + @extend_schema_field( + field={ + "type": "object", + "properties": { + "front_default": { + "type": "string", + "format": "uri", + "exmaple": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/1.png", + } + }, + "additionalProperties": { # Stoplight Elements doesn't render this well + "type": "string", + "format": "uri", + "nullable": True, + "examples": [ + "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/1.png" + ], + }, + "examples": [ + { + "back_default": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/1.png", + "back_female": None, + "back_shiny": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/1.png", + "back_shiny_female": None, + "front_default": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png", + "front_female": None, + "front_shiny": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/1.png", + "front_shiny_female": None, + } + ], + } + ) def get_pokemon_sprites(self, obj): sprites_object = PokemonSprites.objects.get(pokemon_id=obj) return sprites_object.sprites + @extend_schema_field( + field={ + "type": "object", + "required": ["latest", "legacy"], + "properties": { + "latest": { + "type": "string", + "format": "uri", + "examples": [ + "https://raw.githubusercontent.com/PokeAPI/cries/main/cries/pokemon/latest/50.ogg" + ], + }, + "legacy": { + "type": "string", + "format": "uri", + "examples": [ + "https://raw.githubusercontent.com/PokeAPI/cries/main/cries/pokemon/legacy/50.ogg" + ], + }, + }, + } + ) + def get_pokemon_cries(self, obj): + cries_object = PokemonCries.objects.get(pokemon_id=obj) + return cries_object.cries + + # { + # "move": { + # "name": "scratch", + # "url": "https://pokeapi.co/api/v2/move/10/" + # }, + # "version_group_details": [ + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "red-blue", + # "url": "https://pokeapi.co/api/v2/version-group/1/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "yellow", + # "url": "https://pokeapi.co/api/v2/version-group/2/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "gold-silver", + # "url": "https://pokeapi.co/api/v2/version-group/3/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "crystal", + # "url": "https://pokeapi.co/api/v2/version-group/4/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "ruby-sapphire", + # "url": "https://pokeapi.co/api/v2/version-group/5/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "emerald", + # "url": "https://pokeapi.co/api/v2/version-group/6/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "firered-leafgreen", + # "url": "https://pokeapi.co/api/v2/version-group/7/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "diamond-pearl", + # "url": "https://pokeapi.co/api/v2/version-group/8/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "platinum", + # "url": "https://pokeapi.co/api/v2/version-group/9/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "heartgold-soulsilver", + # "url": "https://pokeapi.co/api/v2/version-group/10/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "black-white", + # "url": "https://pokeapi.co/api/v2/version-group/11/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "colosseum", + # "url": "https://pokeapi.co/api/v2/version-group/12/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "xd", + # "url": "https://pokeapi.co/api/v2/version-group/13/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "black-2-white-2", + # "url": "https://pokeapi.co/api/v2/version-group/14/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "x-y", + # "url": "https://pokeapi.co/api/v2/version-group/15/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "omega-ruby-alpha-sapphire", + # "url": "https://pokeapi.co/api/v2/version-group/16/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "sun-moon", + # "url": "https://pokeapi.co/api/v2/version-group/17/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "ultra-sun-ultra-moon", + # "url": "https://pokeapi.co/api/v2/version-group/18/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "lets-go-pikachu-lets-go-eevee", + # "url": "https://pokeapi.co/api/v2/version-group/19/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "sword-shield", + # "url": "https://pokeapi.co/api/v2/version-group/20/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "brilliant-diamond-and-shining-pearl", + # "url": "https://pokeapi.co/api/v2/version-group/23/" + # } + # }, + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "scarlet-violet", + # "url": "https://pokeapi.co/api/v2/version-group/25/" + # } + # } + # ] + # }, + + # "move": { + # "name": "scratch", + # "url": "https://pokeapi.co/api/v2/move/10/" + # }, + # "version_group_details": [ + # { + # "level_learned_at": 1, + # "move_learn_method": { + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + # }, + # "version_group": { + # "name": "red-blue", + # "url": "https://pokeapi.co/api/v2/version-group/1/" + # } + # }, + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["move", "version_group_details"], + "properties": { + "move": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["scratch"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/move/10/"], + }, + }, + }, + "version_group_details": { + "type": "array", + "items": { + "type": "object", + "required": [ + "level_learned_at", + "move_learn_method", + "version_group", + ], + "properties": { + "level_learned_at": { + "type": "integer", + "format": "int32", + "examples": [1], + }, + "move_learn_method": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["level-up"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/move-learn-method/1/" + ], + }, + }, + }, + "version_group": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["red-blue"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version-group/1/" + ], + }, + }, + }, + }, + }, + }, + }, + }, + } + ) def get_pokemon_moves(self, obj): version_objects = VersionGroup.objects.all() version_data = VersionGroupSummarySerializer( @@ -2802,6 +4696,67 @@ class PokemonDetailSerializer(serializers.ModelSerializer): return move_list + # { + # "item": { + # "name": "soft-sand", + # "url": "https://pokeapi.co/api/v2/item/214/" + # }, + # "version_details": [ + # { + # "rarity": 5, + # "version": { + # "name": "diamond", + # "url": "https://pokeapi.co/api/v2/version/12/" + # } + # }, + @extend_schema_field( + field={ + "type": "object", + "required": ["item", "version_details"], + "properties": { + "item": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["soft-sand"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/item/214/"], + }, + }, + }, + "version_details": { + "type": "array", + "items": { + "type": "object", + "required": ["rarity", "version"], + "properties": { + "rarity": { + "type": "integer", + "format": "int32", + "examples": [5], + }, + "version": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["diamond"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/version/12/" + ], + }, + }, + }, + }, + }, + }, + }, + } + ) def get_pokemon_held_items(self, obj): # Get items related to this pokemon and pull out unique Item IDs pokemon_items = PokemonItem.objects.filter(pokemon_id=obj).order_by("item_id") @@ -2835,6 +4790,39 @@ class PokemonDetailSerializer(serializers.ModelSerializer): return item_list + # { + # "ability": { + # "name": "sand-veil", + # "url": "https://pokeapi.co/api/v2/ability/8/" + # }, + # "is_hidden": false, + # "slot": 1 + # }, + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["ability", "is_hidden", "slot"], + "properties": { + "ability": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["sand-veil"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/ability/8/"], + }, + }, + }, + "is_hidden": {"type": "boolean"}, + "slot": {"type": "integer", "format": "int32", "examples": [1]}, + }, + }, + } + ) def get_pokemon_abilities(self, obj): pokemon_ability_objects = PokemonAbility.objects.filter(pokemon=obj) data = PokemonAbilitySerializer( @@ -2848,6 +4836,77 @@ class PokemonDetailSerializer(serializers.ModelSerializer): return abilities + # { + # "abilities": [ + # { + # "ability": { + # "name": "levitate", + # "url": "https://pokeapi.co/api/v2/ability/26/" + # }, + # "is_hidden": false, + # "slot": 1 + # } + # ], + # "generation": { + # "name": "generation-vi", + # "url": "https://pokeapi.co/api/v2/generation/6/" + # } + # } + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["abilities", "generation"], + "properties": { + "abilities": { + "type": "array", + "items": { + "type": "object", + "required": ["ability", "is_hidden", "slot"], + "properties": { + "ability": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["levitate"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/ability/26/" + ], + }, + }, + }, + "is_hidden": {"type": "boolean"}, + "slot": { + "type": "integer", + "format": "int32", + "examples": [1], + }, + }, + }, + }, + "generation": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["generation-vi"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/generation/6/"], + }, + }, + }, + }, + }, + } + ) def get_past_pokemon_abilities(self, obj): pokemon_past_ability_objects = PokemonAbilityPast.objects.filter(pokemon=obj) pokemon_past_abilities = PokemonAbilityPastSerializer( @@ -2883,6 +4942,37 @@ class PokemonDetailSerializer(serializers.ModelSerializer): return final_data + # { + # "slot": 1, + # "type": { + # "name": "ghost", + # "url": "https://pokeapi.co/api/v2/type/8/" + # } + # }, + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["slot", "type"], + "properties": { + "slot": {"type": "integer", "format": "int32", "examples": [1]}, + "type": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["ghost"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/type/8/"], + }, + }, + }, + }, + }, + } + ) def get_pokemon_types(self, obj): poke_type_objects = PokemonType.objects.filter(pokemon=obj) poke_types = PokemonTypeSerializer( @@ -2894,6 +4984,77 @@ class PokemonDetailSerializer(serializers.ModelSerializer): return poke_types + # "past_types": [ + # { + # "generation": { + # "name": "generation-v", + # "url": "https://pokeapi.co/api/v2/generation/5/" + # }, + # "types": [ + # { + # "slot": 1, + # "type": { + # "name": "normal", + # "url": "https://pokeapi.co/api/v2/type/1/" + # } + # } + # ] + # } + # ], + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["generation", "types"], + "properties": { + "generation": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["generation-v"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/generation/5/"], + }, + }, + }, + "types": { + "type": "array", + "items": { + "type": "object", + "required": ["slot", "type"], + "properties": { + "slot": { + "type": "integer", + "format": "int32", + "examples": [1], + }, + "type": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": ["normal"], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/type/1/" + ], + }, + }, + }, + }, + }, + }, + }, + }, + } + ) def get_past_pokemon_types(self, obj): poke_past_type_objects = PokemonTypePast.objects.filter(pokemon=obj) poke_past_types = PokemonTypePastSerializer( @@ -2929,6 +5090,12 @@ class PokemonDetailSerializer(serializers.ModelSerializer): return final_data + @extend_schema_field( + field={ + "type": "string", + "examples": ["https://pokeapi.co/api/v2/pokemon/1/encounters"], + } + ) def get_encounters(self, obj): return reverse("pokemon_encounters", kwargs={"pokemon_id": obj.pk}) @@ -2954,6 +5121,23 @@ class EvolutionTriggerDetailSerializer(serializers.HyperlinkedModelSerializer): model = EvolutionTrigger fields = ("id", "name", "names", "pokemon_species") + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["ivysaur"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokemon-species/2/"], + }, + }, + }, + } + ) def get_species(self, obj): evo_objects = PokemonEvolution.objects.filter(evolution_trigger=obj) species_list = [] @@ -3061,6 +5245,30 @@ class PokemonSpeciesDetailSerializer(serializers.ModelSerializer): "varieties", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["language", "name"], + "properties": { + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + }, + }, + "name": {"type": "string", "examples": ["bulbasaur"]}, + }, + }, + } + ) def get_pokemon_names(self, obj): species_results = PokemonSpeciesName.objects.filter(pokemon_species=obj) species_serializer = PokemonSpeciesNameSerializer( @@ -3074,6 +5282,37 @@ class PokemonSpeciesDetailSerializer(serializers.ModelSerializer): return data + # { + # "genus": "Seed Pokémon", + # "language": { + # "name": "en", + # "url": "https://pokeapi.co/api/v2/language/9/" + # } + # }, + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["genus", "language"], + "properties": { + "genus": {"type": "string", "examples": ["Seed Pokémon"]}, + "language": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["en"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/language/9/"], + }, + }, + }, + }, + }, + } + ) def get_pokemon_genera(self, obj): results = PokemonSpeciesName.objects.filter(pokemon_species=obj) serializer = PokemonSpeciesNameSerializer( @@ -3089,6 +5328,23 @@ class PokemonSpeciesDetailSerializer(serializers.ModelSerializer): return genera + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["monster"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/egg-group/1/"], + }, + }, + }, + } + ) def get_pokemon_egg_groups(self, obj): results = PokemonEggGroup.objects.filter(pokemon_species=obj) data = PokemonEggGroupSerializer(results, many=True, context=self.context).data @@ -3098,6 +5354,30 @@ class PokemonSpeciesDetailSerializer(serializers.ModelSerializer): return groups + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["is_default", "pokemon"], + "properties": { + "is_default": {"type": "boolean"}, + "pokemon": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bulbasaur"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokemon/1/"], + }, + }, + }, + }, + }, + } + ) def get_pokemon_varieties(self, obj): results = Pokemon.objects.filter(pokemon_species=obj) summary_data = PokemonSummarySerializer( @@ -3117,6 +5397,37 @@ class PokemonSpeciesDetailSerializer(serializers.ModelSerializer): return varieties + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["area", "base_score", "rate"], + "properties": { + "area": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["field"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/pal-park-area/2/" + ], + }, + }, + }, + "base_score": { + "type": "integer", + "format": "int32", + "examples": [50], + }, + "rate": {"type": "integer", "format": "int32", "examples": [30]}, + }, + }, + } + ) def get_encounters(self, obj): pal_park_objects = PalPark.objects.filter(pokemon_species=obj) parks = PalParkSerializer( @@ -3174,6 +5485,214 @@ class EvolutionChainDetailSerializer(serializers.ModelSerializer): model = EvolutionChain fields = ("id", "baby_trigger_item", "chain") + # TODO: Revisit Schema + @extend_schema_field( + field={ + "type": "object", + "required": ["evolution_details", "evolves_to", "is_baby", "species"], + "properties": { + "evolution_details": {"type": "array", "items": {}, "examples": []}, + "evolves_to": { + "type": "array", + "items": { + "type": "object", + "required": [ + "evolution_details", + "evolves_to", + "is_baby", + "species", + ], + "properties": { + "evolution_details": { + "type": "array", + "items": { + "type": "object", + "required": [ + "gender", + "held_item", + "item", + "known_move", + "known_move_type", + "location", + "min_affection", + "min_beauty", + "min_happiness", + "min_level", + "needs_overworld_rain", + "party_species", + "party_type", + "relative_physical_stats", + "time_of_day", + "trade_species", + "trigger", + "turn_upside_down", + ], + "properties": { + "gender": { + "type": "", + "nullable": True, + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": [1], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [2], + }, + }, + }, + "held_item": { + "type": "object", + "nullable": True, + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": [1], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [2], + }, + }, + }, + "item": { + "type": "object", + "nullable": True, + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + "examples": [1], + }, + "url": { + "type": "string", + "format": "uri", + "examples": [2], + }, + }, + }, + "known_move": { + "type": "", + "nullable": True, + }, + "known_move_type": { + "type": "", + "nullable": True, + }, + "location": { + "type": "object", + "nullable": True, + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + }, + "url": { + "type": "string", + "format": "uri", + }, + }, + }, + "min_affection": { + "type": "integer", + "format": "int32", + "nullable": True, + }, + "min_beauty": { + "type": "integer", + "format": "int32", + "nullable": True, + }, + "min_happiness": { + "type": "integer", + "format": "int32", + "nullable": True, + }, + "min_level": { + "type": "integer", + "format": "int32", + "nullable": True, + }, + "needs_overworld_rain": { + "type": "boolean", + "nullable": True, + }, + "party_species": { + "type": "string", + "nullable": True, + }, + "party_type": { + "type": "string", + "nullable": True, + }, + "relative_physical_stats": { + "type": "string", + "nullable": True, + }, + "time_of_day": {"type": "string"}, + "trade_species": { + "type": "string", + "nullable": True, + }, + "trigger": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": { + "type": "string", + }, + "url": { + "type": "string", + "format": "uri", + }, + }, + }, + "turn_upside_down": {"type": "boolean"}, + }, + }, + }, + "is_baby": {"type": "boolean"}, + "species": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["happiny"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/pokemon-species/440/" + ], + }, + }, + }, + }, + }, + }, + "is_baby": {"type": "boolean"}, + "species": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["happiny"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/pokemon-species/440/" + ], + }, + }, + }, + }, + } + ) def build_chain(self, obj): chain_id = obj.id @@ -3286,6 +5805,72 @@ class PokeathlonStatDetailSerializer(serializers.HyperlinkedModelSerializer): model = PokeathlonStat fields = ("id", "name", "affecting_natures", "names") + @extend_schema_field( + field={ + "type": "object", + "required": ["decrease", "increase"], + "properties": { + "decrease": { + "type": "array", + "items": { + "type": "object", + "required": ["max_change", "nature"], + "properties": { + "max_change": { + "type": "integer", + "format": "int32", + "maximum": -1, + "examples": [-1], + }, + "nature": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["hardy"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/nature/1/" + ], + }, + }, + }, + }, + }, + }, + "increase": { + "type": "array", + "items": { + "type": "object", + "required": ["max_change", "nature"], + "properties": { + "max_change": { + "type": "integer", + "format": "int32", + "minimum": 1, + "examples": [2], + }, + "nature": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["hardy"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/nature/1/" + ], + }, + }, + }, + }, + }, + }, + }, + } + ) def get_natures_that_affect(self, obj): stat_change_objects = NaturePokeathlonStat.objects.filter(pokeathlon_stat=obj) stat_changes = NaturePokeathlonStatSerializer( @@ -3344,6 +5929,36 @@ class PokedexDetailSerializer(serializers.ModelSerializer): "version_groups", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["entry_number", "pokemon_species"], + "properties": { + "entry_number": { + "type": "integer", + "format": "int32", + "examples": [1], + }, + "pokemon_species": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["bulbasaur"]}, + "url": { + "type": "string", + "format": "uri", + "examples": [ + "https://pokeapi.co/api/v2/pokemon-species/1/" + ], + }, + }, + }, + }, + }, + } + ) def get_pokedex_entries(self, obj): results = PokemonDexNumber.objects.filter(pokedex=obj).order_by( "pokedex_number" @@ -3358,6 +5973,23 @@ class PokedexDetailSerializer(serializers.ModelSerializer): return data + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["the-teal-mask"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/version-group/26/"], + }, + }, + }, + } + ) def get_pokedex_version_groups(self, obj): dex_group_objects = PokedexVersionGroup.objects.filter(pokedex=obj) dex_groups = PokedexVersionGroupSerializer( @@ -3417,6 +6049,23 @@ class VersionGroupDetailSerializer(serializers.ModelSerializer): "versions", ) + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["kanto"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/region/1/"], + }, + }, + }, + } + ) def get_version_group_regions(self, obj): vg_regions = VersionGroupRegion.objects.filter(version_group=obj) data = VersionGroupRegionSerializer( @@ -3429,6 +6078,25 @@ class VersionGroupDetailSerializer(serializers.ModelSerializer): return regions + # "name": "level-up", + # "url": "https://pokeapi.co/api/v2/move-learn-method/1/" + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["level-up"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/move-learn-method/1/"], + }, + }, + }, + } + ) def get_learn_methods(self, obj): learn_method_objects = VersionGroupMoveLearnMethod.objects.filter( version_group=obj @@ -3443,6 +6111,23 @@ class VersionGroupDetailSerializer(serializers.ModelSerializer): return methods + @extend_schema_field( + field={ + "type": "array", + "items": { + "type": "object", + "required": ["name", "url"], + "properties": { + "name": {"type": "string", "examples": ["kanto"]}, + "url": { + "type": "string", + "format": "uri", + "examples": ["https://pokeapi.co/api/v2/pokedex/2/"], + }, + }, + }, + } + ) def get_version_groups_pokedexes(self, obj): dex_group_objects = PokedexVersionGroup.objects.filter(version_group=obj) dex_groups = PokedexVersionGroupSerializer( diff --git a/pokemon_v2/tests.py b/pokemon_v2/tests.py index 57ef4a14..1400e805 100644 --- a/pokemon_v2/tests.py +++ b/pokemon_v2/tests.py @@ -312,7 +312,7 @@ class APIData: @classmethod def setup_item_sprites_data(cls, item, default=True): - sprite_path = "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/%s.png" + sprite_path = "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/items/%s.png" sprites = { "default": sprite_path % item.id if default else None, @@ -692,6 +692,54 @@ class APIData: return type_game_index + def setup_type_sprites_data(cls, type): + game_map = { + "generation-iii": [ + "colosseum", + "emerald", + "firered-leafgreen", + "ruby-saphire", + "xd", + ], + "generation-iv": ["diamond-pearl", "heartgold-soulsilver", "platinum"], + "generation-v": ["black-2-white-2", "black-white"], + "generation-vi": ["omega-ruby-alpha-sapphire", "x-y"], + "generation-vii": [ + "lets-go-pikachu-lets-go-eevee", + "sun-moon", + "ultra-sun-ultra-moon", + ], + "generation-viii": [ + "brilliant-diamond-and-shining-pearl", + "legends-arceus", + "sword-shield", + ], + "generation-ix": ["scarlet-violet"], + } + sprites = {} + for generation in game_map.keys(): + for game in game_map[generation]: + if generation not in sprites: + sprites[generation] = {} + + if type.id == 18 and generation.endswith(("-iii", "-iv", "-v")): + sprites[generation][game] = None + elif type.id == 19 and generation.endswith( + ("-iii", "-iv", "-v", "-vi", "-vii", "-viii") + ): + sprites[generation][game] = None + else: + sprites[generation][game] = { + "name_icon": f"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/types/{generation}/{game}/{type.id}.png" + } + + type_sprites = TypeSprites.objects.create( + type=type, sprites=json.dumps(sprites) + ) + type_sprites.save() + + return type_sprites, game_map + # Move Data @classmethod def setup_move_ailment_data(cls, name="mv almnt"): @@ -1679,42 +1727,46 @@ class APIData: showdown = { "front_default": showdown_path % pokemon.id if front_default else None, - "front_female": showdown_path % f"female/{pokemon.id}" - if front_female - else None, - "front_shiny": showdown_path % f"shiny/{pokemon.id}" - if front_shiny - else None, - "front_shiny_female": showdown_path % f"shiny/female/{pokemon.id}" - if front_shiny_female - else None, - "back_default": showdown_path % f"back/{pokemon.id}" - if back_default - else None, - "back_female": showdown_path % f"back/female/{pokemon.id}" - if back_female - else None, - "back_shiny": showdown_path % f"back/shiny/{pokemon.id}" - if back_shiny - else None, - "back_shiny_female": showdown_path % f"back/shiny/female/{pokemon.id}" - if back_shiny_female - else None, + "front_female": ( + showdown_path % f"female/{pokemon.id}" if front_female else None + ), + "front_shiny": ( + showdown_path % f"shiny/{pokemon.id}" if front_shiny else None + ), + "front_shiny_female": ( + showdown_path % f"shiny/female/{pokemon.id}" + if front_shiny_female + else None + ), + "back_default": ( + showdown_path % f"back/{pokemon.id}" if back_default else None + ), + "back_female": ( + showdown_path % f"back/female/{pokemon.id}" if back_female else None + ), + "back_shiny": ( + showdown_path % f"back/shiny/{pokemon.id}" if back_shiny else None + ), + "back_shiny_female": ( + showdown_path % f"back/shiny/female/{pokemon.id}" + if back_shiny_female + else None + ), } sprites = { "front_default": sprite_path % pokemon.id if front_default else None, "front_female": sprite_path % pokemon.id if front_female else None, "front_shiny": sprite_path % pokemon.id if front_shiny else None, - "front_shiny_female": sprite_path % pokemon.id - if front_shiny_female - else None, + "front_shiny_female": ( + sprite_path % pokemon.id if front_shiny_female else None + ), "back_default": sprite_path % pokemon.id if back_default else None, "back_female": sprite_path % pokemon.id if back_female else None, "back_shiny": sprite_path % pokemon.id if back_shiny else None, - "back_shiny_female": sprite_path % pokemon.id - if back_shiny_female - else None, + "back_shiny_female": ( + sprite_path % pokemon.id if back_shiny_female else None + ), } pokemon_sprites = PokemonSprites.objects.create( @@ -1725,6 +1777,21 @@ class APIData: return pokemon_sprites + @classmethod + def setup_pokemon_cries_data(cls, pokemon, latest=True, legacy=False): + cries_path = ( + "https://raw.githubusercontent.com/PokeAPI/cries/main/cries/pokemon/%s.ogg" + ) + cries = { + "latest": cries_path % f"latest/{pokemon.id}" if latest else None, + "legacy": cries_path % f"legacy/{pokemon.id}" if legacy else None, + } + pokemon_cries = PokemonCries.objects.create( + pokemon=pokemon, cries=json.dumps(cries) + ) + pokemon_cries.save() + return pokemon_cries + # Evolution Data @classmethod def setup_evolution_trigger_data(cls, name="evltn trgr"): @@ -2734,9 +2801,14 @@ class APITests(APIData, APITestCase): "{}{}/evolution-chain/{}/".format(TEST_HOST, API_V2, evolution_chain.pk), ) - sprites_data = json.loads(response.data["sprites"]) + sprites_data = json.loads(item_sprites.sprites) + response_sprites_data = json.loads(response.data["sprites"]) # sprites + self.assertEqual( + sprites_data["default"], + response_sprites_data["default"], + ) self.assertEqual( sprites_data["default"], "{}".format(sprites_data["default"]), @@ -3294,12 +3366,12 @@ class APITests(APIData, APITestCase): # Type Tests def test_type_api(self): - type = self.setup_type_data(name="base tp") - type_name = self.setup_type_name_data(type, name="base tp nm") - type_game_index = self.setup_type_game_index_data(type, game_index=10) - move = self.setup_move_data(name="mv for base tp", type=type) + type_obj = self.setup_type_data(name="base tp") + type_name = self.setup_type_name_data(type_obj, name="base tp nm") + type_game_index = self.setup_type_game_index_data(type_obj, game_index=10) + move = self.setup_move_data(name="mv for base tp", type=type_obj) pokemon = self.setup_pokemon_data(name="pkmn for base tp") - pokemon_type = self.setup_pokemon_type_data(pokemon=pokemon, type=type) + pokemon_type = self.setup_pokemon_type_data(pokemon=pokemon, type=type_obj) generation = self.setup_generation_data(name="past gen") @@ -3326,39 +3398,41 @@ class APITests(APIData, APITestCase): newer_type = self.setup_type_data(name="newer tp", generation=newer_generation) + type_sprites, game_map = self.setup_type_sprites_data(type=type_obj) + # type relations no_damage_to_relation = TypeEfficacy( - damage_type=type, target_type=no_damage_to, damage_factor=0 + damage_type=type_obj, target_type=no_damage_to, damage_factor=0 ) no_damage_to_relation.save() half_damage_to_type_relation = TypeEfficacy( - damage_type=type, target_type=half_damage_to, damage_factor=50 + damage_type=type_obj, target_type=half_damage_to, damage_factor=50 ) half_damage_to_type_relation.save() double_damage_to_type_relation = TypeEfficacy( - damage_type=type, target_type=double_damage_to, damage_factor=200 + damage_type=type_obj, target_type=double_damage_to, damage_factor=200 ) double_damage_to_type_relation.save() no_damage_from_relation = TypeEfficacy( - damage_type=no_damage_from, target_type=type, damage_factor=0 + damage_type=no_damage_from, target_type=type_obj, damage_factor=0 ) no_damage_from_relation.save() half_damage_from_type_relation = TypeEfficacy( - damage_type=half_damage_from, target_type=type, damage_factor=50 + damage_type=half_damage_from, target_type=type_obj, damage_factor=50 ) half_damage_from_type_relation.save() double_damage_from_type_relation = TypeEfficacy( - damage_type=double_damage_from, target_type=type, damage_factor=200 + damage_type=double_damage_from, target_type=type_obj, damage_factor=200 ) double_damage_from_type_relation.save() double_damage_from_newer_type_relation = TypeEfficacy( - damage_type=newer_type, target_type=type, damage_factor=200 + damage_type=newer_type, target_type=type_obj, damage_factor=200 ) double_damage_from_newer_type_relation.save() @@ -3366,20 +3440,20 @@ class APITests(APIData, APITestCase): # type used to deal half damage rather than no damage past_no_damage_to_relation = TypeEfficacyPast( - damage_type=type, + damage_type=type_obj, target_type=no_damage_to, damage_factor=50, generation=generation, ) past_no_damage_to_relation.save() - response = self.client.get("{}/type/{}/".format(API_V2, type.pk)) + response = self.client.get("{}/type/{}/".format(API_V2, type_obj.pk)) self.assertEqual(response.status_code, status.HTTP_200_OK) # base params - self.assertEqual(response.data["id"], type.pk) - self.assertEqual(response.data["name"], type.name) + self.assertEqual(response.data["id"], type_obj.pk) + self.assertEqual(response.data["name"], type_obj.name) # name params self.assertEqual(response.data["names"][0]["name"], type_name.name) self.assertEqual( @@ -3390,19 +3464,19 @@ class APITests(APIData, APITestCase): "{}{}/language/{}/".format(TEST_HOST, API_V2, type_name.language.pk), ) # generation params - self.assertEqual(response.data["generation"]["name"], type.generation.name) + self.assertEqual(response.data["generation"]["name"], type_obj.generation.name) self.assertEqual( response.data["generation"]["url"], - "{}{}/generation/{}/".format(TEST_HOST, API_V2, type.generation.pk), + "{}{}/generation/{}/".format(TEST_HOST, API_V2, type_obj.generation.pk), ) # damage class params self.assertEqual( - response.data["move_damage_class"]["name"], type.move_damage_class.name + response.data["move_damage_class"]["name"], type_obj.move_damage_class.name ) self.assertEqual( response.data["move_damage_class"]["url"], "{}{}/move-damage-class/{}/".format( - TEST_HOST, API_V2, type.move_damage_class.pk + TEST_HOST, API_V2, type_obj.move_damage_class.pk ), ) # move params @@ -3551,6 +3625,15 @@ class APITests(APIData, APITestCase): ), ) + sprites_data = json.loads(type_sprites.sprites) + + for generation in game_map.keys(): + for game in game_map[generation]: + self.assertEqual( + json.loads(response.data["sprites"])[generation][game]["name_icon"], + sprites_data[generation][game]["name_icon"], + ) + # Pokedex Tests def test_pokedex_api(self): pokedex = self.setup_pokedex_data(name="base pkdx") @@ -4596,6 +4679,7 @@ class APITests(APIData, APITestCase): pokemon_species=pokemon_species, name="pkm for base pkmn spcs" ) self.setup_pokemon_sprites_data(pokemon) + self.setup_pokemon_cries_data(pokemon) response = self.client.get( "{}/pokemon-species/{}/".format(API_V2, pokemon_species.pk), @@ -4816,6 +4900,7 @@ class APITests(APIData, APITestCase): ) pokemon_item = self.setup_pokemon_item_data(pokemon=pokemon) pokemon_sprites = self.setup_pokemon_sprites_data(pokemon=pokemon) + pokemon_cries = self.setup_pokemon_cries_data(pokemon, latest=True, legacy=True) pokemon_game_index = self.setup_pokemon_game_index_data( pokemon=pokemon, game_index=10 ) @@ -5052,7 +5137,9 @@ class APITests(APIData, APITestCase): ) sprites_data = json.loads(pokemon_sprites.sprites) + cries_data = json.loads(pokemon_cries.cries) response_sprites_data = json.loads(response.data["sprites"]) + response_cries_data = json.loads(response.data["cries"]) # sprite params self.assertEqual( @@ -5070,6 +5157,35 @@ class APITests(APIData, APITestCase): response_sprites_data["other"]["showdown"]["back_default"], ) + # cries params + self.assertEqual( + cries_data["latest"], + "{}".format(cries_data["latest"]), + ) + self.assertEqual( + cries_data["legacy"], + "{}".format(cries_data["legacy"]), + ) + + # test search pokemon using search query param `q=partial_name` + + response = self.client.get( + "{}/pokemon/?q={}".format(API_V2, pokemon.name[:2]), + HTTP_HOST="testserver", + ) + + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(response.data["count"], 1) + self.assertEqual(response.data["results"][0]["name"], pokemon.name) + + response = self.client.get( + "{}/pokemon/?q={}".format(API_V2, pokemon.name[-3:]), + ) + + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(response.data["count"], 1) + self.assertEqual(response.data["results"][0]["name"], pokemon.name) + def test_pokemon_form_api(self): pokemon_species = self.setup_pokemon_species_data() pokemon = self.setup_pokemon_data(pokemon_species=pokemon_species) diff --git a/requirements.txt b/requirements.txt index c7d6d4a6..383b8bbd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,3 +11,4 @@ mimeparse==0.1.3 psycopg2-binary==2.9.9 python-dateutil==2.8.2 python-mimeparse==1.6.0 +drf-spectacular==0.27.2