- 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
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:
Once you are there, paste this in:
Let the game compile, then you are done!
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:
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:
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:
Once you are there, paste this in:
Let the game compile, then you are done!
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:
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:
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