Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Guide] Add BDSP Stationary RNG Guide #185

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions guides/Brilliant Diamond and Shining Pearl/Stationary RNG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
title: 'Stationary RNG'
description: 'RNG Stationary Pokemon such as your starter Pokemon'
slug: 'retail-bdsp-stationary'
subCategory: 'Custom Firmware'
---

## Tools

- A Switch with CaptureSight ([CaptureSight Install Guide]())
zaksabeast marked this conversation as resolved.
Show resolved Hide resolved
- [Chatot](https://chatot.pokemonrng.com/#/bdsp)

## Step 1: Set Up the Tool

1. Start the game from the Switch menu, but do not enter into the continue screen yet.
2. Input the 4 current states from CaptureSight into the 4 current state boxes.
- To keep the current states from changing while doing this, you can press `A` to pause CaptureSight from updating the states, though this should not be necessary if doing this at the intro screen.
3. Input the correct delay for the Pokemon you are RNGing.
- See below for the delays needed.
4. Check the "Set IVs" box if going for a Pokemon with 3 set IVs.
5. Adjust the filters to the Pokemon wanted.
-If going for a genderless Pokemon make sure to choose "Genderless" in the "Gender" box.
6. Generate results and find a target advance.
- If there are no results, try lowering the filters, or increasing the max advances.
- Keep in mind that the higher the advance is, the longer the wait to reach the target advance.

```
Note: CaptureSight keeps track of how many times the RNG has advanced since opening the overlay. Should you back out of the Main RNG window, or close the overlay, this will reset the advance counter. In the case of this happening, input the new current states to adjust for the new target advances.
```

## Step 2: Obtaining the wanted Pokemon

1. If going for a high advance, you can advance the RNG faster before entering the final screen.
2. When nearing the target advance, enter into the final screen or final input.
- See below for the final screens and delays needed.
3. Wait for the target advance to show, then press `A` to obtain Pokemon or begin the battle on the target advance.

Congrats! You should now have the Pokemon you wanted. If not, you can reset the game and try again.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-- Everything is not necessary here. I'd change that for the intro of the rough draft guide.

## Delays and Final Screens

### Starters

- Delay: 64
- Final Screen: "Yes" when selecting the Pokemon from the briefcase.

```
Note: Make sure to save before entering the lake area. There is a cutscene that will advance the RNG so keep that in mind when waiting for a target advance.
```

### Rotom

- Delay: 90
- Final Screen: "You thumped the TV Set."
- Genderless

### Giratina

- Delay: 84
- Final Screen: "Bishaaan!"
- Genderless and 3 set IVs

### Ramanas Park

- Delay: 84
- Final Screen: Dialog Box
- Some will be Genderless, all have 3 set IVs

### Mystery Gift

- Delay: 0
- Final Screen: The moment when you SELECT the event in the menu where you can chose what to claim.
- Some are Genderless and some have 3 set IVs. Check the Wondercard info for this.

```
Note: It is recommended to RNG the Mystery Gift in the upstairs of the player's house for slower RNG advances.
```
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

100% good we'll push screen once we can

1 change: 1 addition & 0 deletions src/utils/sort-categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const sortedCategories = [
'Sun and Moon',
'Ultra Sun and Ultra Moon',
'Sword and Shield',
'Brilliant Diamond and Shining Pearl',
];

export const sortCategories = (first, second) => {
Expand Down