Last active
August 29, 2015 14:05
-
-
Save CatTrinket/f2025b741229626651fa to your computer and use it in GitHub Desktop.
Pokémon names that are at least eleven characters (actual game languages that don't reuse English names)
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
pokedex=> select l.identifier lang, ps.identifier pokemon, psn.name from pokemon_species_names psn join pokemon_species ps on psn.pokemon_species_id=ps.id join languages l on psn.local_language_id=l.id where length(name) >= 11 and l.identifier not in ('roomaji', 'es', 'it') order by l.order, ps.order; | |
lang | pokemon | name | |
------+-------------+-------------- | |
en | fletchinder | Fletchinder | |
fr | chesnaught | Blindépique | |
fr | diggersby | Excavarenne | |
fr | scatterbug | Lépidonille | |
fr | skiddo | Cabriolaine | |
fr | pancham | Pandespiègle | |
fr | slurpuff | Cupcanaille | |
fr | trevenant | Desséliande | |
fr | gourgeist | Banshitrouye | |
fr | noibat | Sonistrelle | |
de | quilladin | Igastarnish | |
de | swirlix | Flauschling | |
(12 rows) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment