Parnassius
6cbf164797
Remove empty sword/shield pokedex flavor text ( #346 )
2021-06-21 21:30:04 -07:00
Parnassius
67d9e8a9f9
Add Sword/Shield data
2021-03-10 14:25:32 +01:00
Parnassius
0ae34dbce0
Add Let's Go data
2021-03-10 14:21:05 +01:00
Andrew Ekstedt
bbda228262
Fix み,nbsp mixup in OR/AS dex entries
...
A bug in the text dumper caused み to be replaced with a narrow
non-breaking space and the actual nbsp character in the unicode private
use area to go untranslated.
Only affected OR/AS.
Fix with a simple text replace on the affected entries.
import csv
in_ = open("../pokedex/data/csv/pokemon_species_flavor_text.csv", "r")
out = open("fixed.csv", "w")
r = csv.reader(in_, lineterminator='\n')
w = csv.writer(out, lineterminator='\n')
for row in r:
text = row[3]
if row[1] in {'25', '26'}:
text = text.replace("\u202f", "\u307f") # nbsp => mi
text = text.replace("\ue07f", "\u202f") # e07f => nbsp
w.writerow((row[0], row[1], row[2], text))
out.close()
Fixes #308
2020-06-23 17:09:11 -07:00
Andrew Ekstedt
0015bcb15c
Add Ultra Moon dex entries
...
Note: there are dex entries for forms too, but this only adds the text
for the default form because the db schema assumes dex entries are
per-species.
2020-06-23 16:17:32 -07:00
Andrew Ekstedt
5fe8fdcc95
Add Sun dex entries
...
Note: there are dex entries for forms too, but this only adds the text
for the default form because the db schema assumes dex entries are
per-species.
2020-06-23 16:10:40 -07:00
Eevee (Lexy Munroe)
45f43231e3
Add Ultra Sun/Ultra Moon data, more or less
2017-11-25 11:30:23 -08:00
Eevee (Lexy Munroe)
0b81ea0c79
Add SUMO items and Pokémon
2017-08-22 16:23:49 -07:00
Eevee (Alex Munroe)
2292b62792
ORAS Pokémon flavor text.
2015-08-13 00:00:59 -07:00
Lynn "Zhorken" Vaughan
8cba4ac996
Add flavour text for Hoopa and Volcanion.
...
I knew I was forgetting something.
2014-06-13 15:41:35 -04:00
Andrew Ekstedt
0d171accad
Replace non-breaking space with narrow non-breaking space.
...
More correct.
2014-05-18 18:03:34 -07:00
Andrew Ekstedt
0c9617be16
Rip missing Pokédex flavor text from Y.
2014-05-18 14:51:48 -07:00
Andrew Ekstedt
1a107105aa
Rip Pokédex flavor text from Y.
2014-05-18 14:45:11 -07:00
Andrew Ekstedt
b58f4afcf0
Rip missing Pokédex flavor text from X.
2014-05-18 14:40:36 -07:00
Andrew Ekstedt
91588bd7bf
Rip Pokédex flavor text from X.
2014-05-18 14:32:27 -07:00
Lynn "Zhorken" Vaughan
d344e8b5f0
Strip some trailing whitespace in X/Y flavour text.
2014-03-11 18:31:41 -04:00
Lynn "Zhorken" Vaughan
cb1523e296
Add everything remaining from the spreadsheet.
2014-03-11 18:20:41 -04:00
Lynn "Zhorken" Vaughan
5625b8274d
Add national dex #, dex entries, name for Diancie.
2014-03-10 16:13:47 -04:00
Lynn "Zhorken" Vaughan
199feadce6
Fix a typo in Combusken's X entry.
2013-12-02 22:49:23 -05:00
Lynn "Zhorken" Vaughan
1fda48c356
Fix a typo in Sylveon's X Pokédex entry.
2013-11-06 14:10:52 -05:00
Lynn "Zhorken" Vaughan
988edc5d8b
Add all the X/Y Pokémon flavour text we have.
...
This includes every Kalos Pokémon! Woo!
2013-11-06 13:15:28 -05:00
Lynn "Zhorken" Vaughan
a1fb616cfc
Add B/W 2 flavour text.
2012-10-18 17:23:26 -04:00
Lynn "Zhorken" Vaughan
3917774931
Fix curly endquotes/apostrophes in French B/W flavour text.
2012-06-16 18:21:34 -04:00
M@T
800a778009
Added French Pokémon descriptions for B/W.
2012-06-16 21:33:25 +02:00
Lynn "Zhorken" Vaughan
36dfe7555e
Fix curly endquotes/apostrophes in B/W flavour text.
2011-09-21 16:28:46 -04:00
Petr Viktorin
be3e224cad
Pokemon species split: Other data changes
2011-05-06 12:26:16 +03:00