Merge branch 'master' into gender-differences

This commit is contained in:
dhaber 2024-02-04 12:33:37 -05:00 committed by GitHub
commit 0572e1ba0f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
245 changed files with 62800 additions and 6990 deletions

View file

@ -39,10 +39,9 @@ jobs:
- run:
name: Build database
command: make build-db
deploy:
machine:
image: ubuntu-2004:202111-01 # https://circleci.com/docs/2.0/configuration-reference/#available-machine-images with Docker 18.09.3. Newer images don't work
image: ubuntu-2204:2023.10.1
resource_class: large
steps:
- checkout

42
.github/workflows/docker-build.yml vendored Normal file
View file

@ -0,0 +1,42 @@
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 }}

4
.gitignore vendored
View file

@ -4,10 +4,10 @@
*build/*
*.DS_STORE
db.*
venv*
*venv*
node_modules
.vscode
*.env
Resources/nginx/ssl/*
!Resources/nginx/ssl/*.sample.*
.idea*
.idea*

3
.gitmodules vendored
View file

@ -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

View file

@ -1,4 +1,4 @@
Copyright (c) © 20132021 Paul Hallett and PokéAPI contributors (https://github.com/PokeAPI/pokeapi#contributing). Pokémon and Pokémon character names are trademarks of Nintendo.
Copyright (c) © 20132023 Paul Hallett and PokéAPI contributors (https://github.com/PokeAPI/pokeapi#contributing). Pokémon and Pokémon character names are trademarks of Nintendo.
All rights reserved.

View file

@ -1,7 +1,6 @@
veekun_pokedex_repository = ../pokedex
local_config = --settings=config.local
docker_config = --settings=config.docker-compose
HASURA_GRAPHQL_ADMIN_SECRET=pokemon
.PHONY: help
.SILENT:
@ -70,6 +69,9 @@ docker-stop: # (Docker) Stop containers
docker-down: # (Docker) Stop and removes containers and networks
docker-compose down
docker-test: # (Docker) Run tests
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
@ -98,11 +100,11 @@ sync-to-veekun: pull pull-veekun # Copy data from this repository to ../pokedex
# read-env-file: # Exports ./.env into shell environment variables
# export `egrep -v '^#' .env | xargs`
hasura-export: # Export Hasura configuration
hasura md export --project graphql --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
hasura-export: # Export Hasura configuration, be sure to have set HASURA_GRAPHQL_ADMIN_SECRET
hasura md export --project graphql
hasura-apply: # Apply local Hasura configuration
hasura md apply --project graphql --admin-secret ${HASURA_GRAPHQL_ADMIN_SECRET}
hasura-apply: # Apply local Hasura configuration, be sure to have set HASURA_GRAPHQL_ADMIN_SECRET
hasura md apply --project graphql
hasura-get-anon-schema: # Dumps GraphQL schema
gq http://localhost:8080/v1/graphql --introspect > graphql/schema.graphql
@ -125,17 +127,25 @@ k8s-delete: # (k8s) Delete pokeapi namespace
start-graphql-prod:
git pull origin master
git submodule update --init
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 Resources/compose/docker-compose-prod-graphql.yml up -d
docker compose stop app
down-graphql-prod:
docker container rm $(docker container ls -aq) -f
docker system prune --all --volumes --force
sync; echo 3 > /proc/sys/vm/drop_caches
update-graphql-data-prod:
git pull origin master
git submodule update --init
docker stop pokeapi_graphql-engine_1
docker compose stop graphql-engine
sync; echo 3 > /proc/sys/vm/drop_caches
docker-compose -f docker-compose.yml -f docker-compose.override.yml -f Resources/compose/docker-compose-prod-graphql.yml up -d app
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 stop pokeapi_app_1
docker compose stop app
sync; echo 3 > /proc/sys/vm/drop_caches
docker exec pokeapi_web_1 sh -c 'rm -rf /tmp/cache/*'
docker start pokeapi_graphql-engine_1
docker compose exec -T web sh -c 'rm -rf /tmp/cache/*'
docker compose start graphql-engine
sleep 120
make hasura-apply

View file

@ -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,34 +45,34 @@ A RESTful API for Pokémon - [pokeapi.co](https://pokeapi.co)
### Database setup
Start the Django shell by
To build or rebuild the database by applying any CSV file update, run
```sh
python manage.py shell --settings=config.local
make build-db
```
Run the build script with
Visit [localhost:8000/api/v2/](http://localhost:8000/api/v2/) to see the running API!
```py
from data.v2.build import build_all
build_all()
```
Visit [localhost:80/api/v2/](localhost:80/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](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
@ -90,13 +90,26 @@ docker-compose exec -T app sh -c 'echo "from data.v2.build import build_all; bui
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 &nbsp; <a href="ttps://github.com/hasura/graphql-engine"><img height="29px" src="https://graphql-engine-cdn.hasura.io/img/powered_by_hasura_blue.svg"/></a>
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
# hasura cli's version has to be v2.0.8
# hasura cli's version has to greater than v2.0.8
make hasura-apply
```
@ -104,7 +117,7 @@ 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 &nbsp; [![k8s status](https://github.com/PokeAPI/pokeapi/actions/workflows/kustomize.yml/badge.svg?branch=master)](https://github.com/PokeAPI/pokeapi/actions/workflows/kustomize.yml)
@ -156,7 +169,7 @@ This k8s setup creates all k8s resources inside the _Namespace_ `pokeapi`, run `
## 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 60 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 $10 donation to help keep the service up. We get 330 million requests a month!
Thank you to all our backers! [Become a backer](https://opencollective.com/pokeapi#backer)
@ -164,10 +177,13 @@ Thank you to all our backers! [Become a backer](https://opencollective.com/pokea
## Join Us On Slack!
Have a question or just want to discuss new ideas and improvements? Hit us up on slack. Consider talking with us here before creating new issue.
> **Warning**
> Currently no maintainer has enough free time to support the community on Slack. Our Slack is in an unmaintained status.
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)
@ -177,7 +193,7 @@ This project exists thanks to all the people who [contribute](https://github.com
<a href="graphs/contributors"><img src="https://opencollective.com/pokeapi/contributors.svg?width=890" /></a>
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.

View file

@ -1,9 +1,6 @@
version: '2.4'
services:
cache:
image: redis:7.0.7-alpine
db:
image: postgres:15.1
environment:
POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}"
POSTGRES_USER: "${POSTGRES_USER}"
@ -14,12 +11,10 @@ services:
restart: "no"
web:
image: nginx:1.23.3-alpine
volumes:
- graphiql:/public-console:ro
graphql-engine:
image: hasura/graphql-engine:v2.16.1
cpus: 0.7
memswap_limit: 3g
mem_limit: 700m

View file

@ -89,6 +89,7 @@ http {
}
location /graphql/v1beta {
include /ssl/cache.conf*;
# proxy_cache small;
# proxy_cache_valid 200 10d;
# proxy_cache_valid any 0;

View file

@ -115,7 +115,7 @@ configure_git() {
pr_input_updater_start() {
cat <<EOF
{
"body": "A [PokeAPI/api-data](${data_repo_url}) refresh has started. In 45 minutes the staging branch of [PokeAPI/api-data](${data_repo_url}/tree/staging) will be pushed with the new generated data. <br><br> The staging branch will be deployed in our [staging environment]($staging_environment_url) and you will be able to review the entire API. <br><br> A Pull Request ([master](${data_repo_url}/tree/master)<-[staging](${data_repo_url}/tree/staging)) will be also created at [PokeAPI/api-data](${data_repo_url}/pulls) and assigned to the PokeAPI Core team to be reviewed. If approved and merged new data will soon be available worldwide at [pokeapi.co]($production_environment_url)."
"body": "A [PokeAPI/api-data](${data_repo_url}) refresh has started. In ~45 minutes the staging branch of [PokeAPI/api-data](${data_repo_url}/tree/staging) will be pushed with the new generated data. <br><br> The staging branch will be deployed in our [staging environment]($staging_environment_url) and the entire API will be ready to review. <br><br> A Pull Request ([master](${data_repo_url}/tree/master)<-[staging](${data_repo_url}/tree/staging)) will be also created at [PokeAPI/api-data](${data_repo_url}/pulls) and assigned to the PokeAPI Core team to be reviewed. If approved and merged new data will soon be available worldwide at [pokeapi.co]($production_environment_url)."
}
EOF
}
@ -123,7 +123,7 @@ EOF
pr_input_updater_end_success() {
cat <<EOF
{
"body": "The updater script has finished its job and has now opened a Pull Request towards [PokeAPI/api-data](${data_repo_url}/pulls) with the updated data. <br><br> You can see the Pull Request deployed at our [staging environment]($staging_environment_url) when [CircleCI deploy]($deploy_circleci_status_url) will be finished (_check the started time of the last build_)."
"body": "The updater script has finished its job and has now opened a Pull Request towards [PokeAPI/api-data](${data_repo_url}/pulls) with the updated data. <br><br> The Pull Request can be seen deployed in our [staging environment]($staging_environment_url) when [CircleCI deploy]($deploy_circleci_status_url) will be finished (_check the start time of the last build_)."
}
EOF
}
@ -165,6 +165,7 @@ notify_engine_pr() {
# Run the updater script (https://github.com/PokeAPI/api-data/blob/master/updater/cmd.bash) which will generate the new pokeapi data and push it to the api-data repository under a new branch
run_updater() {
engine_repo_pr_number=$(get_invokator_pr_number)
cd "$data_repo/updater" || cleanexit 'fail' "Failed to cd"
# Wait to be sure PokeAPI/pokeapi's master branch has been updated on Github with the lastest merged PR content
sleep 10
@ -176,7 +177,8 @@ run_updater() {
fi
# Run the updater
docker run --privileged -e REPO_POKEAPI_CHECKOUT_OBJECT="$CIRCLE_SHA1" -e COMMIT_EMAIL="$email" -e COMMIT_NAME="$username" -e BRANCH_NAME="$branch_name" -e REPO_POKEAPI="https://github.com/$org/$engine_repo.git" -e REPO_DATA="https://$MACHINE_USER_GITHUB_API_TOKEN@github.com/$org/$data_repo.git" -e RUN_AS='root' pokeapi-updater
docker network create pokeapi
docker run --privileged --network pokeapi --network-alias docker -e REPO_POKEAPI_CHECKOUT_OBJECT="$CIRCLE_SHA1" -e COMMIT_EMAIL="$email" -e COMMIT_NAME="$username" -e BRANCH_NAME="$branch_name" -e REPO_POKEAPI="https://github.com/$org/$engine_repo.git" -e REPO_DATA="https://$MACHINE_USER_GITHUB_API_TOKEN@github.com/$org/$data_repo.git" -e COMMIT_MESSAGE="[Updater Bot] Regenerate data from https://github.com/$org/$engine_repo/pull/$engine_repo_pr_number" -e COMMIT_AND_PUSH='true' -e RUN_AS='root' pokeapi-updater
return_code=$?
if [ "$return_code" -eq 2 ]; then
cleanexit 'no-new-data' "Generated data is the same as old data, skipping deploy"

View file

View file

@ -24,6 +24,5 @@ CACHES = {
}
DEBUG = False
TASTYPIE_FULL_DEBUG = False
ALLOWED_HOSTS = ["*"]

View file

@ -24,4 +24,3 @@ CACHES = {
}
DEBUG = True
TASTYPIE_FULL_DEBUG = True

View file

@ -14,4 +14,3 @@ CACHES = {
}
DEBUG = True
TASTYPIE_FULL_DEBUG = True

View file

@ -86,10 +86,7 @@ SECRET_KEY = os.environ.get(
"SECRET_KEY", "ubx+22!jbo(^x2_scm-o$*py3e@-awu-n^hipkm%2l$sw$&2l#"
)
CUSTOM_APPS = (
"tastypie",
"pokemon_v2",
)
CUSTOM_APPS = ("pokemon_v2",)
INSTALLED_APPS = (
"django.contrib.auth",
@ -97,6 +94,7 @@ INSTALLED_APPS = (
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.admin",
"django.contrib.messages",
"django.contrib.humanize",
"corsheaders",
"rest_framework",
@ -106,8 +104,6 @@ INSTALLED_APPS = (
API_LIMIT_PER_PAGE = 1
TASTYPIE_DEFAULT_FORMATS = ["json"]
CORS_ORIGIN_ALLOW_ALL = True
CORS_ALLOW_METHODS = "GET"
@ -115,9 +111,28 @@ CORS_ALLOW_METHODS = "GET"
CORS_URLS_REGEX = r"^/api/.*$"
REST_FRAMEWORK = {
"DEFAULT_RENDERER_CLASSES": ("drf_ujson.renderers.UJSONRenderer",),
"DEFAULT_PARSER_CLASSES": ("drf_ujson.renderers.UJSONRenderer",),
"DEFAULT_RENDERER_CLASSES": ("rest_framework.renderers.JSONRenderer",),
"DEFAULT_PARSER_CLASSES": ("rest_framework.renderers.JSONRenderer",),
"DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.LimitOffsetPagination",
"PAGE_SIZE": 20,
"PAGINATE_BY": 20,
}
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
],
},
},
]
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"

View file

@ -31,7 +31,10 @@ DB_VENDOR = connection.vendor
MEDIA_DIR = "{prefix}{{file_name}}".format(
prefix=os.environ.get("POKEAPI_SPRITES_PREFIX", "/media/sprites/")
prefix=os.environ.get(
"POKEAPI_SPRITES_PREFIX",
"https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/",
)
)
IMAGE_DIR = os.getcwd() + "/data/v2/sprites/sprites/"
RESOURCE_IMAGES = []
@ -496,9 +499,7 @@ def _build_items():
item_sprites = "items/{0}"
sprites = {"default": file_path_or_none(item_sprites.format(file_name))}
yield ItemSprites(
id=int(info[0]), item_id=int(info[0]), sprites=json.dumps(sprites)
)
yield ItemSprites(id=int(info[0]), item_id=int(info[0]), sprites=sprites)
build_generic((ItemSprites,), "items.csv", csv_record_to_objects)
@ -1387,6 +1388,7 @@ def _build_pokemons():
dream_world = "other/dream-world/"
home = "other/home/"
official_art = "other/official-artwork/"
showdown = "other/showdown/"
gen_i = "versions/generation-i/"
gen_ii = "versions/generation-ii/"
gen_iii = "versions/generation-iii/"
@ -1437,6 +1439,32 @@ def _build_pokemons():
poke_sprites + official_art + "shiny/", info, "png"
),
},
"showdown": {
"front_default": try_image_names(
poke_sprites + showdown, info, "gif"
),
"front_shiny": try_image_names(
poke_sprites + showdown + "shiny/", info, "gif"
),
"front_female": try_image_names(
poke_sprites + showdown + "female/", info, "gif"
),
"front_shiny_female": try_image_names(
poke_sprites + showdown + "shiny/female/", info, "gif"
),
"back_default": try_image_names(
poke_sprites + showdown + "back/", info, "gif"
),
"back_shiny": try_image_names(
poke_sprites + showdown + "back/shiny/", info, "gif"
),
"back_female": try_image_names(
poke_sprites + showdown + "back/female/", info, "gif"
),
"back_shiny_female": try_image_names(
poke_sprites + showdown + "back/shiny/female", info, "gif"
),
},
},
"versions": {
"generation-i": {
@ -1898,7 +1926,7 @@ def _build_pokemons():
yield PokemonSprites(
id=int(info[0]),
pokemon=Pokemon.objects.get(pk=int(info[0])),
sprites=json.dumps(sprites),
sprites=sprites,
)
build_generic((PokemonSprites,), "pokemon.csv", csv_record_to_objects)
@ -1913,6 +1941,19 @@ def _build_pokemons():
build_generic((PokemonAbility,), "pokemon_abilities.csv", csv_record_to_objects)
def csv_record_to_objects(info):
yield PokemonAbilityPast(
pokemon_id=int(info[0]),
generation_id=int(info[1]),
ability_id=int(info[2]),
is_hidden=bool(int(info[3])),
slot=int(info[4]),
)
build_generic(
(PokemonAbilityPast,), "pokemon_abilities_past.csv", csv_record_to_objects
)
def csv_record_to_objects(info):
yield PokemonDexNumber(
pokemon_species_id=int(info[0]),
@ -2008,7 +2049,7 @@ def _build_pokemons():
),
}
yield PokemonFormSprites(
id=int(info[0]), pokemon_form_id=int(info[0]), sprites=json.dumps(sprites)
id=int(info[0]), pokemon_form_id=int(info[0]), sprites=sprites
)
build_generic((PokemonFormSprites,), "pokemon_forms.csv", csv_record_to_objects)

1
data/v2/cries Submodule

@ -0,0 +1 @@
Subproject commit 8584048df8f55ee1c436da23b378316e9d416a9b

View file

@ -297,6 +297,15 @@ id,identifier,generation_id,is_main_series
296,armor-tail,9,1
297,earth-eater,9,1
298,mycelium-might,9,1
299,minds-eye,9,1
300,supersweet-syrup,9,1
301,hospitality,9,1
302,toxic-chain,9,1
303,embody-aspect,9,1
304,tera-shift,9,1
305,tera-shell,9,1
306,teraform-zero,9,1
307,poison-puppeteer,9,1
10001,mountaineer,5,0
10002,wave-rider,5,0
10003,skater,5,0

1 id identifier generation_id is_main_series
297 296 armor-tail 9 1
298 297 earth-eater 9 1
299 298 mycelium-might 9 1
300 299 minds-eye 9 1
301 300 supersweet-syrup 9 1
302 301 hospitality 9 1
303 302 toxic-chain 9 1
304 303 embody-aspect 9 1
305 304 tera-shift 9 1
306 305 tera-shell 9 1
307 306 teraform-zero 9 1
308 307 poison-puppeteer 9 1
309 10001 mountaineer 5 0
310 10002 wave-rider 5 0
311 10003 skater 5 0

File diff suppressed because it is too large Load diff

View file

@ -2886,6 +2886,98 @@ ability_id,local_language_id,name
298,8,Micoforza
298,9,Mycelium Might
298,11,きんしのちから
299,1,しんがん
299,3,심안
299,4,心眼
299,5,Œil Révélateur
299,7,Ojo Mental
299,8,Occhio Interiore
299,9,Minds Eye
299,11,しんがん
299,12,心眼
300,1,かんろなミツ
300,3,감미로운꿀
300,4,甘露之蜜
300,5,Nectar Mielleux
300,1,かんろなミツ
300,3,감미로운꿀
300,4,甘露之蜜
300,5,Nectar Mielleux
300,6,Süßer Nektar
300,7,Néctar Dulce
300,8,Sciroppo Sublime
300,9,Supersweet Syrup
300,12,甘露之蜜
301,1,おもてなし
301,3,대접
301,4,款待
301,5,Aux Petits Soins
301,6,Gastlichkeit
301,7,Hospitalidad
301,8,Ospitalità
301,9,Hospitality
301,11,おもてなし
301,12,款待
302,1,どくのくさり
302,3,독사슬
302,4,毒鎖鏈
302,5,Chaîne Toxique
302,6,Giftkette
302,7,Cadena Tóxica
302,8,Catena Tossica
302,9,Toxic Chain
302,11,どくのくさり
302,12,毒锁链
303,1,おもかげやどし
303,3,초상투영
303,4,面影輝映
303,5,Force Mémorielle
303,6,Erinnerungskraft
303,7,Evocarrecuerdos
303,8,Albergamemorie
303,9,Embody Aspect
303,11,おもかげやどし
303,12,面影辉映
304,1,テラスチェンジ
304,3,테라체인지
304,4,太晶變形
304,5,Téramorphose
304,6,Tera-Wandel
304,7,Teracambio
304,8,Teramorfosi
304,9,Tera Shift
304,11,テラスチェンジ
304,12,太晶变形
305,1,テラスシェル
305,3,테라셸
305,4,太晶甲殼
305,5,Téra-Carapace
305,6,Tera-Panzer
305,7,Teracaparazón
305,8,Teraguscio
305,9,Tera Shell
305,11,テラスシェル
305,12,太晶甲壳
306,1,ゼロフォーミング
306,3,제로포밍
306,4,歸零化境
306,5,Téraformation 0
306,6,Teraforming Null
306,7,Teraformación 0
306,8,Zeroformazione
306,9,Teraform Zero
306,11,ゼロフォーミング
306,12,归零化境
307,1,どくくぐつ
307,3,독조종
307,4,毒傀儡
307,5,Emprise Toxique
307,6,Giftpuppenspiel
307,7,Títere Tóxico
307,8,Malia Tossica
307,9,Poison Puppeteer
307,11,どくくぐつ
307,12,毒傀儡
10001,9,Mountaineer
10002,9,Wave Rider
10003,9,Skater

1 ability_id local_language_id name
2886 298 8 Micoforza
2887 298 9 Mycelium Might
2888 298 11 きんしのちから
2889 299 1 しんがん
2890 299 3 심안
2891 299 4 心眼
2892 299 5 Œil Révélateur
2893 299 7 Ojo Mental
2894 299 8 Occhio Interiore
2895 299 9 Mind’s Eye
2896 299 11 しんがん
2897 299 12 心眼
2898 300 1 かんろなミツ
2899 300 3 감미로운꿀
2900 300 4 甘露之蜜
2901 300 5 Nectar Mielleux
2902 300 1 かんろなミツ
2903 300 3 감미로운꿀
2904 300 4 甘露之蜜
2905 300 5 Nectar Mielleux
2906 300 6 Süßer Nektar
2907 300 7 Néctar Dulce
2908 300 8 Sciroppo Sublime
2909 300 9 Supersweet Syrup
2910 300 12 甘露之蜜
2911 301 1 おもてなし
2912 301 3 대접
2913 301 4 款待
2914 301 5 Aux Petits Soins
2915 301 6 Gastlichkeit
2916 301 7 Hospitalidad
2917 301 8 Ospitalità
2918 301 9 Hospitality
2919 301 11 おもてなし
2920 301 12 款待
2921 302 1 どくのくさり
2922 302 3 독사슬
2923 302 4 毒鎖鏈
2924 302 5 Chaîne Toxique
2925 302 6 Giftkette
2926 302 7 Cadena Tóxica
2927 302 8 Catena Tossica
2928 302 9 Toxic Chain
2929 302 11 どくのくさり
2930 302 12 毒锁链
2931 303 1 おもかげやどし
2932 303 3 초상투영
2933 303 4 面影輝映
2934 303 5 Force Mémorielle
2935 303 6 Erinnerungskraft
2936 303 7 Evocarrecuerdos
2937 303 8 Albergamemorie
2938 303 9 Embody Aspect
2939 303 11 おもかげやどし
2940 303 12 面影辉映
2941 304 1 テラスチェンジ
2942 304 3 테라체인지
2943 304 4 太晶變形
2944 304 5 Téramorphose
2945 304 6 Tera-Wandel
2946 304 7 Teracambio
2947 304 8 Teramorfosi
2948 304 9 Tera Shift
2949 304 11 テラスチェンジ
2950 304 12 太晶变形
2951 305 1 テラスシェル
2952 305 3 테라셸
2953 305 4 太晶甲殼
2954 305 5 Téra-Carapace
2955 305 6 Tera-Panzer
2956 305 7 Teracaparazón
2957 305 8 Teraguscio
2958 305 9 Tera Shell
2959 305 11 テラスシェル
2960 305 12 太晶甲壳
2961 306 1 ゼロフォーミング
2962 306 3 제로포밍
2963 306 4 歸零化境
2964 306 5 Téraformation 0
2965 306 6 Teraforming Null
2966 306 7 Teraformación 0
2967 306 8 Zeroformazione
2968 306 9 Teraform Zero
2969 306 11 ゼロフォーミング
2970 306 12 归零化境
2971 307 1 どくくぐつ
2972 307 3 독조종
2973 307 4 毒傀儡
2974 307 5 Emprise Toxique
2975 307 6 Giftpuppenspiel
2976 307 7 Títere Tóxico
2977 307 8 Malia Tossica
2978 307 9 Poison Puppeteer
2979 307 11 どくくぐつ
2980 307 12 毒傀儡
2981 10001 9 Mountaineer
2982 10002 9 Wave Rider
2983 10003 9 Skater

View file

@ -1,16 +1,31 @@
berry_firmness_id,local_language_id,name
1,1,とてもやわらかい
1,4,很柔軟
1,5,Très tendre
1,7,Muy blanda
1,9,Very Soft
1,12,很柔软
2,1,やわらかい
2,4,柔軟
2,5,Tendre
2,7,Blanda
2,9,Soft
2,12,柔软
3,1,かたい
3,4,堅硬
3,5,Ferme
3,7,Dura
3,9,Hard
3,12,坚硬
4,1,とてもかたい
4,4,很堅硬
4,5,Très ferme
4,7,Muy dura
4,9,Very Hard
4,12,很坚硬
5,1,とてつもなくかたい
5,4,非常堅硬
5,5,Super ferme
5,7,Superdura
5,9,Super Hard
5,12,非常坚硬

1 berry_firmness_id local_language_id name
2 1 1 とてもやわらかい
3 1 4 很柔軟
4 1 5 Très tendre
5 1 7 Muy blanda
6 1 9 Very Soft
7 1 12 很柔软
8 2 1 やわらかい
9 2 4 柔軟
10 2 5 Tendre
11 2 7 Blanda
12 2 9 Soft
13 2 12 柔软
14 3 1 かたい
15 3 4 堅硬
16 3 5 Ferme
17 3 7 Dura
18 3 9 Hard
19 3 12 坚硬
20 4 1 とてもかたい
21 4 4 很堅硬
22 4 5 Très ferme
23 4 7 Muy dura
24 4 9 Very Hard
25 4 12 很坚硬
26 5 1 とてつもなくかたい
27 5 4 非常堅硬
28 5 5 Super ferme
29 5 7 Superdura
30 5 9 Super Hard
31 5 12 非常坚硬

View file

@ -1,11 +1,26 @@
contest_type_id,local_language_id,name,flavor,color
1,1,かっこよさ,からい,
1,4,帥氣,辣,紅
1,5,Sang-froid,Épicé,Rouge
1,9,Cool,Spicy,Red
1,12,帅气,辣,红
2,1,うつくしさ,しぶい,
2,4,美麗,澀,藍
2,5,Beauté,Sec,Bleu
2,9,Beauty,Dry,Blue
2,12,美丽,涩,蓝
3,1,かわいさ,あまい,
3,4,可愛,甜,粉紅
3,5,Grâce,Sucré,Rose
3,9,Cute,Sweet,Pink
3,12,可爱,甜,粉红
4,1,かしこさ,にがい,
4,4,聰明,苦,綠
4,5,Intelligence,Amère,Vert
4,9,Smart,Bitter,Green
4,12,聪明,苦,绿
5,1,たくましさ,すっぱい,
5,4,強壯,酸,黃
5,5,Robustesse,Acide,Jaune
5,9,Tough,Sour,Yellow
5,12,强壮,酸,黄

1 contest_type_id local_language_id name flavor color
2 1 1 かっこよさ からい
3 1 4 帥氣
4 1 5 Sang-froid Épicé Rouge
5 1 9 Cool Spicy Red
6 1 12 帅气
7 2 1 うつくしさ しぶい
8 2 4 美麗
9 2 5 Beauté Sec Bleu
10 2 9 Beauty Dry Blue
11 2 12 美丽
12 3 1 かわいさ あまい
13 3 4 可愛 粉紅
14 3 5 Grâce Sucré Rose
15 3 9 Cute Sweet Pink
16 3 12 可爱 粉红
17 4 1 かしこさ にがい
18 4 4 聰明
19 4 5 Intelligence Amère Vert
20 4 9 Smart Bitter Green
21 4 12 聪明 绿
22 5 1 たくましさ すっぱい
23 5 4 強壯
24 5 5 Robustesse Acide Jaune
25 5 9 Tough Sour Yellow
26 5 12 强壮

View file

@ -1,106 +1,136 @@
egg_group_id,local_language_id,name
1,1,かいじゅう
1,3,괴수
1,4,怪獸
1,5,Monstrueux
1,6,Monster
1,7,Monstruo
1,8,Mostro
1,9,Monster
1,12,怪兽
2,1,すいちゅう1
2,3,수중 1
2,4,水中1
2,5,Aquatique 1
2,6,Wasser 1
2,7,Agua 1
2,8,Acqua 1
2,9,Water 1
2,12,水中1
3,1,むし
3,3,벌레
3,4,蟲
3,5,Insectoïde
3,6,Käfer
3,7,Bicho
3,8,Coleottero
3,9,Bug
3,12,虫
4,1,ひこう
4,3,비행
4,4,飛行
4,5,Aérien
4,6,Flug
4,7,Volador
4,8,Volante
4,9,Flying
4,12,飞行
5,1,りくじょう
5,3,육상
5,4,陸上
5,5,Terrestre
5,6,Feld
5,7,Campo
5,8,Campo
5,9,Field
5,12,陆上
6,1,ようせい
6,3,요정
6,4,妖精
6,5,Féerique
6,6,Fee
6,7,Hada
6,8,Magico
6,9,Fairy
6,12,妖精
7,1,しょくぶつ
7,3,식물
7,4,植物
7,5,Végétal
7,6,Pflanze
7,7,Planta
7,8,Erba
7,9,Grass
7,12,植物
8,1,ひとがた
8,3,인간형
8,4,人型
8,5,Humanoïde
8,6,Humanotyp
8,7,Humanoide
8,8,Umanoide
8,9,Human-Like
8,12,人型
9,1,すいちゅう3
9,3,수중 3
9,4,水中3
9,5,Aquatique 3
9,6,Wasser 3
9,7,Agua 3
9,8,Acqua 3
9,9,Water 3
9,12,水中3
10,1,こうぶつ
10,3,광물
10,4,礦物
10,5,Minéral
10,6,Mineral
10,7,Mineral
10,8,Minerale
10,9,Mineral
10,12,矿物
11,1,ふていけい
11,3,부정형
11,4,不定形
11,5,Amorphe
11,6,Amorph
11,7,Amorfo
11,8,Amorfo
11,9,Amorphous
11,12,不定形
12,1,すいちゅう2
12,3,수중 2
12,4,水中2
12,5,Aquatique 2
12,6,Wasser 2
12,7,Agua 2
12,8,Acqua 2
12,9,Water 2
12,12,水中2
13,1,メタモン
13,3,메타몽
13,4,百變怪
13,5,Métamorph
13,6,Ditto
13,7,Ditto
13,8,Ditto
13,9,Ditto
13,12,百变怪
14,1,ドラゴン
14,3,드래곤
14,4,龍
14,5,Draconique
14,6,Drache
14,7,Dragón
14,8,Drago
14,9,Dragon
14,12,龙
15,1,タマゴみはっけん
15,3,알미발견
15,4,未發現
15,5,Inconnu
15,6,Unbekannt
15,7,Desconocido
15,8,Non ancora scoperto
15,9,Undiscovered
15,12,未发现

1 egg_group_id local_language_id name
2 1 1 かいじゅう
3 1 3 괴수
4 1 4 怪獸
5 1 5 Monstrueux
6 1 6 Monster
7 1 7 Monstruo
8 1 8 Mostro
9 1 9 Monster
10 1 12 怪兽
11 2 1 すいちゅう1
12 2 3 수중 1
13 2 4 水中1
14 2 5 Aquatique 1
15 2 6 Wasser 1
16 2 7 Agua 1
17 2 8 Acqua 1
18 2 9 Water 1
19 2 12 水中1
20 3 1 むし
21 3 3 벌레
22 3 4
23 3 5 Insectoïde
24 3 6 Käfer
25 3 7 Bicho
26 3 8 Coleottero
27 3 9 Bug
28 3 12
29 4 1 ひこう
30 4 3 비행
31 4 4 飛行
32 4 5 Aérien
33 4 6 Flug
34 4 7 Volador
35 4 8 Volante
36 4 9 Flying
37 4 12 飞行
38 5 1 りくじょう
39 5 3 육상
40 5 4 陸上
41 5 5 Terrestre
42 5 6 Feld
43 5 7 Campo
44 5 8 Campo
45 5 9 Field
46 5 12 陆上
47 6 1 ようせい
48 6 3 요정
49 6 4 妖精
50 6 5 Féerique
51 6 6 Fee
52 6 7 Hada
53 6 8 Magico
54 6 9 Fairy
55 6 12 妖精
56 7 1 しょくぶつ
57 7 3 식물
58 7 4 植物
59 7 5 Végétal
60 7 6 Pflanze
61 7 7 Planta
62 7 8 Erba
63 7 9 Grass
64 7 12 植物
65 8 1 ひとがた
66 8 3 인간형
67 8 4 人型
68 8 5 Humanoïde
69 8 6 Humanotyp
70 8 7 Humanoide
71 8 8 Umanoide
72 8 9 Human-Like
73 8 12 人型
74 9 1 すいちゅう3
75 9 3 수중 3
76 9 4 水中3
77 9 5 Aquatique 3
78 9 6 Wasser 3
79 9 7 Agua 3
80 9 8 Acqua 3
81 9 9 Water 3
82 9 12 水中3
83 10 1 こうぶつ
84 10 3 광물
85 10 4 礦物
86 10 5 Minéral
87 10 6 Mineral
88 10 7 Mineral
89 10 8 Minerale
90 10 9 Mineral
91 10 12 矿物
92 11 1 ふていけい
93 11 3 부정형
94 11 4 不定形
95 11 5 Amorphe
96 11 6 Amorph
97 11 7 Amorfo
98 11 8 Amorfo
99 11 9 Amorphous
100 11 12 不定形
101 12 1 すいちゅう2
102 12 3 수중 2
103 12 4 水中2
104 12 5 Aquatique 2
105 12 6 Wasser 2
106 12 7 Agua 2
107 12 8 Acqua 2
108 12 9 Water 2
109 12 12 水中2
110 13 1 メタモン
111 13 3 메타몽
112 13 4 百變怪
113 13 5 Métamorph
114 13 6 Ditto
115 13 7 Ditto
116 13 8 Ditto
117 13 9 Ditto
118 13 12 百变怪
119 14 1 ドラゴン
120 14 3 드래곤
121 14 4
122 14 5 Draconique
123 14 6 Drache
124 14 7 Dragón
125 14 8 Drago
126 14 9 Dragon
127 14 12
128 15 1 タマゴみはっけん
129 15 3 알미발견
130 15 4 未發現
131 15 5 Inconnu
132 15 6 Unbekannt
133 15 7 Desconocido
134 15 8 Non ancora scoperto
135 15 9 Undiscovered
136 15 12 未发现

View file

@ -1,92 +1,163 @@
encounter_condition_value_id,local_language_id,name
1,6,Während eines Schwarms
1,9,During a swarm
1,5,Pendant une tempête
2,6,Außerhalb eines Schwarms
2,9,Not during a swarm
2,5,Pas pendant une tempête
3,6,Am Morgen
3,9,In the morning
3,5,Le matin
4,6,Am Tag
4,9,During the day
4,5,La journée
5,6,In der Nacht
5,9,At night
5,5,La nuit
6,6,Durch Benutzung des Pokéradars
6,9,Using PokéRadar
6,5,En utilisant le PokéRadar
7,6,Ohne Benutzung des Pokéradars
7,9,Not using PokéRadar
7,5,Sans utiliser le PokéRadar
8,6,Kein Spiel in Slot 2
8,9,No game in slot 2
8,5,Sans jeu dans le slot 2
9,6,Rubin in Slot 2
9,9,Ruby in slot 2
9,5,Rubis dans le slot 2
10,6,Saphir in Slot 2
10,9,Sapphire in slot 2
10,5,Saphir dans le slot 2
11,6,Smaragd in Slot 2
11,9,Emerald in slot 2
11,5,Émeraude dans le slot 2
12,6,Feuerrot in slot 2
12,9,FireRed in slot 2
12,5,Rouge Feu dans le slot 2
13,6,Blattgrün in slot 2
13,9,LeafGreen in slot 2
13,5,Vert Feuille dans le slot 2
14,6,Radio aus
14,9,Radio off
14,5,Radio éteinte
15,6,Hoenn-Sound im Radio
15,9,Hoenn radio
15,5,En écoutant Radio Hoenn
16,6,Sinnoh-Sound im Radio
16,9,Sinnoh radio
16,5,En écoutant Radio Sinnoh
17,6,Im Frühling
17,9,During Spring
17,5,Au printemps
18,6,Im Sommer
18,9,During Summer
18,5,En été
19,6,Im Herbst
19,9,During Autumn
19,5,En automne
20,6,Im Winter
20,9,During Winter
20,5,En hiver
21,9,Bulbasaur as starter
21,5,Bulbizarre en starter
22,9,Squirtle as starter
22,5,Carapuce en starter
23,9,Charmander as starter
23,5,Salamèche en starter
24,9,Chespin as starter
24,5,Marisson en starter
25,9,Fennekin as starter
25,5,Feunnec en starter
26,9,Froakie as starter
26,5,Grenousse en starter
27,9,Chose Blue on the TV news report
27,5,Choisi « bleu » à la télé
28,9,Chose Red on the TV news report
28,5,Choisi « rouge » à la télé
29,9,Awakened the legendary beasts at Burned Tower
29,5,En ayant réveillé les légendaires à la Tour Cendrée
30,9,Visited Lake Verity after defeating Team Galactic at Mt. Coronet
30,5,En ayant visité le Lac Vérité après avoir vaincu la Team Galaxie au Mont Couronné
31,9,Talked to Professor Oak at Eterna City
31,5,Après avoir parlé au Prof. Chen à Vestigion
32,9,Visited the Pokémon Fan Club with Copycats doll
32,5,Après avoir visité le Fan Club Pokémon avec la poupée de Copieuse
33,9,Met Tornadus or Thundurus in a cutscene
33,5,Après avoir rencontré Boréas ou Fulguris lors dune cinématique
34,9,Beat the Elite 4 for the second time
34,5,Après deux victoires sur le Conseil 4
35,9,Enter the Hall of Fame
35,5,Après lentrée au Panthéon
36,9,None
36,5,Aucune
37,9,Acquired National Pokédex
37,5,En ayant le Pokédex National
38,9,None
38,5,Aucune
39,9,Beat the Pokémon league after knocking out Snorlax at Route 11
39,5,"Après avoir mis Ronflex KO sur la route 11, puis avoir battu la Ligue"
40,9,Playing on the Virtual Console Release
40,5,En jouant sur la version Virtual Console
41,9,Cure the nightmares of Eldritchs Son
41,5,Après avoir soigné les cauchemars du fils dEdern
42,9,Talk to Cynthias grandmother
42,5,Après avoir parlé à la grand-mère de Cynthia
43,9,No item requirement
43,5,Sans objet particulier
44,9,Have Adamant Orb in bag
44,5,En ayant un Orbe Adamant dans le sac
45,9,Have Lustrous Orb in bag
45,5,En ayant un Orbe Perlé dans le sac
46,9,Have Helix Fossil in bag
46,5,En ayant un Nautile dans le sac
47,9,Have Dome Fossil in bag
47,5,En ayant un Fossile Dôme dans le sac
48,9,Have Old Amber in bag
48,5,En ayant un Vieil Ambre dans le sac
49,9,Have Root Fossil in bag
49,5,En ayant un Fossile Racine dans le sac
50,9,Have Claw Fossil in bag
50,5,En ayant un Fossile Griffe dans le sac
51,9,Defeat Jupiter
51,5,Après avoir vaincu Jupiter
52,9,Defeat Team Galactic at Iron Island
52,5,Après avoir vaincu la Team Galaxie sur lÎle de Fer
53,9,Input correct password
53,5,Après avoir saisi le bon mot de passe
54,9,Obtained Zephyr badge
54,5,En ayant obtenu le badge Zéphir
55,9,Defeat Red
55,5,Après avoir vaincu Red
56,9,Received a Kanto Starter
56,5,Après avoir recu un starter de Kanto
57,9,Received TM59 From Claire
57,5,Après avoir reçu la CT59 de Claire
58,9,"Have Regirock, Regice and Registeel in the party"
58,5,"En ayant Regirock, Regice et Registeel dans léquipe"
59,9,Sunday
59,5,Le dimanche
60,9,Monday
60,5,Le lundi
61,9,Tuesday
61,5,Le mardi
62,9,Wednesday
62,5,Le mercredi
63,9,Thursday
63,5,Le jeudi
64,9,Friday
64,5,Le vendredi
65,9,Saturday
65,5,Le samedi
66,9,The first Pokémon in the players party has a high friendship stat
66,5,Si le premier Pokémon de léquipe a une stat damitié élevée
67,9,Beat Mars for the first time
67,5,Après deux victoires face à Mars
68,9,Have Odd Keystone in bag
68,5,En ayant une Clé de Voûte dans le sac
69,9,Has talked to at least 32 people in the underground
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

1 encounter_condition_value_id local_language_id name
2 1 6 Während eines Schwarms
3 1 9 During a swarm
4 1 5 Pendant une tempête
5 2 6 Außerhalb eines Schwarms
6 2 9 Not during a swarm
7 2 5 Pas pendant une tempête
8 3 6 Am Morgen
9 3 9 In the morning
10 3 5 Le matin
11 4 6 Am Tag
12 4 9 During the day
13 4 5 La journée
14 5 6 In der Nacht
15 5 9 At night
16 5 5 La nuit
17 6 6 Durch Benutzung des Pokéradars
18 6 9 Using PokéRadar
19 6 5 En utilisant le PokéRadar
20 7 6 Ohne Benutzung des Pokéradars
21 7 9 Not using PokéRadar
22 7 5 Sans utiliser le PokéRadar
23 8 6 Kein Spiel in Slot 2
24 8 9 No game in slot 2
25 8 5 Sans jeu dans le slot 2
26 9 6 Rubin in Slot 2
27 9 9 Ruby in slot 2
28 9 5 Rubis dans le slot 2
29 10 6 Saphir in Slot 2
30 10 9 Sapphire in slot 2
31 10 5 Saphir dans le slot 2
32 11 6 Smaragd in Slot 2
33 11 9 Emerald in slot 2
34 11 5 Émeraude dans le slot 2
35 12 6 Feuerrot in slot 2
36 12 9 FireRed in slot 2
37 12 5 Rouge Feu dans le slot 2
38 13 6 Blattgrün in slot 2
39 13 9 LeafGreen in slot 2
40 13 5 Vert Feuille dans le slot 2
41 14 6 Radio aus
42 14 9 Radio off
43 14 5 Radio éteinte
44 15 6 Hoenn-Sound im Radio
45 15 9 Hoenn radio
46 15 5 En écoutant Radio Hoenn
47 16 6 Sinnoh-Sound im Radio
48 16 9 Sinnoh radio
49 16 5 En écoutant Radio Sinnoh
50 17 6 Im Frühling
51 17 9 During Spring
52 17 5 Au printemps
53 18 6 Im Sommer
54 18 9 During Summer
55 18 5 En été
56 19 6 Im Herbst
57 19 9 During Autumn
58 19 5 En automne
59 20 6 Im Winter
60 20 9 During Winter
61 20 5 En hiver
62 21 9 Bulbasaur as starter
63 21 5 Bulbizarre en starter
64 22 9 Squirtle as starter
65 22 5 Carapuce en starter
66 23 9 Charmander as starter
67 23 5 Salamèche en starter
68 24 9 Chespin as starter
69 24 5 Marisson en starter
70 25 9 Fennekin as starter
71 25 5 Feunnec en starter
72 26 9 Froakie as starter
73 26 5 Grenousse en starter
74 27 9 Chose ‘Blue’ on the TV news report
75 27 5 Choisi « bleu » à la télé
76 28 9 Chose ‘Red’ on the TV news report
77 28 5 Choisi « rouge » à la télé
78 29 9 Awakened the legendary beasts at Burned Tower
79 29 5 En ayant réveillé les légendaires à la Tour Cendrée
80 30 9 Visited Lake Verity after defeating Team Galactic at Mt. Coronet
81 30 5 En ayant visité le Lac Vérité après avoir vaincu la Team Galaxie au Mont Couronné
82 31 9 Talked to Professor Oak at Eterna City
83 31 5 Après avoir parlé au Prof. Chen à Vestigion
84 32 9 Visited the Pokémon Fan Club with Copycat’s doll
85 32 5 Après avoir visité le Fan Club Pokémon avec la poupée de Copieuse
86 33 9 Met Tornadus or Thundurus in a cutscene
87 33 5 Après avoir rencontré Boréas ou Fulguris lors d’une cinématique
88 34 9 Beat the Elite 4 for the second time
89 34 5 Après deux victoires sur le Conseil 4
90 35 9 Enter the Hall of Fame
91 35 5 Après l’entrée au Panthéon
92 36 9 None
93 36 5 Aucune
94 37 9 Acquired National Pokédex
95 37 5 En ayant le Pokédex National
96 38 9 None
97 38 5 Aucune
98 39 9 Beat the Pokémon league after knocking out Snorlax at Route 11
99 39 5 Après avoir mis Ronflex KO sur la route 11, puis avoir battu la Ligue
100 40 9 Playing on the Virtual Console Release
101 40 5 En jouant sur la version Virtual Console
102 41 9 Cure the nightmares of Eldritch’s Son
103 41 5 Après avoir soigné les cauchemars du fils d’Edern
104 42 9 Talk to Cynthia’s grandmother
105 42 5 Après avoir parlé à la grand-mère de Cynthia
106 43 9 No item requirement
107 43 5 Sans objet particulier
108 44 9 Have Adamant Orb in bag
109 44 5 En ayant un Orbe Adamant dans le sac
110 45 9 Have Lustrous Orb in bag
111 45 5 En ayant un Orbe Perlé dans le sac
112 46 9 Have Helix Fossil in bag
113 46 5 En ayant un Nautile dans le sac
114 47 9 Have Dome Fossil in bag
115 47 5 En ayant un Fossile Dôme dans le sac
116 48 9 Have Old Amber in bag
117 48 5 En ayant un Vieil Ambre dans le sac
118 49 9 Have Root Fossil in bag
119 49 5 En ayant un Fossile Racine dans le sac
120 50 9 Have Claw Fossil in bag
121 50 5 En ayant un Fossile Griffe dans le sac
122 51 9 Defeat Jupiter
123 51 5 Après avoir vaincu Jupiter
124 52 9 Defeat Team Galactic at Iron Island
125 52 5 Après avoir vaincu la Team Galaxie sur l’Île de Fer
126 53 9 Input correct password
127 53 5 Après avoir saisi le bon mot de passe
128 54 9 Obtained Zephyr badge
129 54 5 En ayant obtenu le badge Zéphir
130 55 9 Defeat Red
131 55 5 Après avoir vaincu Red
132 56 9 Received a Kanto Starter
133 56 5 Après avoir recu un starter de Kanto
134 57 9 Received TM59 From Claire
135 57 5 Après avoir reçu la CT59 de Claire
136 58 9 Have Regirock, Regice and Registeel in the party
137 58 5 En ayant Regirock, Regice et Registeel dans l’équipe
138 59 9 Sunday
139 59 5 Le dimanche
140 60 9 Monday
141 60 5 Le lundi
142 61 9 Tuesday
143 61 5 Le mardi
144 62 9 Wednesday
145 62 5 Le mercredi
146 63 9 Thursday
147 63 5 Le jeudi
148 64 9 Friday
149 64 5 Le vendredi
150 65 9 Saturday
151 65 5 Le samedi
152 66 9 The first Pokémon in the player’s party has a high friendship stat
153 66 5 Si le premier Pokémon de l’équipe a une stat d’amitié élevée
154 67 9 Beat Mars for the first time
155 67 5 Après deux victoires face à Mars
156 68 9 Have Odd Keystone in bag
157 68 5 En ayant une Clé de Voûte dans le sac
158 69 9 Has talked to at least 32 people in the underground
159 69 5 Après avoir parlé à 32 personnes dans les souterrains
160 70 9 Returned Machine Part to Power Plant
161 70 5 Après avoir rapporté la pièce de machine à la centrale
162 10 9 Have an Event Arceus in the party
163 10 5 En ayant un Arceus événementiel dans l’équipe

View file

@ -1,49 +1,80 @@
encounter_method_id,local_language_id,name
1,6,Im hohen Gras oder in einer Höhle laufen
1,9,Walking in tall grass or a cave
1,5,En marchant dans les herbes hautes ou une grotte
2,6,Mit einer normalen Angel angeln
2,9,Fishing with an Old Rod
2,5,En pêchant avec une Canne
3,6,Mit einer Profiangel angeln
3,9,Fishing with a Good Rod
3,5,En pêchant avec une Super Canne
4,6,Mit einer Superangel angeln
4,9,Fishing with a Super Rod
4,5,En pêchant avec une Méga Canne
5,6,Surfen
5,9,Surfing
5,5,En surfant
6,6,Steine zertrümmern
6,9,Smashing rocks
6,5,En brisant des rochers
7,6,Bäumen Kopfnüsse geben
7,9,Headbutting trees
7,5,En utilisant Coup dBoule sur un arbre
8,6,Im dunklen Gras laufen
8,9,Walking in dark grass
8,5,En marchant dans les herbes sombres
9,6,Im raschelndem Gras laufen
9,9,Walking in rustling grass
9,5,En marchant dans les herbes mouvantes
10,6,In Staubwolken laufen
10,9,Walking in dust clouds
10,5,En marchant dans un nuage de poussière
11,6,Im Schatten einer Brücke laufen
11,9,Walking in bridge shadows
11,5,En marchant à lombre dun pont
12,6,An dunklen stellen angeln
12,9,Fishing in dark spots
12,5,En pêchant dans les endroits sombres
13,6,An dunklen stellen surfen
13,9,Surfing in dark spots
13,5,En surfant sur les endroits sombres
14,6,In gelben Blumenfeldern laufen
14,9,Walking in yellow flowers
14,5,En marchant dans les fleurs jaunes
15,6,In violetten Blumenfeldern laufen
15,9,Walking in purple flowers
15,5,En marchant dans les fleurs violettes
16,6,In roten Blumenfeldern laufen
16,9,Walking in red flowers
16,5,En marchant dans les fleurs rouges
17,6,Auf unwegsamen Gelände laufen
17,9,Walking on rough terrain
17,5,En marchant sur un terrain accidenté
18,9,Receive as a gift
18,5,Reçu en cadeau
19,9,Receive egg as a gift
19,5,Œuf reçu en cadeau
20,9,"Static encounter, only one chance"
20,5,"Rencontre statique, chance unique"
21,9,Playing Pokéflute
21,5,En jouant de la Pokéflûte
22,9,Headbutting a low encounter rate tree
22,5,En utilisant Coup dBoule sur un arbre à taux bas
23,9,Headbutting a normal encounter rate tree
22,5,En utilisant Coup dBoule sur un arbre à taux normal
24,9,Headbutting a high encounter rate tree
22,5,En utilisant Coup dBoule 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
26,5,En utilisant le Seau Wailmer / Wailmerrosoir sur Simularbre
27,9,Diving on seaweed
27,5,En plongeant dans les algues
28,9,On any overworld patch of grass
28,5,Dans les herbes
29,9,On any overworld water tile
29,5,Sur leau
30,9,Using Devon Scope
30,5,En utilisant le Devon Scope
31,9,Fishing in a Feebas Tile
31,5,En pêchant sur une tuile à Barpau

1 encounter_method_id local_language_id name
2 1 6 Im hohen Gras oder in einer Höhle laufen
3 1 9 Walking in tall grass or a cave
4 1 5 En marchant dans les herbes hautes ou une grotte
5 2 6 Mit einer normalen Angel angeln
6 2 9 Fishing with an Old Rod
7 2 5 En pêchant avec une Canne
8 3 6 Mit einer Profiangel angeln
9 3 9 Fishing with a Good Rod
10 3 5 En pêchant avec une Super Canne
11 4 6 Mit einer Superangel angeln
12 4 9 Fishing with a Super Rod
13 4 5 En pêchant avec une Méga Canne
14 5 6 Surfen
15 5 9 Surfing
16 5 5 En surfant
17 6 6 Steine zertrümmern
18 6 9 Smashing rocks
19 6 5 En brisant des rochers
20 7 6 Bäumen Kopfnüsse geben
21 7 9 Headbutting trees
22 7 5 En utilisant Coup d’Boule sur un arbre
23 8 6 Im dunklen Gras laufen
24 8 9 Walking in dark grass
25 8 5 En marchant dans les herbes sombres
26 9 6 Im raschelndem Gras laufen
27 9 9 Walking in rustling grass
28 9 5 En marchant dans les herbes mouvantes
29 10 6 In Staubwolken laufen
30 10 9 Walking in dust clouds
31 10 5 En marchant dans un nuage de poussière
32 11 6 Im Schatten einer Brücke laufen
33 11 9 Walking in bridge shadows
34 11 5 En marchant à l’ombre d’un pont
35 12 6 An dunklen stellen angeln
36 12 9 Fishing in dark spots
37 12 5 En pêchant dans les endroits sombres
38 13 6 An dunklen stellen surfen
39 13 9 Surfing in dark spots
40 13 5 En surfant sur les endroits sombres
41 14 6 In gelben Blumenfeldern laufen
42 14 9 Walking in yellow flowers
43 14 5 En marchant dans les fleurs jaunes
44 15 6 In violetten Blumenfeldern laufen
45 15 9 Walking in purple flowers
46 15 5 En marchant dans les fleurs violettes
47 16 6 In roten Blumenfeldern laufen
48 16 9 Walking in red flowers
49 16 5 En marchant dans les fleurs rouges
50 17 6 Auf unwegsamen Gelände laufen
51 17 9 Walking on rough terrain
52 17 5 En marchant sur un terrain accidenté
53 18 9 Receive as a gift
54 18 5 Reçu en cadeau
55 19 9 Receive egg as a gift
56 19 5 Œuf reçu en cadeau
57 20 9 Static encounter, only one chance
58 20 5 Rencontre statique, chance unique
59 21 9 Playing Pokéflute
60 21 5 En jouant de la Pokéflûte
61 22 9 Headbutting a low encounter rate tree
62 22 5 En utilisant Coup d’Boule sur un arbre à taux bas
63 23 9 Headbutting a normal encounter rate tree
64 22 5 En utilisant Coup d’Boule sur un arbre à taux normal
65 24 9 Headbutting a high encounter rate tree
66 22 5 En utilisant Coup d’Boule sur un arbre à taux élevé
67 25 9 Using the Squirt Bottle on a Sudowoodo
68 25 5 En utilisant la Carapuce à O sur Simularbre
69 26 9 Using the Wailmer Pail on a Sudowoodo
70 26 5 En utilisant le Seau Wailmer / Wailmerrosoir sur Simularbre
71 27 9 Diving on seaweed
72 27 5 En plongeant dans les algues
73 28 9 On any overworld patch of grass
74 28 5 Dans les herbes
75 29 9 On any overworld water tile
76 29 5 Sur l’eau
77 30 9 Using Devon Scope
78 30 5 En utilisant le Devon Scope
79 31 9 Fishing in a Feebas Tile
80 31 5 En pêchant sur une tuile à Barpau

View file

@ -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

1 id identifier order
30 29 roaming-water 29
31 30 devon-scope 30
32 31 feebas-tile-fishing 31
33 32 island-scan 32
34 33 sos-encounter 33
35 34 bubbling-spots 34
36 35 berry-piles 35
37 36 npc-trade 36
38 37 sos-from-bubbling-spot 37

View file

@ -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

1 id version_group_id encounter_method_id slot rarity
711 710 6 30 1 100
712 711 5 31 1 50
713 712 6 31 1 50
714 713 17 18 1 100
715 714 17 32 1 100
716 715 17 1 1 50
717 716 17 1 2 30
718 717 17 1 3 30
719 718 17 1 4 15
720 719 17 1 5 5
721 720 18 34 1 40
722 721 18 34 2 35
723 722 18 34 3 25
724 723 18 32 1 100
725 724 18 33 1 15
726 725 18 33 2 15
727 726 18 33 3 15
728 727 18 37 1 15
729 728 18 37 2 15
730 729 18 4 1 55
731 730 18 4 2 40
732 731 18 4 3 5
733 732 18 1 1 50
734 733 18 1 2 30
735 734 18 1 3 20
736 735 18 1 4 20
737 736 18 1 5 20
738 737 18 1 6 15
739 738 18 1 7 15
740 739 17 1 1 30
741 740 17 1 4 20
742 741 17 1 5 20
743 742 17 1 6 20
744 743 18 1 1 20
745 744 18 1 2 20
746 745 18 1 7 10
747 746 18 1 8 10
748 747 18 1 9 5
749 748 17 5 1 40
750 749 17 5 2 40
751 750 17 5 3 20
752 751 17 1 2 50
753 752 17 1 4 30
754 753 17 1 5 30
755 754 17 1 7 20
756 755 17 33 1 15
757 756 17 33 2 15
758 757 17 33 3 15
759 758 17 33 4 15
760 759 17 33 5 15
761 760 17 1 3 20
762 761 17 1 5 10
763 762 17 1 6 10
764 763 17 1 7 10
765 764 17 1 8 10
766 765 17 1 9 5
767 766 18 1 1 30
768 767 18 1 6 10
769 768 18 20 1 100
770 769 18 20 2 100
771 770 18 1 3 10
772 771 18 1 4 10
773 772 17 1 5 15
774 773 18 18 1 100
775 774 18 18 2 100
776 775 18 18 3 100
777 776 18 1 1 35
778 777 18 1 2 35
779 778 18 1 3 35
780 779 18 1 4 30
781 780 17 35 1 100
782 781 17 34 1 80
783 782 17 34 2 20
784 783 18 35 1 100
785 784 18 34 1 50
786 785 18 34 2 30
787 786 18 34 3 20
788 787 18 1 3 30
789 788 17 1 1 20
790 789 17 1 2 20
791 790 17 1 9 10
792 791 17 1 1 40
793 792 17 1 4 10
794 793 17 4 1 79
795 794 17 4 2 20
796 795 17 4 3 1
797 796 17 34 1 50
798 797 17 34 2 30
799 798 17 34 3 20
800 799 17 37 1 15
801 800 18 5 1 30
802 801 18 5 2 30
803 802 18 5 3 20
804 803 18 5 4 20
805 804 18 1 5 10
806 805 18 34 1 35
807 806 18 34 4 10
808 807 18 33 4 15
809 808 18 37 3 15
810 809 18 4 1 50
811 810 18 4 4 5
812 811 18 5 1 40
813 812 18 5 2 40
814 813 17 18 2 100
815 814 17 18 3 100
816 815 17 18 4 100
817 816 17 1 1 100
818 817 17 33 1 10
819 818 17 33 2 10
820 819 17 33 3 100
821 820 18 33 1 10
822 821 18 33 2 10
823 822 18 33 3 100
824 823 18 1 7 5
825 824 17 33 3 1
826 825 18 33 3 1
827 826 18 1 1 40
828 827 18 1 6 20
829 828 18 33 5 15
830 829 17 36 1 100
831 830 18 36 1 100
832 831 17 34 1 70
833 832 17 34 2 70
834 833 17 34 3 30
835 834 18 34 3 30
836 835 18 34 4 15
837 836 18 34 5 5
838 837 18 34 6 5
839 838 18 1 9 10
840 839 18 1 10 10
841 840 18 1 11 10
842 841 18 34 1 70
843 842 17 1 1 49
844 843 17 1 6 1
845 844 18 1 3 29
846 845 18 1 5 1
847 846 17 1 2 25
848 847 18 1 2 25
849 848 18 1 10 5
850 849 17 34 1 100
851 850 17 1 6 9
852 851 17 1 7 1
853 852 18 34 1 100
854 853 18 1 6 9
855 854 18 1 7 1
856 855 17 5 1 30
857 856 17 5 2 30
858 857 17 5 4 20
859 858 18 34 2 45
860 859 18 34 3 35
861 860 18 34 4 20
862 861 18 18 4 100
863 862 18 18 5 100
864 863 18 18 6 100
865 864 18 18 7 100
866 865 18 18 8 100
867 866 18 18 9 100
868 867 18 18 10 100
869 868 17 34 1 60
870 869 17 20 1 100
871 870 17 1 6 5
872 871 18 34 4 5
873 872 18 33 6 15
874 873 18 4 2 30
875 874 18 4 3 15
876 875 18 1 4 15
877 876 18 1 5 15
878 877 17 4 1 70
879 878 17 4 2 15
880 879 17 4 3 10
881 880 17 4 4 5
882 881 18 4 2 20
883 882 18 4 4 15
884 883 18 4 1 49
885 884 18 4 3 10
886 885 18 4 4 1
887 886 18 5 2 25
888 887 18 5 5 5
889 888 18 33 7 15
890 889 17 34 2 45
891 890 17 34 3 5
892 891 17 37 2 15
893 892 17 4 2 29
894 893 17 5 3 40
895 894 18 34 2 25
896 895 18 4 1 44
897 896 18 4 3 25
898 897 18 5 3 40
899 898 18 1 7 20
900 899 17 1 1 70
901 900 17 1 3 100
902 901 18 1 1 60
903 902 17 33 1 11
904 903 18 33 1 11
905 904 17 34 3 10
906 905 17 37 1 10
907 906 17 37 2 10
908 907 17 37 3 1
909 908 18 34 2 20
910 909 18 34 3 10
911 910 18 37 1 11
912 911 18 37 2 10
913 912 18 37 3 1
914 913 18 37 4 15
915 914 18 37 5 15
916 915 18 37 6 15
917 916 18 1 1 70
918 917 17 1 1 80
919 918 18 5 3 30
920 919 18 5 4 10
921 920 18 1 2 40
922 921 18 1 3 40
923 922 18 34 2 15
924 923 18 34 3 15
925 924 18 34 5 15
926 925 18 4 1 25
927 926 18 4 2 25
928 927 18 4 5 5
929 928 18 4 6 5
930 929 18 5 2 20
931 930 17 1 1 25
932 931 17 1 8 5
933 932 18 1 1 25
934 933 18 4 1 35
935 934 18 4 2 35
936 935 18 1 1 39
937 936 18 1 4 1
938 937 17 1 7 5
939 938 18 33 8 15
940 939 18 33 9 15
941 940 18 1 1 21
942 941 18 1 11 4
943 942 18 1 12 1
944 943 17 33 6 15
945 944 17 33 7 15
946 945 17 33 8 15
947 946 17 33 9 15
948 947 17 33 4 1
949 948 17 4 1 60
950 949 17 4 2 40
951 950 17 1 9 100
952 951 18 33 4 1
953 952 18 4 1 40
954 953 17 1 5 9
955 954 17 1 7 100
956 955 17 34 1 40
957 956 17 34 4 20
958 957 17 4 1 78
959 958 17 4 4 1
960 959 18 34 6 15
961 960 18 34 7 15
962 961 18 34 8 5
963 962 17 1 4 100
964 963 18 33 2 11
965 964 17 1 2 40
966 965 17 1 3 5
967 966 17 1 4 5
968 967 18 1 4 5
969 968 18 1 5 5
970 969 17 34 2 50
971 970 17 4 1 99
972 971 17 4 2 1
973 972 18 34 1 60
974 973 18 34 2 40
975 974 18 4 1 90
976 975 18 4 2 10
977 976 17 18 1 7
978 977 17 18 2 7
979 978 17 18 3 7
980 979 17 18 4 4
981 980 17 18 5 4
982 981 17 18 6 4
983 982 17 18 7 4
984 983 17 18 8 4
985 984 17 18 9 4
986 985 17 18 10 4
987 986 17 18 11 4
988 987 17 18 12 4
989 988 17 18 13 4
990 989 17 18 14 4
991 990 17 18 15 4
992 991 17 18 16 4
993 992 17 18 17 4
994 993 17 18 18 2
995 994 17 18 19 2
996 995 17 18 20 2
997 996 17 18 21 2
998 997 17 18 22 2
999 998 17 18 23 2
1000 999 17 18 24 2
1001 1000 17 18 25 2
1002 1001 17 18 18 4
1003 1002 18 18 1 7
1004 1003 18 18 2 7
1005 1004 18 18 3 7
1006 1005 18 18 4 4
1007 1006 18 18 5 4
1008 1007 18 18 6 4
1009 1008 18 18 7 4
1010 1009 18 18 8 4
1011 1010 18 18 9 4
1012 1011 18 18 10 4
1013 1012 18 18 11 4
1014 1013 18 18 12 4
1015 1014 18 18 13 4
1016 1015 18 18 14 4
1017 1016 18 18 15 4
1018 1017 18 18 16 4
1019 1018 18 18 17 4
1020 1019 18 18 18 2
1021 1020 18 18 19 2
1022 1021 18 18 20 2
1023 1022 18 18 21 2
1024 1023 18 18 22 2
1025 1024 18 18 23 2
1026 1025 18 18 24 2
1027 1026 18 18 25 2
1028 1027 18 18 18 4
1029 1028 17 18 1 8
1030 1029 17 18 2 8
1031 1030 17 18 3 5
1032 1031 17 18 4 5
1033 1032 17 18 5 5
1034 1033 17 18 6 5
1035 1034 17 18 7 5
1036 1035 17 18 8 5
1037 1036 17 18 9 5
1038 1037 17 18 10 5
1039 1038 17 18 11 5
1040 1039 17 18 12 5
1041 1040 17 18 13 5
1042 1041 17 18 14 5
1043 1042 17 18 15 5
1044 1043 17 18 16 3
1045 1044 17 18 17 3
1046 1045 17 18 18 3
1047 1046 17 18 19 3
1048 1047 17 18 20 3
1049 1048 17 18 21 3
1050 1049 18 18 1 8
1051 1050 18 18 2 5
1052 1051 18 18 3 5
1053 1052 18 18 4 5
1054 1053 18 18 5 5
1055 1054 18 18 6 5
1056 1055 18 18 7 5
1057 1056 18 18 8 5
1058 1057 18 18 9 5
1059 1058 18 18 10 5
1060 1059 18 18 11 5
1061 1060 18 18 12 5
1062 1061 18 18 13 5
1063 1062 18 18 14 5
1064 1063 18 18 15 5
1065 1064 18 18 16 3
1066 1065 18 18 17 3
1067 1066 18 18 18 3
1068 1067 18 18 19 3
1069 1068 18 18 20 3
1070 1069 18 18 21 3
1071 1070 17 18 3 8
1072 1071 17 18 4 8
1073 1072 17 18 5 8
1074 1073 17 18 6 6
1075 1074 17 18 7 6
1076 1075 17 18 8 6
1077 1076 17 18 9 6
1078 1077 17 18 10 6
1079 1078 17 18 11 6
1080 1079 17 18 12 6
1081 1080 17 18 13 6
1082 1081 17 18 14 3
1083 1082 17 18 15 3
1084 1083 18 18 2 8
1085 1084 18 18 3 8
1086 1085 18 18 4 8
1087 1086 18 18 5 8
1088 1087 18 18 6 8
1089 1088 18 18 15 3
1090 1089 17 34 2 40
1091 1090 18 34 4 40
1092 1091 18 34 5 30
1093 1092 18 34 6 20
1094 1093 18 34 7 10
1095 1094 17 37 3 15
1096 1095 17 37 4 15
1097 1096 17 4 1 59
1098 1097 18 4 1 59
1099 1098 18 4 3 1
1100 1099 18 1 8 100
1101 1100 17 34 3 70
1102 1101 17 34 4 30
1103 1102 17 34 5 30
1104 1103 18 34 2 70
1105 1104 18 34 3 50
1106 1105 18 34 4 30
1107 1106 17 34 1 90
1108 1107 17 34 2 10
1109 1108 17 34 3 50
1110 1109 17 34 4 40
1111 1110 17 34 5 10
1112 1111 17 5 2 25
1113 1112 17 5 5 5
1114 1113 18 1 3 15
1115 1114 17 5 1 80
1116 1115 17 5 2 20
1117 1116 18 5 1 55
1118 1117 18 5 3 10
1119 1118 18 5 4 5
1120 1119 17 1 6 100
1121 1120 17 1 3 15
1122 1121 18 20 3 100
1123 1122 18 20 4 100
1124 1123 18 20 5 100
1125 1124 18 20 6 100
1126 1125 18 20 7 15
1127 1126 18 20 8 15
1128 1127 18 20 9 15
1129 1128 18 20 10 15
1130 1129 18 20 11 15
1131 1130 18 20 7 100
1132 1131 18 20 8 100
1133 1132 18 20 12 15
1134 1133 18 20 13 15
1135 1134 18 4 1 45
1136 1135 18 5 1 80
1137 1136 18 1 8 5
1138 1137 17 1 3 24
1139 1138 17 1 5 1
1140 1139 18 1 3 24

File diff suppressed because it is too large Load diff

View file

@ -529,3 +529,14 @@ id,baby_trigger_item_id
536,
537,
538,
539,
540,
541,
542,
543,
544,
545,
546,
547,
548,
549,

1 id baby_trigger_item_id
529 536
530 537
531 538
532 539
533 540
534 541
535 542
536 543
537 544
538 545
539 546
540 547
541 548
542 549

View file

@ -1,60 +1,82 @@
generation_id,local_language_id,name
1,1,だいいちせだい
1,3,1세대
1,4,第一世代
1,5,Génération I
1,6,Generation I
1,7,Generación I
1,9,Generation I
1,11,第一世代
1,12,第一世代
2,1,だいにせだい
2,3,2세대
2,4,第二世代
2,5,Génération II
2,6,Generation II
2,7,Generación II
2,9,Generation II
2,11,第二世代
2,12,第二世代
3,1,だいさんせだい
3,3,3세대
3,4,第三世代
3,5,Génération III
3,6,Generation III
3,7,Generación III
3,9,Generation III
3,11,第三世代
3,12,第三世代
4,1,だいよんせだい
4,3,4세대
4,4,第四世代
4,5,Génération IV
4,6,Generation IV
4,7,Generación IV
4,9,Generation IV
4,11,第四世代
4,12,第四世代
5,1,だいごせだい
5,3,5세대
5,4,第五世代
5,5,Génération V
5,6,Generation V
5,7,Generación V
5,9,Generation V
5,11,第五世代
5,12,第五世代
6,1,だいろくせだい
6,3,6세대
6,4,第六世代
6,5,Génération VI
6,6,Generation VI
6,7,Generación VI
6,9,Generation VI
6,11,第六世代
6,12,第六世代
7,1,だいななせだい
7,3,7세대
7,4,第七世代
7,5,Génération VII
7,6,Generation VII
7,7,Generación VII
7,9,Generation VII
7,11,第七世代
7,12,第七世代
8,1,だいはちせだい
8,3,8세대
8,4,第八世代
8,5,Génération VIII
8,6,Generation VIII
8,7,Generación VIII
8,9,Generation VIII
8,11,第八世代
8,12,第八世代
9,1,だいきゅうせだい
9,3,9세대
9,4,第九世代
9,5,Génération IX
9,6,Generation IX
9,7,Generación IX
9,9,Generation IX
9,9,Generation IX
9,11,第九世代
9,12,第九世代

1 generation_id local_language_id name
2 1 1 だいいちせだい
3 1 3 1세대
4 1 4 第一世代
5 1 5 Génération I
6 1 6 Generation I
7 1 7 Generación I
8 1 9 Generation I
9 1 11 第一世代
10 1 12 第一世代
11 2 1 だいにせだい
12 2 3 2세대
13 2 4 第二世代
14 2 5 Génération II
15 2 6 Generation II
16 2 7 Generación II
17 2 9 Generation II
18 2 11 第二世代
19 2 12 第二世代
20 3 1 だいさんせだい
21 3 3 3세대
22 3 4 第三世代
23 3 5 Génération III
24 3 6 Generation III
25 3 7 Generación III
26 3 9 Generation III
27 3 11 第三世代
28 3 12 第三世代
29 4 1 だいよんせだい
30 4 3 4세대
31 4 4 第四世代
32 4 5 Génération IV
33 4 6 Generation IV
34 4 7 Generación IV
35 4 9 Generation IV
36 4 11 第四世代
37 4 12 第四世代
38 5 1 だいごせだい
39 5 3 5세대
40 5 4 第五世代
41 5 5 Génération V
42 5 6 Generation V
43 5 7 Generación V
44 5 9 Generation V
45 5 11 第五世代
46 5 12 第五世代
47 6 1 だいろくせだい
48 6 3 6세대
49 6 4 第六世代
50 6 5 Génération VI
51 6 6 Generation VI
52 6 7 Generación VI
53 6 9 Generation VI
54 6 11 第六世代
55 6 12 第六世代
56 7 1 だいななせだい
57 7 3 7세대
58 7 4 第七世代
59 7 5 Génération VII
60 7 6 Generation VII
61 7 7 Generación VII
62 7 9 Generation VII
63 7 11 第七世代
64 7 12 第七世代
65 8 1 だいはちせだい
66 8 3 8세대
67 8 4 第八世代
68 8 5 Génération VIII
69 8 6 Generation VIII
70 8 7 Generación VIII
71 8 9 Generation VIII
72 8 11 第八世代
73 8 12 第八世代
74 9 1 だいきゅうせだい
75 9 3 9세대
76 9 4 第九世代
77 9 5 Génération IX
78 9 6 Generation IX
79 9 7 Generación IX
80 9 9 Generation IX
81 9 11 第九世代
82 9 12 第九世代

View file

@ -13,7 +13,7 @@ growth_rate_id,local_language_id,name
4,9,medium slow
5,5,erratique
5,6,"langsam, dann sehr schnell"
5,9,slow then very fast
5,9,erratic
6,5,fluctuante
6,6,"schnell, dann sehr langsam"
6,9,fast then very slow
6,9,fluctuating

1 growth_rate_id local_language_id name
13 4 9 medium slow
14 5 5 erratique
15 5 6 langsam, dann sehr schnell
16 5 9 slow then very fast erratic
17 6 5 fluctuante
18 6 6 schnell, dann sehr langsam
19 6 9 fast then very slow fluctuating

View file

@ -17642,3 +17642,183 @@ item_id,local_language_id,name
2099,4,黄色盘子
2099,9,Yellow Dish
2099,11,イエロープレート
2100,1,ロトりぼう
2100,9,Roto Stick
2100,11,ロトりぼう
2101,1,おしゃれカードみどり
2101,9,Teal Style Card
2101,11,おしゃれカードみどり
2102,1,みどりのめん
2102,9,Teal Mask
2102,11,みどりのめん
2103,1,きらめくおまもり
2103,9,Glimmering Charm
2103,11,きらめくおまもり
2104,1,けっしょうのかけら
2104,9,Crystal Cluster
2104,11,けっしょうのかけら
2105,1,ようせいのハネ
2105,9,Fairy Feather
2105,11,ようせいのハネ
2106,1,いどのめん
2106,9,Wellspring Mask
2106,11,いどのめん
2107,1,かまどのめん
2107,9,Hearthflame Mask
2107,11,かまどのめん
2108,1,いしずえのめん
2108,9,Cornerstone Mask
2108,11,いしずえのめん
2109,1,みついりりんご
2109,9,Syrupy Apple
2109,11,みついりりんご
2110,1,ボンサクのちゃわん
2110,9,Unremarlable Teacup
2110,11,ボンサクのちゃわん
2111,1,ケッサクのちゃわん
2111,9,Masterpiece Teacup
2111,11,ボンサクのちゃわん
2112,1,たいりょくのもち
2112,9,Health Mochi
2112,11,たいりょくのもち
2113,1,きんりょくのもち
2113,9,Muscle Mochi
2113,11,きんりょくのもち
2114,1,ていこうのもち
2114,9,Resist Mochi
2114,11,ていこうのもち
2115,1,ちりょくのもち
2115,9,Genius Mochi
2115,11,ちりょくのもち
2116,1,せいしんのもち
2116,9,Clever Mochi
2116,11,せいしんのもち
2117,1,しゅんぱつのもち
2117,9,Swift Mochi
2117,11,しゅんぱつのもち
2118,1,まっさらもち
2118,9,Fresh Start Mochi
2118,11,まっさらもち
2119,1,アーボのきば
2119,9,Ekans Fang
2119,11,アーボのきば
2120,1,サンドのツメ
2120,9,Sandshrew Claw
2120,11,サンドのツメ
2121,1,ピィのけ
2121,9,Cleffa Fur
2121,11,ピィのけ
2122,1,ロコンのけ
2122,9,Vulpix Fur
2122,11,ロコンのけ
2123,1,ニョロモのめんえき
2123,9,Poliwag Slime
2123,11,ニョロモのめんえき
2124,1,マダツボミのツル
2124,9,Bellsprout Vine
2124,11,マダツボミのツル
2125,1,イシツブテのかけら
2125,9,Geodude Fragment
2125,11,イシツブテのかけら
2126,1,ドガースのガス
2126,9,Koffing Gas
2126,11,ドガースのガス
2127,1,ゴンベのキバ
2127,9,Munchlax Fang
2127,11,ゴンベのキバ
2128,1,オタチのけ
2128,9,Sentret Fur
2128,11,オタチのけ
2129,1,ホーホーのはね
2129,9,Hoothoot Feather
2129,11,ホーホーのはね
2130,1,イトマルのいと
2130,9,Spinarak Thread
2130,11,イトマルのいと
2131,1,エイパムのけ
2131,9,Aipom Hair
2131,11,エイパムのけ
2132,1,ヤンヤンマのトゲ
2132,9,Yanma Spike
2132,11,ヤンヤンマのトゲ
2133,1,グライガーのキバ
2133,9,Gligar Fang
2133,11,グライガーのキバ
2134,1,マグマッグのようがん
2134,9,Slugma Lava
2134,11,マグマッグのようがん
2135,1,ウリムーのけ
2135,9,Swinub Hair
2135,11,ウリムーのけ
2136,1,ポチエナのキバ
2136,9,Poochyena Fang
2136,11,ポチエナのキバ
2137,1,ハスボーのはっぱ
2137,9,Lotad Leaf
2137,11,ハスボーのはっぱ
2138,1,タネボーのえだ
2138,9,Seedot Stem
2138,11,タネボーのえだ
2139,1,ノズパスのかけら
2139,9,Nosepass Fragment
2139,11,ノズパスのかけら
2140,1,バルビートのしる
2140,9,Volbeat Fluid
2140,11,バルビートのしる
2141,1,イルミーゼのしる
2141,9,Illumise Fluid
2141,11,イルミーゼのしる
2142,1,ヘイガニのから
2142,9,Corphish Shell
2142,11,ヘイガニのから
2143,1,ヒンバスのうろこ
2143,9,Feebas Scales
2143,11,ヒンバスのうろこ
2144,1,ヨマワルのかけら
2144,9,Duskull Fragment
2144,11,ヨマワルのかけら
2145,1,リーシャンのかけら
2145,9,Chingling Fragment
2145,11,リーシャンのかけら
2146,1,ドッコラーのあせ
2146,9,Timburr Sweat
2146,11,ドッコラーのあせ
2147,1,クルミルのはっぱ
2147,9,Sewaddle Leaf
2147,11,クルミルのはっぱ
2148,1,コアルヒーのはね
2148,9,Ducklett Feather
2148,11,コアルヒーのはね
2149,1,ヒトモシのすす
2149,9,Litwick Soot
2149,11,ヒトモシのすす
2150,1,コジョフーのツメ
2150,9,Mienfoo Claw
2150,11,コジョフーのツメ
2151,1,バルチャイのはね
2151,9,Vullaby Feather
2151,11,バルチャイのはね
2152,1,メレシーのほうせき
2152,9,Carbink Jewel
2152,11,メレシーのほうせき
2153,1,ボクレーのえだ
2153,9,Phantump Twig
2153,11,ボクレーのえだ
2154,1,アゴジムシのいと
2154,9,Grubbin Thread
2154,11,アゴジムシのいと
2155,1,アブリーのこな
2155,9,Cutiefly Powder
2155,11,アブリーのこな
2156,1,ジャラコのウロコ
2156,9,Jangmo-o Scales
2156,11,ジャラコのウロコ
2157,1,ウッウのうもう
2157,9,Cramorant Down
2157,11,ウッウのうもう
2158,1,モルペコのたね
2158,9,Morpeko Snack
2158,11,モルペコのたね
2159,1,チャデスのこな
2159,9,Poltchageist Powder
2159,11,チャデスのこな

1 item_id local_language_id name
17642 2099 4 黄色盘子
17643 2099 9 Yellow Dish
17644 2099 11 イエロープレート
17645 2100 1 ロトりぼう
17646 2100 9 Roto Stick
17647 2100 11 ロトりぼう
17648 2101 1 おしゃれカードみどり
17649 2101 9 Teal Style Card
17650 2101 11 おしゃれカードみどり
17651 2102 1 みどりのめん
17652 2102 9 Teal Mask
17653 2102 11 みどりのめん
17654 2103 1 きらめくおまもり
17655 2103 9 Glimmering Charm
17656 2103 11 きらめくおまもり
17657 2104 1 けっしょうのかけら
17658 2104 9 Crystal Cluster
17659 2104 11 けっしょうのかけら
17660 2105 1 ようせいのハネ
17661 2105 9 Fairy Feather
17662 2105 11 ようせいのハネ
17663 2106 1 いどのめん
17664 2106 9 Wellspring Mask
17665 2106 11 いどのめん
17666 2107 1 かまどのめん
17667 2107 9 Hearthflame Mask
17668 2107 11 かまどのめん
17669 2108 1 いしずえのめん
17670 2108 9 Cornerstone Mask
17671 2108 11 いしずえのめん
17672 2109 1 みついりりんご
17673 2109 9 Syrupy Apple
17674 2109 11 みついりりんご
17675 2110 1 ボンサクのちゃわん
17676 2110 9 Unremarlable Teacup
17677 2110 11 ボンサクのちゃわん
17678 2111 1 ケッサクのちゃわん
17679 2111 9 Masterpiece Teacup
17680 2111 11 ボンサクのちゃわん
17681 2112 1 たいりょくのもち
17682 2112 9 Health Mochi
17683 2112 11 たいりょくのもち
17684 2113 1 きんりょくのもち
17685 2113 9 Muscle Mochi
17686 2113 11 きんりょくのもち
17687 2114 1 ていこうのもち
17688 2114 9 Resist Mochi
17689 2114 11 ていこうのもち
17690 2115 1 ちりょくのもち
17691 2115 9 Genius Mochi
17692 2115 11 ちりょくのもち
17693 2116 1 せいしんのもち
17694 2116 9 Clever Mochi
17695 2116 11 せいしんのもち
17696 2117 1 しゅんぱつのもち
17697 2117 9 Swift Mochi
17698 2117 11 しゅんぱつのもち
17699 2118 1 まっさらもち
17700 2118 9 Fresh Start Mochi
17701 2118 11 まっさらもち
17702 2119 1 アーボのきば
17703 2119 9 Ekans Fang
17704 2119 11 アーボのきば
17705 2120 1 サンドのツメ
17706 2120 9 Sandshrew Claw
17707 2120 11 サンドのツメ
17708 2121 1 ピィのけ
17709 2121 9 Cleffa Fur
17710 2121 11 ピィのけ
17711 2122 1 ロコンのけ
17712 2122 9 Vulpix Fur
17713 2122 11 ロコンのけ
17714 2123 1 ニョロモのめんえき
17715 2123 9 Poliwag Slime
17716 2123 11 ニョロモのめんえき
17717 2124 1 マダツボミのツル
17718 2124 9 Bellsprout Vine
17719 2124 11 マダツボミのツル
17720 2125 1 イシツブテのかけら
17721 2125 9 Geodude Fragment
17722 2125 11 イシツブテのかけら
17723 2126 1 ドガースのガス
17724 2126 9 Koffing Gas
17725 2126 11 ドガースのガス
17726 2127 1 ゴンベのキバ
17727 2127 9 Munchlax Fang
17728 2127 11 ゴンベのキバ
17729 2128 1 オタチのけ
17730 2128 9 Sentret Fur
17731 2128 11 オタチのけ
17732 2129 1 ホーホーのはね
17733 2129 9 Hoothoot Feather
17734 2129 11 ホーホーのはね
17735 2130 1 イトマルのいと
17736 2130 9 Spinarak Thread
17737 2130 11 イトマルのいと
17738 2131 1 エイパムのけ
17739 2131 9 Aipom Hair
17740 2131 11 エイパムのけ
17741 2132 1 ヤンヤンマのトゲ
17742 2132 9 Yanma Spike
17743 2132 11 ヤンヤンマのトゲ
17744 2133 1 グライガーのキバ
17745 2133 9 Gligar Fang
17746 2133 11 グライガーのキバ
17747 2134 1 マグマッグのようがん
17748 2134 9 Slugma Lava
17749 2134 11 マグマッグのようがん
17750 2135 1 ウリムーのけ
17751 2135 9 Swinub Hair
17752 2135 11 ウリムーのけ
17753 2136 1 ポチエナのキバ
17754 2136 9 Poochyena Fang
17755 2136 11 ポチエナのキバ
17756 2137 1 ハスボーのはっぱ
17757 2137 9 Lotad Leaf
17758 2137 11 ハスボーのはっぱ
17759 2138 1 タネボーのえだ
17760 2138 9 Seedot Stem
17761 2138 11 タネボーのえだ
17762 2139 1 ノズパスのかけら
17763 2139 9 Nosepass Fragment
17764 2139 11 ノズパスのかけら
17765 2140 1 バルビートのしる
17766 2140 9 Volbeat Fluid
17767 2140 11 バルビートのしる
17768 2141 1 イルミーゼのしる
17769 2141 9 Illumise Fluid
17770 2141 11 イルミーゼのしる
17771 2142 1 ヘイガニのから
17772 2142 9 Corphish Shell
17773 2142 11 ヘイガニのから
17774 2143 1 ヒンバスのうろこ
17775 2143 9 Feebas Scales
17776 2143 11 ヒンバスのうろこ
17777 2144 1 ヨマワルのかけら
17778 2144 9 Duskull Fragment
17779 2144 11 ヨマワルのかけら
17780 2145 1 リーシャンのかけら
17781 2145 9 Chingling Fragment
17782 2145 11 リーシャンのかけら
17783 2146 1 ドッコラーのあせ
17784 2146 9 Timburr Sweat
17785 2146 11 ドッコラーのあせ
17786 2147 1 クルミルのはっぱ
17787 2147 9 Sewaddle Leaf
17788 2147 11 クルミルのはっぱ
17789 2148 1 コアルヒーのはね
17790 2148 9 Ducklett Feather
17791 2148 11 コアルヒーのはね
17792 2149 1 ヒトモシのすす
17793 2149 9 Litwick Soot
17794 2149 11 ヒトモシのすす
17795 2150 1 コジョフーのツメ
17796 2150 9 Mienfoo Claw
17797 2150 11 コジョフーのツメ
17798 2151 1 バルチャイのはね
17799 2151 9 Vullaby Feather
17800 2151 11 バルチャイのはね
17801 2152 1 メレシーのほうせき
17802 2152 9 Carbink Jewel
17803 2152 11 メレシーのほうせき
17804 2153 1 ボクレーのえだ
17805 2153 9 Phantump Twig
17806 2153 11 ボクレーのえだ
17807 2154 1 アゴジムシのいと
17808 2154 9 Grubbin Thread
17809 2154 11 アゴジムシのいと
17810 2155 1 アブリーのこな
17811 2155 9 Cutiefly Powder
17812 2155 11 アブリーのこな
17813 2156 1 ジャラコのウロコ
17814 2156 9 Jangmo-o Scales
17815 2156 11 ジャラコのウロコ
17816 2157 1 ウッウのうもう
17817 2157 9 Cramorant Down
17818 2157 11 ウッウのうもう
17819 2158 1 モルペコのたね
17820 2158 9 Morpeko Snack
17821 2158 11 モルペコのたね
17822 2159 1 チャデスのこな
17823 2159 9 Poltchageist Powder
17824 2159 11 チャデスのこな

View file

@ -1,25 +1,41 @@
item_pocket_id,local_language_id,name
1,4,道具
1,5,Objets
1,7,Objetos
1,9,Items
1,12,道具
2,4,回復道具
2,5,Médicaments
2,7,Medicinas
2,9,Medicine
2,12,回复道具
3,4,精靈球
3,5,Balls
3,7,Bolas
3,9,Poké Balls
3,12,精灵球
4,4,招式及秘傳學習器
4,5,CT & CS
4,7,MT y MO
4,9,TMs and HMs
4,12,招式及秘传学习器
5,4,樹果
5,5,Baies
5,7,Bayas
5,9,Berries
5,12,树果
6,4,郵件
6,5,Lettres
6,7,Correo
6,9,Mail
6,12,邮件
7,4,戰鬥道具
7,5,Objets de combat
7,7,Objetos de combate
7,9,Battle Items
7,12,战斗道具
8,4,重要物品
8,5,Object rares
8,7,Objetos clave
8,9,Key Items
8,12,重要物品

1 item_pocket_id local_language_id name
2 1 4 道具
3 1 5 Objets
4 1 7 Objetos
5 1 9 Items
6 1 12 道具
7 2 4 回復道具
8 2 5 Médicaments
9 2 7 Medicinas
10 2 9 Medicine
11 2 12 回复道具
12 3 4 精靈球
13 3 5 Balls
14 3 7 Bolas
15 3 9 Poké Balls
16 3 12 精灵球
17 4 4 招式及秘傳學習器
18 4 5 CT & CS
19 4 7 MT y MO
20 4 9 TMs and HMs
21 4 12 招式及秘传学习器
22 5 4 樹果
23 5 5 Baies
24 5 7 Bayas
25 5 9 Berries
26 5 12 树果
27 6 4 郵件
28 6 5 Lettres
29 6 7 Correo
30 6 9 Mail
31 6 12 邮件
32 7 4 戰鬥道具
33 7 5 Objets de combat
34 7 7 Objetos de combate
35 7 9 Battle Items
36 7 12 战斗道具
37 8 4 重要物品
38 8 5 Object rares
39 8 7 Objetos clave
40 8 9 Key Items
41 8 12 重要物品

View file

@ -2047,5 +2047,65 @@ id,identifier,category_id,cost,fling_power,fling_effect_id
2097,red-dish,55,0,,
2098,white-dish,55,0,,
2099,yellow-dish,55,0,,
2100,roto-stick,21,0,,
2101,teal-style-card,21,0,,
2102,teak-mask,20,0,,
2103,glimmering-charm,21,0,,
2104,cyrstal-cluster,20,0,,
2105,fairy-feather,12,750,,
2106,wellspring-mask,12,0,,
2107,hearthflame-mask,12,0,,
2108,cornerstone-mask,12,0,,
2109,syrupy-apple,10,500,,
2110,unremarkable-teacup,10,400,,
2111,masterpiece-teacup,10,9500,,
2112,health-mochi,26,125,,
2113,muscle-mochi,26,125,,
2114,resist-mochi,26,125,,
2115,genius-mochi,26,125,,
2116,clever-mochi,26,125,,
2117,swift-mochi,26,125,,
2118,fresh-start-mochi,26,75,,
2119,ekans-fang,54,15,,
2120,sandshrew-claw,54,10,,
2121,cleffa-fur,54,25,,
2122,vulpix-fur,54,35,,
2123,poliwag-slime,54,35,,
2124,bellsprout-vine,54,25,,
2125,geodude-fragment,54,30,,
2126,koffing-gas,54,25,,
2127,munchlax-fang,54,40,,
2128,sentret-fur,54,10,,
2129,hoothoot-feather,54,15,,
2130,spinarak-thread,54,10,,
2131,aipom-hair,54,30,,
2132,yanma-spike,54,35,,
2133,gligar-fang,54,40,,
2134,slugma-lava,54,20,,
2135,swinub-hair,54,35,,
2136,poochyena-fang,54,15,,
2137,lotad-leaf,54,20,,
2138,seedot-stem,54,20,,
2139,nosepass-fragment,54,40,,
2140,volbeat-fluid,54,10,,
2141,illumise-fluid,54,10,,
2142,corphish-shell,54,10,,
2143,feebas-scales,54,35,,
2144,duskull-fragment,54,40,,
2145,chingling-fragment,54,20,,
2146,timburr-sweat,54,30,,
2147,sewaddle-leaf,54,20,,
2148,ducklett-feather,54,15,,
2149,litwick-soot,54,30,,
2150,mienfoo-claw,54,40,,
2151,vullaby-feather,54,35,,
2152,carbink-jewel,54,50,,
2153,phantump-twig,54,20,,
2154,grubbin-thread,54,25,,
2155,cutiefly-powder,54,25,,
2156,jangmo-o-scales,54,50,,
2157,cramorant-down,54,30,,
2158,morpeko-snack,54,15,,
2159,poltchageist-powder,54,30,,
10001,black-augurite,10,0,,
10002,peat-block,10,0,,

1 id identifier category_id cost fling_power fling_effect_id
2047 2097 red-dish 55 0
2048 2098 white-dish 55 0
2049 2099 yellow-dish 55 0
2050 2100 roto-stick 21 0
2051 2101 teal-style-card 21 0
2052 2102 teak-mask 20 0
2053 2103 glimmering-charm 21 0
2054 2104 cyrstal-cluster 20 0
2055 2105 fairy-feather 12 750
2056 2106 wellspring-mask 12 0
2057 2107 hearthflame-mask 12 0
2058 2108 cornerstone-mask 12 0
2059 2109 syrupy-apple 10 500
2060 2110 unremarkable-teacup 10 400
2061 2111 masterpiece-teacup 10 9500
2062 2112 health-mochi 26 125
2063 2113 muscle-mochi 26 125
2064 2114 resist-mochi 26 125
2065 2115 genius-mochi 26 125
2066 2116 clever-mochi 26 125
2067 2117 swift-mochi 26 125
2068 2118 fresh-start-mochi 26 75
2069 2119 ekans-fang 54 15
2070 2120 sandshrew-claw 54 10
2071 2121 cleffa-fur 54 25
2072 2122 vulpix-fur 54 35
2073 2123 poliwag-slime 54 35
2074 2124 bellsprout-vine 54 25
2075 2125 geodude-fragment 54 30
2076 2126 koffing-gas 54 25
2077 2127 munchlax-fang 54 40
2078 2128 sentret-fur 54 10
2079 2129 hoothoot-feather 54 15
2080 2130 spinarak-thread 54 10
2081 2131 aipom-hair 54 30
2082 2132 yanma-spike 54 35
2083 2133 gligar-fang 54 40
2084 2134 slugma-lava 54 20
2085 2135 swinub-hair 54 35
2086 2136 poochyena-fang 54 15
2087 2137 lotad-leaf 54 20
2088 2138 seedot-stem 54 20
2089 2139 nosepass-fragment 54 40
2090 2140 volbeat-fluid 54 10
2091 2141 illumise-fluid 54 10
2092 2142 corphish-shell 54 10
2093 2143 feebas-scales 54 35
2094 2144 duskull-fragment 54 40
2095 2145 chingling-fragment 54 20
2096 2146 timburr-sweat 54 30
2097 2147 sewaddle-leaf 54 20
2098 2148 ducklett-feather 54 15
2099 2149 litwick-soot 54 30
2100 2150 mienfoo-claw 54 40
2101 2151 vullaby-feather 54 35
2102 2152 carbink-jewel 54 50
2103 2153 phantump-twig 54 20
2104 2154 grubbin-thread 54 25
2105 2155 cutiefly-powder 54 25
2106 2156 jangmo-o-scales 54 50
2107 2157 cramorant-down 54 30
2108 2158 morpeko-snack 54 15
2109 2159 poltchageist-powder 54 30
2110 10001 black-augurite 10 0
2111 10002 peat-block 10 0

File diff suppressed because it is too large Load diff

View file

@ -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
1 id location_id game_index identifier
731 840 188 0
732 841 237 0
733 842 247 0
734 843 868 0
735 844 869 0
736 845 870 0 main
737 846 870 0 garbage
738 847 871 0
739 848 872 0
740 849 873 0
741 850 874 0
742 851 875 0 main
743 852 875 0 steamdrift-way
744 853 876 0 main
745 854 876 0 circhester-bay
746 855 876 0 outer-spikemouth
747 856 877 0 main
748 857 877 0 near-station
749 858 878 0
750 859 879 0
751 860 880 0
752 861 881 0
753 862 882 0
754 863 883 0
755 864 884 0 main
756 865 884 0 ocean
757 866 884 0 river
758 867 884 0 beach
759 868 885 0
760 869 886 0
761 870 887 0
762 871 888 0
763 872 889 0
764 873 890 0
765 874 891 0
766 875 892 0
767 876 893 0 main
768 877 893 0 beach
769 878 894 0
770 879 895 0
771 880 896 0
772 881 897 0
773 882 898 0
774 883 899 0
775 884 900 0
776 885 1041 0 main
777 886 1041 0 2
778 887 1041 0 3
779 888 901 0
780 889 902 0
781 890 903 0
782 891 904 0
783 892 905 0
784 893 906 0
785 894 907 0
786 895 908 0
787 896 909 0
788 897 910 0
789 898 911 0
790 899 912 0
791 900 913 0
792 901 914 0
793 902 915 0 main
794 903 915 0 beach
795 904 916 0
796 905 917 0
797 906 918 0
798 907 919 0
799 908 920 0
800 909 921 0
801 910 922 0
802 911 923 0
803 912 924 0
804 913 925 0
805 914 926 0
806 915 927 0
807 916 928 0 main
808 917 928 0 2
809 918 929 0
810 919 930 0
811 920 931 0
812 921 932 0
813 922 933 0 main
814 923 933 0 2
815 924 934 0
816 925 935 0
817 926 936 0
818 927 937 0 main
819 928 937 0 2
820 929 938 0 main
821 930 938 0 2
822 931 938 0 3
823 932 939 0
824 933 940 0
825 934 941 0
826 935 942 0
827 936 943 0 main
828 937 943 0 beach
829 938 944 0
830 939 945 0
831 940 946 0
832 941 947 0
833 942 948 0
834 943 949 0
835 944 950 0
836 945 951 0
837 946 952 0
838 947 953 0
839 948 954 0
840 949 955 0
841 950 956 0
842 951 957 0
843 952 958 0
844 953 959 0
845 954 960 0
846 955 961 0
847 956 962 0
848 957 963 0
849 958 964 0
850 959 965 0
851 960 966 0
852 961 967 0
853 962 968 0
854 963 969 0
855 964 970 0
856 965 971 0
857 966 972 0
858 967 973 0
859 968 974 0
860 969 975 0
861 970 976 0
862 971 977 0
863 972 978 0
864 973 979 0
865 974 980 0
866 975 981 0
867 976 982 0
868 977 983 0
869 978 984 0
870 979 985 0
871 980 986 0
872 981 987 0
873 982 988 0
874 983 989 0
875 984 990 0
876 985 991 0
877 986 992 0
878 987 993 0
879 988 994 0
880 989 995 0
881 990 996 0
882 991 997 0
883 992 998 0
884 993 999 0
885 994 1000 0
886 995 1001 0
887 996 1002 0
888 997 1003 0
889 998 1004 0
890 999 1005 0
891 1000 1006 0
892 1001 1007 0
893 1002 1008 0
894 1003 1009 0
895 1004 1010 0
896 1005 1011 0
897 1006 1012 0
898 1007 1013 0
899 1008 1014 0
900 1009 1015 0
901 1010 1016 0
902 1011 1017 0
903 1012 1018 0
904 1013 1019 0
905 1014 1020 0
906 1015 1021 0
907 1016 1022 0
908 1017 1023 0
909 1018 1024 0
910 1019 1025 0
911 1020 1026 0
912 1021 1027 0
913 1022 1028 0
914 1023 1029 0
915 1024 1030 0
916 1025 1031 0
917 1026 1032 0
918 1027 1033 0
919 1028 1034 0
920 1029 1035 0
921 1030 1036 0
922 1031 1037 0
923 1032 1038 0
924 1033 1039 0
925 1034 1040 0
926 1035 711 0 east
927 1036 711 0 hauoli-outskirts
928 1037 711 0 south
929 1038 711 0 trainers-school
930 1039 711 0 west
931 1040 713 0 main
932 1041 713 0 north
933 1042 713 0 south
934 1043 712 0 main
935 1044 712 0 north
936 1045 712 0 south
937 1046 731 0
938 1047 732 0
939 1048 733 0 north
940 1049 733 0 south
941 1050 734 0
942 1051 735 0 main
943 1052 735 0 fossil-restoration-center
944 1053 736 0 main
945 1054 736 0 police-station
946 1055 755 0
947 1056 756 0
948 1057 763 0
949 1058 758 0
950 1059 765 0
951 1060 760 0 main
952 1061 760 0 aether-house
953 1062 761 0 main
954 1063 761 0 east
955 1064 761 0 west
956 1065 762 0 northeast
957 1066 762 0 west
958 1067 796 0 2f
959 1068 752 0
960 1069 791 0
961 1070 790 0
962 1071 782 0
963 1072 728 0
964 1073 771 0
965 1074 748 0 main
966 1075 748 0 north
967 1076 748 0 south
968 1077 748 0 totems-den
969 1078 753 0
970 1079 1046 0
971 1080 794 0
972 1081 764 0
973 1082 738 0
974 1083 725 0
975 1084 1042 0 main
976 1085 1042 0 shopping-district
977 1086 1042 0 beachfront
978 1087 1047 0
979 1088 741 0 surf-association
980 1089 719 0
981 1090 714 0
982 1091 742 0
983 1092 774 0
984 1093 773 0
985 1094 750 0 east-cave
986 1095 750 0 north
987 1096 750 0 south
988 1097 750 0 west
989 1098 720 0
990 1099 1045 0 main
991 1100 1045 0 outer-cape
992 1101 769 0
993 1102 726 0
994 1103 715 0
995 1104 744 0
996 1105 770 0 main
997 1106 770 0 east
998 1107 770 0 west
999 1108 775 0 base
1000 1109 775 0 cave
1001 1110 775 0 outside
1002 1111 745 0
1003 1112 740 0
1004 1113 783 0
1005 1114 786 0
1006 1115 787 0
1007 1116 784 0
1008 1117 780 0
1009 1118 785 0 center
1010 1119 785 0 east
1011 1120 785 0 north
1012 1121 785 0 west
1013 1122 781 0
1014 1123 793 0
1015 1124 743 0
1016 1125 772 0
1017 1126 722 0
1018 1127 792 0
1019 1128 751 0
1020 1129 1048 0
1021 1130 788 0 main
1022 1131 788 0 huntail-boat
1023 1132 727 0
1024 1133 757 0
1025 1134 759 0
1026 1135 723 0 farthest-hollow
1027 1136 723 0 inside
1028 1137 1044 0 abandoned-site
1029 1138 1049 0
1030 1139 766 0
1031 1140 797 0 ultra-crater
1032 1141 797 0 ultra-deep-sea
1033 1142 797 0 ultra-desert
1034 1143 797 0 ultra-forest
1035 1144 797 0 ultra-jungle
1036 1145 797 0 ultra-plant
1037 1146 797 0 ultra-ruin
1038 1147 1051 0 cave
1039 1148 1051 0 cliff
1040 1149 1051 0 crag
1041 1150 1051 0 waterfall
1042 1151 789 0 inside
1043 1152 789 0 northwest
1044 1153 789 0 outside
1045 1154 1043 0 trial-site
1046 1155 1043 0 totems-den
1047 1156 746 0
1048 1157 746 0 totems-den
1049 1158 1052 0 poni-island-reached
1050 1159 1052 0 ulaula-island-reached
1051 1160 1052 0 elite-four-defeated
1052 1161 1053 0
1053 1162 1050 0
1054 1163 750 0 all-areas
1055 1164 762 0 all-areas

View file

@ -3577,18 +3577,29 @@ location_id,local_language_id,name,subtitle
798,11,マリエシティ,はずれの岬
798,12,马利埃静市,市郊海角
799,9,Roaming Kanto,
799,5,Sillonnant Kanto,
800,9,Roaming Johto,
800,5,Sillonnant Johto,
801,9,Roaming Hoenn,
801,5,Sillonnant Hoenn,
802,9,Roaming Sinnoh,
802,5,Sillonnant Sinnoh,
803,9,Terra Cave,
803,5,Grotte Terra,
804,9,Marine Cave,
804,5,Grotte Marine,
805,9,Two Island,
806,9,Three Island,
807,9,Three Isle Path,
808,9,Six Island,
809,9,Seven Island,
810,9,Birth Island,
810,5,Île Aurore,
811,9,Navel Rock,
811,5,Roc Nombri,
812,9,Faraway Island,
812,5,Île lointaine,
813,9,Hoenn Battle Frontier,
813,5,Zone de Combat,
814,9,Johto Safari Zone,
814,5,Parc Safari,

1 location_id local_language_id name subtitle
3577 798 11 マリエシティ はずれの岬
3578 798 12 马利埃静市 市郊海角
3579 799 9 Roaming Kanto
3580 799 5 Sillonnant Kanto
3581 800 9 Roaming Johto
3582 800 5 Sillonnant Johto
3583 801 9 Roaming Hoenn
3584 801 5 Sillonnant Hoenn
3585 802 9 Roaming Sinnoh
3586 802 5 Sillonnant Sinnoh
3587 803 9 Terra Cave
3588 803 5 Grotte Terra
3589 804 9 Marine Cave
3590 804 5 Grotte Marine
3591 805 9 Two Island
3592 806 9 Three Island
3593 807 9 Three Isle Path
3594 808 9 Six Island
3595 809 9 Seven Island
3596 810 9 Birth Island
3597 810 5 Île Aurore
3598 811 9 Navel Rock
3599 811 5 Roc Nombri
3600 812 9 Faraway Island
3601 812 5 Île lointaine
3602 813 9 Hoenn Battle Frontier
3603 813 5 Zone de Combat
3604 814 9 Johto Safari Zone
3605 814 5 Parc Safari

View file

@ -849,3 +849,189 @@ id,region_id,identifier
865,10,caph-squads-base
866,10,area-zero
867,10,zero-lab
868,8,galar-route-1
869,8,galar-route-2
870,8,galar-route-3
871,8,galar-route-4
872,8,galar-route-5
873,8,galar-route-6
874,8,galar-route-7
875,8,galar-route-8
876,8,galar-route-9
877,8,galar-route-10
878,8,axews-eye
879,8,ballimere-lake
880,8,ballonlea
881,8,battle-tower
882,8,brawlers-cave
883,8,bridge-field
884,8,challenge-beach
885,8,challenge-road
886,8,circhester
887,8,courageous-cavern
888,8,crown-shrine
889,8,dappled-grove
890,8,dusty-bowl
891,8,dyna-tree-hill
892,8,east-lake-axewell
893,8,fields-of-honor
894,8,forest-of-focus
895,8,freezington
896,8,frigid-sea
897,8,frostpoint-field
898,8,galar-mine
899,8,galar-mine-no-2
900,8,giants-bed
901,8,giants-foot
902,8,giants-mirror
903,8,giants-seat
904,8,glimwood-tangle
905,8,hammerlocke
906,8,hammerlocke-hills
907,8,honeycalm-island
908,8,honeycalm-sea
909,8,hulbury
910,8,galar-iceberg-ruins
911,8,insular-sea
912,8,galar-iron-ruins
913,8,lake-of-outrage
914,8,lakeside-cave
915,8,loop-lagoon
916,8,master-dojo
917,8,max-lair
918,8,motostoke
919,8,motostoke-outskirts
920,8,motostoke-riverbank
921,8,north-lake-miloch
922,8,old-cemetary
923,8,path-to-the-peak
924,8,postwick
925,8,potbottom-desert
926,8,roaring-sea-caves
927,8,galar-rock-peak-ruins
928,8,rolling-fields
929,8,slippery-slope
930,8,slumbering-weald
931,8,snowslide-slope
932,8,soothing-wetlands
933,8,south-lake-miloch
934,8,spikemuth
935,8,spike-decision-ruins
936,8,steamdrift-way
937,8,stepping-stone-sea
938,8,stony-wilderness
939,8,stow-on-side
940,8,three-point-pass
941,8,tower-of-darkness
942,8,tower-of-waters
943,8,training-lowlands
944,8,tunnel-to-the-top
945,8,turffield
946,8,warm-up-tunnel
947,8,watchtower-ruins
948,8,wedgehurst
949,8,west-lake-axewell
950,8,workout-sea
951,8,wyndon
952,9,aipom-hill
953,9,ancient-quarry
954,9,arenas-approach
955,9,aspiration-hill
956,9,avalanche-slopes
957,9,avaluggs-legacy
958,9,bathers-lagoon
959,9,bolderoll-ravine
960,9,bolderoll-slope
961,9,bonechill-wastes
962,9,brava-arena
963,9,castaway-shore
964,9,celestica-ruins
965,9,celestica-trail
966,9,clamberclaw-cliffs
967,9,cloudcap-pass
968,9,cloudpool-ridge
969,9,coastlands-camp
970,9,cottonsedge-prairie
971,9,crossing-slope
972,9,deadwood-haunt
973,9,deertrack-heights
974,9,deertrack-path
975,9,diamond-heath
976,9,diamond-settlement
977,9,droning-meadow
978,9,fabled-spring
979,9,firespit-island
980,9,floaro-gardens
981,9,gapejaw-bog
982,9,ginkgo-landing
983,9,glacier-terrace
984,9,golden-lowlands
985,9,grandtree-arena
986,9,grueling-grove
987,9,hearts-crag
988,9,heavenward-lookout
989,9,heights-camp
990,9,hideaway-bay
991,9,holm-of-trials
992,9,horseshoe-plains
993,9,ice-column-chamber
994,9,icebound-falls
995,9,icepeak-arena
996,9,icepeak-cavern
997,9,islespy-shore
998,9,jubilife-village
999,9,hisui-lake-acuity
1000,9,hisui-lake-valor
1001,9,hisui-lake-verity
1002,9,lonely-spring
1003,9,lunkers-lair
1004,9,molten-arena
1005,9,moonview-arena
1006,9,natures-pantry
1007,9,obsidian-falls
1008,9,oreburrow-tunnel
1009,9,pearl-settlement
1010,9,primeval-grotto
1011,9,ramanas-island
1012,9,sacred-plaza
1013,9,sands-reach
1014,9,sandgem-flats
1015,9,scarlet-bog
1016,9,seagrass-haven
1017,9,seaside-hollow
1018,9,shrouded-ruins
1019,9,sludge-mound
1020,9,snowfall-hot-spring
1021,9,hisui-snowpoint-temple
1022,9,hisui-solaceon-ruins
1023,9,sonorous-path
1024,9,space-time-distortion
1025,9,hisui-spring-path
1026,9,stonetooth-rows
1027,9,temple-of-sinnoh
1028,9,the-heartwood
1029,9,tidewater-dam
1030,9,tombolo-walk
1031,9,tranquility-cove
1032,9,hisui-turnback-cave
1033,9,ursas-ring
1034,9,veilstone-cape
1035,9,hisui-wayward-cave
1036,9,wayward-wood
1037,9,whiteout-valley
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
1 id region_id identifier
849 865 10 caph-squads-base
850 866 10 area-zero
851 867 10 zero-lab
852 868 8 galar-route-1
853 869 8 galar-route-2
854 870 8 galar-route-3
855 871 8 galar-route-4
856 872 8 galar-route-5
857 873 8 galar-route-6
858 874 8 galar-route-7
859 875 8 galar-route-8
860 876 8 galar-route-9
861 877 8 galar-route-10
862 878 8 axews-eye
863 879 8 ballimere-lake
864 880 8 ballonlea
865 881 8 battle-tower
866 882 8 brawlers-cave
867 883 8 bridge-field
868 884 8 challenge-beach
869 885 8 challenge-road
870 886 8 circhester
871 887 8 courageous-cavern
872 888 8 crown-shrine
873 889 8 dappled-grove
874 890 8 dusty-bowl
875 891 8 dyna-tree-hill
876 892 8 east-lake-axewell
877 893 8 fields-of-honor
878 894 8 forest-of-focus
879 895 8 freezington
880 896 8 frigid-sea
881 897 8 frostpoint-field
882 898 8 galar-mine
883 899 8 galar-mine-no-2
884 900 8 giants-bed
885 901 8 giants-foot
886 902 8 giants-mirror
887 903 8 giants-seat
888 904 8 glimwood-tangle
889 905 8 hammerlocke
890 906 8 hammerlocke-hills
891 907 8 honeycalm-island
892 908 8 honeycalm-sea
893 909 8 hulbury
894 910 8 galar-iceberg-ruins
895 911 8 insular-sea
896 912 8 galar-iron-ruins
897 913 8 lake-of-outrage
898 914 8 lakeside-cave
899 915 8 loop-lagoon
900 916 8 master-dojo
901 917 8 max-lair
902 918 8 motostoke
903 919 8 motostoke-outskirts
904 920 8 motostoke-riverbank
905 921 8 north-lake-miloch
906 922 8 old-cemetary
907 923 8 path-to-the-peak
908 924 8 postwick
909 925 8 potbottom-desert
910 926 8 roaring-sea-caves
911 927 8 galar-rock-peak-ruins
912 928 8 rolling-fields
913 929 8 slippery-slope
914 930 8 slumbering-weald
915 931 8 snowslide-slope
916 932 8 soothing-wetlands
917 933 8 south-lake-miloch
918 934 8 spikemuth
919 935 8 spike-decision-ruins
920 936 8 steamdrift-way
921 937 8 stepping-stone-sea
922 938 8 stony-wilderness
923 939 8 stow-on-side
924 940 8 three-point-pass
925 941 8 tower-of-darkness
926 942 8 tower-of-waters
927 943 8 training-lowlands
928 944 8 tunnel-to-the-top
929 945 8 turffield
930 946 8 warm-up-tunnel
931 947 8 watchtower-ruins
932 948 8 wedgehurst
933 949 8 west-lake-axewell
934 950 8 workout-sea
935 951 8 wyndon
936 952 9 aipom-hill
937 953 9 ancient-quarry
938 954 9 arenas-approach
939 955 9 aspiration-hill
940 956 9 avalanche-slopes
941 957 9 avaluggs-legacy
942 958 9 bathers-lagoon
943 959 9 bolderoll-ravine
944 960 9 bolderoll-slope
945 961 9 bonechill-wastes
946 962 9 brava-arena
947 963 9 castaway-shore
948 964 9 celestica-ruins
949 965 9 celestica-trail
950 966 9 clamberclaw-cliffs
951 967 9 cloudcap-pass
952 968 9 cloudpool-ridge
953 969 9 coastlands-camp
954 970 9 cottonsedge-prairie
955 971 9 crossing-slope
956 972 9 deadwood-haunt
957 973 9 deertrack-heights
958 974 9 deertrack-path
959 975 9 diamond-heath
960 976 9 diamond-settlement
961 977 9 droning-meadow
962 978 9 fabled-spring
963 979 9 firespit-island
964 980 9 floaro-gardens
965 981 9 gapejaw-bog
966 982 9 ginkgo-landing
967 983 9 glacier-terrace
968 984 9 golden-lowlands
969 985 9 grandtree-arena
970 986 9 grueling-grove
971 987 9 hearts-crag
972 988 9 heavenward-lookout
973 989 9 heights-camp
974 990 9 hideaway-bay
975 991 9 holm-of-trials
976 992 9 horseshoe-plains
977 993 9 ice-column-chamber
978 994 9 icebound-falls
979 995 9 icepeak-arena
980 996 9 icepeak-cavern
981 997 9 islespy-shore
982 998 9 jubilife-village
983 999 9 hisui-lake-acuity
984 1000 9 hisui-lake-valor
985 1001 9 hisui-lake-verity
986 1002 9 lonely-spring
987 1003 9 lunkers-lair
988 1004 9 molten-arena
989 1005 9 moonview-arena
990 1006 9 natures-pantry
991 1007 9 obsidian-falls
992 1008 9 oreburrow-tunnel
993 1009 9 pearl-settlement
994 1010 9 primeval-grotto
995 1011 9 ramanas-island
996 1012 9 sacred-plaza
997 1013 9 sands-reach
998 1014 9 sandgem-flats
999 1015 9 scarlet-bog
1000 1016 9 seagrass-haven
1001 1017 9 seaside-hollow
1002 1018 9 shrouded-ruins
1003 1019 9 sludge-mound
1004 1020 9 snowfall-hot-spring
1005 1021 9 hisui-snowpoint-temple
1006 1022 9 hisui-solaceon-ruins
1007 1023 9 sonorous-path
1008 1024 9 space-time-distortion
1009 1025 9 hisui-spring-path
1010 1026 9 stonetooth-rows
1011 1027 9 temple-of-sinnoh
1012 1028 9 the-heartwood
1013 1029 9 tidewater-dam
1014 1030 9 tombolo-walk
1015 1031 9 tranquility-cove
1016 1032 9 hisui-turnback-cave
1017 1033 9 ursas-ring
1018 1034 9 veilstone-cape
1019 1035 9 hisui-wayward-cave
1020 1036 9 wayward-wood
1021 1037 9 whiteout-valley
1022 1038 9 windbreak-stand
1023 1039 9 windswept-run
1024 1040 9 worn-bridge
1025 1041 8 giants-cap
1026 1042 7 hauoli-city
1027 1043 7 verdant-cavern
1028 1044 7 thrifty-megamart
1029 1045 7 malie-city
1030 1046 7 dividing-peak-tunnel
1031 1047 7 heahea-beach
1032 1048 7 sandy-cave
1033 1049 7 ulaula-beach
1034 1050 7 ultra-megalopolis
1035 1051 7 ultra-space-wilds
1036 1052 7 poke-pelago
1037 1053 7 team-rockets-castle

View file

@ -1,16 +1,22 @@
move_damage_class_id,local_language_id,name,description
1,1,へんか,ダメージない
1,4,變化,沒有傷害
1,5,statut,Aucun dégât
1,6,status,Kein Schaden
1,7,estado,Sin Daño
1,9,status,No damage
1,12,变化,没有伤害
2,1,ぶつり,ぶつりのダメージ。こうげきとぼうぎょを行使する
2,4,物理,物理傷害,受攻擊和防禦影響
2,5,physique,"Dégâts physique, influencés par l'Attaque et la Défense"
2,6,physisch,"Physischer Schaden, beeinflusst von Angriff und Verteidigung"
2,7,físico,"Daño Físico, controlado por el Ataque y Defensa"
2,9,physical,"Physical damage, controlled by Attack and Defense"
2,12,物理,物理伤害,受攻击和防御影响
3,1,とくしゅ,とくしゅのダメージ。とくこうととくぼうを行使する
3,4,特殊,特殊傷害,受特攻和特防影響
3,5,spéciale,"Dégâts spéciaux, influencés par l'Attaque Spéciale et la Défense Spéciale"
3,6,spezial,"Spezieller Schaden, beeinflusst von Spezialangriff und Spezialverteidigung"
3,7,especial,"Daño Especial, controlado por el Ataque Esecieal y Defensa Especial"
3,9,special,"Special damage, controlled by Special Attack and Special Defense"
3,12,特殊,特殊伤害,受特攻和特防影响

1 move_damage_class_id local_language_id name description
2 1 1 へんか ダメージない
3 1 4 變化 沒有傷害
4 1 5 statut Aucun dégât
5 1 6 status Kein Schaden
6 1 7 estado Sin Daño
7 1 9 status No damage
8 1 12 变化 没有伤害
9 2 1 ぶつり ぶつりのダメージ。こうげきとぼうぎょを行使する
10 2 4 物理 物理傷害,受攻擊和防禦影響
11 2 5 physique Dégâts physique, influencés par l'Attaque et la Défense
12 2 6 physisch Physischer Schaden, beeinflusst von Angriff und Verteidigung
13 2 7 físico Daño Físico, controlado por el Ataque y Defensa
14 2 9 physical Physical damage, controlled by Attack and Defense
15 2 12 物理 物理伤害,受攻击和防御影响
16 3 1 とくしゅ とくしゅのダメージ。とくこうととくぼうを行使する
17 3 4 特殊 特殊傷害,受特攻和特防影響
18 3 5 spéciale Dégâts spéciaux, influencés par l'Attaque Spéciale et la Défense Spéciale
19 3 6 spezial Spezieller Schaden, beeinflusst von Spezialangriff und Spezialverteidigung
20 3 7 especial Daño Especial, controlado por el Ataque Esecieal y Defensa Especial
21 3 9 special Special damage, controlled by Special Attack and Special Defense
22 3 12 特殊 特殊伤害,受特攻和特防影响

View file

@ -48,7 +48,11 @@ move_id,stat_id,change
246,6,1
247,5,-1
249,3,-1
254,3,1
254,5,1
260,4,1
262,2,-2
262,4,-2
268,5,1
276,2,-1
276,3,-1
@ -94,6 +98,7 @@ move_id,stat_id,change
426,7,-1
429,7,-1
430,5,-1
432,8,-1
434,4,-2
437,4,-2
445,4,-2
@ -118,6 +123,11 @@ move_id,stat_id,change
489,7,1
490,6,-1
491,5,-2
504,3,-1
504,5,-1
504,2,2
504,4,2
504,6,2
508,2,1
508,6,2
522,4,-1

1 move_id stat_id change
48 246 6 1
49 247 5 -1
50 249 3 -1
51 254 3 1
52 254 5 1
53 260 4 1
54 262 2 -2
55 262 4 -2
56 268 5 1
57 276 2 -1
58 276 3 -1
98 426 7 -1
99 429 7 -1
100 430 5 -1
101 432 8 -1
102 434 4 -2
103 437 4 -2
104 445 4 -2
123 489 7 1
124 490 6 -1
125 491 5 -2
126 504 3 -1
127 504 5 -1
128 504 2 2
129 504 4 2
130 504 6 2
131 508 2 1
132 508 6 2
133 522 4 -1

View file

@ -8261,300 +8261,546 @@ move_id,local_language_id,name
826,12,诡异咒语
827,1,フェイタルクロー
827,4,克命爪
827,8,Artigli Fatali
827,9,Dire Claw
827,11,フェイタルクロー
828,1,バリアーラッシュ
828,4,屏障猛攻
828,8,Barrierassalto
828,9,Psyshield Bash
828,11,バリアーラッシュ
829,1,パワーシフト
829,4,力量转换
829,8,Scambioforza
829,9,Power Shift
829,11,パワーシフト
830,1,がんせきアックス
830,4,岩斧
830,8,Rocciascure
830,9,Stone Axe
830,11,がんせきアックス
831,1,はるのあらし
831,4,阳春风暴
831,8,Tempesta Zefirea
831,9,Springtide Storm
831,11,はるのあらし
832,1,しんぴのちから
832,4,神秘之力
832,8,Forza Mistica
832,9,Mystical Power
832,11,しんぴのちから
833,1,だいふんげき
833,4,大愤慨
833,8,Ira Furente
833,9,Raging Fury
833,11,だいふんげき
834,1,ウェーブタックル
834,4,波动冲
834,8,Ondaschianto
834,9,Wave Crash
834,11,ウェーブタックル
835,1,クロロブラスト
835,4,叶绿爆震
835,8,Clorofillaser
835,9,Chloroblast
835,11,クロロブラスト
836,1,ひょうざんおろし
836,4,冰山风
836,8,Soffio dIceberg
836,9,Mountain Gale
836,11,ひょうざんおろし
837,1,しょうりのまい
837,4,胜利之舞
837,8,Danzavittoria
837,9,Victory Dance
837,11,しょうりのまい
838,1,ぶちかまし
838,4,突飞猛扑
838,8,Scontro Frontale
838,9,Headlong Rush
838,11,ぶちかまし
839,1,どくばりセンボン
839,4,毒千针
839,8,Mille Fielespine
839,9,Barb Barrage
839,11,どくばりセンボン
840,1,オーラウイング
840,4,气场之翼
840,8,Ali d'Aura
840,9,Esper Wing
840,11,オーラウイング
841,1,うらみつらみ
841,4,冤冤相报
841,8,Livore
841,9,Bitter Malice
841,11,うらみつらみ
842,1,たてこもる
842,4,闭关
842,8,Barricata
842,9,Shelter
842,11,たてこもる
843,1,3ぼんのや
843,4,三连箭
843,8,Triplodardo
843,9,Triple Arrows
843,11,3ぼんのや
844,1,ひゃっきやこう
844,4,群魔乱舞
844,8,Corteo Spettrale
844,9,Infernal Parade
844,11,ひゃっきやこう
845,1,ひけん・ちえなみ
845,4,秘剑・千重涛
845,8,Lama Milleflutti
845,9,Ceaseless Edge
845,11,ひけん・ちえなみ
846,1,こがらしあらし
846,4,枯叶风暴
846,8,Tempesta Boreale
846,9,Bleakwind Storm
846,11,こがらしあらし
847,1,かみなりあらし
847,4,鸣雷风暴
847,8,Tempesta Tonante
847,9,Wildbolt Storm
847,11,かみなりあらし
848,1,ねっさのあらし
848,4,热沙风暴
848,8,Tempesta Ardente
848,9,Sandsear Storm
848,11,ねっさのあらし
849,1,みかづきのいのり
849,4,新月祈祷
849,8,Invocaluna
849,9,Lunar Blessing
849,11,みかづきのいのり
850,1,ブレイブチャージ
850,4,勇气填充
850,8,Baldimpulso
850,9,Take Heart
850,11,ブレイブチャージ
851,1,テラバースト
851,4,太晶爆发
851,8,Terascoppio
851,9,Tera Blast
851,11,テラバースト
852,1,スレッドトラップ
852,4,线阱
852,8,Telatrappola
852,9,Silk Trap
852,11,スレッドトラップ
853,1,かかとおとし
853,4,下压踢
853,8,Calcio ad Ascia
853,9,Axe Kick
853,11,かかとおとし
854,1,おはかまいり
854,4,扫墓
854,8,Omaggio ai KO
854,9,Last Respects
854,11,おはかまいり
855,1,ルミナコリジョン
855,4,琉光冲激
855,8,Fotocollisione
855,9,Lumina Crash
855,11,ルミナコリジョン
856,1,いっちょうあがり
856,4,上菜
856,8,Alta Cucina
856,9,Order Up
856,11,いっちょうあがり
857,1,ジェットパンチ
857,4,喷射拳
857,8,Pugnojet
857,9,Jet Punch
857,11,ジェットパンチ
858,1,ハバネロエキス
858,4,辣椒精华
858,8,Essenza Piccante
858,9,Spicy Extract
858,11,ハバネロエキス
859,1,ホイールスピン
859,4,疾速转轮
859,8,Slittaruote
859,9,Spin Out
859,11,ホイールスピン
860,1,ネズミざん
860,4,鼠数儿
860,8,Infestazione
860,9,Population Bomb
860,11,ネズミざん
861,1,アイススピナー
861,4,冰旋
861,8,Vortighiaccio
861,9,Ice Spinner
861,11,アイススピナー
862,1,きょけんとつげき
862,4,巨剑突击
862,8,Spadoncarica
862,9,Glaive Rush
862,11,きょけんとつげき
863,1,さいきのいのり
863,4,复生祈祷
863,8,Preghiera Vitale
863,9,Revival Blessing
863,11,さいきのいのり
864,1,しおづけ
864,4,盐腌
864,8,Sotto Sale
864,9,Salt Cure
864,11,しおづけ
865,1,トリプルダイブ
865,4,三连钻
865,8,Triplo Tuffo
865,9,Triple Dive
865,11,トリプルダイブ
866,1,キラースピン
866,4,晶光转转
866,8,Glitturbine
866,9,Mortal Spin
866,11,キラースピン
867,1,うつしえ
867,4,描绘
867,8,Ricalco
867,9,Doodle
867,11,うつしえ
868,1,みをけずる
868,4,甩肉
868,8,Alleggerimento
868,9,Fillet Away
868,11,みをけずる
869,1,ドゲザン
869,4,仆刀
869,8,Genufendente
869,9,Kowtow Cleave
869,11,ドゲザン
870,1,トリックフラワー
870,4,千变万花
870,8,Prestigiafiore
870,9,Flower Trick
870,11,トリックフラワー
871,1,フレアソング
871,4,闪焰高歌
871,8,Canzone Ardente
871,9,Torch Song
871,11,フレアソング
872,1,アクアステップ
872,4,流水旋舞
872,8,Idroballetto
872,9,Aqua Step
872,11,アクアステップ
873,1,レイジングブル
873,4,怒牛
873,8,Scatenatoro
873,9,Raging Bull
873,11,レイジングブル
874,1,ゴールドラッシュ
874,4,淘金潮
874,8,Corsa all'Oro
874,9,Make It Rain
874,11,ゴールドラッシュ
875,1,はたく
875,4,拍击
875,9,Pound
875,11,はたく
876,1,はたく
876,4,拍击
876,9,Pound
876,11,はたく
875,1,サイコブレイド
875,3,사이코블레이드
875,4,精神劍
875,5,Lame Psychique
875,6,Psychoschneide
875,7,Psicohojas
875,8,Psicolama
875,9,Psyblade
875,11,サイコブレイド
875,12,精神剑
876,1,ハイドロスチーム
876,3,하이드로스팀
876,4,水蒸氣
876,5,Hydrovapeur
876,6,Hydrodampf
876,7,Hidrovapor
876,8,Idrovapore
876,9,Hydro Steam
876,11,ハイドロスチーム
876,12,水蒸气
877,1,カタストロフィ
877,4,大灾难
877,8,Catastrofe
877,9,Ruination
877,11,カタストロフィ
878,1,アクセルブレイク
878,4,全开猛撞
878,8,Turboschianto
878,9,Collision Course
878,11,アクセルブレイク
879,1,イナズマドライブ
879,4,闪电猛冲
879,8,Fulmiscatto
879,9,Electro Drift
879,11,イナズマドライブ
880,1,しっぽきり
880,4,断尾
880,8,Tagliacoda
880,9,Shed Tail
880,11,しっぽきり
881,1,さむいギャグ
881,4,冷笑话
881,8,Freddura
881,9,Chilly Reception
881,11,さむいギャグ
882,1,おかたづけ
882,4,大扫除
882,8,Pulizie
882,9,Tidy Up
882,11,おかたづけ
883,1,ゆきげしき
883,4,雪景
883,8,Vista Innevata
883,9,Snowscape
883,11,ゆきげしき
884,1,とびつく
884,4,虫扑
884,8,Balzo
884,9,Pounce
884,11,とびつく
885,1,くさわけ
885,4,起草
885,8,Apripista
885,9,Trailblaze
885,11,くさわけ
886,1,ひやみず
886,4,泼冷水
886,8,Doccia Fredda
886,9,Chilling Water
886,11,ひやみず
887,1,ハイパードリル
887,4,强力钻
887,8,Ipertrapano
887,9,Hyper Drill
887,11,ハイパードリル
888,1,ツインビーム
888,4,双光束
888,8,Doppioraggio
888,9,Twin Beam
888,11,ツインビーム
889,1,ふんどのこぶし
889,4,愤怒之拳
889,8,Pugno Furibondo
889,9,Rage Fist
889,11,ふんどのこぶし
890,1,アーマーキャノン
890,4,铠农炮
890,8,Corazza Cannone
890,9,Armor Cannon
890,11,アーマーキャノン
891,1,むねんのつるぎ
891,4,悔念剑
891,8,Lama del Rimorso
891,9,Bitter Blade
891,11,むねんのつるぎ
892,1,でんこうそうげき
892,4,电光双击
892,8,Doppiolampo
892,9,Double Shock
892,11,でんこうそうげき
893,1,デカハンマー
893,4,巨力锤
893,8,Granmartello
893,9,Gigaton Hammer
893,11,デカハンマー
894,1,ほうふく
894,4,复仇
894,8,Ritorsione
894,9,Comeuppance
894,11,ほうふく
895,1,アクアカッター
895,4,水波刀
895,8,Idrotaglio
895,9,Aqua Cutter
895,11,アクアカッター
896,1,バーンアクセル
896,4,灼热暴冲
896,8,Turboustione
896,9,Blazing Torque
896,11,バーンアクセル
897,1,ダークアクセル
897,4,黑暗暴冲
897,8,Turbotenebra
897,9,Wicked Torque
897,11,ダークアクセル
898,1,ポイズンアクセル
898,4,剧毒暴冲
898,8,Turbotossina
898,9,Noxious Torque
898,11,ポイズンアクセル
899,1,ファイトアクセル
899,4,格斗暴冲
899,8,Turborissa
899,9,Combat Torque
899,11,ファイトアクセル
900,1,マジカルアクセル
900,4,魔法暴冲
900,8,Turboincanto
900,9,Magical Torque
900,11,マジカルアクセル
901,1,ブラッドムーン
901,9,Blood Moon
901,11,ブラッドムーン
902,1,シャカシャカほう
902,9,Matcha Gotcha
902,11,シャカシャカほう
903,1,みずあめボム
903,9,Syrup Bomb
903,11,みずあめボム
904,1,ツタこんぼう
904,9,Ivy Cudgel
904,11,ツタこんぼう
905,1,エレクトロビーム
905,3,일렉트로빔
905,4,電光束
905,5,Fulgurayon
905,6,Stromstrahl
905,7,Electrorrayo
905,8,Elettroraggio
905,9,Electro Shot
905,11,エレクトロビーム
905,12,电光束
906,1,テラクラスター
906,3,테라클러스터
906,4,晶光星群
906,5,Pluie Térastrale
906,6,Tera-Sternhagel
906,7,Teraclúster
906,8,Teracluster
906,9,Tera Starstorm
906,11,テラクラスター
906,12,晶光星群
907,1,きまぐレーザー
907,3,변덕레이저
907,4,隨機光
907,5,Laser Hasard
907,6,Launenlaser
907,7,Láser Veleidoso
907,8,Irregolaser
907,9,Fickle Beam
907,11,きまぐレーザー
907,12,随机光
908,1,かえんのまもり
908,3,화염의수호
908,4,火焰守護
908,5,Rempart Brûlant
908,6,Flammenschild
908,7,Llama Protectora
908,8,Egida Ignea
908,9,Burning Bulwark
908,11,かえんのまもり
908,12,火焰守护
909,1,じんらい
909,3,질풍신뢰
909,4,迅雷
909,5,Vif Éclair
909,6,Sturmblitz
909,7,Relámpago Súbito
909,8,Saetta
909,9,Thunderclap
909,11,じんらい
909,12,迅雷
910,1,パワフルエッジ
910,3,파워풀에지
910,4,強刃攻擊
910,5,Lame Puissante
910,6,Wuchtklinge
910,7,Filo Potente
910,8,Taglio Poderoso
910,9,Mighty Cleave
910,11,パワフルエッジ
910,12,强刃攻击
911,1,タキオンカッター
911,3,타키온커터
911,4,迅子利刃
911,5,Lame Tachyonique
911,6,Tachyon-Schnitt
911,7,Tajo Taquión
911,8,Tachiontaglio
911,9,Tachyon Cutter
911,11,タキオンカッター
911,12,迅子利刃
912,1,ハードプレス
912,3,하드프레스
912,4,硬壓
912,5,Pression Extrême
912,6,Stahlpresse
912,7,Prensa Metálica
912,8,Pressa dAcciaio
912,9,Hard Press
912,11,ハードプレス
912,12,硬压
913,1,ドラゴンエール
913,3,드래곤옐
913,4,龍聲鼓舞
913,5,Cri Draconique
913,6,Drachenschrei
913,7,Bramido Dragón
913,8,Grido del Drago
913,9,Dragon Cheer
913,11,ドラゴンエール
913,12,龙声鼓舞
914,1,みわくのボイス
914,3,매혹의보이스
914,4,魅誘之聲
914,5,Voix Envoûtante
914,6,Lockstimme
914,7,Canto Encantador
914,8,Ammaliavoce
914,9,Alluring Voice
914,11,みわくのボイス
914,12,魅诱之声
915,1,やけっぱち
915,3,열불내기
915,4,豁出去
915,5,Indignition
915,6,Frustflamme
915,7,Cólera Ardiente
915,8,Rabbia Bruciante
915,9,Temper Flare
915,11,やけっぱち
915,12,豁出去
916,1,サンダーダイブ
916,3,썬더다이브
916,4,閃電強襲
916,5,Volt Assaut
916,6,Donnerstoß
916,7,Plancha Voltaica
916,8,Elettrotuffo
916,9,Supercell Slam
916,11,サンダーダイブ
916,12,闪电强袭
917,1,サイコノイズ
917,3,사이코노이즈
917,4,精神噪音
917,5,Dissonance Psy
917,6,Psycholärm
917,7,Psicorruido
917,8,Psicorumore
917,9,Psychic Noise
917,11,サイコノイズ
917,12,精神噪音
918,1,はやてがえし
918,3,기선제압
918,4,快手還擊
918,5,Prio-Parade
918,6,Schnellkonter
918,7,Palma Rauda
918,8,Colpo di Mano
918,9,Upper Hand
918,11,はやてがえし
918,12,快手还击
919,1,じゃどくのくさり
919,3,악독사슬
919,4,邪毒鎖鏈
919,5,Chaîne Malsaine
919,6,Giftkettung
919,7,Cadena Virulenta
919,8,Intossicatena
919,9,Malignant Chain
919,11,じゃどくのくさり
919,12,邪毒锁链
10001,1,ダークラッシュ
10001,5,Charge Noire
10001,6,Cryptoschlag

1 move_id local_language_id name
8261 826 12 诡异咒语
8262 827 1 フェイタルクロー
8263 827 4 克命爪
8264 827 8 Artigli Fatali
8265 827 9 Dire Claw
8266 827 11 フェイタルクロー
8267 828 1 バリアーラッシュ
8268 828 4 屏障猛攻
8269 828 8 Barrierassalto
8270 828 9 Psyshield Bash
8271 828 11 バリアーラッシュ
8272 829 1 パワーシフト
8273 829 4 力量转换
8274 829 8 Scambioforza
8275 829 9 Power Shift
8276 829 11 パワーシフト
8277 830 1 がんせきアックス
8278 830 4 岩斧
8279 830 8 Rocciascure
8280 830 9 Stone Axe
8281 830 11 がんせきアックス
8282 831 1 はるのあらし
8283 831 4 阳春风暴
8284 831 8 Tempesta Zefirea
8285 831 9 Springtide Storm
8286 831 11 はるのあらし
8287 832 1 しんぴのちから
8288 832 4 神秘之力
8289 832 8 Forza Mistica
8290 832 9 Mystical Power
8291 832 11 しんぴのちから
8292 833 1 だいふんげき
8293 833 4 大愤慨
8294 833 8 Ira Furente
8295 833 9 Raging Fury
8296 833 11 だいふんげき
8297 834 1 ウェーブタックル
8298 834 4 波动冲
8299 834 8 Ondaschianto
8300 834 9 Wave Crash
8301 834 11 ウェーブタックル
8302 835 1 クロロブラスト
8303 835 4 叶绿爆震
8304 835 8 Clorofillaser
8305 835 9 Chloroblast
8306 835 11 クロロブラスト
8307 836 1 ひょうざんおろし
8308 836 4 冰山风
8309 836 8 Soffio d’Iceberg
8310 836 9 Mountain Gale
8311 836 11 ひょうざんおろし
8312 837 1 しょうりのまい
8313 837 4 胜利之舞
8314 837 8 Danzavittoria
8315 837 9 Victory Dance
8316 837 11 しょうりのまい
8317 838 1 ぶちかまし
8318 838 4 突飞猛扑
8319 838 8 Scontro Frontale
8320 838 9 Headlong Rush
8321 838 11 ぶちかまし
8322 839 1 どくばりセンボン
8323 839 4 毒千针
8324 839 8 Mille Fielespine
8325 839 9 Barb Barrage
8326 839 11 どくばりセンボン
8327 840 1 オーラウイング
8328 840 4 气场之翼
8329 840 8 Ali d'Aura
8330 840 9 Esper Wing
8331 840 11 オーラウイング
8332 841 1 うらみつらみ
8333 841 4 冤冤相报
8334 841 8 Livore
8335 841 9 Bitter Malice
8336 841 11 うらみつらみ
8337 842 1 たてこもる
8338 842 4 闭关
8339 842 8 Barricata
8340 842 9 Shelter
8341 842 11 たてこもる
8342 843 1 3ぼんのや
8343 843 4 三连箭
8344 843 8 Triplodardo
8345 843 9 Triple Arrows
8346 843 11 3ぼんのや
8347 844 1 ひゃっきやこう
8348 844 4 群魔乱舞
8349 844 8 Corteo Spettrale
8350 844 9 Infernal Parade
8351 844 11 ひゃっきやこう
8352 845 1 ひけん・ちえなみ
8353 845 4 秘剑・千重涛
8354 845 8 Lama Milleflutti
8355 845 9 Ceaseless Edge
8356 845 11 ひけん・ちえなみ
8357 846 1 こがらしあらし
8358 846 4 枯叶风暴
8359 846 8 Tempesta Boreale
8360 846 9 Bleakwind Storm
8361 846 11 こがらしあらし
8362 847 1 かみなりあらし
8363 847 4 鸣雷风暴
8364 847 8 Tempesta Tonante
8365 847 9 Wildbolt Storm
8366 847 11 かみなりあらし
8367 848 1 ねっさのあらし
8368 848 4 热沙风暴
8369 848 8 Tempesta Ardente
8370 848 9 Sandsear Storm
8371 848 11 ねっさのあらし
8372 849 1 みかづきのいのり
8373 849 4 新月祈祷
8374 849 8 Invocaluna
8375 849 9 Lunar Blessing
8376 849 11 みかづきのいのり
8377 850 1 ブレイブチャージ
8378 850 4 勇气填充
8379 850 8 Baldimpulso
8380 850 9 Take Heart
8381 850 11 ブレイブチャージ
8382 851 1 テラバースト
8383 851 4 太晶爆发
8384 851 8 Terascoppio
8385 851 9 Tera Blast
8386 851 11 テラバースト
8387 852 1 スレッドトラップ
8388 852 4 线阱
8389 852 8 Telatrappola
8390 852 9 Silk Trap
8391 852 11 スレッドトラップ
8392 853 1 かかとおとし
8393 853 4 下压踢
8394 853 8 Calcio ad Ascia
8395 853 9 Axe Kick
8396 853 11 かかとおとし
8397 854 1 おはかまいり
8398 854 4 扫墓
8399 854 8 Omaggio ai KO
8400 854 9 Last Respects
8401 854 11 おはかまいり
8402 855 1 ルミナコリジョン
8403 855 4 琉光冲激
8404 855 8 Fotocollisione
8405 855 9 Lumina Crash
8406 855 11 ルミナコリジョン
8407 856 1 いっちょうあがり
8408 856 4 上菜
8409 856 8 Alta Cucina
8410 856 9 Order Up
8411 856 11 いっちょうあがり
8412 857 1 ジェットパンチ
8413 857 4 喷射拳
8414 857 8 Pugnojet
8415 857 9 Jet Punch
8416 857 11 ジェットパンチ
8417 858 1 ハバネロエキス
8418 858 4 辣椒精华
8419 858 8 Essenza Piccante
8420 858 9 Spicy Extract
8421 858 11 ハバネロエキス
8422 859 1 ホイールスピン
8423 859 4 疾速转轮
8424 859 8 Slittaruote
8425 859 9 Spin Out
8426 859 11 ホイールスピン
8427 860 1 ネズミざん
8428 860 4 鼠数儿
8429 860 8 Infestazione
8430 860 9 Population Bomb
8431 860 11 ネズミざん
8432 861 1 アイススピナー
8433 861 4 冰旋
8434 861 8 Vortighiaccio
8435 861 9 Ice Spinner
8436 861 11 アイススピナー
8437 862 1 きょけんとつげき
8438 862 4 巨剑突击
8439 862 8 Spadoncarica
8440 862 9 Glaive Rush
8441 862 11 きょけんとつげき
8442 863 1 さいきのいのり
8443 863 4 复生祈祷
8444 863 8 Preghiera Vitale
8445 863 9 Revival Blessing
8446 863 11 さいきのいのり
8447 864 1 しおづけ
8448 864 4 盐腌
8449 864 8 Sotto Sale
8450 864 9 Salt Cure
8451 864 11 しおづけ
8452 865 1 トリプルダイブ
8453 865 4 三连钻
8454 865 8 Triplo Tuffo
8455 865 9 Triple Dive
8456 865 11 トリプルダイブ
8457 866 1 キラースピン
8458 866 4 晶光转转
8459 866 8 Glitturbine
8460 866 9 Mortal Spin
8461 866 11 キラースピン
8462 867 1 うつしえ
8463 867 4 描绘
8464 867 8 Ricalco
8465 867 9 Doodle
8466 867 11 うつしえ
8467 868 1 みをけずる
8468 868 4 甩肉
8469 868 8 Alleggerimento
8470 868 9 Fillet Away
8471 868 11 みをけずる
8472 869 1 ドゲザン
8473 869 4 仆刀
8474 869 8 Genufendente
8475 869 9 Kowtow Cleave
8476 869 11 ドゲザン
8477 870 1 トリックフラワー
8478 870 4 千变万花
8479 870 8 Prestigiafiore
8480 870 9 Flower Trick
8481 870 11 トリックフラワー
8482 871 1 フレアソング
8483 871 4 闪焰高歌
8484 871 8 Canzone Ardente
8485 871 9 Torch Song
8486 871 11 フレアソング
8487 872 1 アクアステップ
8488 872 4 流水旋舞
8489 872 8 Idroballetto
8490 872 9 Aqua Step
8491 872 11 アクアステップ
8492 873 1 レイジングブル
8493 873 4 怒牛
8494 873 8 Scatenatoro
8495 873 9 Raging Bull
8496 873 11 レイジングブル
8497 874 1 ゴールドラッシュ
8498 874 4 淘金潮
8499 874 8 Corsa all'Oro
8500 874 9 Make It Rain
8501 874 11 ゴールドラッシュ
8502 875 1 はたく サイコブレイド
8503 875 4 3 拍击 사이코블레이드
8504 875 9 4 Pound 精神劍
8505 875 11 5 はたく Lame Psychique
8506 876 875 1 6 はたく Psychoschneide
8507 876 875 4 7 拍击 Psicohojas
8508 876 875 9 8 Pound Psicolama
8509 876 875 11 9 はたく Psyblade
8510 875 11 サイコブレイド
8511 875 12 精神剑
8512 876 1 ハイドロスチーム
8513 876 3 하이드로스팀
8514 876 4 水蒸氣
8515 876 5 Hydrovapeur
8516 876 6 Hydrodampf
8517 876 7 Hidrovapor
8518 876 8 Idrovapore
8519 876 9 Hydro Steam
8520 876 11 ハイドロスチーム
8521 876 12 水蒸气
8522 877 1 カタストロフィ
8523 877 4 大灾难
8524 877 8 Catastrofe
8525 877 9 Ruination
8526 877 11 カタストロフィ
8527 878 1 アクセルブレイク
8528 878 4 全开猛撞
8529 878 8 Turboschianto
8530 878 9 Collision Course
8531 878 11 アクセルブレイク
8532 879 1 イナズマドライブ
8533 879 4 闪电猛冲
8534 879 8 Fulmiscatto
8535 879 9 Electro Drift
8536 879 11 イナズマドライブ
8537 880 1 しっぽきり
8538 880 4 断尾
8539 880 8 Tagliacoda
8540 880 9 Shed Tail
8541 880 11 しっぽきり
8542 881 1 さむいギャグ
8543 881 4 冷笑话
8544 881 8 Freddura
8545 881 9 Chilly Reception
8546 881 11 さむいギャグ
8547 882 1 おかたづけ
8548 882 4 大扫除
8549 882 8 Pulizie
8550 882 9 Tidy Up
8551 882 11 おかたづけ
8552 883 1 ゆきげしき
8553 883 4 雪景
8554 883 8 Vista Innevata
8555 883 9 Snowscape
8556 883 11 ゆきげしき
8557 884 1 とびつく
8558 884 4 虫扑
8559 884 8 Balzo
8560 884 9 Pounce
8561 884 11 とびつく
8562 885 1 くさわけ
8563 885 4 起草
8564 885 8 Apripista
8565 885 9 Trailblaze
8566 885 11 くさわけ
8567 886 1 ひやみず
8568 886 4 泼冷水
8569 886 8 Doccia Fredda
8570 886 9 Chilling Water
8571 886 11 ひやみず
8572 887 1 ハイパードリル
8573 887 4 强力钻
8574 887 8 Ipertrapano
8575 887 9 Hyper Drill
8576 887 11 ハイパードリル
8577 888 1 ツインビーム
8578 888 4 双光束
8579 888 8 Doppioraggio
8580 888 9 Twin Beam
8581 888 11 ツインビーム
8582 889 1 ふんどのこぶし
8583 889 4 愤怒之拳
8584 889 8 Pugno Furibondo
8585 889 9 Rage Fist
8586 889 11 ふんどのこぶし
8587 890 1 アーマーキャノン
8588 890 4 铠农炮
8589 890 8 Corazza Cannone
8590 890 9 Armor Cannon
8591 890 11 アーマーキャノン
8592 891 1 むねんのつるぎ
8593 891 4 悔念剑
8594 891 8 Lama del Rimorso
8595 891 9 Bitter Blade
8596 891 11 むねんのつるぎ
8597 892 1 でんこうそうげき
8598 892 4 电光双击
8599 892 8 Doppiolampo
8600 892 9 Double Shock
8601 892 11 でんこうそうげき
8602 893 1 デカハンマー
8603 893 4 巨力锤
8604 893 8 Granmartello
8605 893 9 Gigaton Hammer
8606 893 11 デカハンマー
8607 894 1 ほうふく
8608 894 4 复仇
8609 894 8 Ritorsione
8610 894 9 Comeuppance
8611 894 11 ほうふく
8612 895 1 アクアカッター
8613 895 4 水波刀
8614 895 8 Idrotaglio
8615 895 9 Aqua Cutter
8616 895 11 アクアカッター
8617 896 1 バーンアクセル
8618 896 4 灼热暴冲
8619 896 8 Turboustione
8620 896 9 Blazing Torque
8621 896 11 バーンアクセル
8622 897 1 ダークアクセル
8623 897 4 黑暗暴冲
8624 897 8 Turbotenebra
8625 897 9 Wicked Torque
8626 897 11 ダークアクセル
8627 898 1 ポイズンアクセル
8628 898 4 剧毒暴冲
8629 898 8 Turbotossina
8630 898 9 Noxious Torque
8631 898 11 ポイズンアクセル
8632 899 1 ファイトアクセル
8633 899 4 格斗暴冲
8634 899 8 Turborissa
8635 899 9 Combat Torque
8636 899 11 ファイトアクセル
8637 900 1 マジカルアクセル
8638 900 4 魔法暴冲
8639 900 8 Turboincanto
8640 900 9 Magical Torque
8641 900 11 マジカルアクセル
8642 901 1 ブラッドムーン
8643 901 9 Blood Moon
8644 901 11 ブラッドムーン
8645 902 1 シャカシャカほう
8646 902 9 Matcha Gotcha
8647 902 11 シャカシャカほう
8648 903 1 みずあめボム
8649 903 9 Syrup Bomb
8650 903 11 みずあめボム
8651 904 1 ツタこんぼう
8652 904 9 Ivy Cudgel
8653 904 11 ツタこんぼう
8654 905 1 エレクトロビーム
8655 905 3 일렉트로빔
8656 905 4 電光束
8657 905 5 Fulgurayon
8658 905 6 Stromstrahl
8659 905 7 Electrorrayo
8660 905 8 Elettroraggio
8661 905 9 Electro Shot
8662 905 11 エレクトロビーム
8663 905 12 电光束
8664 906 1 テラクラスター
8665 906 3 테라클러스터
8666 906 4 晶光星群
8667 906 5 Pluie Térastrale
8668 906 6 Tera-Sternhagel
8669 906 7 Teraclúster
8670 906 8 Teracluster
8671 906 9 Tera Starstorm
8672 906 11 テラクラスター
8673 906 12 晶光星群
8674 907 1 きまぐレーザー
8675 907 3 변덕레이저
8676 907 4 隨機光
8677 907 5 Laser Hasard
8678 907 6 Launenlaser
8679 907 7 Láser Veleidoso
8680 907 8 Irregolaser
8681 907 9 Fickle Beam
8682 907 11 きまぐレーザー
8683 907 12 随机光
8684 908 1 かえんのまもり
8685 908 3 화염의수호
8686 908 4 火焰守護
8687 908 5 Rempart Brûlant
8688 908 6 Flammenschild
8689 908 7 Llama Protectora
8690 908 8 Egida Ignea
8691 908 9 Burning Bulwark
8692 908 11 かえんのまもり
8693 908 12 火焰守护
8694 909 1 じんらい
8695 909 3 질풍신뢰
8696 909 4 迅雷
8697 909 5 Vif Éclair
8698 909 6 Sturmblitz
8699 909 7 Relámpago Súbito
8700 909 8 Saetta
8701 909 9 Thunderclap
8702 909 11 じんらい
8703 909 12 迅雷
8704 910 1 パワフルエッジ
8705 910 3 파워풀에지
8706 910 4 強刃攻擊
8707 910 5 Lame Puissante
8708 910 6 Wuchtklinge
8709 910 7 Filo Potente
8710 910 8 Taglio Poderoso
8711 910 9 Mighty Cleave
8712 910 11 パワフルエッジ
8713 910 12 强刃攻击
8714 911 1 タキオンカッター
8715 911 3 타키온커터
8716 911 4 迅子利刃
8717 911 5 Lame Tachyonique
8718 911 6 Tachyon-Schnitt
8719 911 7 Tajo Taquión
8720 911 8 Tachiontaglio
8721 911 9 Tachyon Cutter
8722 911 11 タキオンカッター
8723 911 12 迅子利刃
8724 912 1 ハードプレス
8725 912 3 하드프레스
8726 912 4 硬壓
8727 912 5 Pression Extrême
8728 912 6 Stahlpresse
8729 912 7 Prensa Metálica
8730 912 8 Pressa d’Acciaio
8731 912 9 Hard Press
8732 912 11 ハードプレス
8733 912 12 硬压
8734 913 1 ドラゴンエール
8735 913 3 드래곤옐
8736 913 4 龍聲鼓舞
8737 913 5 Cri Draconique
8738 913 6 Drachenschrei
8739 913 7 Bramido Dragón
8740 913 8 Grido del Drago
8741 913 9 Dragon Cheer
8742 913 11 ドラゴンエール
8743 913 12 龙声鼓舞
8744 914 1 みわくのボイス
8745 914 3 매혹의보이스
8746 914 4 魅誘之聲
8747 914 5 Voix Envoûtante
8748 914 6 Lockstimme
8749 914 7 Canto Encantador
8750 914 8 Ammaliavoce
8751 914 9 Alluring Voice
8752 914 11 みわくのボイス
8753 914 12 魅诱之声
8754 915 1 やけっぱち
8755 915 3 열불내기
8756 915 4 豁出去
8757 915 5 Indignition
8758 915 6 Frustflamme
8759 915 7 Cólera Ardiente
8760 915 8 Rabbia Bruciante
8761 915 9 Temper Flare
8762 915 11 やけっぱち
8763 915 12 豁出去
8764 916 1 サンダーダイブ
8765 916 3 썬더다이브
8766 916 4 閃電強襲
8767 916 5 Volt Assaut
8768 916 6 Donnerstoß
8769 916 7 Plancha Voltaica
8770 916 8 Elettrotuffo
8771 916 9 Supercell Slam
8772 916 11 サンダーダイブ
8773 916 12 闪电强袭
8774 917 1 サイコノイズ
8775 917 3 사이코노이즈
8776 917 4 精神噪音
8777 917 5 Dissonance Psy
8778 917 6 Psycholärm
8779 917 7 Psicorruido
8780 917 8 Psicorumore
8781 917 9 Psychic Noise
8782 917 11 サイコノイズ
8783 917 12 精神噪音
8784 918 1 はやてがえし
8785 918 3 기선제압
8786 918 4 快手還擊
8787 918 5 Prio-Parade
8788 918 6 Schnellkonter
8789 918 7 Palma Rauda
8790 918 8 Colpo di Mano
8791 918 9 Upper Hand
8792 918 11 はやてがえし
8793 918 12 快手还击
8794 919 1 じゃどくのくさり
8795 919 3 악독사슬
8796 919 4 邪毒鎖鏈
8797 919 5 Chaîne Malsaine
8798 919 6 Giftkettung
8799 919 7 Cadena Virulenta
8800 919 8 Intossicatena
8801 919 9 Malignant Chain
8802 919 11 じゃどくのくさり
8803 919 12 邪毒锁链
8804 10001 1 ダークラッシュ
8805 10001 5 Charge Noire
8806 10001 6 Cryptoschlag

View file

@ -103,7 +103,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
102,mimic,1,1,,10,,0,10,1,83,,3,19,12
103,screech,1,1,,40,85,0,10,1,60,,4,5,10
104,double-team,1,1,,15,,0,7,1,17,,1,16,1
105,recover,1,1,,10,,0,7,1,33,,4,23,8
105,recover,1,1,,5,,0,7,1,33,,4,23,8
106,harden,1,1,,30,,0,7,1,12,,5,16,13
107,minimize,1,1,,10,,0,7,1,109,,3,16,13
108,smokescreen,1,1,,20,100,0,10,1,24,,4,22,10
@ -133,7 +133,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
132,constrict,1,1,10,35,100,0,10,2,71,10,5,9,21
133,amnesia,1,14,,20,,0,7,1,55,,3,32,11
134,kinesis,1,14,,15,80,0,10,1,24,,4,24,11
135,soft-boiled,1,1,,10,,0,7,1,33,,2,1,8
135,soft-boiled,1,1,,5,,0,7,1,33,,2,1,8
136,high-jump-kick,1,2,130,10,90,0,10,2,46,,1,3,5
137,glare,1,1,,30,100,0,10,1,68,,5,5,19
138,dream-eater,1,14,100,15,100,0,10,3,9,,4,8,20
@ -154,7 +154,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
153,explosion,1,1,250,5,100,0,9,2,8,,2,7,9
154,fury-swipes,1,1,18,15,80,0,10,2,30,,5,10,7
155,bonemerang,1,5,50,10,90,0,10,2,45,,5,1,7
156,rest,1,14,,10,,0,7,1,38,,3,16,8
156,rest,1,14,,5,,0,7,1,38,,3,16,8
157,rock-slide,1,6,75,10,90,0,11,2,32,30,5,5,5
158,hyper-fang,1,1,80,15,90,0,10,2,32,10,1,4,18
159,sharpen,1,1,,30,,0,7,1,11,,3,32,11
@ -206,7 +206,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
205,rollout,2,6,30,20,90,0,10,2,118,,5,24,7
206,false-swipe,2,1,40,40,100,0,10,2,102,,1,5,16
207,swagger,2,1,,15,85,0,10,1,119,,3,27,19
208,milk-drink,2,1,,10,,0,7,1,33,,3,12,8
208,milk-drink,2,1,,5,,0,7,1,33,,3,12,8
209,spark,2,13,65,20,100,0,10,2,7,30,1,4,5
210,fury-cutter,2,7,40,20,95,0,10,2,120,,1,17,7
211,steel-wing,2,9,70,25,90,0,10,2,139,10,1,12,5
@ -293,15 +293,15 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
292,arm-thrust,3,2,15,20,100,0,10,2,30,,5,10,7
293,camouflage,3,1,,20,,0,7,1,214,,4,2,13
294,tail-glow,3,7,,20,,0,7,1,322,,2,32,11
295,luster-purge,3,14,70,5,100,0,10,3,73,50,4,9,22
296,mist-ball,3,14,70,5,100,0,10,3,72,50,4,4,22
295,luster-purge,3,14,95,5,100,0,10,3,73,50,4,9,22
296,mist-ball,3,14,95,5,100,0,10,3,72,50,4,4,22
297,feather-dance,3,3,,15,100,0,10,1,59,,2,28,19
298,teeter-dance,3,1,,20,100,0,9,1,200,,3,6,14
299,blaze-kick,3,10,85,10,90,0,10,2,201,10,2,1,17
300,mud-sport,3,5,,15,,0,12,1,202,,3,1,13
301,ice-ball,3,15,30,20,90,0,10,2,118,,2,24,7
302,needle-arm,3,12,60,15,100,0,10,2,32,30,4,4,5
303,slack-off,3,1,,10,,0,7,1,33,,3,26,8
303,slack-off,3,1,,5,,0,7,1,33,,3,26,8
304,hyper-voice,3,1,90,10,100,0,11,3,1,,1,5,5
305,poison-fang,3,4,50,15,100,0,10,2,203,50,4,33,4
306,crush-claw,3,1,75,10,95,0,10,2,70,50,1,4,5
@ -353,7 +353,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
352,water-pulse,3,11,60,20,100,0,10,3,77,20,2,21,17
353,doom-desire,3,9,140,5,100,0,10,3,149,,1,24,17
354,psycho-boost,3,14,140,5,90,0,10,3,205,100,4,3,22
355,roost,4,3,,10,,0,7,1,215,,1,,8
355,roost,4,3,,5,,0,7,1,215,,1,,8
356,gravity,4,14,,5,,0,12,1,216,,2,,13
357,miracle-eye,4,14,,40,,0,10,1,217,,3,,20
358,wake-up-slap,4,2,70,10,100,0,10,2,218,,4,,16
@ -657,7 +657,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
656,twinkle-tackle--physical,7,18,,1,,0,10,2,1,,,,
657,twinkle-tackle--special,7,18,,1,,0,10,3,1,,,,
658,catastropika,7,13,210,1,,0,10,2,1,,,,
659,shore-up,7,5,,10,,0,7,1,382,,,,
659,shore-up,7,5,,5,,0,7,1,382,,,,
660,first-impression,7,7,90,10,100,2,10,2,383,,,,
661,baneful-bunker,7,4,,10,,4,7,1,384,,,,
662,spirit-shackle,7,8,80,10,100,0,10,2,385,,,,
@ -801,7 +801,7 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
800,meteor-beam,8,6,120,10,90,0,10,3,1,100,,,
801,shell-side-arm,8,4,90,10,100,0,10,3,1,20,,,
802,misty-explosion,8,18,100,5,100,0,9,3,1,,,,
803,grassy-glide,8,12,70,20,100,0,10,2,1,,,,
803,grassy-glide,8,12,55,20,100,0,10,2,1,,,,
804,rising-voltage,8,13,70,20,100,0,10,3,1,,,,
805,terrain-pulse,8,1,50,10,100,0,10,3,1,,,,
806,skitter-smack,8,7,70,10,90,0,10,2,1,100,,,
@ -815,14 +815,14 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
814,dual-wingbeat,8,3,40,10,90,0,10,2,1,,,,
815,scorching-sands,8,5,70,10,100,0,10,3,1,30,,,
816,jungle-healing,8,12,,10,,0,13,1,1,,,,
817,wicked-blow,8,17,80,5,100,0,10,2,1,,,,
817,wicked-blow,8,17,75,5,100,0,10,2,1,,,,
818,surging-strikes,8,11,25,5,100,0,10,2,1,,,,
819,thunder-cage,8,13,80,15,90,0,10,3,1,100,,,
820,dragon-energy,8,16,150,5,100,0,11,3,1,,,,
821,freezing-glare,8,14,90,10,100,0,10,3,1,10,,,
822,fiery-wrath,8,17,90,10,100,0,11,3,1,20,,,
823,thunderous-kick,8,2,90,10,100,0,10,2,1,100,,,
824,glacial-lance,8,15,130,5,100,0,11,2,1,,,,
824,glacial-lance,8,15,120,5,100,0,11,2,1,,,,
825,astral-barrage,8,8,120,5,100,0,11,3,1,,,,
826,eerie-spell,8,14,80,5,100,0,10,3,1,,,,
827,dire-claw,8,4,80,15,100,0,10,2,,,,,
@ -873,8 +873,8 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
872,aqua-step,9,11,80,10,100,0,10,2,,,,,
873,raging-bull,9,1,90,10,100,0,10,2,,,,,
874,make-it-rain,9,9,120,5,100,0,11,3,,,,,
875,pound,9,1,40,35,100,0,10,2,,,,,
876,pound,9,1,40,35,100,0,10,2,,,,,
875,psyblade,9,14,80,15,100,0,10,2,,,,,
876,hydro-steam,9,11,80,15,100,0,10,3,,,,,
877,ruination,9,17,1,10,90,0,10,3,,,,,
878,collision-course,9,2,100,5,100,0,10,2,,,,,
879,electro-drift,9,13,100,5,100,0,10,3,,,,,
@ -899,8 +899,25 @@ id,identifier,generation_id,type_id,power,pp,accuracy,priority,target_id,damage_
898,noxious-torque,9,4,100,10,100,0,10,2,,,,,
899,combat-torque,9,2,100,10,100,0,10,2,,,,,
900,magical-torque,9,18,100,10,100,0,10,2,,,,,
901,hydro-steam,9,11,80,15,100,0,10,3,,,,,
902,psyblade,9,14,80,15,100,0,10,2,,,,,
901,blood-moon,9,1,140,5,100,0,10,3,,,,,
902,matcha-gotcha,9,12,80,15,90,0,10,3,,,,,
903,syrup-bomb,9,12,60,10,85,0,10,3,,,,,
904,ivy-cudgel,9,12,100,10,100,0,10,2,,,,,
905,electro-shot,9,13,130,10,100,0,10,3,,,,,
906,tera-starstorm,9,1,120,5,100,0,11,3,,,,,
907,fickle-beam,9,16,80,5,100,0,10,3,,,,,
908,burning-bulwark,9,10,0,10,0,4,7,1,,,,,
909,thunderclap,9,13,70,5,100,1,10,3,,,,,
910,mighty-cleave,9,6,95,5,100,0,10,2,,,,,
911,tachyon-cutter,9,9,50,10,0,0,10,3,,,,,
912,hard-press,9,9,0,10,100,0,10,2,,,,,
913,dragon-cheer,9,16,0,15,0,0,15,1,,,,,
914,alluring-voice,9,18,80,10,100,0,10,3,,,,,
915,temper-flare,9,10,75,10,100,0,10,2,,,,,
916,supercell-slam,9,13,100,15,95,0,10,2,,,,,
917,psychic-noise,9,14,75,10,100,0,10,3,,,,,
918,upper-hand,9,2,65,15,100,3,10,2,,,,,
919,malignant-chain,9,4,100,5,100,0,10,3,,,,,
10001,shadow-rush,3,10002,55,,100,0,10,2,10001,,,,
10002,shadow-blast,3,10002,80,,100,0,10,2,44,,,,
10003,shadow-blitz,3,10002,40,,100,0,10,2,1,,,,

1 id identifier generation_id type_id power pp accuracy priority target_id damage_class_id effect_id effect_chance contest_type_id contest_effect_id super_contest_effect_id
103 102 mimic 1 1 10 0 10 1 83 3 19 12
104 103 screech 1 1 40 85 0 10 1 60 4 5 10
105 104 double-team 1 1 15 0 7 1 17 1 16 1
106 105 recover 1 1 10 5 0 7 1 33 4 23 8
107 106 harden 1 1 30 0 7 1 12 5 16 13
108 107 minimize 1 1 10 0 7 1 109 3 16 13
109 108 smokescreen 1 1 20 100 0 10 1 24 4 22 10
133 132 constrict 1 1 10 35 100 0 10 2 71 10 5 9 21
134 133 amnesia 1 14 20 0 7 1 55 3 32 11
135 134 kinesis 1 14 15 80 0 10 1 24 4 24 11
136 135 soft-boiled 1 1 10 5 0 7 1 33 2 1 8
137 136 high-jump-kick 1 2 130 10 90 0 10 2 46 1 3 5
138 137 glare 1 1 30 100 0 10 1 68 5 5 19
139 138 dream-eater 1 14 100 15 100 0 10 3 9 4 8 20
154 153 explosion 1 1 250 5 100 0 9 2 8 2 7 9
155 154 fury-swipes 1 1 18 15 80 0 10 2 30 5 10 7
156 155 bonemerang 1 5 50 10 90 0 10 2 45 5 1 7
157 156 rest 1 14 10 5 0 7 1 38 3 16 8
158 157 rock-slide 1 6 75 10 90 0 11 2 32 30 5 5 5
159 158 hyper-fang 1 1 80 15 90 0 10 2 32 10 1 4 18
160 159 sharpen 1 1 30 0 7 1 11 3 32 11
206 205 rollout 2 6 30 20 90 0 10 2 118 5 24 7
207 206 false-swipe 2 1 40 40 100 0 10 2 102 1 5 16
208 207 swagger 2 1 15 85 0 10 1 119 3 27 19
209 208 milk-drink 2 1 10 5 0 7 1 33 3 12 8
210 209 spark 2 13 65 20 100 0 10 2 7 30 1 4 5
211 210 fury-cutter 2 7 40 20 95 0 10 2 120 1 17 7
212 211 steel-wing 2 9 70 25 90 0 10 2 139 10 1 12 5
293 292 arm-thrust 3 2 15 20 100 0 10 2 30 5 10 7
294 293 camouflage 3 1 20 0 7 1 214 4 2 13
295 294 tail-glow 3 7 20 0 7 1 322 2 32 11
296 295 luster-purge 3 14 70 95 5 100 0 10 3 73 50 4 9 22
297 296 mist-ball 3 14 70 95 5 100 0 10 3 72 50 4 4 22
298 297 feather-dance 3 3 15 100 0 10 1 59 2 28 19
299 298 teeter-dance 3 1 20 100 0 9 1 200 3 6 14
300 299 blaze-kick 3 10 85 10 90 0 10 2 201 10 2 1 17
301 300 mud-sport 3 5 15 0 12 1 202 3 1 13
302 301 ice-ball 3 15 30 20 90 0 10 2 118 2 24 7
303 302 needle-arm 3 12 60 15 100 0 10 2 32 30 4 4 5
304 303 slack-off 3 1 10 5 0 7 1 33 3 26 8
305 304 hyper-voice 3 1 90 10 100 0 11 3 1 1 5 5
306 305 poison-fang 3 4 50 15 100 0 10 2 203 50 4 33 4
307 306 crush-claw 3 1 75 10 95 0 10 2 70 50 1 4 5
353 352 water-pulse 3 11 60 20 100 0 10 3 77 20 2 21 17
354 353 doom-desire 3 9 140 5 100 0 10 3 149 1 24 17
355 354 psycho-boost 3 14 140 5 90 0 10 3 205 100 4 3 22
356 355 roost 4 3 10 5 0 7 1 215 1 8
357 356 gravity 4 14 5 0 12 1 216 2 13
358 357 miracle-eye 4 14 40 0 10 1 217 3 20
359 358 wake-up-slap 4 2 70 10 100 0 10 2 218 4 16
657 656 twinkle-tackle--physical 7 18 1 0 10 2 1
658 657 twinkle-tackle--special 7 18 1 0 10 3 1
659 658 catastropika 7 13 210 1 0 10 2 1
660 659 shore-up 7 5 10 5 0 7 1 382
661 660 first-impression 7 7 90 10 100 2 10 2 383
662 661 baneful-bunker 7 4 10 4 7 1 384
663 662 spirit-shackle 7 8 80 10 100 0 10 2 385
801 800 meteor-beam 8 6 120 10 90 0 10 3 1 100
802 801 shell-side-arm 8 4 90 10 100 0 10 3 1 20
803 802 misty-explosion 8 18 100 5 100 0 9 3 1
804 803 grassy-glide 8 12 70 55 20 100 0 10 2 1
805 804 rising-voltage 8 13 70 20 100 0 10 3 1
806 805 terrain-pulse 8 1 50 10 100 0 10 3 1
807 806 skitter-smack 8 7 70 10 90 0 10 2 1 100
815 814 dual-wingbeat 8 3 40 10 90 0 10 2 1
816 815 scorching-sands 8 5 70 10 100 0 10 3 1 30
817 816 jungle-healing 8 12 10 0 13 1 1
818 817 wicked-blow 8 17 80 75 5 100 0 10 2 1
819 818 surging-strikes 8 11 25 5 100 0 10 2 1
820 819 thunder-cage 8 13 80 15 90 0 10 3 1 100
821 820 dragon-energy 8 16 150 5 100 0 11 3 1
822 821 freezing-glare 8 14 90 10 100 0 10 3 1 10
823 822 fiery-wrath 8 17 90 10 100 0 11 3 1 20
824 823 thunderous-kick 8 2 90 10 100 0 10 2 1 100
825 824 glacial-lance 8 15 130 120 5 100 0 11 2 1
826 825 astral-barrage 8 8 120 5 100 0 11 3 1
827 826 eerie-spell 8 14 80 5 100 0 10 3 1
828 827 dire-claw 8 4 80 15 100 0 10 2
873 872 aqua-step 9 11 80 10 100 0 10 2
874 873 raging-bull 9 1 90 10 100 0 10 2
875 874 make-it-rain 9 9 120 5 100 0 11 3
876 875 pound psyblade 9 1 14 40 80 35 15 100 0 10 2
877 876 pound hydro-steam 9 1 11 40 80 35 15 100 0 10 2 3
878 877 ruination 9 17 1 10 90 0 10 3
879 878 collision-course 9 2 100 5 100 0 10 2
880 879 electro-drift 9 13 100 5 100 0 10 3
899 898 noxious-torque 9 4 100 10 100 0 10 2
900 899 combat-torque 9 2 100 10 100 0 10 2
901 900 magical-torque 9 18 100 10 100 0 10 2
902 901 hydro-steam blood-moon 9 11 1 80 140 15 5 100 0 10 3
903 902 psyblade matcha-gotcha 9 14 12 80 15 100 90 0 10 2 3
904 903 syrup-bomb 9 12 60 10 85 0 10 3
905 904 ivy-cudgel 9 12 100 10 100 0 10 2
906 905 electro-shot 9 13 130 10 100 0 10 3
907 906 tera-starstorm 9 1 120 5 100 0 11 3
908 907 fickle-beam 9 16 80 5 100 0 10 3
909 908 burning-bulwark 9 10 0 10 0 4 7 1
910 909 thunderclap 9 13 70 5 100 1 10 3
911 910 mighty-cleave 9 6 95 5 100 0 10 2
912 911 tachyon-cutter 9 9 50 10 0 0 10 3
913 912 hard-press 9 9 0 10 100 0 10 2
914 913 dragon-cheer 9 16 0 15 0 0 15 1
915 914 alluring-voice 9 18 80 10 100 0 10 3
916 915 temper-flare 9 10 75 10 100 0 10 2
917 916 supercell-slam 9 13 100 15 95 0 10 2
918 917 psychic-noise 9 14 75 10 100 0 10 3
919 918 upper-hand 9 2 65 15 100 3 10 2
920 919 malignant-chain 9 4 100 5 100 0 10 3
921 10001 shadow-rush 3 10002 55 100 0 10 2 10001
922 10002 shadow-blast 3 10002 80 100 0 10 2 44
923 10003 shadow-blitz 3 10002 40 100 0 10 2 1

View file

@ -1,16 +1,31 @@
pokeathlon_stat_id,local_language_id,name
1,1,スピード
1,4,速度
1,5,Vitesse
1,7,Velocidad
1,9,Speed
1,12,速度
2,1,パワー
2,4,力量
2,5,Force
2,7,Fuerza
2,9,Power
2,12,力量
3,1,テクニック
3,4,技巧
3,5,Habileté
3,7,Habilidad
3,9,Skill
3,12,技巧
4,1,スタミナ
4,4,耐力
4,5,Endurance
4,7,Firmeza
4,9,Stamina
4,12,耐力
5,1,ジャンプ
5,4,跳躍
5,5,Saut
5,7,Salto
5,9,Jump
5,12,跳跃

1 pokeathlon_stat_id local_language_id name
2 1 1 スピード
3 1 4 速度
4 1 5 Vitesse
5 1 7 Velocidad
6 1 9 Speed
7 1 12 速度
8 2 1 パワー
9 2 4 力量
10 2 5 Force
11 2 7 Fuerza
12 2 9 Power
13 2 12 力量
14 3 1 テクニック
15 3 4 技巧
16 3 5 Habileté
17 3 7 Habilidad
18 3 9 Skill
19 3 12 技巧
20 4 1 スタミナ
21 4 4 耐力
22 4 5 Endurance
23 4 7 Firmeza
24 4 9 Stamina
25 4 12 耐力
26 5 1 ジャンプ
27 5 4 跳躍
28 5 5 Saut
29 5 7 Salto
30 5 9 Jump
31 5 12 跳跃

View file

@ -7,6 +7,7 @@ pokedex_id,version_group_id
4,5
4,6
5,8
5,23
6,9
7,10
8,11
@ -28,6 +29,8 @@ pokedex_id,version_group_id
26,19
27,20
28,20
28,21
29,22
29,20
30,24
31,25

1 pokedex_id version_group_id
7 4 5
8 4 6
9 5 8
10 5 23
11 6 9
12 7 10
13 8 11
29 26 19
30 27 20
31 28 20
32 28 21
33 29 22
34 29 20
35 30 24
36 31 25

View file

@ -29,5 +29,5 @@ id,region_id,identifier,is_main_series
29,8,crown-tundra,1
30,9,hisui,1
31,10,paldea,1
32,10,teal-mask,1
33,10,indigo-disk,1
32,10,kitakami,1
33,10,blueberry,1

1 id region_id identifier is_main_series
29 29 8 crown-tundra 1
30 30 9 hisui 1
31 31 10 paldea 1
32 32 10 teal-mask kitakami 1
33 33 10 indigo-disk blueberry 1

View file

@ -1009,6 +1009,21 @@ id,identifier,species_id,height,weight,base_experience,order,is_default
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
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
@ -1280,3 +1295,9 @@ id,identifier,species_id,height,weight,base_experience,order,is_default
10269,miraidon-drive-mode,1008,28,2400,,,0
10270,miraidon-aquatic-mode,1008,28,2400,,,0
10271,miraidon-glide-mode,1008,28,2400,,,0
10272,ursaluna-bloodmoon,901,24,2900,,,0
10273,ogerpon-wellspring-mask,1017,12,398,,,0
10274,ogerpon-hearthflame-mask,1017,12,398,,,0
10275,ogerpon-cornerstone-mask,1017,12,398,,,0
10276,terapagos-terastal,1024,3,160,,,0
10277,terapagos-stellar,1024,17,770,,,0

1 id identifier species_id height weight base_experience order is_default
1009 1008 miraidon 1008 35 2400 999 1
1010 1009 walking-wake 1009 35 2800 1093 1
1011 1010 iron-leaves 1010 15 1250 1094 1
1012 1011 dipplin 1011 4 97 1095 1
1013 1012 poltchageist 1012 1 11 1096 1
1014 1013 sinistcha 1013 2 22 1097 1
1015 1014 okidogi 1014 18 922 1098 1
1016 1015 munkidori 1015 10 122 1099 1
1017 1016 fezandipiti 1016 14 301 1100 1
1018 1017 ogerpon 1017 12 398 1101 1
1019 1018 archaludon 1018 20 600 1102 1
1020 1019 hydrapple 1019 18 930 1103 1
1021 1020 gouging-fire 1020 35 5900 1104 1
1022 1021 raging-bolt 1021 52 4800 1105 1
1023 1022 iron-boulder 1022 15 1625 1106 1
1024 1023 iron-crown 1023 16 1560 1107 1
1025 1024 terapagos 1024 2 65 1108 1
1026 1025 pecharunt 1025 3 3 1109 1
1027 10001 deoxys-attack 386 17 608 270 515 0
1028 10002 deoxys-defense 386 17 608 270 516 0
1029 10003 deoxys-speed 386 17 608 270 517 0
1295 10269 miraidon-drive-mode 1008 28 2400 0
1296 10270 miraidon-aquatic-mode 1008 28 2400 0
1297 10271 miraidon-glide-mode 1008 28 2400 0
1298 10272 ursaluna-bloodmoon 901 24 2900 0
1299 10273 ogerpon-wellspring-mask 1017 12 398 0
1300 10274 ogerpon-hearthflame-mask 1017 12 398 0
1301 10275 ogerpon-cornerstone-mask 1017 12 398 0
1302 10276 terapagos-terastal 1024 3 160 0
1303 10277 terapagos-stellar 1024 17 770 0

View file

@ -709,7 +709,7 @@ pokemon_id,ability_id,is_hidden,slot
274,48,0,2
274,124,1,3
275,34,0,1
275,48,0,2
275,274,0,2
275,124,1,3
276,62,0,1
276,113,1,3
@ -977,11 +977,11 @@ pokemon_id,ability_id,is_hidden,slot
392,66,0,1
392,89,1,3
393,67,0,1
393,128,1,3
393,172,1,3
394,67,0,1
394,128,1,3
394,172,1,3
395,67,0,1
395,128,1,3
395,172,1,3
396,51,0,1
396,120,1,3
397,22,0,1
@ -2148,14 +2148,15 @@ pokemon_id,ability_id,is_hidden,slot
899,157,1,3
900,68,0,1
900,125,0,2
900,80,1,3
900,292,1,3
901,62,0,1
901,171,0,2
901,127,1,3
902,155,0,1
902,33,0,1
902,91,0,2
902,104,1,3
903,46,0,1
903,84,0,2
903,143,1,3
904,38,0,1
904,33,0,2
@ -2411,6 +2412,32 @@ pokemon_id,ability_id,is_hidden,slot
1009,281,1,3
1010,282,0,1
1010,282,1,3
1011,300,0,1
1011,82,0,2
1011,60,1,3
1012,301,0,1
1012,85,1,3
1013,301,0,1
1013,85,1,3
1014,302,0,1
1014,275,1,3
1015,302,0,1
1015,119,1,3
1016,302,0,1
1016,101,1,3
1017,128,0,1
1018,192,0,1
1018,5,0,2
1018,242,1,3
1019,300,0,1
1019,144,0,2
1019,60,1,3
1020,281,0,1
1021,281,0,1
1022,282,0,1
1023,282,0,1
1024,304,0,1
1025,307,0,1
10001,46,0,1
10002,46,0,1
10003,46,0,1
@ -2803,10 +2830,10 @@ pokemon_id,ability_id,is_hidden,slot
10228,101,1,3
10229,22,0,1
10229,18,0,2
10229,154,1,3
10229,69,1,3
10230,22,0,1
10230,18,0,2
10230,154,1,3
10230,69,1,3
10231,43,0,1
10231,9,0,2
10231,106,1,3
@ -2814,15 +2841,15 @@ pokemon_id,ability_id,is_hidden,slot
10232,9,0,2
10232,106,1,3
10233,66,0,1
10233,18,1,3
10233,119,1,3
10234,38,0,1
10234,33,0,2
10234,22,1,3
10235,39,0,1
10235,51,0,2
10235,143,1,3
10235,124,1,3
10236,67,0,1
10236,75,1,3
10236,292,1,3
10237,34,0,1
10237,55,0,2
10237,102,1,3
@ -2830,18 +2857,18 @@ pokemon_id,ability_id,is_hidden,slot
10239,149,0,1
10240,51,0,1
10240,125,0,2
10240,128,1,3
10240,110,1,3
10241,157,0,1
10241,142,0,2
10241,75,0,2
10241,183,1,3
10242,157,0,1
10242,142,0,2
10242,75,0,2
10242,183,1,3
10243,173,0,1
10243,115,0,2
10243,5,1,3
10244,65,0,1
10244,203,1,3
10244,113,1,3
10245,46,0,1
10245,140,1,3
10246,46,0,1
@ -2849,7 +2876,7 @@ pokemon_id,ability_id,is_hidden,slot
10247,155,0,1
10247,91,0,2
10247,104,1,3
10248,155,0,1
10248,33,0,1
10248,91,0,2
10248,104,1,3
10249,142,0,1
@ -2907,3 +2934,9 @@ pokemon_id,ability_id,is_hidden,slot
10270,289,1,3
10271,289,0,1
10271,289,1,3
10272,299,0,1
10273,11,0,1
10274,104,0,1
10275,5,0,1
10276,305,0,1
10277,306,0,1

1 pokemon_id ability_id is_hidden slot
709 274 48 0 2
710 274 124 1 3
711 275 34 0 1
712 275 48 274 0 2
713 275 124 1 3
714 276 62 0 1
715 276 113 1 3
977 392 66 0 1
978 392 89 1 3
979 393 67 0 1
980 393 128 172 1 3
981 394 67 0 1
982 394 128 172 1 3
983 395 67 0 1
984 395 128 172 1 3
985 396 51 0 1
986 396 120 1 3
987 397 22 0 1
2148 899 157 1 3
2149 900 68 0 1
2150 900 125 0 2
2151 900 80 292 1 3
2152 901 62 0 1
2153 901 171 0 2
2154 901 127 1 3
2155 902 155 33 0 1
2156 902 91 0 2
2157 902 104 1 3
2158 903 46 0 1
2159 903 84 0 2
2160 903 143 1 3
2161 904 38 0 1
2162 904 33 0 2
2412 1009 281 1 3
2413 1010 282 0 1
2414 1010 282 1 3
2415 1011 300 0 1
2416 1011 82 0 2
2417 1011 60 1 3
2418 1012 301 0 1
2419 1012 85 1 3
2420 1013 301 0 1
2421 1013 85 1 3
2422 1014 302 0 1
2423 1014 275 1 3
2424 1015 302 0 1
2425 1015 119 1 3
2426 1016 302 0 1
2427 1016 101 1 3
2428 1017 128 0 1
2429 1018 192 0 1
2430 1018 5 0 2
2431 1018 242 1 3
2432 1019 300 0 1
2433 1019 144 0 2
2434 1019 60 1 3
2435 1020 281 0 1
2436 1021 281 0 1
2437 1022 282 0 1
2438 1023 282 0 1
2439 1024 304 0 1
2440 1025 307 0 1
2441 10001 46 0 1
2442 10002 46 0 1
2443 10003 46 0 1
2830 10228 101 1 3
2831 10229 22 0 1
2832 10229 18 0 2
2833 10229 154 69 1 3
2834 10230 22 0 1
2835 10230 18 0 2
2836 10230 154 69 1 3
2837 10231 43 0 1
2838 10231 9 0 2
2839 10231 106 1 3
2841 10232 9 0 2
2842 10232 106 1 3
2843 10233 66 0 1
2844 10233 18 119 1 3
2845 10234 38 0 1
2846 10234 33 0 2
2847 10234 22 1 3
2848 10235 39 0 1
2849 10235 51 0 2
2850 10235 143 124 1 3
2851 10236 67 0 1
2852 10236 75 292 1 3
2853 10237 34 0 1
2854 10237 55 0 2
2855 10237 102 1 3
2857 10239 149 0 1
2858 10240 51 0 1
2859 10240 125 0 2
2860 10240 128 110 1 3
2861 10241 157 0 1
2862 10241 142 75 0 2
2863 10241 183 1 3
2864 10242 157 0 1
2865 10242 142 75 0 2
2866 10242 183 1 3
2867 10243 173 0 1
2868 10243 115 0 2
2869 10243 5 1 3
2870 10244 65 0 1
2871 10244 203 113 1 3
2872 10245 46 0 1
2873 10245 140 1 3
2874 10246 46 0 1
2876 10247 155 0 1
2877 10247 91 0 2
2878 10247 104 1 3
2879 10248 155 33 0 1
2880 10248 91 0 2
2881 10248 104 1 3
2882 10249 142 0 1
2934 10270 289 1 3
2935 10271 289 0 1
2936 10271 289 1 3
2937 10272 299 0 1
2938 10273 11 0 1
2939 10274 104 0 1
2940 10275 5 0 1
2941 10276 305 0 1
2942 10277 306 0 1

View file

@ -0,0 +1,18 @@
pokemon_id,generation_id,ability_id,is_hidden,slot
94,6,26,0,1
145,5,31,1,3
243,6,10,1,3
244,6,18,1,3
245,6,11,1,3
275,8,48,0,2
393,8,128,1,3
394,8,128,1,3
395,8,128,1,3
475,8,80,0,2
543,5,95,1,3
544,5,95,1,3
545,5,95,1,3
607,5,23,1,3
608,5,23,1,3
609,5,23,1,3
10016,5,69,0,1
1 pokemon_id generation_id ability_id is_hidden slot
2 94 6 26 0 1
3 145 5 31 1 3
4 243 6 10 1 3
5 244 6 18 1 3
6 245 6 11 1 3
7 275 8 48 0 2
8 393 8 128 1 3
9 394 8 128 1 3
10 395 8 128 1 3
11 475 8 80 0 2
12 543 5 95 1 3
13 544 5 95 1 3
14 545 5 95 1 3
15 607 5 23 1 3
16 608 5 23 1 3
17 609 5 23 1 3
18 10016 5 69 0 1

File diff suppressed because it is too large Load diff

View file

@ -14,7 +14,7 @@ id,evolved_species_id,evolution_trigger_id,trigger_item_id,minimum_level,gender_
13,20,1,,20,,,,,,,,,,,,,,0,0
14,22,1,,20,,,,,,,,,,,,,,0,0
15,24,1,,22,,,,,,,,,,,,,,0,0
16,25,1,,,,,,,,,160,,,,,,,0,0
16,25,1,,,,,,,,,220,,,,,,,0,0
17,26,3,83,,,,,,,,,,,,,,,0,0
18,28,1,,22,,,,,,,,,,,,,,0,0
19,30,1,,16,,,,,,,,,,,,,,0,0
@ -365,8 +365,6 @@ id,evolved_species_id,evolution_trigger_id,trigger_item_id,minimum_level,gender_
365,476,1,,,,629,,,,,,,,,,,,0,0
366,462,1,,,,,,,,,,,,,,,,0,0
367,105,1,,28,,,,night,,,,,,,,,,0,0
368,470,1,,,,,,,,,,,,,,,,0,0
369,471,1,,,,,,,,,,,,,,,,0,0
370,476,1,,,,,,,,,,,,,,,,0,0
371,350,1,,,,,,,,,,170,,,,,,0,0
373,723,1,,17,,,,,,,,,,,,,,0,0

1 id evolved_species_id evolution_trigger_id trigger_item_id minimum_level gender_id location_id held_item_id time_of_day known_move_id known_move_type_id minimum_happiness minimum_beauty minimum_affection relative_physical_stats party_species_id party_type_id trade_species_id needs_overworld_rain turn_upside_down
14 13 20 1 20 0 0
15 14 22 1 20 0 0
16 15 24 1 22 0 0
17 16 25 1 160 220 0 0
18 17 26 3 83 0 0
19 18 28 1 22 0 0
20 19 30 1 16 0 0
365 365 476 1 629 0 0
366 366 462 1 0 0
367 367 105 1 28 night 0 0
368 470 1 0 0
369 471 1 0 0
368 370 476 1 0 0
369 371 350 1 170 0 0
370 373 723 1 17 0 0

View file

@ -507,6 +507,42 @@ pokemon_form_id,local_language_id,form_name,pokemon_name
1008,1,コンプリートモード,
1008,9,Ultimate Mode,
1008,11,コンプリートモード,
1012,1,マガイモノのすがた,
1012,3,가짜배기의 모습,
1012,4,冒牌貨的樣子,
1012,5,Forme Imitation,
1012,6,Imitationsform,
1012,7,Forma Fraudulenta,
1012,8,Forma Taroccata,
1012,9,Counterfeit Form,
1012,11,マガイモノのすがた,
1012,12,高檔貨的樣子,
1013,1,ボンサクのすがた,
1013,3,범작의 모습,
1013,4,凡作的樣子,
1013,5,Forme Médiocre,
1013,6,Simple Form,
1013,7,Forma Mediocre,
1013,8,Forma Dozzinale,
1013,9,Unremarkable Form,
1013,11,ボンサクのすがた,
1013,12,凡作的样子,
1017,1,みどりのめん,
1017,3,벽록의가면,
1017,4,碧草面具,
1017,5,Masque Turquoise,
1017,6,Türkisgrüne Maske,
1017,7,Máscara Turquesa,
1017,8,Maschera Turchese,
1017,9,Teal Mask,
1017,11,みどりのめん,
1017,12,碧草面具,
1024,1,ノーマルフォルム,
1024,5,Forme Normale,
1024,7,Forma normal,
1024,8,Forma Normale,
1024,9,Normal Form,
1024,11,ノーマルフォルム,
10001,1,,
10001,3,B,
10001,5,B,Zarbi B
@ -3528,3 +3564,75 @@ pokemon_form_id,local_language_id,form_name,pokemon_name
10440,1,グライドモード,
10440,9,Glide Mode,
10440,11,グライドモード,
10441,1,アカツキ,
10441,3,붉은 달,
10441,4,赫月,
10441,5,Lune Vermeille,
10441,6,Blutmond,
10441,7,Luna Carmesí,
10441,8,Luna Cremisi,
10441,9,Bloodmoon,
10441,11,アカツキ,
10441,12,赫月,
10442,1,いどのめん,
10442,3,우물의가면,
10442,4,水井面具,
10442,5,Masque du Puits,
10442,6,Brunnenmaske,
10442,7,Máscara Fuente,
10442,8,Maschera Pozzo,
10442,9,Wellspring Mask,
10442,11,いどのめん,
10442,12,水井面具,
10443,1,かまどのめん,
10443,3,화덕의가면,
10443,4,火灶面具,
10443,5,Masque du Fourneau,
10443,6,Ofenmaske,
10443,7,Máscara Horno,
10443,8,Maschera Focolare,
10443,9,Hearthflame Mask,
10443,11,かまどのめん,
10443,12,火灶面具,
10444,1,いしずえのめん,
10444,3,주춧돌의가면,
10444,4,礎石面具,
10444,5,Masque de la Pierre,
10444,6,Fundamentmaske,
10444,7,Máscara Cimiento,
10444,8,Maschera Fondamenta,
10444,9,Cornerstone Mask,
10444,11,いしずえのめん,
10444,12,礎石面具,
10445,1,テラスタルフォルム,
10445,5,Forme Téracristal,
10445,6,Terakristall-Form,
10445,7,Forma teracristal,
10445,8,Forma Teracristal,
10445,9,Terastal Form,
10445,11,テラスタルフォルム,
10446,1,ステラフォルム,
10446,6,Stellarform,
10446,7,Forma astral,
10446,9,Stellar Form,
10446,11,ステラフォルム,
10447,1,タカイモノのすがた,
10447,3,알짜배기의 모습,
10447,4,高檔貨的樣子,
10447,5,Forme Onéreuse,
10447,6,Kostbarkeitsform,
10447,7,Forma Opulenta,
10447,8,Forma Pregiata,
10447,9,Artisan Form,
10447,11,タカイモノのすがた,
10447,12,高档货的样子,
10448,1,ケッサクのすがた,
10448,3,걸작의 모습,
10448,4,傑作的樣子,
10448,5,Forme Exceptionnelle,
10448,6,Edle Form,
10448,7,Forma Exquisita,
10448,8,Forma Eccezionale,
10448,9,Masterpiece Form,
10448,11,ケッサクのすがた,
10448,12,杰作的样子,

1 pokemon_form_id local_language_id form_name pokemon_name
507 1008 1 コンプリートモード
508 1008 9 Ultimate Mode
509 1008 11 コンプリートモード
510 1012 1 マガイモノのすがた
511 1012 3 가짜배기의 모습
512 1012 4 冒牌貨的樣子
513 1012 5 Forme Imitation
514 1012 6 Imitationsform
515 1012 7 Forma Fraudulenta
516 1012 8 Forma Taroccata
517 1012 9 Counterfeit Form
518 1012 11 マガイモノのすがた
519 1012 12 高檔貨的樣子
520 1013 1 ボンサクのすがた
521 1013 3 범작의 모습
522 1013 4 凡作的樣子
523 1013 5 Forme Médiocre
524 1013 6 Simple Form
525 1013 7 Forma Mediocre
526 1013 8 Forma Dozzinale
527 1013 9 Unremarkable Form
528 1013 11 ボンサクのすがた
529 1013 12 凡作的样子
530 1017 1 みどりのめん
531 1017 3 벽록의가면
532 1017 4 碧草面具
533 1017 5 Masque Turquoise
534 1017 6 Türkisgrüne Maske
535 1017 7 Máscara Turquesa
536 1017 8 Maschera Turchese
537 1017 9 Teal Mask
538 1017 11 みどりのめん
539 1017 12 碧草面具
540 1024 1 ノーマルフォルム
541 1024 5 Forme Normale
542 1024 7 Forma normal
543 1024 8 Forma Normale
544 1024 9 Normal Form
545 1024 11 ノーマルフォルム
546 10001 1
547 10001 3 B
548 10001 5 B Zarbi B
3564 10440 1 グライドモード
3565 10440 9 Glide Mode
3566 10440 11 グライドモード
3567 10441 1 アカツキ
3568 10441 3 붉은 달
3569 10441 4 赫月
3570 10441 5 Lune Vermeille
3571 10441 6 Blutmond
3572 10441 7 Luna Carmesí
3573 10441 8 Luna Cremisi
3574 10441 9 Bloodmoon
3575 10441 11 アカツキ
3576 10441 12 赫月
3577 10442 1 いどのめん
3578 10442 3 우물의가면
3579 10442 4 水井面具
3580 10442 5 Masque du Puits
3581 10442 6 Brunnenmaske
3582 10442 7 Máscara Fuente
3583 10442 8 Maschera Pozzo
3584 10442 9 Wellspring Mask
3585 10442 11 いどのめん
3586 10442 12 水井面具
3587 10443 1 かまどのめん
3588 10443 3 화덕의가면
3589 10443 4 火灶面具
3590 10443 5 Masque du Fourneau
3591 10443 6 Ofenmaske
3592 10443 7 Máscara Horno
3593 10443 8 Maschera Focolare
3594 10443 9 Hearthflame Mask
3595 10443 11 かまどのめん
3596 10443 12 火灶面具
3597 10444 1 いしずえのめん
3598 10444 3 주춧돌의가면
3599 10444 4 礎石面具
3600 10444 5 Masque de la Pierre
3601 10444 6 Fundamentmaske
3602 10444 7 Máscara Cimiento
3603 10444 8 Maschera Fondamenta
3604 10444 9 Cornerstone Mask
3605 10444 11 いしずえのめん
3606 10444 12 礎石面具
3607 10445 1 テラスタルフォルム
3608 10445 5 Forme Téracristal
3609 10445 6 Terakristall-Form
3610 10445 7 Forma teracristal
3611 10445 8 Forma Teracristal
3612 10445 9 Terastal Form
3613 10445 11 テラスタルフォルム
3614 10446 1 ステラフォルム
3615 10446 6 Stellarform
3616 10446 7 Forma astral
3617 10446 9 Stellar Form
3618 10446 11 ステラフォルム
3619 10447 1 タカイモノのすがた
3620 10447 3 알짜배기의 모습
3621 10447 4 高檔貨的樣子
3622 10447 5 Forme Onéreuse
3623 10447 6 Kostbarkeitsform
3624 10447 7 Forma Opulenta
3625 10447 8 Forma Pregiata
3626 10447 9 Artisan Form
3627 10447 11 タカイモノのすがた
3628 10447 12 高档货的样子
3629 10448 1 ケッサクのすがた
3630 10448 3 걸작의 모습
3631 10448 4 傑作的樣子
3632 10448 5 Forme Exceptionnelle
3633 10448 6 Edle Form
3634 10448 7 Forma Exquisita
3635 10448 8 Forma Eccezionale
3636 10448 9 Masterpiece Form
3637 10448 11 ケッサクのすがた
3638 10448 12 杰作的样子

View file

@ -1007,8 +1007,23 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau
1006,iron-valiant,,1006,25,1,0,0,1,1352
1007,koraidon-apex-build,apex-build,1007,25,1,0,0,1,1357
1008,miraidon-ultimate-mode,ultimate-mode,1008,25,1,0,0,1,1358
1009,walking-wake,walking-wake,1009,25,1,0,0,1,1370
1010,iron-leaves,iron-leaves,1010,25,1,0,0,1,1371
1009,walking-wake,,1009,25,1,0,0,1,1370
1010,iron-leaves,,1010,25,1,0,0,1,1371
1011,dipplin,,1011,26,1,0,0,1,1373
1012,poltchageist-counterfeit,counterfeit,1012,26,1,0,0,1,1374
1013,sinistcha-unremarkable,unremarkable,1013,26,1,0,0,1,1376
1014,okidogi,,1014,26,1,0,0,1,1378
1015,munkidori,,1015,26,1,0,0,1,1379
1016,fezandipiti,,1016,26,1,0,0,1,1380
1017,ogerpon,,1017,26,1,0,0,1,1381
1018,archaludon,,1018,27,1,0,0,1,1385
1019,hydrapple,,1019,27,1,0,0,1,1386
1020,gouging-fire,,1020,27,1,0,0,1,1387
1021,raging-bolt,,1021,27,1,0,0,1,1388
1022,iron-boulder,,1022,27,1,0,0,1,1389
1023,iron-crown,,1023,27,1,0,0,1,1390
1024,terapagos,,1024,27,1,0,0,1,1391
1025,pecharunt,,1025,27,1,0,0,1,1394
10001,unown-b,b,201,3,0,0,0,2,299
10002,unown-c,c,201,3,0,0,0,3,300
10003,unown-d,d,201,3,0,0,0,4,301
@ -1406,27 +1421,27 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau
10395,urshifu-single-strike-gmax,gmax,10226,20,1,1,0,1,1281
10396,urshifu-rapid-strike-gmax,gmax,10227,20,1,1,0,1,1282
10397,toxtricity-low-key-gmax,gmax,10228,20,1,1,0,1,1283
10398,growlithe-hisui,hisui,10229,24,1,0,0,1,1284
10399,arcanine-hisui,hisui,10230,24,1,0,0,1,1285
10400,voltorb-hisui,hisui,10231,24,1,0,0,1,1286
10401,electrode-hisui,hisui,10232,24,1,0,0,1,1287
10402,typhlosion-hisui,hisui,10233,24,1,0,0,1,1288
10403,qwilfish-hisui,hisui,10234,24,1,0,0,1,1289
10404,sneasel-hisui,hisui,10235,24,1,0,0,1,1290
10405,samurott-hisui,hisui,10236,24,1,0,0,1,1291
10406,lilligant-hisui,hisui,10237,24,1,0,0,1,1292
10407,zorua-hisui,hisui,10238,24,1,0,0,1,1293
10408,zoroark-hisui,hisui,10239,24,1,0,0,1,1294
10409,braviary-hisui,hisui,10240,24,1,0,0,1,1295
10410,sliggoo-hisui,hisui,10241,24,1,0,0,1,1296
10411,goodra-hisui,hisui,10242,24,1,0,0,1,1297
10412,avalugg-hisui,hisui,10243,24,1,0,0,1,1298
10413,decidueye-hisui,hisui,10244,24,1,0,0,1,1299
10414,dialga-origin,origin,10245,24,1,0,0,1,1300
10415,palkia-origin,origin,10246,24,1,0,0,1,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
10398,growlithe-hisui,hisui,10229,24,1,0,0,2,1284
10399,arcanine-hisui,hisui,10230,24,1,0,0,2,1285
10400,voltorb-hisui,hisui,10231,24,1,0,0,2,1286
10401,electrode-hisui,hisui,10232,24,1,0,0,2,1287
10402,typhlosion-hisui,hisui,10233,24,1,0,0,2,1288
10403,qwilfish-hisui,hisui,10234,24,1,0,0,2,1289
10404,sneasel-hisui,hisui,10235,24,1,0,0,2,1290
10405,samurott-hisui,hisui,10236,24,1,0,0,2,1291
10406,lilligant-hisui,hisui,10237,24,1,0,0,2,1292
10407,zorua-hisui,hisui,10238,24,1,0,0,2,1293
10408,zoroark-hisui,hisui,10239,24,1,0,0,2,1294
10409,braviary-hisui,hisui,10240,24,1,0,0,2,1295
10410,sliggoo-hisui,hisui,10241,24,1,0,0,2,1296
10411,goodra-hisui,hisui,10242,24,1,0,0,2,1297
10412,avalugg-hisui,hisui,10243,24,1,0,0,2,1298
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,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
@ -1449,3 +1464,11 @@ id,identifier,form_identifier,pokemon_id,introduced_in_version_group_id,is_defau
10438,miraidon-drive-mode,drive-mode,10269,25,0,0,0,3,1324
10439,miraidon-aquatic-mode,aquatic-mode,10270,25,0,0,0,4,1325
10440,miraidon-glide-mode,glide-mode,10271,25,0,0,0,5,1326
10441,ursaluna-bloodmoon,bloodmoon,10272,26,0,0,0,2,1372
10442,ogerpon-wellspring-mask,wellspring-mask,10273,26,0,0,0,2,1382
10443,ogerpon-hearthflame-mask,hearthflame-mask,10274,26,0,0,0,3,1383
10444,ogerpon-cornerstone-mask,cornerstone-mask,10275,26,0,0,0,4,1384
10445,terapagos-terastal,terastal,10276,27,0,1,0,2,1392
10446,terapagos-stellar,stellar,10277,27,0,1,0,3,1393
10447,poltchageist-artisan,artisan,1012,26,0,0,0,2,1375
10448,sinistcha-masterpiece,masterpiece,1013,26,0,0,0,2,1377

1 id identifier form_identifier pokemon_id introduced_in_version_group_id is_default is_battle_only is_mega form_order order
1007 1006 iron-valiant 1006 25 1 0 0 1 1352
1008 1007 koraidon-apex-build apex-build 1007 25 1 0 0 1 1357
1009 1008 miraidon-ultimate-mode ultimate-mode 1008 25 1 0 0 1 1358
1010 1009 walking-wake walking-wake 1009 25 1 0 0 1 1370
1011 1010 iron-leaves iron-leaves 1010 25 1 0 0 1 1371
1012 1011 dipplin 1011 26 1 0 0 1 1373
1013 1012 poltchageist-counterfeit counterfeit 1012 26 1 0 0 1 1374
1014 1013 sinistcha-unremarkable unremarkable 1013 26 1 0 0 1 1376
1015 1014 okidogi 1014 26 1 0 0 1 1378
1016 1015 munkidori 1015 26 1 0 0 1 1379
1017 1016 fezandipiti 1016 26 1 0 0 1 1380
1018 1017 ogerpon 1017 26 1 0 0 1 1381
1019 1018 archaludon 1018 27 1 0 0 1 1385
1020 1019 hydrapple 1019 27 1 0 0 1 1386
1021 1020 gouging-fire 1020 27 1 0 0 1 1387
1022 1021 raging-bolt 1021 27 1 0 0 1 1388
1023 1022 iron-boulder 1022 27 1 0 0 1 1389
1024 1023 iron-crown 1023 27 1 0 0 1 1390
1025 1024 terapagos 1024 27 1 0 0 1 1391
1026 1025 pecharunt 1025 27 1 0 0 1 1394
1027 10001 unown-b b 201 3 0 0 0 2 299
1028 10002 unown-c c 201 3 0 0 0 3 300
1029 10003 unown-d d 201 3 0 0 0 4 301
1421 10395 urshifu-single-strike-gmax gmax 10226 20 1 1 0 1 1281
1422 10396 urshifu-rapid-strike-gmax gmax 10227 20 1 1 0 1 1282
1423 10397 toxtricity-low-key-gmax gmax 10228 20 1 1 0 1 1283
1424 10398 growlithe-hisui hisui 10229 24 1 0 0 1 2 1284
1425 10399 arcanine-hisui hisui 10230 24 1 0 0 1 2 1285
1426 10400 voltorb-hisui hisui 10231 24 1 0 0 1 2 1286
1427 10401 electrode-hisui hisui 10232 24 1 0 0 1 2 1287
1428 10402 typhlosion-hisui hisui 10233 24 1 0 0 1 2 1288
1429 10403 qwilfish-hisui hisui 10234 24 1 0 0 1 2 1289
1430 10404 sneasel-hisui hisui 10235 24 1 0 0 1 2 1290
1431 10405 samurott-hisui hisui 10236 24 1 0 0 1 2 1291
1432 10406 lilligant-hisui hisui 10237 24 1 0 0 1 2 1292
1433 10407 zorua-hisui hisui 10238 24 1 0 0 1 2 1293
1434 10408 zoroark-hisui hisui 10239 24 1 0 0 1 2 1294
1435 10409 braviary-hisui hisui 10240 24 1 0 0 1 2 1295
1436 10410 sliggoo-hisui hisui 10241 24 1 0 0 1 2 1296
1437 10411 goodra-hisui hisui 10242 24 1 0 0 1 2 1297
1438 10412 avalugg-hisui hisui 10243 24 1 0 0 1 2 1298
1439 10413 decidueye-hisui hisui 10244 24 1 0 0 1 2 1299
1440 10414 dialga-origin origin 10245 24 1 0 0 1 2 1300
1441 10415 palkia-origin origin 10246 24 1 0 0 1 2 1301
1442 10416 basculin-white-striped white-striped 10247 24 1 0 0 1 3 1302
1443 10417 basculegion-female female 10248 24 1 0 0 1 2 1303
1444 10418 enamorus-therian therian 10249 24 1 0 0 1 2 1304
1445 10419 tauros-paldea-combat-breed paldea-combat-breed 10250 25 0 0 0 2 1305
1446 10420 tauros-paldea-blaze-breed paldea-blaze-breed 10251 25 0 0 0 3 1306
1447 10421 tauros-paldea-aqua-breed paldea-aqua-breed 10252 25 0 0 0 4 1307
1464 10438 miraidon-drive-mode drive-mode 10269 25 0 0 0 3 1324
1465 10439 miraidon-aquatic-mode aquatic-mode 10270 25 0 0 0 4 1325
1466 10440 miraidon-glide-mode glide-mode 10271 25 0 0 0 5 1326
1467 10441 ursaluna-bloodmoon bloodmoon 10272 26 0 0 0 2 1372
1468 10442 ogerpon-wellspring-mask wellspring-mask 10273 26 0 0 0 2 1382
1469 10443 ogerpon-hearthflame-mask hearthflame-mask 10274 26 0 0 0 3 1383
1470 10444 ogerpon-cornerstone-mask cornerstone-mask 10275 26 0 0 0 4 1384
1471 10445 terapagos-terastal terastal 10276 27 0 1 0 2 1392
1472 10446 terapagos-stellar stellar 10277 27 0 1 0 3 1393
1473 10447 poltchageist-artisan artisan 1012 26 0 0 0 2 1375
1474 10448 sinistcha-masterpiece masterpiece 1013 26 0 0 0 2 1377

View file

@ -1,13 +1,17 @@
pokemon_move_method_id,local_language_id,name,description
1,5,Montée de niveau,"Appris lorsquun Pokémon atteint un certain niveau."
1,6,Level up,"Wird gelernt, wenn ein Pokémon ein bestimmtes Level erreicht."
1,7,Nivel,Se aprende cuando un pokemon alcanza un cierto nivel.
1,9,Level up,Learned when a Pokémon reaches a certain level.
2,5,Œuf,"Apparaît à léclosion dun œuf de Pokémon, si le père connaît ce mouvement."
2,6,Ei,"Erscheint bei einem frisch geschlüpften Pokémon, wenn der Vater die selbe Fähigkeit hatte."
2,7,Huevo,"Aparece en un Pokémon recién nacido, si el padre tuvo el mismo movimiento."
2,9,Egg,"Appears on a newly-hatched Pokémon, if the father had the same move."
3,5,Enseigné,"Enseigné par un PNJ"
3,6,Tutor,Kann jederzeit von einem NPC erlernt werden.
3,7,Tutor, Puede ser enseñado en cualquier momento por un NPC.
3,9,Tutor,Can be taught at any time by an NPC.
4,5,Capsule,"Peut être appris nimporte quand par une CT ou une CS."
4,6,Maschine,Kann jederzeit durch das benutzen eines TM oder VM erlernt werden.
4,7,Máquina,Se puede enseñar en cualquier momento usando una MT o MO.
4,9,Machine,Can be taught at any time by using a TM or HM.

1 pokemon_move_method_id local_language_id name description
2 1 5 Montée de niveau Appris lorsqu’un Pokémon atteint un certain niveau.
3 1 6 Level up Wird gelernt, wenn ein Pokémon ein bestimmtes Level erreicht.
4 1 7 Nivel Se aprende cuando un pokemon alcanza un cierto nivel.
5 1 9 Level up Learned when a Pokémon reaches a certain level.
6 2 5 Œuf Apparaît à l’éclosion d’un œuf de Pokémon, si le père connaît ce mouvement.
7 2 6 Ei Erscheint bei einem frisch geschlüpften Pokémon, wenn der Vater die selbe Fähigkeit hatte.
8 2 7 Huevo Aparece en un Pokémon recién nacido, si el padre tuvo el mismo movimiento.
9 2 9 Egg Appears on a newly-hatched Pokémon, if the father had the same move.
10 3 5 Enseigné Enseigné par un PNJ
11 3 6 Tutor Kann jederzeit von einem NPC erlernt werden.
12 3 7 Tutor Puede ser enseñado en cualquier momento por un NPC.
13 3 9 Tutor Can be taught at any time by an NPC.
14 4 5 Capsule Peut être appris n’importe quand par une CT ou une CS.
15 4 6 Maschine Kann jederzeit durch das benutzen eines TM oder VM erlernt werden.
16 4 7 Máquina Se puede enseñar en cualquier momento usando una MT o MO.
17 4 9 Machine Can be taught at any time by using a TM or HM.

File diff suppressed because it is too large Load diff

View file

@ -1009,3 +1009,18 @@ id,identifier,generation_id,evolves_from_species_id,evolution_chain_id,color_id,
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,

1 id identifier generation_id evolves_from_species_id evolution_chain_id color_id shape_id habitat_id gender_rate capture_rate base_happiness is_baby hatch_counter has_gender_differences growth_rate_id forms_switchable is_legendary is_mythical order conquest_order
1009 1008 miraidon 9 536 2 -1 3 0 0 50 0 1 0 1 0 999
1010 1009 walking-wake 9 537 2 -1 5 0 0 50 0 1 0 0 0 1011
1011 1010 iron-leaves 9 538 5 -1 5 0 0 50 0 1 0 0 0 1012
1012 1011 dipplin 9 840 442 5 -1 45 0 0 20 0 1 0 0 0 1013
1013 1012 poltchageist 9 539 5 -1 120 0 0 50 0 1 0 0 0 1014
1014 1013 sinistcha 9 1012 539 5 -1 60 0 0 50 0 1 0 0 0 1015
1015 1014 okidogi 9 540 1 -1 3 0 0 50 0 1 0 1 0 1016
1016 1015 munkidori 9 541 1 -1 3 0 0 50 0 1 0 1 0 1017
1017 1016 fezandipiti 9 542 1 -1 3 0 0 50 0 1 0 1 0 1018
1018 1017 ogerpon 9 543 5 -1 5 0 0 50 0 1 0 1 0 1019
1019 1018 archaludon 9 884 465 9 4 10 50 0 30 0 2 0 0 0 1020
1020 1019 hydrapple 9 1011 442 5 4 10 50 0 20 0 5 0 0 0 1021
1021 1020 gouging-fire 9 544 3 -1 10 0 0 50 0 1 0 0 0 1022
1022 1021 raging-bolt 9 545 10 -1 10 0 0 50 0 1 0 0 0 1023
1023 1022 iron-boulder 9 547 4 -1 10 0 0 50 0 1 0 0 0 1024
1024 1023 iron-crown 9 546 2 -1 10 0 0 50 0 1 0 0 0 1025
1025 1024 terapagos 9 548 2 -1 255 50 0 5 0 1 0 1 0 1026
1026 1025 pecharunt 9 549 7 -1 3 0 0 20 0 1 0 0 1 1027

View file

@ -183366,3 +183366,209 @@ nickname ”sea fiend.” It slurps up poison to nourish itself."
905,39,9,"When it flies to this land from across the sea, the bitter winter
comes to an end. According to legend, this Pokémon's love
gives rise to the budding of fresh life across Hisui."
906,40,9,"Its fluffy fur is similar in composition to plants. This Pokémon frequently washes its face to keep it from drying out."
906,41,9,"The sweet scent its body gives off mesmerizes those around it. The scent grows stronger when this Pokémon is in the sun."
907,40,9,"Floragato deftly wields the vine hidden beneath its long fur, slamming the hard flower bud against its opponents."
907,41,9,"The hardness of Floragatos fur depends on the Pokémons mood. When Floragato is prepared to battle, its fur becomes pointed and needle sharp."
908,40,9,"This Pokémon uses the reflective fur lining its cape to camouflage the stem of its flower, creating the illusion that the flower is floating."
908,41,9,"With skillful misdirection, it rigs foes with pollen-packed flower bombs. Meowscarada sets off the bombs before its foes realize whats going on."
909,40,9,"It lies on warm rocks and uses the heat absorbed by its square-shaped scales to create fire energy."
909,41,9,"Its flame sac is small, so energy is always leaking out. This energy is released from the dent atop Fuecocos head and flickers to and fro."
910,40,9,"The combination of Crocalors fire energy and overflowing vitality has caused an egg-shaped fireball to appear on the Pokémons head."
910,41,9,"The valve in Crocalors flame sac is closely connected to its vocal cords. This Pokémon utters a guttural cry as it spews flames every which way."
911,40,9,"The fiery bird changes shape when Skeledirge sings. Rumor has it that the bird was born when the fireball on Skeledirges head gained a soul."
911,41,9,"Skeledirges gentle singing soothes the souls of all that hear it. It burns its enemies to a crisp with flames of over 5,400 degrees Fahrenheit."
912,40,9,This Pokémon migrated to Paldea from distant lands long ago. The gel secreted by its feathers repels water and grime."
912,41,9,"Its strong legs let it easily swim around in even fast-flowing rivers. It likes to keep things tidy and is prone to overthinking things."
913,40,9,"These Pokémon constantly run through shallow waters to train their legs, then compete with each other to see which of them kicks most gracefully."
913,41,9,"The hardworking Quaxwell observes people and Pokémon from various regions and incorporates their movements into its own dance routines."
914,40,9,"A single kick from a Quaquaval can send a truck rolling. This Pokémon uses its powerful legs to perform striking dances from far-off lands."
914,41,9,"Dancing in ways that evoke far-away places, this Pokémon mesmerizes all that see it. Flourishes of its decorative water feathers slice into its foes."
915,40,9,"It searches for food all day. It possesses a keen sense of smell but doesnt use it for anything other than foraging."
915,41,9,"This Pokémon spurns all but the finest of foods. Its body gives off an herblike scent that bug Pokémon detest."
916,40,9,"Oinkologne is proud of its fine, glossy skin. It emits a concentrated scent from the tip of its tail."
916,41,9,"It entrances female Pokémon with the sweet, alluring scent that wafts from all over its body."
917,40,9,"The ball of threads wrapped around its body is elastic enough to deflect the scythes of Scyther, this Pokémons natural enemy."
917,41,9,"The thread it secretes from its rear is as strong as wire. The secret behind the threads strength is the topic of ongoing research."
918,40,9,"It clings to branches and ceilings using its threads and moves without a sound. It takes out its prey before the prey even notices it."
918,41,9,"Spidops covers its territory in tough, sticky threads to set up traps for intruders."
919,40,9,"It has its third set of legs folded up. When its in a tough spot, this Pokémon jumps over 30 feet using the strength of its legs."
919,41,9,"Its highly skilled at a fighting style in which it uses its jumping capabilities to dodge incoming attacks while also dealing damage to opponents."
920,40,9,"When it decides to fight all out, it stands on its previously folded legs to enter Showdown Mode. It neutralizes its enemies in short order."
920,41,9,"It uses its normally folded third set of legs when in Showdown Mode. This places a huge burden on its body, so it cant stay in this mode for long."
921,40,9,"It has underdeveloped electric sacs on its cheeks. These sacs can produce electricity only if Pawmi rubs them furiously with the pads on its forepaws."
921,41,9,"The pads of its paws are electricity-discharging organs. Pawmi fires electricity from its forepaws while standing unsteadily on its hind legs."
922,40,9,"When its group is attacked, Pawmo is the first to leap into battle, defeating enemies with a fighting technique that utilizes electric shocks."
922,41,9,"Pawmo uses a unique fighting technique in which it uses its forepaws to strike foes and zap them with electricity from its paw pads simultaneously."
923,40,9,"This Pokémon normally is slow to react, but once it enters battle, it will strike down its enemies with lightning-fast movements."
923,41,9,"Pawmots fluffy fur acts as a battery. It can store the same amount of electricity as an electric car."
924,40,9,"Exhibiting great teamwork, they use their incisors to cut pieces out of any material that might be useful for a nest, then make off with them."
924,41,9,"The pair sticks together no matter what. They split any food they find exactly in half and then eat it together."
925,40,9,"The two little ones just appeared one day. The group might be a family of related Pokémon, but nobody knows for sure."
925,41,9,"The larger pair protects the little ones during battles. When facing strong opponents, the whole group will join the fight."
926,40,9,"This Pokémon is smooth and moist to the touch. Yeast in Fidoughs breath induces fermentation in the Pokémons vicinity."
926,41,9,"The yeast in Fidoughs breath is useful for cooking, so this Pokémon has been protected by people since long ago."
927,40,9,"The pleasant aroma that emanates from this Pokémons body helps wheat grow, so Dachsbun has been treasured by farming villages."
927,41,9,"The surface of this Pokémons skin hardens when exposed to intense heat, and its body has an appetizing aroma."
928,40,9,"It protects itself from enemies by emitting oil from the fruit on its head. This oil is bitter and astringent enough to make someone flinch."
928,41,9,"This Pokémon converts nutrients into oil, which it stores in the fruit on its head. It can easily go a whole week without eating or drinking."
929,40,9,"Dolliv shares its tasty, fresh-scented oil with others. This species has coexisted with humans since times long gone."
929,41,9,"It basks in the sun to its hearts content until the fruits on its head ripen. After that, Dolliv departs from human settlements and goes on a journey."
930,40,9,"This calm Pokémon is very compassionate. It will share its delicious, nutrient-rich oil with weakened Pokémon."
930,41,9,"This Pokémon drives back enemies by launching its rich, aromatic oil at them with enough force to smash a boulder."
931,40,9,"These Pokémon prefer to live in cities. They form flocks based on the color of their feathers, and they fight over territory."
931,41,9,"Green-feathered flocks hold the most sway. When theyre out searching for food in the mornings and evenings, it gets very noisy."
932,40,9,"It was born in a layer of rock salt deep under the earth. This species was particularly treasured in the old days, as they would share precious salt."
932,41,9,"The ground scrapes its body as it travels, causing it to leave salt behind. Salt is constantly being created and replenished inside Naclis body."
933,40,9,"This Pokémon dry cures its prey by spraying salt over them. The curing process steals away the water in the preys body."
933,41,9,"It compresses rock salt inside its body and shoots out hardened salt pellets with enough force to perforate an iron sheet."
934,40,9,"Garganacl will rub its fingertips together and sprinkle injured Pokémon with salt. Even severe wounds will promptly heal afterward."
934,41,9,"Many Pokémon gather around Garganacl, hoping to lick at its mineral-rich salt."
935,40,9,"Burnt charcoal came to life and became a Pokémon. Possessing a fiery fighting spirit, Charcadet will battle even tough opponents."
935,41,9,"Its firepower increases when it fights, reaching over 1,800 degrees Fahrenheit. It likes berries that are rich in fat."
936,40,9,"Armarouge evolved through the use of a set of armor that belonged to a distinguished warrior. This Pokémon is incredibly loyal."
936,41,9,"This Pokémon clads itself in armor that has been fortified by psychic and fire energy, and it shoots blazing fireballs."
937,40,9,"The fiery blades on its arms burn fiercely with the lingering resentment of a sword wielder who fell before accomplishing their goal."
937,41,9,"An old set of armor steeped in grudges caused this Pokémons evolution. Ceruledge cuts its enemies to pieces without mercy."
938,40,9,"Tadbulb shakes its tail to generate electricity. If it senses danger, it will make its head blink on and off to alert its allies."
938,41,9,"It floats using the electricity stored in its body. When thunderclouds are around, Tadbulb will float higher off the ground."
939,40,9,"When this Pokémon expands and contracts its wobbly body, the belly-button dynamo in its stomach produces a huge amount of electricity."
939,41,9,"What appear to be eyeballs are actually organs for discharging the electricity generated by Bellibolts belly-button dynamo."
940,40,9,"When its wings catch the wind, the bones within produce electricity. This Pokémon dives into the ocean, catching prey by electrocuting them."
940,41,9,"These Pokémon make their nests on coastal cliffs. The nests have a strange, crackling texture, and theyre a popular delicacy."
941,40,9,"Kilowattrel inflates its throat sac to amplify its electricity. By riding the wind, this Pokémon can fly over 430 miles in a day."
941,41,9,"It uses its throat sac to store electricity generated by its wings. Theres hardly any oil in its feathers, so it is a poor swimmer."
942,40,9,"It always scowls in an attempt to make opponents take it seriously, but even crying children will burst into laughter when they see Maschiffs face."
942,41,9,"Its well-developed jaw and fangs are strong enough to crunch through boulders, and its thick fat makes for an excellent defense."
943,40,9,"This Pokémon can store energy in its large dewlap. Mabosstiff unleashes this energy all at once to blow away enemies."
943,41,9,"Mabosstiff loves playing with children. Though usually gentle, it takes on an intimidating look when protecting its family."
944,40,9,"Though usually a mellow Pokémon, it will sink its sharp, poison-soaked front teeth into any that anger it, causing paralysis in the object of its ire."
944,41,9,"To keep enemies away from its territory, it paints markings around its nest using a poisonous liquid that has an acrid odor."
945,40,9,"The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests."
945,41,9,"Each Grafaiai paints its own individual pattern, and it will paint that same pattern over and over again throughout its life."
946,40,9,"A soul unable to move on to the afterlife was blown around by the wind until it got tangled up with dried grass and became a Pokémon."
946,41,9,"Not even Bramblin knows where it is headed as it tumbles across the wilderness, blown by the wind. It loathes getting wet."
947,40,9,"It will open the branches of its head to envelop its prey. Once it absorbs all the life energy it needs, it expels the prey and discards it."
947,41,9,"Brambleghast wanders around arid regions. On rare occasions, mass outbreaks of these Pokémon will bury an entire town."
948,40,9,"Toedscool lives in muggy forests. The flaps that fall from its body are chewy and very delicious."
948,41,9,"Though it looks like Tentacool, Toedscool is a completely different species. Its legs may be thin, but it can run at a speed of 30 mph."
949,40,9,"These Pokémon gather into groups and form colonies deep within forests. They absolutely hate it when strangers approach."
949,41,9,"It coils its 10 tentacles around prey and sucks out their nutrients, causing the prey pain. The folds along the rim of its head are a popular delicacy."
950,40,9,"Klawf hangs upside-down from cliffs, waiting for prey. But Klawf cant remain in this position for long because its blood rushes to its head."
950,41,9,"This Pokémon lives on sheer cliffs. It sidesteps opponents attacks, then lunges for their weak spots with its claws."
951,40,9,"The more sunlight this Pokémon bathes in, the more spicy chemicals are produced by its body, and thus the spicier its moves become."
951,41,9,"Traditional Paldean dishes can be extremely spicy because they include the shed front teeth of Capsakid among their ingredients."
952,40,9,"The red head converts spicy chemicals into fire energy and blasts the surrounding area with a super spicy stream of flame."
952,41,9,"The green head has turned vicious due to the spicy chemicals stimulating its brain. Once it goes on a rampage, there is no stopping it."
953,40,9,"This Pokémon creates a mud ball by mixing sand and dirt with psychic energy. It treasures its mud ball more than its own life."
953,41,9,"It rolls its mud ball around while the energy it needs for evolution matures. Eventually the time comes for it to evolve."
954,40,9,"The body that supports the ball barely moves. Therefore, it is thought that the true body of this Pokémon is actually inside the ball."
954,41,9,"An infant sleeps inside the ball. Rabsca rolls the ball soothingly with its legs to ensure the infant sleeps comfortably."
955,40,9,"Flittles toes levitate about half an inch above the ground because of the psychic power emitted from the frills on the Pokémons belly."
955,41,9,"It spends its time running around wastelands. If anyone steals its beloved berries, it will chase them down and exact its revenge."
956,40,9,"It immobilizes opponents by bathing them in psychic power from its large eyes. Despite its appearance, it has a vicious temperament."
956,41,9,"It emits psychic power from the gaps between its multicolored frills and sprints at speeds greater than 120 mph."
957,40,9,"It swings its handmade hammer around to protect itself, but the hammer is often stolen by Pokémon that eat metal."
957,41,9,"This Pokémon pounds iron scraps together to make a hammer. It will remake the hammer again and again until its satisfied with the result."
958,40,9,"This Pokémon will attack groups of Pawniard and Bisharp, gathering metal from them in order to create a large and sturdy hammer."
958,41,9,"These Pokémon make their homes in piles of scrap metal. They test the strength of each others hammers by smashing them together."
959,40,9,"This intelligent Pokémon has a very daring disposition. It knocks rocks into the sky with its hammer, aiming for flying Corviknight."
959,41,9,"The hammer tops 220 pounds, yet it gets swung around easily by Tinkaton as it steals whatever it pleases and carries its plunder back home."
960,40,9,"This Pokémon can pick up the scent of a Veluza just over 65 feet away and will hide itself in the sand."
960,41,9,"Though it looks like Diglett, Wiglett is an entirely different species. The resemblance seems to be a coincidental result of environmental adaptation."
961,40,9,"It has a vicious temperament, contrary to what its appearance may suggest. It wraps its long bodies around prey, then drags the prey into its den."
961,41,9,"A variety of fish Pokémon, Wugtrio was once considered to be a regional form of Dugtrio."
962,40,9,"It gathers things up in an apron made from shed feathers added to the Pokémons chest feathers, then drops those things from high places for fun."
962,41,9,"Bombirdier uses the apron on its chest to bundle up food, which it carries back to its nest. It enjoys dropping things that make loud noises."
963,40,9,"It likes playing with others of its kind using the water ring on its tail. It uses ultrasonic waves to sense the emotions of other living creatures."
963,41,9,"Its water ring is made from seawater mixed with a sticky fluid that Finizen secretes from its blowhole."
964,40,9,"This Pokémon changes its appearance if it hears its allies calling for help. Palafin will never show anybody its moment of transformation."
964,41,9,"Its physical capabilities are no different than a Finizens, but when its allies are in danger, it transforms and powers itself up."
965,40,9,"It is said that this Pokémon was born when an unknown poison Pokémon entered and inspirited an engine left at a scrap-processing factory."
965,41,9,"The steel section is Varooms actual body. This Pokémon clings to rocks and converts the minerals within into energy to fuel its activities."
966,40,9,"It creates a gas out of poison and minerals from rocks. It then detonates the gas in its cylinders—now numbering eight—to generate energy."
966,41,9,"Revavroom viciously threatens others with the sound of its exhaust. It sticks its tongue out from its cylindrical mouth and sprays toxic fluids."
967,40,9,"Apparently Cyclizar has been allowing people to ride on its back since ancient times. Depictions of this have been found in 10,000-year-old murals."
967,41,9,"It can sprint at over 70 mph while carrying a human. The riders body heat warms Cyclizars back and lifts the Pokémons spirit."
968,40,9,"When attacked, this Pokémon will wield the tendrils on its body like fists and pelt the opponent with a storm of punches."
968,41,9,"This Pokémon lives in arid deserts. It maintains its metal body by consuming iron from the soil."
969,40,9,"It absorbs nutrients from cave walls. The petals it wears are made of crystallized poison."
969,41,9,"Glimmets toxic mineral crystals look just like flower petals. This Pokémon scatters poisonous powder like pollen to protect itself."
970,40,9,"When this Pokémon detects danger, it will open up its crystalline petals and fire beams from its conical body."
970,41,9,"Glimmoras petals are made of crystallized poison energy. It has recently become evident that these petals resemble Tera Jewels."
971,40,9,"It is said that a dog Pokémon that died in the wild without ever interacting with a human was reborn as this Pokémon."
971,41,9,"This friendly Pokémon doesnt like being alone. Pay it even the slightest bit of attention, and it will follow you forever."
972,40,9,"Houndstone spends most of its time sleeping in graveyards. Among all the dog Pokémon, this one is most loyal to its master."
972,41,9,"A lovingly mourned Pokémon was reborn as Houndstone. It doesnt like anyone touching the protuberance atop its head."
973,40,9,"This Pokémon apparently ties the base of its neck into a knot so that energy stored in its belly does not escape from its beak."
973,41,9,"Thanks to a behavior of theirs known as “synchronizing,” an entire flock of these Pokémon can attack simultaneously in perfect harmony."
974,40,9,"This species left the ocean and began living on land a very long time ago. It seems to be closely related to Wailmer."
974,41,9,"It lives in frigid regions in pods of five or so individuals. It loves the minerals found in snow and ice."
975,40,9,"This Pokémon wanders around snowy, icy areas. It protects its body with powerful muscles and a thick layer of fat under its skin."
975,41,9,"Ice energy builds up in the horn on its upper jaw, causing the horn to reach cryogenic temperatures that freeze its surroundings."
976,40,9,"When Veluza discards unnecessary flesh, its mind becomes honed and its psychic power increases. The spare flesh has a mild but delicious flavor."
976,41,9,"Veluza has excellent regenerative capabilities. It sheds spare flesh from its body to boost its agility, then charges at its prey."
977,40,9,"This Pokémon is a glutton, but its bad at getting food. It teams up with a Tatsugiri to catch prey."
977,41,9,"It treats Tatsugiri like its boss and follows it loyally. Though powerful, Dondozo is apparently not very smart."
978,40,9,"This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside."
978,41,9,"Tatsugiri is an extremely cunning Pokémon. It feigns weakness to lure in prey, then orders its partner to attack."
979,40,9,"When its anger rose beyond a critical point, this Pokémon gained power that is unfettered by the limits of its physical body."
979,41,9,"It imbues its fists with the power of the rage that it kept hidden in its heart. Opponents struck by these imbued fists will be shattered to their core."
980,40,9,"When attacked, this Pokémon will retaliate by sticking thick spines out from its body. Its a risky move that puts everything on the line."
980,41,9,"It lives at the bottom of ponds and swamps. It will carry Wooper on its back and ferry them across water from one shore to the other."
981,40,9,"Now that the brain waves from the head and tail are synced up, the psychic power of this Pokémon is 10 times stronger than Girafarigs."
981,41,9,"The hardened head from the tail protects the head of the main body as Farigiraf whips its long neck around to headbutt enemies."
982,40,9,"This Pokémon uses its hard tail to make its nest by boring holes into bedrock deep underground. The nest can reach lengths of over six miles."
982,41,9,"It drives enemies out of its nest by sucking in enough air to fill its long, narrow lungs, then releasing the air in an intense blast."
983,40,9,"Only a Bisharp that stands above all others in its vast army can evolve into Kingambit."
983,41,9,"Though it commands a massive army in battle, its not skilled at devising complex strategies. It just uses brute strength to keep pushing."
984,40,9,"Sightings of this Pokémon have occurred in recent years. The name Great Tusk was taken from a creature listed in a certain book."
984,41,9,"This creature resembles a mysterious Pokémon that, according to a paranormal magazine, has lived since ancient times."
985,40,9,"There has been only one reported sighting of this Pokémon. It resembles a mysterious creature depicted in an old expedition journal."
985,41,9,"It resembles a mysterious Pokémon described in a paranormal magazine as a Jigglypuff from one billion years ago."
986,40,9,"It is possible that the creature listed as Brute Bonnet in a certain book could actually be this Pokémon."
986,41,9,"It bears a slight resemblance to a Pokémon described in a dubious magazine as a cross between a dinosaur and a mushroom."
987,40,9,"This Pokémon has characteristics similar to those of Flutter Mane, a creature mentioned in a certain book."
987,41,9,"It has similar features to a ghostly pterosaur that was covered in a paranormal magazine, but the two have little else in common."
988,40,9,"This mysterious Pokémon has some similarities to a creature that an old book introduced as Slither Wing."
988,41,9,"This Pokémon somewhat resembles an ancient form of Volcarona that was introduced in a dubious magazine."
989,40,9,"No records exist of this Pokémon being caught. Data is lacking, but the Pokémons traits match up with a creature shown in an expedition journal."
989,41,9,"It slightly resembles a Magneton that lived for 10,000 years and was featured in an article in a paranormal magazine."
990,40,9,"This Pokémon closely resembles a scientific weapon that a paranormal magazine claimed was sent to this planet by aliens."
990,41,9,"Sightings of this Pokémon have occurred in recent years. It resembles a mysterious object described in an old expedition journal."
991,40,9,"Its shape is similar to a robot featured in a paranormal magazine article. The robot was said to have been created by an ancient civilization."
991,41,9,"It resembles a mysterious object mentioned in an old book. There are only two reported sightings of this Pokémon."
992,40,9,"It is very similar to a cyborg covered exclusively by a paranormal magazine. The cyborg was said to be the modified form of a certain athlete."
992,41,9,"This Pokémon shares many similarities with Iron Hands, an object mentioned in a certain expedition journal."
993,40,9,"It resembles a certain Pokémon introduced in a paranormal magazine, described as the offspring of a Hydreigon that fell in love with a robot."
993,41,9,"Its possible that Iron Jugulis, an object described in an old book, may actually be this Pokémon."
994,40,9,"This Pokémon resembles an unknown object described in a paranormal magazine as a UFO sent to observe humanity."
994,41,9,"No records exist of this species being caught. Data is lacking, but the Pokémons traits match up with an object described in an old book."
995,40,9,"It has some similarities to a Pokémon introduced in a dubious magazine as a Tyranitar from one billion years into the future."
995,41,9,"Some of its notable features match those of an object named within a certain expedition journal as Iron Thorns."
996,40,9,"Frigibax absorbs heat through its dorsal fin and converts the heat into ice energy. The higher the temperature, the more energy Frigibax stores."
996,41,9,"This Pokémon lives in forests and craggy areas. Using the power of its dorsal fin, it cools the inside of its nest like a refrigerator."
997,40,9,"Arctibax freezes the air around it, protecting its face with an ice mask and turning its dorsal fin into a blade of ice."
997,41,9,"It attacks with the blade of its frozen dorsal fin by doing a front flip in the air. Arctibaxs strong back and legs allow it to pull off this technique."
998,40,9,"This Pokémon blasts cryogenic air out from its mouth. This air can instantly freeze even liquid-hot lava."
998,41,9,"It launches itself into battle by flipping upside down and spewing frigid air from its mouth. It finishes opponents off with its dorsal blade."
999,40,9,"This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure."
999,41,9,"It lives inside an old treasure chest. Sometimes it gets left in shop corners since no one realizes its actually a Pokémon."
1000,40,9,"Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody."
1000,41,9,"It has a sturdy body made up of stacked coins. Gholdengo overwhelms its enemies by firing coin after coin at them in quick succession."
1001,40,9,"The grudge of a person punished for writing the kings evil deeds upon wooden tablets has clad itself in dead leaves to become a Pokémon."
1001,41,9,"It drains the life-force from vegetation, causing nearby forests to instantly wither and fields to turn barren."
1002,40,9,"This Pokémon can control 100 tons of fallen snow. It plays around innocently by leaping in and out of avalanches it has caused."
1002,41,9,"The hatred of those who perished by the sword long ago has clad itself in snow and become a Pokémon."
1003,40,9,"The fear poured into an ancient ritual vessel has clad itself in rocks and dirt to become a Pokémon."
1003,41,9,"It slowly brings its exceedingly heavy head down upon the ground, splitting the earth open with huge fissures that run over 160 feet deep."
1004,40,9,"It controls flames burning at over 5,400 degrees Fahrenheit. It casually swims through the sea of lava it creates by melting rock and sand."
1004,41,9,"The envy accumulated within curved beads that sparked multiple conflicts has clad itself in fire and become a Pokémon."
1005,40,9,"It is possible that this is the creature listed as Roaring Moon in an expedition journal that still holds many mysteries."
1005,41,9,"According to an article in a dubious magazine, this Pokémon has some connection to a phenomenon that occurs in a certain region."
1006,40,9,"It has some similarities to a mad scientists invention covered in a paranormal magazine."
1006,41,9,"Its possible that this is the object listed as Iron Valiant in a certain expedition journal."
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."
Can't render this file because it is too large.

File diff suppressed because it is too large Load diff

View file

@ -2923,9 +2923,9 @@ pokemon_id,stat_id,base_stat,effort
487,6,90,0
488,1,120,0
488,2,70,0
488,3,120,0
488,3,110,0
488,4,75,0
488,5,130,3
488,5,120,3
488,6,85,0
489,1,80,1
489,2,80,0
@ -5322,13 +5322,13 @@ pokemon_id,stat_id,base_stat,effort
887,5,75,0
887,6,142,3
888,1,92,0
888,2,130,0
888,2,120,0
888,3,115,0
888,4,80,0
888,5,115,0
888,6,138,3
889,1,92,0
889,2,130,0
889,2,120,0
889,3,115,0
889,4,80,0
889,5,115,0
@ -6059,6 +6059,96 @@ pokemon_id,stat_id,base_stat,effort
1010,4,70,0
1010,5,108,0
1010,6,104,0
1011,1,80,0
1011,2,80,0
1011,3,110,2
1011,4,95,0
1011,5,80,0
1011,6,40,0
1012,1,40,0
1012,2,45,0
1012,3,45,0
1012,4,74,1
1012,5,54,0
1012,6,50,0
1013,1,71,0
1013,2,60,0
1013,3,106,0
1013,4,121,2
1013,5,80,0
1013,6,70,0
1014,1,88,0
1014,2,128,3
1014,3,115,0
1014,4,58,0
1014,5,86,0
1014,6,80,0
1015,1,88,0
1015,2,75,0
1015,3,66,0
1015,4,130,3
1015,5,90,0
1015,6,106,0
1016,1,88,0
1016,2,91,0
1016,3,82,0
1016,4,70,0
1016,5,125,3
1016,6,99,0
1017,1,80,0
1017,2,120,3
1017,3,84,0
1017,4,60,0
1017,5,96,0
1017,6,110,0
1018,1,90,0
1018,2,105,0
1018,3,130,3
1018,4,125,0
1018,5,65,0
1018,6,85,0
1019,1,106,0
1019,2,80,0
1019,3,110,0
1019,4,120,3
1019,5,80,0
1019,6,44,0
1020,1,105,0
1020,2,115,0
1020,3,121,3
1020,4,65,0
1020,5,93,0
1020,6,91,0
1021,1,125,0
1021,2,73,0
1021,3,91,0
1021,4,137,3
1021,5,89,0
1021,6,75,0
1022,1,90,0
1022,2,120,0
1022,3,80,0
1022,4,68,0
1022,5,108,0
1022,6,124,3
1023,1,90,0
1023,2,72,0
1023,3,100,0
1023,4,122,3
1023,5,108,0
1023,6,98,0
1024,1,90,0
1024,2,65,0
1024,3,85,1
1024,4,65,0
1024,5,85,0
1024,6,60,0
1025,1,88,0
1025,2,88,0
1025,3,160,3
1025,4,88,0
1025,5,88,0
1025,6,88,0
10001,1,50,0
10001,2,180,2
10001,3,20,0
@ -7182,16 +7272,16 @@ pokemon_id,stat_id,base_stat,effort
10187,5,58,0
10187,6,97,2
10188,1,92,0
10188,2,170,0
10188,2,150,0
10188,3,115,0
10188,4,80,0
10188,5,115,0
10188,6,148,3
10189,1,92,0
10189,2,130,0
10189,3,145,0
10189,2,120,0
10189,3,140,0
10189,4,80,0
10189,5,145,0
10189,5,140,0
10189,6,128,3
10190,1,255,3
10190,2,115,0
@ -7685,3 +7775,39 @@ pokemon_id,stat_id,base_stat,effort
10271,4,135,3
10271,5,115,0
10271,6,135,0
10272,1,113,0
10272,2,70,3
10272,3,120,0
10272,4,135,0
10272,5,65,0
10272,6,52,0
10273,1,80,0
10273,2,120,3
10273,3,84,0
10273,4,60,0
10273,5,96,0
10273,6,110,0
10274,1,80,0
10274,2,120,3
10274,3,84,0
10274,4,60,0
10274,5,96,0
10274,6,110,0
10275,1,80,0
10275,2,120,3
10275,3,84,0
10275,4,60,0
10275,5,96,0
10275,6,110,0
10276,1,95,0
10276,2,95,0
10276,3,110,2
10276,4,105,0
10276,5,110,2
10276,6,85,0
10277,1,95,3
10277,2,95,0
10277,3,110,0
10277,4,105,0
10277,5,110,0
10277,6,85,0

1 pokemon_id stat_id base_stat effort
2923 487 6 90 0
2924 488 1 120 0
2925 488 2 70 0
2926 488 3 120 110 0
2927 488 4 75 0
2928 488 5 130 120 3
2929 488 6 85 0
2930 489 1 80 1
2931 489 2 80 0
5322 887 5 75 0
5323 887 6 142 3
5324 888 1 92 0
5325 888 2 130 120 0
5326 888 3 115 0
5327 888 4 80 0
5328 888 5 115 0
5329 888 6 138 3
5330 889 1 92 0
5331 889 2 130 120 0
5332 889 3 115 0
5333 889 4 80 0
5334 889 5 115 0
6059 1010 4 70 0
6060 1010 5 108 0
6061 1010 6 104 0
6062 1011 1 80 0
6063 1011 2 80 0
6064 1011 3 110 2
6065 1011 4 95 0
6066 1011 5 80 0
6067 1011 6 40 0
6068 1012 1 40 0
6069 1012 2 45 0
6070 1012 3 45 0
6071 1012 4 74 1
6072 1012 5 54 0
6073 1012 6 50 0
6074 1013 1 71 0
6075 1013 2 60 0
6076 1013 3 106 0
6077 1013 4 121 2
6078 1013 5 80 0
6079 1013 6 70 0
6080 1014 1 88 0
6081 1014 2 128 3
6082 1014 3 115 0
6083 1014 4 58 0
6084 1014 5 86 0
6085 1014 6 80 0
6086 1015 1 88 0
6087 1015 2 75 0
6088 1015 3 66 0
6089 1015 4 130 3
6090 1015 5 90 0
6091 1015 6 106 0
6092 1016 1 88 0
6093 1016 2 91 0
6094 1016 3 82 0
6095 1016 4 70 0
6096 1016 5 125 3
6097 1016 6 99 0
6098 1017 1 80 0
6099 1017 2 120 3
6100 1017 3 84 0
6101 1017 4 60 0
6102 1017 5 96 0
6103 1017 6 110 0
6104 1018 1 90 0
6105 1018 2 105 0
6106 1018 3 130 3
6107 1018 4 125 0
6108 1018 5 65 0
6109 1018 6 85 0
6110 1019 1 106 0
6111 1019 2 80 0
6112 1019 3 110 0
6113 1019 4 120 3
6114 1019 5 80 0
6115 1019 6 44 0
6116 1020 1 105 0
6117 1020 2 115 0
6118 1020 3 121 3
6119 1020 4 65 0
6120 1020 5 93 0
6121 1020 6 91 0
6122 1021 1 125 0
6123 1021 2 73 0
6124 1021 3 91 0
6125 1021 4 137 3
6126 1021 5 89 0
6127 1021 6 75 0
6128 1022 1 90 0
6129 1022 2 120 0
6130 1022 3 80 0
6131 1022 4 68 0
6132 1022 5 108 0
6133 1022 6 124 3
6134 1023 1 90 0
6135 1023 2 72 0
6136 1023 3 100 0
6137 1023 4 122 3
6138 1023 5 108 0
6139 1023 6 98 0
6140 1024 1 90 0
6141 1024 2 65 0
6142 1024 3 85 1
6143 1024 4 65 0
6144 1024 5 85 0
6145 1024 6 60 0
6146 1025 1 88 0
6147 1025 2 88 0
6148 1025 3 160 3
6149 1025 4 88 0
6150 1025 5 88 0
6151 1025 6 88 0
6152 10001 1 50 0
6153 10001 2 180 2
6154 10001 3 20 0
7272 10187 5 58 0
7273 10187 6 97 2
7274 10188 1 92 0
7275 10188 2 170 150 0
7276 10188 3 115 0
7277 10188 4 80 0
7278 10188 5 115 0
7279 10188 6 148 3
7280 10189 1 92 0
7281 10189 2 130 120 0
7282 10189 3 145 140 0
7283 10189 4 80 0
7284 10189 5 145 140 0
7285 10189 6 128 3
7286 10190 1 255 3
7287 10190 2 115 0
7775 10271 4 135 3
7776 10271 5 115 0
7777 10271 6 135 0
7778 10272 1 113 0
7779 10272 2 70 3
7780 10272 3 120 0
7781 10272 4 135 0
7782 10272 5 65 0
7783 10272 6 52 0
7784 10273 1 80 0
7785 10273 2 120 3
7786 10273 3 84 0
7787 10273 4 60 0
7788 10273 5 96 0
7789 10273 6 110 0
7790 10274 1 80 0
7791 10274 2 120 3
7792 10274 3 84 0
7793 10274 4 60 0
7794 10274 5 96 0
7795 10274 6 110 0
7796 10275 1 80 0
7797 10275 2 120 3
7798 10275 3 84 0
7799 10275 4 60 0
7800 10275 5 96 0
7801 10275 6 110 0
7802 10276 1 95 0
7803 10276 2 95 0
7804 10276 3 110 2
7805 10276 4 105 0
7806 10276 5 110 2
7807 10276 6 85 0
7808 10277 1 95 3
7809 10277 2 95 0
7810 10277 3 110 0
7811 10277 4 105 0
7812 10277 5 110 0
7813 10277 6 85 0

View file

@ -1522,6 +1522,34 @@ pokemon_id,type_id,slot
1009,16,2
1010,12,1
1010,14,2
1011,12,1
1011,16,2
1012,12,1
1012,8,2
1013,12,1
1013,8,2
1014,4,1
1014,2,2
1015,4,1
1015,14,2
1016,4,1
1016,18,2
1017,12,1
1018,9,1
1018,16,2
1019,12,1
1019,16,2
1020,10,1
1020,16,2
1021,13,1
1021,16,2
1022,6,1
1022,14,2
1023,9,1
1023,14,2
1024,1,1
1025,4,1
1025,8,2
10001,14,1
10002,14,1
10003,14,1
@ -1989,3 +2017,13 @@ pokemon_id,type_id,slot
10270,16,2
10271,13,1
10271,16,2
10272,5,1
10272,1,2
10273,12,1
10273,11,2
10274,12,1
10274,10,2
10275,12,1
10275,6,2
10276,1,1
10277,1,1

1 pokemon_id type_id slot
1522 1009 16 2
1523 1010 12 1
1524 1010 14 2
1525 1011 12 1
1526 1011 16 2
1527 1012 12 1
1528 1012 8 2
1529 1013 12 1
1530 1013 8 2
1531 1014 4 1
1532 1014 2 2
1533 1015 4 1
1534 1015 14 2
1535 1016 4 1
1536 1016 18 2
1537 1017 12 1
1538 1018 9 1
1539 1018 16 2
1540 1019 12 1
1541 1019 16 2
1542 1020 10 1
1543 1020 16 2
1544 1021 13 1
1545 1021 16 2
1546 1022 6 1
1547 1022 14 2
1548 1023 9 1
1549 1023 14 2
1550 1024 1 1
1551 1025 4 1
1552 1025 8 2
1553 10001 14 1
1554 10002 14 1
1555 10003 14 1
2017 10270 16 2
2018 10271 13 1
2019 10271 16 2
2020 10272 5 1
2021 10272 1 2
2022 10273 12 1
2023 10273 11 2
2024 10274 12 1
2025 10274 10 2
2026 10275 12 1
2027 10275 6 2
2028 10276 1 1
2029 10277 1 1

View file

@ -1,41 +1,81 @@
region_id,local_language_id,name
1,1,カントー地方
1,3,관동지방
1,1,カントー
1,3,관동
1,4,關都
1,5,Kanto
1,6,Kanto
1,8,Kanto
1,9,Kanto
2,1,ジョウト地方
2,3,성도지방
1,12,关都
2,1,ジョウト
2,3,성도
2,4,城都
2,5,Johto
2,6,Johto
2,8,Johto
2,9,Johto
3,1,ホウエン地方
3,3,호연지방
2,12,城都
3,1,ホウエン
3,3,호연
3,4,豐緣
3,5,Hoenn
3,6,Hoenn
3,8,Hoenn
3,9,Hoenn
4,1,シンオウ地方
4,3,신오지방
3,12,丰缘
4,1,シンオウ
4,3,신오
4,4,神奧
4,5,Sinnoh
4,6,Sinnoh
4,8,Sinnoh
4,9,Sinnoh
5,1,イッシュ地方
5,3,하나지방
4,12,神奥
5,1,イッシュ
5,3,하나
5,4,合眾
5,5,Unys
5,6,Einall
5,8,Unima
5,9,Unova
6,1,カロス地方
6,3,칼로스지방
5,12,合众
6,1,カロス
6,3,칼로스
6,4,卡洛斯
6,5,Kalos
6,6,Kalos
6,8,Kalos
6,9,Kalos
6,12,卡洛斯
7,1,アローラ
7,3,알로라
7,4,阿羅拉
7,5,Alola
7,6,Alola
7,8,Alola
7,9,Alola
7,12,阿罗拉
8,1,ガラル
8,3,가라르
8,4,伽勒爾
8,5,Galar
8,6,Galar
8,8,Galar
8,9,Galar
8,12,伽勒尔
9,1,ヒスイ
9,3,히스이
9,4,洗翠
9,5,Hisui
9,6,Hisui
9,8,Hisui
9,9,Hisui
9,12,洗翠
10,1,パルデア
10,3,팔데아
10,4,帕底亞
10,5,Paldea
10,6,Paldea
10,8,Paldea
10,9,Paldea
10,12,帕底亚

1 region_id local_language_id name
2 1 1 カントー地方 カントー
3 1 3 관동지방 관동
4 1 4 關都
5 1 5 Kanto
6 1 6 Kanto
7 1 8 Kanto
8 1 9 Kanto
9 2 1 1 12 ジョウト地方 关都
10 2 3 1 성도지방 ジョウト
11 2 3 성도
12 2 4 城都
13 2 5 Johto
14 2 6 Johto
15 2 8 Johto
16 2 9 Johto
17 3 2 1 12 ホウエン地方 城都
18 3 3 1 호연지방 ホウエン
19 3 3 호연
20 3 4 豐緣
21 3 5 Hoenn
22 3 6 Hoenn
23 3 8 Hoenn
24 3 9 Hoenn
25 4 3 1 12 シンオウ地方 丰缘
26 4 3 1 신오지방 シンオウ
27 4 3 신오
28 4 4 神奧
29 4 5 Sinnoh
30 4 6 Sinnoh
31 4 8 Sinnoh
32 4 9 Sinnoh
33 5 4 1 12 イッシュ地方 神奥
34 5 3 1 하나지방 イッシュ
35 5 3 하나
36 5 4 合眾
37 5 5 Unys
38 5 6 Einall
39 5 8 Unima
40 5 9 Unova
41 6 5 1 12 カロス地方 合众
42 6 3 1 칼로스지방 カロス
43 6 3 칼로스
44 6 4 卡洛斯
45 6 5 Kalos
46 6 6 Kalos
47 6 8 Kalos
48 6 9 Kalos
49 6 12 卡洛斯
50 7 1 アローラ
51 7 3 알로라
52 7 4 阿羅拉
53 7 5 Alola
54 7 6 Alola
55 7 8 Alola
56 7 9 Alola
57 7 12 阿罗拉
58 8 1 ガラル
59 8 3 가라르
60 8 4 伽勒爾
61 8 5 Galar
62 8 6 Galar
63 8 8 Galar
64 8 9 Galar
65 8 12 伽勒尔
66 9 1 ヒスイ
67 9 3 히스이
68 9 4 洗翠
69 9 5 Hisui
70 9 6 Hisui
71 9 8 Hisui
72 9 9 Hisui
73 9 12 洗翠
74 10 1 パルデア
75 10 3 팔데아
76 10 4 帕底亞
77 10 5 Paldea
78 10 6 Paldea
79 10 8 Paldea
80 10 9 Paldea
81 10 12 帕底亚

View file

@ -55,15 +55,19 @@ stat_id,local_language_id,name
6,12,速度
7,1,めいちゅう
7,3,명중률
7,4,命中
7,5,Précision
7,6,Genauigkeit
7,7,Precisión
7,8,precisione
7,9,accuracy
7,12,命中
8,1,かいひ
8,3,회피율
8,4,閃避
8,5,Esquive
8,6,Fluchtwert
8,7,Evasión
8,8,elusione
8,9,evasion
8,12,闪避

1 stat_id local_language_id name
55 6 12 速度
56 7 1 めいちゅう
57 7 3 명중률
58 7 4 命中
59 7 5 Précision
60 7 6 Genauigkeit
61 7 7 Precisión
62 7 8 precisione
63 7 9 accuracy
64 7 12 命中
65 8 1 かいひ
66 8 3 회피율
67 8 4 閃避
68 8 5 Esquive
69 8 6 Fluchtwert
70 8 7 Evasión
71 8 8 elusione
72 8 9 evasion
73 8 12 闪避

View file

@ -181,14 +181,20 @@ type_id,local_language_id,name
18,12,妖精
10001,1,
10001,3,???
10001,4,???
10001,5,???
10001,6,???
10001,7,???
10001,8,???
10001,9,???
10001,11,
10001,12,???
10002,1,ダーク
10002,3,다크
10002,4,暗
10002,5,Obscur
10002,6,Crypto
10002,8,Ombra
10002,9,Shadow
10002,11,ダーク
10002,12,暗

1 type_id local_language_id name
181 18 12 妖精
182 10001 1 ???
183 10001 3 ???
184 10001 4 ???
185 10001 5 ???
186 10001 6 ???
187 10001 7 ???
188 10001 8 ???
189 10001 9 ???
190 10001 11 ???
191 10001 12 ???
192 10002 1 ダーク
193 10002 3 다크
194 10002 4
195 10002 5 Obscur
196 10002 6 Crypto
197 10002 8 Ombra
198 10002 9 Shadow
199 10002 11 ダーク
200 10002 12

@ -1 +1 @@
Subproject commit 67217823b89b9116fcb37640838017325629922d
Subproject commit ca5a7886c10753144e6fae3b69d45a4d42a449b4

View file

@ -1,13 +1,13 @@
version: '2.4'
services:
cache:
image: redis:7.0.7-alpine
image: redis:7.2.3-alpine
volumes:
- redis_data:/data
restart: always
db:
image: postgres:15.1
image: postgres:16.1
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-pokemon}
POSTGRES_USER: ${POSTGRES_USER:-ash}
@ -33,7 +33,7 @@ services:
restart: always
web:
image: nginx:1.23.3-alpine
image: nginx:1.25.3-alpine
ports:
- "80:80"
- "443:443"
@ -44,7 +44,7 @@ services:
- ./Resources/nginx/ssl:/ssl:ro
- graphql_cache:/tmp/cache
graphql-engine:
image: hasura/graphql-engine:v2.16.1
image: hasura/graphql-engine:v2.36.1-ce
ports:
- "8080:8080"
depends_on:

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1 @@
{}

View file

@ -6,10 +6,10 @@
from_env: HASURA_GRAPHQL_DATABASE_URL
isolation_level: read-committed
pool_settings:
connection_lifetime: 60
idle_timeout: 20
max_connections: 10
retries: 1
pool_timeout: 60
connection_lifetime: 60
retries: 1
use_prepared_statements: false
tables: "!include default/tables/tables.yaml"

View file

@ -2,49 +2,56 @@ table:
name: pokemon_v2_ability
schema: public
object_relationships:
- name: pokemon_v2_generation
using:
foreign_key_constraint_on: generation_id
- name: pokemon_v2_generation
using:
foreign_key_constraint_on: generation_id
array_relationships:
- name: pokemon_v2_abilitychanges
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilitychange
schema: public
- name: pokemon_v2_abilityeffecttexts
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilityeffecttext
schema: public
- name: pokemon_v2_abilityflavortexts
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilityflavortext
schema: public
- name: pokemon_v2_abilitynames
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilityname
schema: public
- name: pokemon_v2_pokemonabilities
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_pokemonability
schema: public
- name: pokemon_v2_abilitychanges
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilitychange
schema: public
- name: pokemon_v2_abilityeffecttexts
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilityeffecttext
schema: public
- name: pokemon_v2_abilityflavortexts
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilityflavortext
schema: public
- name: pokemon_v2_abilitynames
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_abilityname
schema: public
- name: pokemon_v2_pokemonabilities
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_pokemonability
schema: public
- name: pokemon_v2_pokemonabilitypasts
using:
foreign_key_constraint_on:
column: ability_id
table:
name: pokemon_v2_pokemonabilitypast
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,24 +2,24 @@ table:
name: pokemon_v2_abilitychange
schema: public
object_relationships:
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_versiongroup
using:
foreign_key_constraint_on: version_group_id
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_versiongroup
using:
foreign_key_constraint_on: version_group_id
array_relationships:
- name: pokemon_v2_abilitychangeeffecttexts
using:
foreign_key_constraint_on:
column: ability_change_id
table:
name: pokemon_v2_abilitychangeeffecttext
schema: public
- name: pokemon_v2_abilitychangeeffecttexts
using:
foreign_key_constraint_on:
column: ability_change_id
table:
name: pokemon_v2_abilitychangeeffecttext
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_abilitychangeeffecttext
schema: public
object_relationships:
- name: pokemon_v2_abilitychange
using:
foreign_key_constraint_on: ability_change_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_abilitychange
using:
foreign_key_constraint_on: ability_change_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_abilityeffecttext
schema: public
object_relationships:
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,19 +2,19 @@ table:
name: pokemon_v2_abilityflavortext
schema: public
object_relationships:
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_versiongroup
using:
foreign_key_constraint_on: version_group_id
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_versiongroup
using:
foreign_key_constraint_on: version_group_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_abilityname
schema: public
object_relationships:
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_ability
using:
foreign_key_constraint_on: ability_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,27 +2,27 @@ table:
name: pokemon_v2_berry
schema: public
object_relationships:
- name: pokemon_v2_berryfirmness
using:
foreign_key_constraint_on: berry_firmness_id
- name: pokemon_v2_item
using:
foreign_key_constraint_on: item_id
- name: pokemon_v2_type
using:
foreign_key_constraint_on: natural_gift_type_id
- name: pokemon_v2_berryfirmness
using:
foreign_key_constraint_on: berry_firmness_id
- name: pokemon_v2_item
using:
foreign_key_constraint_on: item_id
- name: pokemon_v2_type
using:
foreign_key_constraint_on: natural_gift_type_id
array_relationships:
- name: pokemon_v2_berryflavormaps
using:
foreign_key_constraint_on:
column: berry_id
table:
name: pokemon_v2_berryflavormap
schema: public
- name: pokemon_v2_berryflavormaps
using:
foreign_key_constraint_on:
column: berry_id
table:
name: pokemon_v2_berryflavormap
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,24 +2,24 @@ table:
name: pokemon_v2_berryfirmness
schema: public
array_relationships:
- name: pokemon_v2_berries
using:
foreign_key_constraint_on:
column: berry_firmness_id
table:
name: pokemon_v2_berry
schema: public
- name: pokemon_v2_berryfirmnessnames
using:
foreign_key_constraint_on:
column: berry_firmness_id
table:
name: pokemon_v2_berryfirmnessname
schema: public
- name: pokemon_v2_berries
using:
foreign_key_constraint_on:
column: berry_firmness_id
table:
name: pokemon_v2_berry
schema: public
- name: pokemon_v2_berryfirmnessnames
using:
foreign_key_constraint_on:
column: berry_firmness_id
table:
name: pokemon_v2_berryfirmnessname
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_berryfirmnessname
schema: public
object_relationships:
- name: pokemon_v2_berryfirmness
using:
foreign_key_constraint_on: berry_firmness_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_berryfirmness
using:
foreign_key_constraint_on: berry_firmness_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,42 +2,42 @@ table:
name: pokemon_v2_berryflavor
schema: public
object_relationships:
- name: pokemon_v2_contesttype
using:
foreign_key_constraint_on: contest_type_id
- name: pokemon_v2_contesttype
using:
foreign_key_constraint_on: contest_type_id
array_relationships:
- name: pokemonV2NaturesByLikesFlavorId
using:
foreign_key_constraint_on:
column: likes_flavor_id
table:
name: pokemon_v2_nature
schema: public
- name: pokemon_v2_berryflavormaps
using:
foreign_key_constraint_on:
column: berry_flavor_id
table:
name: pokemon_v2_berryflavormap
schema: public
- name: pokemon_v2_berryflavornames
using:
foreign_key_constraint_on:
column: berry_flavor_id
table:
name: pokemon_v2_berryflavorname
schema: public
- name: pokemon_v2_natures
using:
foreign_key_constraint_on:
column: hates_flavor_id
table:
name: pokemon_v2_nature
schema: public
- name: pokemonV2NaturesByLikesFlavorId
using:
foreign_key_constraint_on:
column: likes_flavor_id
table:
name: pokemon_v2_nature
schema: public
- name: pokemon_v2_berryflavormaps
using:
foreign_key_constraint_on:
column: berry_flavor_id
table:
name: pokemon_v2_berryflavormap
schema: public
- name: pokemon_v2_berryflavornames
using:
foreign_key_constraint_on:
column: berry_flavor_id
table:
name: pokemon_v2_berryflavorname
schema: public
- name: pokemon_v2_natures
using:
foreign_key_constraint_on:
column: hates_flavor_id
table:
name: pokemon_v2_nature
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_berryflavormap
schema: public
object_relationships:
- name: pokemon_v2_berry
using:
foreign_key_constraint_on: berry_id
- name: pokemon_v2_berryflavor
using:
foreign_key_constraint_on: berry_flavor_id
- name: pokemon_v2_berry
using:
foreign_key_constraint_on: berry_id
- name: pokemon_v2_berryflavor
using:
foreign_key_constraint_on: berry_flavor_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_berryflavorname
schema: public
object_relationships:
- name: pokemon_v2_berryflavor
using:
foreign_key_constraint_on: berry_flavor_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_berryflavor
using:
foreign_key_constraint_on: berry_flavor_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,21 +2,21 @@ table:
name: pokemon_v2_characteristic
schema: public
object_relationships:
- name: pokemon_v2_stat
using:
foreign_key_constraint_on: stat_id
- name: pokemon_v2_stat
using:
foreign_key_constraint_on: stat_id
array_relationships:
- name: pokemon_v2_characteristicdescriptions
using:
foreign_key_constraint_on:
column: characteristic_id
table:
name: pokemon_v2_characteristicdescription
schema: public
- name: pokemon_v2_characteristicdescriptions
using:
foreign_key_constraint_on:
column: characteristic_id
table:
name: pokemon_v2_characteristicdescription
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_characteristicdescription
schema: public
object_relationships:
- name: pokemon_v2_characteristic
using:
foreign_key_constraint_on: characteristic_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_characteristic
using:
foreign_key_constraint_on: characteristic_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_contestcombo
schema: public
object_relationships:
- name: pokemonV2MoveBySecondMoveId
using:
foreign_key_constraint_on: second_move_id
- name: pokemon_v2_move
using:
foreign_key_constraint_on: first_move_id
- name: pokemonV2MoveBySecondMoveId
using:
foreign_key_constraint_on: second_move_id
- name: pokemon_v2_move
using:
foreign_key_constraint_on: first_move_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,31 +2,31 @@ table:
name: pokemon_v2_contesteffect
schema: public
array_relationships:
- name: pokemon_v2_contesteffecteffecttexts
using:
foreign_key_constraint_on:
column: contest_effect_id
table:
name: pokemon_v2_contesteffecteffecttext
schema: public
- name: pokemon_v2_contesteffectflavortexts
using:
foreign_key_constraint_on:
column: contest_effect_id
table:
name: pokemon_v2_contesteffectflavortext
schema: public
- name: pokemon_v2_moves
using:
foreign_key_constraint_on:
column: contest_effect_id
table:
name: pokemon_v2_move
schema: public
- name: pokemon_v2_contesteffecteffecttexts
using:
foreign_key_constraint_on:
column: contest_effect_id
table:
name: pokemon_v2_contesteffecteffecttext
schema: public
- name: pokemon_v2_contesteffectflavortexts
using:
foreign_key_constraint_on:
column: contest_effect_id
table:
name: pokemon_v2_contesteffectflavortext
schema: public
- name: pokemon_v2_moves
using:
foreign_key_constraint_on:
column: contest_effect_id
table:
name: pokemon_v2_move
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_contesteffecteffecttext
schema: public
object_relationships:
- name: pokemon_v2_contesteffect
using:
foreign_key_constraint_on: contest_effect_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_contesteffect
using:
foreign_key_constraint_on: contest_effect_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_contesteffectflavortext
schema: public
object_relationships:
- name: pokemon_v2_contesteffect
using:
foreign_key_constraint_on: contest_effect_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_contesteffect
using:
foreign_key_constraint_on: contest_effect_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -1,32 +1,40 @@
table:
name: pokemon_v2_contesttype
schema: public
object_relationships:
- name: pokemon_v2_berryflavor
using:
foreign_key_constraint_on:
column: contest_type_id
table:
name: pokemon_v2_berryflavor
schema: public
array_relationships:
- name: pokemon_v2_berryflavors
using:
foreign_key_constraint_on:
column: contest_type_id
table:
name: pokemon_v2_berryflavor
schema: public
- name: pokemon_v2_contesttypenames
using:
foreign_key_constraint_on:
column: contest_type_id
table:
name: pokemon_v2_contesttypename
schema: public
- name: pokemon_v2_moves
using:
foreign_key_constraint_on:
column: contest_type_id
table:
name: pokemon_v2_move
schema: public
- name: pokemon_v2_berryflavors
using:
foreign_key_constraint_on:
column: contest_type_id
table:
name: pokemon_v2_berryflavor
schema: public
- name: pokemon_v2_contesttypenames
using:
foreign_key_constraint_on:
column: contest_type_id
table:
name: pokemon_v2_contesttypename
schema: public
- name: pokemon_v2_moves
using:
foreign_key_constraint_on:
column: contest_type_id
table:
name: pokemon_v2_move
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_contesttypename
schema: public
object_relationships:
- name: pokemon_v2_contesttype
using:
foreign_key_constraint_on: contest_type_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_contesttype
using:
foreign_key_constraint_on: contest_type_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,24 +2,24 @@ table:
name: pokemon_v2_egggroup
schema: public
array_relationships:
- name: pokemon_v2_egggroupnames
using:
foreign_key_constraint_on:
column: egg_group_id
table:
name: pokemon_v2_egggroupname
schema: public
- name: pokemon_v2_pokemonegggroups
using:
foreign_key_constraint_on:
column: egg_group_id
table:
name: pokemon_v2_pokemonegggroup
schema: public
- name: pokemon_v2_egggroupnames
using:
foreign_key_constraint_on:
column: egg_group_id
table:
name: pokemon_v2_egggroupname
schema: public
- name: pokemon_v2_pokemonegggroups
using:
foreign_key_constraint_on:
column: egg_group_id
table:
name: pokemon_v2_pokemonegggroup
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_egggroupname
schema: public
object_relationships:
- name: pokemon_v2_egggroup
using:
foreign_key_constraint_on: egg_group_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_egggroup
using:
foreign_key_constraint_on: egg_group_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,30 +2,30 @@ table:
name: pokemon_v2_encounter
schema: public
object_relationships:
- name: pokemon_v2_encounterslot
using:
foreign_key_constraint_on: encounter_slot_id
- name: pokemon_v2_locationarea
using:
foreign_key_constraint_on: location_area_id
- name: pokemon_v2_pokemon
using:
foreign_key_constraint_on: pokemon_id
- name: pokemon_v2_version
using:
foreign_key_constraint_on: version_id
- name: pokemon_v2_encounterslot
using:
foreign_key_constraint_on: encounter_slot_id
- name: pokemon_v2_locationarea
using:
foreign_key_constraint_on: location_area_id
- name: pokemon_v2_pokemon
using:
foreign_key_constraint_on: pokemon_id
- name: pokemon_v2_version
using:
foreign_key_constraint_on: version_id
array_relationships:
- name: pokemon_v2_encounterconditionvaluemaps
using:
foreign_key_constraint_on:
column: encounter_id
table:
name: pokemon_v2_encounterconditionvaluemap
schema: public
- name: pokemon_v2_encounterconditionvaluemaps
using:
foreign_key_constraint_on:
column: encounter_id
table:
name: pokemon_v2_encounterconditionvaluemap
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,24 +2,24 @@ table:
name: pokemon_v2_encountercondition
schema: public
array_relationships:
- name: pokemon_v2_encounterconditionnames
using:
foreign_key_constraint_on:
column: encounter_condition_id
table:
name: pokemon_v2_encounterconditionname
schema: public
- name: pokemon_v2_encounterconditionvalues
using:
foreign_key_constraint_on:
column: encounter_condition_id
table:
name: pokemon_v2_encounterconditionvalue
schema: public
- name: pokemon_v2_encounterconditionnames
using:
foreign_key_constraint_on:
column: encounter_condition_id
table:
name: pokemon_v2_encounterconditionname
schema: public
- name: pokemon_v2_encounterconditionvalues
using:
foreign_key_constraint_on:
column: encounter_condition_id
table:
name: pokemon_v2_encounterconditionvalue
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_encounterconditionname
schema: public
object_relationships:
- name: pokemon_v2_encountercondition
using:
foreign_key_constraint_on: encounter_condition_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_encountercondition
using:
foreign_key_constraint_on: encounter_condition_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,28 +2,28 @@ table:
name: pokemon_v2_encounterconditionvalue
schema: public
object_relationships:
- name: pokemon_v2_encountercondition
using:
foreign_key_constraint_on: encounter_condition_id
- name: pokemon_v2_encountercondition
using:
foreign_key_constraint_on: encounter_condition_id
array_relationships:
- name: pokemon_v2_encounterconditionvaluemaps
using:
foreign_key_constraint_on:
column: encounter_condition_value_id
table:
name: pokemon_v2_encounterconditionvaluemap
schema: public
- name: pokemon_v2_encounterconditionvaluenames
using:
foreign_key_constraint_on:
column: encounter_condition_value_id
table:
name: pokemon_v2_encounterconditionvaluename
schema: public
- name: pokemon_v2_encounterconditionvaluemaps
using:
foreign_key_constraint_on:
column: encounter_condition_value_id
table:
name: pokemon_v2_encounterconditionvaluemap
schema: public
- name: pokemon_v2_encounterconditionvaluenames
using:
foreign_key_constraint_on:
column: encounter_condition_value_id
table:
name: pokemon_v2_encounterconditionvaluename
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_encounterconditionvaluemap
schema: public
object_relationships:
- name: pokemon_v2_encounter
using:
foreign_key_constraint_on: encounter_id
- name: pokemon_v2_encounterconditionvalue
using:
foreign_key_constraint_on: encounter_condition_value_id
- name: pokemon_v2_encounter
using:
foreign_key_constraint_on: encounter_id
- name: pokemon_v2_encounterconditionvalue
using:
foreign_key_constraint_on: encounter_condition_value_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_encounterconditionvaluename
schema: public
object_relationships:
- name: pokemon_v2_encounterconditionvalue
using:
foreign_key_constraint_on: encounter_condition_value_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_encounterconditionvalue
using:
foreign_key_constraint_on: encounter_condition_value_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,31 +2,31 @@ table:
name: pokemon_v2_encountermethod
schema: public
array_relationships:
- name: pokemon_v2_encountermethodnames
using:
foreign_key_constraint_on:
column: encounter_method_id
table:
name: pokemon_v2_encountermethodname
schema: public
- name: pokemon_v2_encounterslots
using:
foreign_key_constraint_on:
column: encounter_method_id
table:
name: pokemon_v2_encounterslot
schema: public
- name: pokemon_v2_locationareaencounterrates
using:
foreign_key_constraint_on:
column: encounter_method_id
table:
name: pokemon_v2_locationareaencounterrate
schema: public
- name: pokemon_v2_encountermethodnames
using:
foreign_key_constraint_on:
column: encounter_method_id
table:
name: pokemon_v2_encountermethodname
schema: public
- name: pokemon_v2_encounterslots
using:
foreign_key_constraint_on:
column: encounter_method_id
table:
name: pokemon_v2_encounterslot
schema: public
- name: pokemon_v2_locationareaencounterrates
using:
foreign_key_constraint_on:
column: encounter_method_id
table:
name: pokemon_v2_locationareaencounterrate
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,16 +2,16 @@ table:
name: pokemon_v2_encountermethodname
schema: public
object_relationships:
- name: pokemon_v2_encountermethod
using:
foreign_key_constraint_on: encounter_method_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
- name: pokemon_v2_encountermethod
using:
foreign_key_constraint_on: encounter_method_id
- name: pokemon_v2_language
using:
foreign_key_constraint_on: language_id
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,24 +2,24 @@ table:
name: pokemon_v2_encounterslot
schema: public
object_relationships:
- name: pokemon_v2_encountermethod
using:
foreign_key_constraint_on: encounter_method_id
- name: pokemon_v2_versiongroup
using:
foreign_key_constraint_on: version_group_id
- name: pokemon_v2_encountermethod
using:
foreign_key_constraint_on: encounter_method_id
- name: pokemon_v2_versiongroup
using:
foreign_key_constraint_on: version_group_id
array_relationships:
- name: pokemon_v2_encounters
using:
foreign_key_constraint_on:
column: encounter_slot_id
table:
name: pokemon_v2_encounter
schema: public
- name: pokemon_v2_encounters
using:
foreign_key_constraint_on:
column: encounter_slot_id
table:
name: pokemon_v2_encounter
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,21 +2,21 @@ table:
name: pokemon_v2_evolutionchain
schema: public
object_relationships:
- name: pokemon_v2_item
using:
foreign_key_constraint_on: baby_trigger_item_id
- name: pokemon_v2_item
using:
foreign_key_constraint_on: baby_trigger_item_id
array_relationships:
- name: pokemon_v2_pokemonspecies
using:
foreign_key_constraint_on:
column: evolution_chain_id
table:
name: pokemon_v2_pokemonspecies
schema: public
- name: pokemon_v2_pokemonspecies
using:
foreign_key_constraint_on:
column: evolution_chain_id
table:
name: pokemon_v2_pokemonspecies
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

View file

@ -2,24 +2,24 @@ table:
name: pokemon_v2_evolutiontrigger
schema: public
array_relationships:
- name: pokemon_v2_evolutiontriggernames
using:
foreign_key_constraint_on:
column: evolution_trigger_id
table:
name: pokemon_v2_evolutiontriggername
schema: public
- name: pokemon_v2_pokemonevolutions
using:
foreign_key_constraint_on:
column: evolution_trigger_id
table:
name: pokemon_v2_pokemonevolution
schema: public
- name: pokemon_v2_evolutiontriggernames
using:
foreign_key_constraint_on:
column: evolution_trigger_id
table:
name: pokemon_v2_evolutiontriggername
schema: public
- name: pokemon_v2_pokemonevolutions
using:
foreign_key_constraint_on:
column: evolution_trigger_id
table:
name: pokemon_v2_pokemonevolution
schema: public
select_permissions:
- permission:
allow_aggregations: true
columns: "*"
filter: {}
limit: 100000
role: anon
- role: anon
permission:
columns: '*'
filter: {}
limit: 100000
allow_aggregations: true

Some files were not shown because too many files have changed in this diff Show more