Pokemon SV Bot Services - Xieons-Gaming-Corner/Wiki GitHub Wiki
Available Raids for Request:
The following are the raids available for Paldea, on the Violet
Version of the Game - from Xieon's Gaming Corner that have the Jumbo/Mini Marks.
Paldea
Version:Violet
Marks:Jumbo or Mini
Shiny: Yes

Map /RAID_CODE_REQUEST
Discord Users
- This command is specifically enabled for all users of the Discord to use as a slash command in this channel
- A command that when used in the specified channel(s) in the Xieon's Gaming Corner server that provides the user with a drop down list of Pokemon to select, and will return a raid seed to use for "Self Service Raid Requests" such that you can run the command for a raid whenever you're available since we try to maintain as close to a 24/7 bot uptime as we can.
Overview
This command is dropdown menu that when called allows users to select from a list of Pokémon. The options are sorted so that Pokémon with "Teeny" and "Jumbo" prefixes appear at the top, followed by all other Pokémon in alphabetical order.
Usage
When a user interacts with the dropdown, the bot will:
- Display a list of Pokémon, with "Teeny" and "Jumbo" entries sorted by the word following those prefixes.
- Allow users to select a Pokémon, returning the raid seed value tied to that choice.
- Display the selected Pokémon's name with the appropriate emoji (for "Teeny" or "Jumbo").
-
- The emoji codes are hard coded in and are Discord App Specific. Using this code for another Discord App will require updating the emoji's in the source code.
Visual Use Example
Sorting Logic
- Teeny Pokémon: Sorted alphabetically by the word following "Teeny".
- Jumbo Pokémon: Sorted alphabetically by the word following "Jumbo".
- All other Pokémon: Listed in alphabetical order.
Example Dropdown Options
- Teeny ✨ Vaporeon
- Jumbo ✨ Vaporeon
- Blissey
- Qwilfish
- Polteageist
- Maushold 4 family (jumbo)
- Talonflame (jumbo)
- Toedscruel (jumbo)
- Toedscruel (Star 4)
- Toedscruel (Star 4 - variant)
- Dedenne (Star 4)
Integration For Developers or Bot Owners
Permissions
Ensure the bot has the #permissions:
- Manage Messages (if needed for interaction responses)
- Read Messages and Send Messages
- Use Slash Commands Ensure that users are allowed to call the slash command in the appropriate channels.
To enable this command:
- Add the python module for
RAID_CODE_REQUESTS
to your Python Discord Bot - Ensure intents for message content and members are enabled.
Notes
- The sorting logic prioritizes "Teeny " and "Jumbo " entries first.
- If more categories are needed, the
sort_priority()
function can be extended.