-
Notifications
You must be signed in to change notification settings - Fork 0
Match Spec
Flashback083 edited this page Jan 26, 2022
·
9 revisions
This page is for specs which only work for matching, that mean a pokeedit or pokegive will do nothing. Its for plugin which support spec or dev usage, exemple : MoreDrops plugins will drop items for pokemon, and its work with spec, so you can use it to check if pokemon match.
| List of spec | Example | More info |
|---|---|---|
| all | all | Will always return true for all pokemon |
| spawner | spawner | Will return true if the pixelmon come from a Spawner |
| dim | dim:5 | Will return true if pokemon is actually in the dimension 5 (or whatever dimension you set) |
| dimname | dimname:world | Will return true if pokemon is actually in the dimension named world |
| knowsmove | knowsmove:Quick_Attack | Will return true if the pokemon have the Quick Attack move (or whatever move you set) |
| egggroup | egggroup:Mineral | Will return true if the pokemon match which his egg group |
| isBoss | isBoss | Will return true if the wild pokemon is a boss, no matter of the level |
| isMega | isMega | Will return true if the wild pokemon is a mega |
| isWild | isWild | Will return true if its a wild pokemon |
| isEnumSpecies | isEnumSpecies:Moltres/Zapdos/Articuno | Will return true if the pokemon is one of the bird listed. Replace space with underscore |
| isNotEnumSpecies | isNotEnumSpecies:Moltres/Zapdos/Articuno | Will return true if the pokemon is NOT one of the bird listed. Replace space with underscore |
| isSpec | isSpec:Moltres_form:1/Zapdos_form:1/Articuno_form:1 | Will return true if the pokemon is one of the bird form Galarian listed. Replace space with underscore |
| isNotSpec | isNotSpec:Moltres_form:1/Zapdos_form:1/Articuno_form:1 | Will return true if the pokemon is NOT one of the bird form Galarian listed. Replace space with underscore |
| isFromFishing | isFromFishing | Will return true if the pokemon came from fishing with any pixelmon rod |
| isAlola | isAlola | Will return true if the pokemon is a Alolan form |
| isGalar | isGalar | Will return true if the pokemon is a Galarian form |