veekun_pokedex/pokedex
Lynn "Zhorken" Vaughan dcf9ef23e7 Copy Castform's B/W 2 egg moves over, too.
This commit originally included Basculin, too, but then magical dealt
with that before I pushed.  Anyway, the query I used should have caught
any other similar cases, too:

insert into pokemon_moves select p.id, 14, pm.move_id, 2, 0, null from
    pokemon_moves pm
join pokemon p on pm.pokemon_id=p.species_id and p.is_default=false
where pm.version_group_id=14 and pm.pokemon_move_method_id=2;

The join condition is cheating a little, but it does happen to work; it
joins a pokemon_move to all non-default forms of the same Pokémon.  If
being default and having id=species_id didn't go hand-in-hand, I'm
pretty sure it'd require two joins to pokemon.
2012-12-06 23:41:34 -05:00
..
data/csv Copy Castform's B/W 2 egg moves over, too. 2012-12-06 23:41:34 -05:00
db Add a VersionGroup.pokemon_moves relation. 2012-11-18 16:01:24 -05:00
doc Sort relationship docs alphabetically. 2012-06-08 23:31:35 -07:00
struct Move util.py to compatibility.py 2011-04-17 22:30:37 -07:00
tests Add a test for main-tables.rst 2012-06-10 15:46:50 -07:00
util Fix test_media.py. 2012-03-16 12:37:47 -07:00
__init__.py Speed up import pokedex.db slightly. 2011-04-03 03:13:07 -07:00
compatibility.py Move util.py to compatibility.py 2011-04-17 22:30:37 -07:00
defaults.py Speed up import pokedex.db slightly. 2011-04-03 03:13:07 -07:00
formulae.py Give calculated_stat and calculated_hp the same signature. 2011-03-10 22:12:03 -08:00
lookup.py Add warrior skills to the lookup. 2012-08-01 11:29:27 -04:00
main.py Update some URLs to point to github.com 2012-12-02 17:14:08 -08:00
roomaji.py Add Czech romanization 2011-03-29 17:46:41 +03:00