feat: Add Generation VII form-specific Pokédex flavor text - #1655
Open
MiquelRForgeFlow wants to merge 5 commits into
Open
feat: Add Generation VII form-specific Pokédex flavor text#1655MiquelRForgeFlow wants to merge 5 commits into
MiquelRForgeFlow wants to merge 5 commits into
Conversation
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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