-
Notifications
You must be signed in to change notification settings - Fork 46
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
During battle, have a log or history of moves used by enemy Pokémon #184
Comments
Also obviously if it's an allied pokemon's move we don't show them the damage. Not really sure what you might actually want to see for an ally as far as moves actually, maybe we only need to show the enemy's history? But for allies you would want to select them to see the damage taken |
Nice mock-up and good thoughts on how to go about showing this information. I think being able to select your own Pokemon team seems like something we don't really need here, given we can't know the damage numbers we deal. I'm trying to think about other use-cases for this feature as a whole. Being able to click on each individual Pokemon on the enemy's team seems like overkill here. I'm imagining that often you'd just want to know what the last 3-5 moves were. This way you can "remember" just a bit more information to help with the current battle. Here's one vision I had for the feature (assume no borders with the table, just using for formatting). The most recently used move is at the top, and fills out below. BATTLE HISTORY (a title/header similar to our menu titles)
Replace the S/P/N with the appropriate symbols for the move category. I know we have the information on the move name, category, and the damage. If the move does not deal damage, then the "Last Damage" stuff doesn't currently track it. So this would need to be updated to somehow include all moves. The "Swap out" I feel is somewhat important as it helps separate what's been going on in the battle. The "crit!" is something we don't have, and unsure if it's worth the extra memory read every 10 frames. Am interested if another column for other info makes sense here? I expect to be able to fit quite a few moves in this list. I do not expect we need to allow for pagination to see everything; only the last eight or so, or whatever fits really, is adequate. Also leaving a note here for whoever tackles this (could still be me, I will eventually), to be sure to color the move names just like on the main tracker screen, so this would include the color bar stuff too. Which means, this chart needs to use the |
Just mentioning that with the recent ability tracking overhaul, the move tracking framework is in place to capture the information for this screen. Currently it is only being used to see when skillswap/transform/role play are successfully used, but it can easily be added onto. Just need to move the move missed/failed check to inside |
Important information to capture: Item (bottle icon): Switch (pokeball icon): |
Version: 0.6.1
Currently "Last Damage Taken" is the only useful battle history shown. While this is often useful enough as-is, ideally the user should be able to click on this box to see more information about the current battle, effectively a full history log of what attacks have occurred thus far.
Implementing this to show just moves that dealt damage is probably straightforward, but having it show all moves and what Pokémon used them might be a bit harder. Would also need to considered fighting two of the same Pokémon species back-to-back and how we'd want to show that in the log. Or does it make sense to only show a simple history log of just the current Pokémon you are fighting?
I suppose the best, fullest feature is to have all information for all Pokémon and the moves they used and the damage they did (if any), all for a single battle.
The text was updated successfully, but these errors were encountered: