• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Request]List of all 493 Pokemon

Poeman

Banned
755
Posts
15
Years
    • Age 29
    • Seen Nov 1, 2012
    Can I get a list of all the pokemon from
    Bulbasaur-Arceus in numeric order, and not a chart, I want it to be a TXT file that just looks like:
    Bulbasaur
    Ivysaur
    Venusaur
    Charmander
    ect...

    And only the names. It's so game maker can read it and people can search pokemon by name in my pokedex. Much thanks :D
     

    |Maximus|

    I'm back~
    836
    Posts
    16
    Years
    • Seen Sep 10, 2010
    Why can't you do it yourself? Doesn't seem like a hard thing to do.
     

    Poeman

    Banned
    755
    Posts
    15
    Years
    • Age 29
    • Seen Nov 1, 2012
    Tedious, and I can't use the computer during the weekdays D:
     

    |Maximus|

    I'm back~
    836
    Posts
    16
    Years
    • Seen Sep 10, 2010
    Alright here it is. It needs to be into notepad or wordpad whatever. Also you may need to delete the spaces.

    Spoiler:
     
    2,048
    Posts
    16
    Years
    • Seen Sep 7, 2023
    Uh... what are you even a game developer for? :P

    Code:
    File.open("SpeciesNames.txt","wb"){|f| # Opens a file, in binary write mode
     for i in 1..493 # For loop; goes through 1 to 493 inclusive
      f.write(PBSpecies.getName(i)) # Writes the species name
      f.write("\r\n") # Writes a new line
     end
    }
     

    |Maximus|

    I'm back~
    836
    Posts
    16
    Years
    • Seen Sep 10, 2010
    Uh... what are you even a game developer for? :P

    Code:
    File.open("SpeciesNames.txt","wb"){|f| # Opens a file, in binary write mode
     for i in 1..493 # For loop; goes through 1 to 493 inclusive
      f.write(PBSpecies.getName(i)) # Writes the species name
      f.write("\r\n") # Writes a new line
     end
    }

    Um, did you read the post? He is using Gamemaker. That looks like RGSS coding to me.
     

    Peeky Chew

    Master of Palettes
    829
    Posts
    14
    Years
  • 1.Bulbasaur
    2.Ivysaur
    3.Venusaur
    4.Charmander
    5.Charmeleon
    6.Charizard
    7.Squrtile
    8.Wartortle
    9.Blastoise
    10.Caterpie
    11.Metapod
    12.Butterfree
    13.Weedle
    14.Kakuna
    15.Beedrill
    16.Pidgey
    17.Pidgeotto
    18.Pidgeot
    19.Rattata
    20.Raticate
    21.Spearow
    22.Fearow
    23.Ekans
    24.Arbok
    25.Pikachu
    26.Raichu
    27.Sandshrew
    28.Sandslash
    29.Nidoran F
    30.Nidorina
    31.Nidoqueen
    32.Nidoran M
    33.Nidorino
    34.Nidoking
    35.Clefairy
    36.Clefable
    37.Vulpix
    38.Ninetales
    39.Jigglypuff
    40.Wigglytuff
    41.Zubat
    42.Golbat
    43.Oddish
    44.Gloom
    45.Vileplume
    46.Paras
    47.Parasect
    48.Venonat
    49.Venomoth
    50.Diglett
    51.Dugtrio
    52.Meowth
    53.Persian
    54.Psyduck
    55.Golduck
    56.Mankey
    57.Primeape
    58.Growlithe
    59.Arcanine
    60.Poliwag
    61.Poliwhirl
    62.Poliwrath
    63.Abra
    64.Kadabra
    65.Alakazam
    66.Machop
    67.Machoke
    68.Machamp
    69.Bellsprout
    70.Weepinbell
    71.Victreebell
    72.Tentacool
    73.Tentacruel
    74.Geodude
    75.Graveller
    76.Golem
    77.Ponyta
    78.Rapidash
    79.Slowpoke
    80.Slowbro
    81.Magnamite
    82.Magneton
    83.Farfetch'd
    84.Duduo
    85.Dodrio
    86.Seel
    87.Dewgong
    88.Grimer
    89.Muk
    90.Shellder
    91.Cloyster
    92.Gastly
    93.Haunter
    94.Gengar
    95.Onix
    96.Drowzee
    97.Hypno
    98.Krabby
    99.Kingler
    100.Voltorb
    101.Electrode
    102.Exeggcute
    103.Exeggcutor
    104.Cubone
    105.Marowak
    106.Hitmonlee
    107.Hitmonchan
    108.Likitung
    109.Koffing
    110.Weezing
    111.Rhyhorn
    112.Rhydon
    113.Chansey
    114.Tangela
    115.Kangaskhan
    116.Horsea
    117.Seadra
    118.Goldeen
    119.Seaking
    120.Staryu
    121.Starmie
    122.Mr. Mime
    123.Scyther
    124.Jynx
    125.Electabuzz
    126.Magmar
    127.Pinsir
    128.Tauros
    129.Magikarp
    130.Gyrados
    131.Lapras
    132.Ditto
    133.Eevee
    134.Vapereon
    135.Jolteon
    136.Flareon
    137.Porygon
    138.Omanyte
    139.Omaster
    140.Kabuto
    141.Kabutops
    142.Aerodactyl
    143.Snorlax
    144.Articuno
    145.Zapdos
    146.Moltres
    147.Dratini
    148.Dragonair
    149.Dragonite
    150.Mewtwo
    151.Mew

    152.Chikorita
    153.Bayleef
    154.Meganium
    155.Cyndaquil
    156.Quilava
    157.Typhlosion
    158.Totodile
    159.Croconaw
    160.Feraligatr
    161.Sentret
    162.Furret
    163.Hoothoot
    164.Noctowl
    165.Ledyba
    166.Ledia
    167.Spinarak
    168.Ariados
    169.Crobat
    170.Chinchou
    171.Lanturn
    172.Pichu
    173.Cleffa
    174.Igglybuff
    175.Togepi
    176.Togetic
    177.Natu
    178.Xatu
    179.Mareep
    180.Flaaffy
    181.Ampahroc
    182.Bellossom
    183.Marill
    184.Azumarill
    185.Sudowoodo
    186.Politoed
    187.Hoppip
    188.Skiploom
    189.Jumpluff
    190.Aipom
    191.Sunkern
    192.Sunflora
    193.Yanma
    194.Wooper
    195.Quagsire
    196.Espeon
    197.Umbreon
    198.Murkrow
    199.Slowking
    200.Misdreavus
    201.Unown
    202.Wobbuffet
    203.Girafarig
    204.Pineco
    205.Forretross
    206.Dunsparce
    207.Gligar
    208.Steelix
    209.Snubbull
    210.Granbull
    211.Qwilfish
    212.Scizor
    213.Shuckle
    214Heracross
    215.Sneasel
    216.Teddiursa
    217.Urasaring
    218.Slugma
    219.Magcargo
    220.Swinub
    221.Piloswine
    222.Corsola
    223.Remorai
    224.Octillery
    225.Delibird
    226.Mantine
    227.Skarmory
    228.Houndour
    229.Houndoom
    230.Kingdra
    231.Phanpy
    232.Donphan
    233.Porygon2
    234.Stantler
    235.Smeargle
    236.Tyrogue
    237.Hitmontop
    238.Smoochum
    239.Elekid
    340.Magby
    341.Miltank
    342.Blissey
    343.Raikou
    344.Entei
    345.Suicune
    356.Larvitar
    347.Pupitar
    348.Tyranitar
    349.Lugia
    350.Ho-Oh
    351.Celebi

    Typed it myself, you'll have to remove the numbers if you don't want them and do the 3rd and 4th yourself.
     

    Maruno

    Lead Dev of Pokémon Essentials
    5,286
    Posts
    16
    Years
    • Seen May 3, 2024

    236.Tyrogue
    237.Hitmontop
    238.Smoochum
    239.Elekid
    340.Magby
    341.Miltank
    342.Blissey
    343.Raikou
    344.Entei
    345.Suicune
    356.Larvitar
    347.Pupitar
    348.Tyranitar
    349.Lugia
    350.Ho-Oh
    351.Celebi

    Typed it myself, you'll have to remove the numbers if you don't want them and do the 3rd and 4th yourself.
    I think you messed up some of those numbers. ;)
     
    2,048
    Posts
    16
    Years
    • Seen Sep 7, 2023
    Um, did you read the post? He is using Gamemaker. That looks like RGSS coding to me.

    I know he's got the RMXP starter kit; he posts in the Essentials thread.

    Besides, in your list, Chikorita and Porygon2 are spelled wrong :P
     
    2,048
    Posts
    16
    Years
    • Seen Sep 7, 2023
    I was talking about VarietyVidsnet's list, not yours. Incidentally, your spelling isn't really much better. You spelled Squirtle, Victreebel, Graveler, Magnemite, Doduo, Exeggutor, Lickitung, Gyarados, Vaporeon, Omastar, Ledian, Ampharos, Forretress, Ursaring, and Remoraid wrong :P

    I have no idea why I'm spell-checking strangers' lists of Pokémon names :\
     

    Peeky Chew

    Master of Palettes
    829
    Posts
    14
    Years
  • I was talking about VarietyVidsnet's list, not yours. Incidentally, your spelling isn't really much better. You spelled Squirtle, Victreebel, Graveler, Magnemite, Doduo, Exeggutor, Lickitung, Gyarados, Vaporeon, Omastar, Ledian, Ampharos, Forretress, Ursaring, and Remoraid wrong :P

    I have no idea why I'm spell-checking strangers' lists of Pokémon names :\
    Oh, right. And someone has too much time on their hands ;)
     

    Poeman

    Banned
    755
    Posts
    15
    Years
    • Age 29
    • Seen Nov 1, 2012
    Just because I HAVE the starter kit doesn't mean I used it for my pokedex. Wichu you are completely in the wrong. Thanks for everyone that posted a list, this weekend when I can actually get on I will proof read it and finish my pokedex :D
     
    2,048
    Posts
    16
    Years
    • Seen Sep 7, 2023
    I wasn't trying to imply you were using it. That script outputs a text file containing all the Pokémon names, which you can then use in Game Maker. Just because it's made in RMXP doesn't mean you can't use it for anything else...

    Besides, using a script like that means that you won't get any mistakes (poccil pulled the data directly from a ROM), and you can add your own formatting (for example, if you're going to copy that into GM, you can add quote marks and commas to make an array of strings).

    Sorry for the misunderstanding.
     

    Poeman

    Banned
    755
    Posts
    15
    Years
    • Age 29
    • Seen Nov 1, 2012
    Oh my bad XD
    Yes that's perfect, and I don't need to put quotes in to make it a string, I can just read the value as a string :D
    Thank you(because I'm using poccils data for the rest of the DEX lol)
     
    Back
    Top