about summary refs log tree commit diff stats
path: root/db/seeds.rb
Commit message (Collapse)AuthorAgeFilesLines
* Added type and ability data to species modelKelly Rauchenberger2017-10-101-386/+463
|
* Made move names accurate to gen 3Kelly Rauchenberger2017-10-061-20/+20
| | | | | | Some moves have changed names in later gens, and those changed names were present in the database seeds, so they were changed to be accurate to gen 3.
* Added hold itemsKelly Rauchenberger2017-09-301-354/+1767
| | | | | | | | | | | | | | | | | | | | | | An items model was created, but the seed only contains items that can be held, which excludes key items and HMs. Berry Juice, while unobtainable, is still included. The item model contains three description fields: one for Ruby/Sapphire, one for FireRed/LeafGreen, and one for Emerald. This is because the descriptions for items are different between the games. In a lot of cases, the Emerald description is the same as the Ruby/Sapphire one, so in those cases, the Emerald description is nil. The purpose of having the different descriptions is so that when a Pokémon holds an item, the website can display the description that is accurate to the game that that Pokémon is currently in. In order to fully support TMs, the move model was improved to additionally contain type and also the three description fields which operate similarly to those of the item model. For TMs, the description fields on the item are usually nil. However, some TMs in Ruby/Sapphire, as well as Emerald, have different descriptions than the moves that they correspond with. In these cases, those descriptions are in the item model, and override the move descriptions when the move is looked at as a TM.
* Added gift ribbon descriptionsKelly Rauchenberger2017-09-301-0/+65
| | | | | | This is basically just for completeness because it is unknown whether gift ribbons other than the National Ribbon and Earth Ribbon from Pokémon Colosseum were ever distributed.
* Added met location dataKelly Rauchenberger2017-09-251-0/+214
| | | | | Note that the met location for Pokémon from Orre is completely incorrect.
* Added seed data for Pokémon species and movesKelly Rauchenberger2017-09-231-0/+743