All The Pokemon!
2026-08-18
I used the pokemon api to convert the stats of every pokemon into Oddish form.
here is the link to the json file.
This was my logic for converting stats. I followed Warrens math but let me know if something looks wrong.
Pokemon {
name: nme,
str: (att/6.66).round() as u8,
dex: (spe/6.66).round() as u8,
wil: ((spa+spd)/15.32).round() as u8,
hp: (hit/5.44).round() as u8,
armor: (def/50.0).floor() as u8,
}
Some differences may be attributed to the API using the most recent stats for pokemon where the Into The Oddish design tried to use oldest stats when possible.