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

Rerip move stats.

Notes:

- I left all the flags surskitty added alone (powder, bite, pulse,
  ballistics, and mental) because they don't seem to be in with the
  other move flags.  The only new flags are the Sky Battle one that I
  added, and a mystery one, which I didn't add —
  http://pastebin.com/K27Vk95J

- move_meta_* is a mess and I don't like it but X/Y seem to have all the
  same move meta as B/W did so I updated it for the time being

- I didn't update effect_id because I'd have to sort out all the new
  effects that I added manually and that sounds like a bigger endeavour
This commit is contained in:
Lynn "Zhorken" Vaughan 2014-05-19 21:41:39 -04:00
parent 2626cf6304
commit c13ba0e58a
8 changed files with 247 additions and 46 deletions
pokedex/data/csv

View file

@ -11,3 +11,5 @@ move_target_id,local_language_id,name,description
10,9,Selected Pokémon,"One other Pokémon on the field, selected by the trainer."
11,9,All opponents,All opposing Pokémon.
12,9,Entire field,The entire field. Affects all Pokémon.
13,9,User and allies,The user and its allies.
14,9,All Pokémon,Every Pokémon on the field.

1 move_target_id local_language_id name description
11 10 9 Selected Pokémon One other Pokémon on the field, selected by the trainer.
12 11 9 All opponents All opposing Pokémon.
13 12 9 Entire field The entire field. Affects all Pokémon.
14 13 9 User and allies The user and its allies.
15 14 9 All Pokémon Every Pokémon on the field.