fix: correct base_experience and base_happiness values based on Bulba… #1253
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.
Fix incorrect base_experience and base_happiness values using Bulbapedia data
📋 Summary
This PR corrects incorrect
base_experienceandbase_happinessvalues in the Pokémon dataset by validating against Bulbapedia as the authoritative source.🔧 Changes Made
Base Experience Corrections (
data/v2/csv/pokemon.csv)base_experiencevalues fixed267→240340→306300→270Base Happiness Corrections (
data/v2/csv/pokemon_species.csv)base_happinessvalues fixed50→70(standard friendship value)0→500,35140🧪 Validation Process
🔍 Extraction Method
🎯 Key Corrections
Iconic Pokémon Fixed
50→70(base_happiness)50→70(base_happiness)Legendary Pokémon Updated
340→306(base_experience)340→306(base_experience)340→306(base_experience)Recent DLC Pokémon
0→50(base_happiness)0→50(base_happiness)0→50(base_happiness)0→50(base_happiness)📁 Files Modified
data/v2/csv/pokemon.csv- 129 base_experience correctionsdata/v2/csv/pokemon_species.csv- 454 base_happiness corrections✅ Verification
All corrections can be manually verified against the corresponding Bulbapedia pages:
https://bulbapedia.bulbagarden.net/wiki/[Pokemon_name]_(Pokémon)🔄 Reproducibility
The automated extraction scripts ensure:
Related: Similar to previous data corrections that used Bulbapedia as the authoritative source for Pokémon data validation.