Raid: Properties
Section 7.C.1
Various new properties are added by this plugin in order to establish the basic foundation for raid battles. The two fundamental properties are Raid Types - which determine the overall characteristics of raids, and Raid Ranks - which determine the difficulty levels of individual raids, what species are eligible to encounter, and the attributes those Pokemon may have when encountered.
These two things are what form the basis of what the rest of the plugin builds upon. Below, I'll go into detail about both properties.
Raid Types
This plugin offers a variety of different types of raid battle styles to participate in. These are defined in the RaidType
class within the GameData
module in the plugin scripts. This is where all of the specifics of each raid type is stored, such as the specific music, battle text, and background visuals that are used for that specific type of raid.
By default, this plugin includes the following types of raids:
Basic Raids
Ultra Raids (only available when the Z-Power add-on is installed)
Max Raids (only available when the Dynamax add-on is installed)
Tera Raids (only available when the Terastallization add-on is installed)
Basic Raids are always available for anyone who installs this plugin. However, the others may require additional add-on plugins to be present in order to be used.
Below, I'll go into detail about all of the defined properties for a raid type.
Raid Ranks
A raid's rank is simply the number of stars that raid has, which generally indicates the overall difficulty level of the raid. A raid's rank can range between 1-7 stars, with 1 being the easiest and 7 being the hardest.
The rank of a raid also determines which species can naturally be found in that raid. Generally speaking, weak and unevolved species such as Caterpie and Magikarp will typically be found in lower ranked raids such as ranks 1-2, while stronger evolved species will be found in higher ranks such as ranks 3-5. For the purposes of this plugin, rank 6 raids are reserved specifically for Legendary and Mythical species, as well as things like Ultra Beasts and Paradox species.
Rank 7 raids are the hardest difficulty raids. Unlike the other raid ranks, no species are naturally found in these raids, because it's already assumed that any species can appear in a rank 7 raid. I'll go into more detail on this when covering raid battles and dens elsewhere in this guide.
Last updated
Was this helpful?