This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
All the details: AI in Pokémon Mystery Dungeon: Red/Blue Rescue Team | |
Previously, we looked at the overall structure of PMD's AI. | |
1. Item | |
2. Attack | |
3. Move | |
4. Wait | |
If you haven't seen the previous video, I recommend watching that first. (Link in the description) | |
There are plenty of AI details that haven't been examined yet. | |
Let's dive right into those details! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# All these statuses ignore tactics and Hungry Pal. | |
if Pokémon is a decoy or cross-eyed: | |
Move in a random direction. | |
End. | |
if Pokémon has blinker: | |
if Pokémon can move forward: | |
Move forward. | |
End. | |
if roll 50% is success: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How AI works in Pokémon Mystery Dungeon: Red/Blue Rescue Team | |
Sometimes your partner's AI works | |
...and sometimes it doesn't. | |
How does the AI decide what to do? | |
Let's take a closer look. | |
There are three main types of actions in PMD: | |
* Moving | |
* Attacking |