• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

Full regional dexes for Generation 8 Project 1.1

Pokémon Essentials Version
v20 ➖
I recreated all the regional dex data for Pokemon Essentials. Created with the Generation 8 Project in mind. This includes two files. One for normal Pokemon Essentials, and one for the Generation 8 Project.

I did all of this by hand, and I made sure there were no spelling mistakes.

This works with Pokemon Essentials 19.1 and 20. I am unsure if it works with v19 or v18

To install this, simply download the zip file provided, then take regionaldexes-gen5.txt and put it in your PBS folder. You will need to rename it to regionaldexes.txt

Once you have done that, you will need to load into your project, and go to your Settings script. In the settings script, locate this code:

Pokedex Code:
Expand Collapse Copy
  def self.pokedex_names
    return [
      [_INTL("Kanto Pokédex"), 0],
      [_INTL("Johto Pokédex"), 1],
      _INTL("National Pokédex")
    ]
  end

Once you are there, paste this in:
Vanilla Pokemon Essentials Pokdex Code:
Expand Collapse Copy
  def self.pokedex_names
    return [
      [_INTL("Kanto Pokédex"), 0],
      [_INTL("Johto Pokédex"), 1],
      [_INTL("Hoenn Pokédex"), 2],
      [_INTL("Sinnoh Pokédex"), 3],
      [_INTL("Unova Pokédex"), 4],
      _INTL("National Pokédex")
    ]
  end

Let the game compile, then you are done!

To install this, simply download the zip file provided, then take regionaldexes.txt and put it in your PBS folder.

Once you have done that, you will need to load into your project, and go to your Settings script. In the settings script, locate this code:

Pokedex Code:
Expand Collapse Copy
  def self.pokedex_names
    return [
      [_INTL("Kanto Pokédex"), 0],
      [_INTL("Johto Pokédex"), 1],
      _INTL("National Pokédex")
    ]
  end

Once you are there, paste this in:
Generation 8 Project Pokdex Code:
Expand Collapse Copy
  def self.pokedex_names
    return [
      [_INTL("Kanto Pokédex"), 0],
      [_INTL("Johto Pokédex"), 1],
      [_INTL("Hoenn Pokédex"), 2],
      [_INTL("Sinnoh Pokédex"), 3],
      [_INTL("Unova Pokédex"), 4],
      [_INTL("Kalos Pokédex"), 5],
      [_INTL("Alola Pokédex"), 6],
      [_INTL("Galar Pokédex"), 7],
      _INTL("National Pokédex")
    ]
  end

Let the game compile, then you are done!
Credits
Please credit me. I spent a lot of time typing out the names, and fixing spelling errors.
  • TheCrafters001
Author
TheCrafters001
Downloads
1,412
Views
3,601
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from TheCrafters001

Latest updates

  1. Minor Changes

    I made a minor change, now every pokemon name is fully capitalized in gen 6, 7, and 8.
Back
Top