While I'm not exactly sure, Pokémon Essentials was built on Flameguru's Pokémon battle scripts. So, it probably means "pokebattle". Whether you want to continue on with that is up to you; I do it here and there. It doesn't make any difference.
If you want to delete only the first:
def deleteFirst(species)
species = getConst(PBSpecies,species) if !species.is_a?(Numeric)
for i in 0...$Trainer.party.size
$Trainer[i] = nil if $Trainer[i].species == species
break
end
$Trainer.party.compact!
end
If you want to delete every...
Recreated the Pokédex number editor (part of Pokémon editor). Sorting options for this coming later. (v1.2.0 had this same pokedex editor, but it was very buggy).
On startup of the Pokémon editor, you'll see how long it took to load up. (Usually between 1 and 3 seconds.)
When generating of any...