You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds English form-specific Pokédex flavor text to pokemon_form_flavor_text.csv for alternate forms as they appear in the Generation VII games (Sun/Moon, Ultra Sun/Ultra Moon) and Let's Go, Pikachu!/Eevee!.
244 new entries across 51 forms, structured per-pokemon so each can be reviewed independently (following up on the per-pokemon approach agreed in #1629):
Alolan forms (18 forms, 108 entries) — regional variants of Kanto species.
Default-form flavor text already lives in pokemon_species_flavor_text.csv, so it is not repeated in this file. The only default-form entries included are cases where the default is a named variant within a form set and it would be odd to list the other members without it: Oricorio (Baile Style) and Basculin (Red-Striped) — like Deoxys (Normal Forme) from #1629.
AI coding assistance disclosure
Non-default forms have no canonical in-game line breaks in the veekun source nor in other sources, so they are reconstructed with a greedy word wrap. The wrap width was chosen to match the existing dataset's line-length distribution (median ~44, 95th percentile 50, max 54), which is consistent across SM, USUM and LGPE — LGPE uses the same text-box width as Sun/Moon, so a single width applies to all versions. Curly typography ('"") matches the rest of the dataset.
Contributor check list
I have written a description of the contribution and explained its motivation.
I have written tests for my code changes (if applicable).
A PokeAPI/api-data refresh has started. In ~45 minutes the staging branch of PokeAPI/api-data will be pushed with the new generated data.
The staging branch will be deployed in our staging environment and the entire API will be ready to review.
A Pull Request (master<-staging) will be also created at PokeAPI/api-data and assigned to the PokeAPI Core team to be reviewed. If approved and merged new data will soon be available worldwide at pokeapi.co.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds English form-specific Pokédex flavor text to
pokemon_form_flavor_text.csvfor alternate forms as they appear in the Generation VII games (Sun/Moon, Ultra Sun/Ultra Moon) and Let's Go, Pikachu!/Eevee!.244 new entries across 51 forms, structured per-pokemon so each can be reviewed independently (following up on the per-pokemon approach agreed in #1629):
Default-form flavor text already lives in
pokemon_species_flavor_text.csv, so it is not repeated in this file. The only default-form entries included are cases where the default is a named variant within a form set and it would be odd to list the other members without it: Oricorio (Baile Style) and Basculin (Red-Striped) — like Deoxys (Normal Forme) from #1629.AI coding assistance disclosure
Non-default forms have no canonical in-game line breaks in the veekun source nor in other sources, so they are reconstructed with a greedy word wrap. The wrap width was chosen to match the existing dataset's line-length distribution (median ~44, 95th percentile 50, max 54), which is consistent across SM, USUM and LGPE — LGPE uses the same text-box width as Sun/Moon, so a single width applies to all versions. Curly typography (
'"") matches the rest of the dataset.Contributor check list