1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Fix drain/recoil name in MoveMeta

The column was named recoil, but positive values meant
drain.
Rename the column, and introduce a hybrid property for
recoil.
This commit is contained in:
Petr Viktorin 2012-02-11 16:04:25 +01:00 committed by Andrew Ekstedt
parent 0094e9584c
commit df945eb601
2 changed files with 9 additions and 3 deletions
pokedex/data/csv

View file

@ -1,4 +1,4 @@
move_id,meta_category_id,meta_ailment_id,min_hits,max_hits,min_turns,max_turns,recoil,healing,crit_rate,ailment_chance,flinch_chance,stat_chance
move_id,meta_category_id,meta_ailment_id,min_hits,max_hits,min_turns,max_turns,drain,healing,crit_rate,ailment_chance,flinch_chance,stat_chance
1,0,0,,,,,0,0,0,0,0,0
2,0,0,,,,,0,0,1,0,0,0
3,0,0,2,5,,,0,0,0,0,0,0

1 move_id meta_category_id meta_ailment_id min_hits max_hits min_turns max_turns recoil drain healing crit_rate ailment_chance flinch_chance stat_chance
2 1 0 0 0 0 0 0 0 0
3 2 0 0 0 0 1 0 0 0
4 3 0 0 2 5 0 0 0 0 0 0