• 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

v21.1 Modular Pokemon Selection 1.0

This resource pertains to version 21.1 of Pokémon Essentials.
Pokémon Essentials Version
v21.1 ✅
Modular pokemon selection
It is very easy to use

How it works:
First, the player gets to choose a Pokemon from a list, and then the single entry pokedex page is provided (the one you see after catching a Pokemon). After that, confirm or go back to choosing.
Modular Pokemon Selection.gif


Features:
  • Modular Pokemon Selection
Installation:
  • Download the zip file from the link above ("Go to download", top right)
  • Extract it into your game's main folder
  • Compile before starting to play
  • Have fun!
The zip file contains:
  • Plugins/Modular Pokemon Selection/Pokemon_Lists- Pokemon lists to use (you can add as you wish)
  • Plugins/Modular Pokemon Selection/Modular_Pokemon_Selection- Main script for the plugin
How to use:
First, go to Pokemon_Lists.rb and add your list of Pokemon.
Next, add anywhere you want the function pbPokemonSelection(:list_name)
For example:
pbPokemonSelection(:Legendaries)
You can also use it to choose your starter like that:
pbAddPokemon(pbPokemonSelection(:Starting_Pokemon),5)
And you can even modify this Pokemon by doing something like this:
Modify Pokemon:
pkmn = Pokemon.new(pbPokemonSelection(:Starting_Pokemon),5)
pkmn.iv[:HP]             = rand(20..31)
pkmn.iv[:ATTACK]         = rand(20..31)
pkmn.iv[:DEFENSE]        = rand(20..31)
pkmn.iv[:SPECIALATTACK]  = rand(20..31)
pkmn.iv[:SPECIALDEFENSE] = rand(20..31)
pkmn.iv[:SPEED]          = rand(20..31)
pbAddPokemon(pkmn)
$game_variables[7] = pkmn.name

For any questions, problems, or requests- feel free to reply :)
Credits
Roei
  • 1674742646012.png
    1674742646012.png
    97.2 KB · Views: 2,156
Author
roei110
Downloads
582
Views
5,356
First release
Last update
Rating
5.00 star(s) 2 ratings

More resources from roei110

Latest updates

  1. Updated to v21.1

    And changed the UI (a lot...) Please review and suggest ideas, if you think the UI should look...

Latest reviews

Simple and foolproof. Looks better than the "Show Choices" menu and even accounts for if the player tries to cancel selection.
Back
Top