Rezwan DE REAPER Posted June 27, 2023 Posted June 27, 2023 One question - I couldnt debug in typhlosionite in the game i was wondering if it's not in the game? Quote
AsNKrysis Posted June 29, 2023 Author Posted June 29, 2023 On 6/27/2023 at 2:50 AM, Rezwan DE REAPER said: One question - I couldnt debug in typhlosionite in the game i was wondering if it's not in the game? Due to the buggy compiler of Rejuvenation's current version, any new moves and items added by this mod cannot be added in through debug unless you recompile the data again. It's not necessarily difficult to do, but you'll have to do it every single time you re-open the game. 1 Quote
KingCritz Posted June 29, 2023 Posted June 29, 2023 I noticed one of the docs said that Jangmo-o was added to the egg list. Is there another doc that has other changes like? New gym teams or boss battle teams and such? Quote
AsNKrysis Posted June 30, 2023 Author Posted June 30, 2023 3 hours ago, KingCritz said: I noticed one of the docs said that Jangmo-o was added to the egg list. Is there another doc that has other changes like? New gym teams or boss battle teams and such? At some point I can make a document listing those, but at the moment I've mostly forgotten what I added to who. So that might not be coming soon. Quote
KingCritz Posted July 2, 2023 Posted July 2, 2023 Did you happen to add a Dark Rock to extend Noctem to the mining rock? I couldn't find it in debug and I saw your message about that above so I was just curious. Quote
AsNKrysis Posted July 2, 2023 Author Posted July 2, 2023 30 minutes ago, KingCritz said: Did you happen to add a Dark Rock to extend Noctem to the mining rock? I couldn't find it in debug and I saw your message about that above so I was just curious. Currently no, I don't know how to adjust the mining tables so currently it's only available in GDC Department of Dreams. Quote
AsNKrysis Posted July 11, 2023 Author Posted July 11, 2023 7 hours ago, uj9 said: Anyone know how to fix this? I'm really unsure of what's causing that. Can you recall exactly what happened in that battle? The code that the error is pointing towards is the currently unused Rage Fist mechanic, however I'm unable to recreate that in my own testing. Quote
uj9 Posted July 11, 2023 Posted July 11, 2023 16 hours ago, AsNKrysis said: I'm really unsure of what's causing that. Can you recall exactly what happened in that battle? The code that the error is pointing towards is the currently unused Rage Fist mechanic, however I'm unable to recreate that in my own testing. It usually happens every time a pokemon uses a move in battle this error would happen but the battle will continue like nothing happened. I would like to note that I am in the Spoiler Erin section of the game in Anju's Castle Quote
whyyu25 Posted July 11, 2023 Posted July 11, 2023 Just a quick question, does the initial crest works with the alternate form ? Like the luxray crest with the luxray alt form ? Quote
AsNKrysis Posted July 12, 2023 Author Posted July 12, 2023 7 hours ago, uj9 said: It usually happens every time a pokemon uses a move in battle this error would happen but the battle will continue like nothing happened. I would like to note that I am in the Hide contents Erin section of the game in Anju's Castle I can't seem to recreate that bug no matter what I try. I'll look more into it by the next update, but I apologize for the inconvenience currently. Quote
AsNKrysis Posted July 12, 2023 Author Posted July 12, 2023 5 hours ago, whyyu25 said: Just a quick question, does the initial crest works with the alternate form ? Like the luxray crest with the luxray alt form ? No, Crest functionality has been removed from all AltForms and Regional Variants. Quote
jimkas Posted July 15, 2023 Posted July 15, 2023 Before I waste a bunch of time, I would like to ask if it;s possible to breed a battle bond pokemon and if I am able to tell it's a battle bond pokemon before it fully evolves? Quote
AsNKrysis Posted July 15, 2023 Author Posted July 15, 2023 36 minutes ago, jimkas said: Before I waste a bunch of time, I would like to ask if it;s possible to breed a battle bond pokemon and if I am able to tell it's a battle bond pokemon before it fully evolves? Yep, the hatched Pokemon will have a random chance of potentially receiving Battle Bond, which it will have but won't take effect until it reaches its final stage evolution. Quote
jimkas Posted July 15, 2023 Posted July 15, 2023 6 minutes ago, AsNKrysis said: Yep, the hatched Pokemon will have a random chance of potentially receiving Battle Bond, which it will have but won't take effect until it reaches its final stage evolution. Is there any way to possibly know if the pokemon has battle bond, even through using stuff like debug mode? Quote
AsNKrysis Posted July 15, 2023 Author Posted July 15, 2023 3 minutes ago, jimkas said: Is there any way to possibly know if the pokemon has battle bond, even through using stuff like debug mode? It'll have Battle Bond in the summary menu. The pre-evolutions can have Battle Bond as an ability, but they just don't do anything until they're at their final evo. Quote
jimkas Posted July 15, 2023 Posted July 15, 2023 2 minutes ago, AsNKrysis said: It'll have Battle Bond in the summary menu. The pre-evolutions can have Battle Bond as an ability, but they just don't do anything until they're at their final evo. Understood, thanks for answering so quickly Quote
AsNKrysis Posted July 15, 2023 Author Posted July 15, 2023 1 hour ago, jimkas said: Non of them had battle bond ¯\_(ツ)_/¯ Unlucky man, sorry. It's scripted to get Battle Bond or not on creation, so you just have to keep trying. Quote
Developers Karvanha Posted July 16, 2023 Developers Posted July 16, 2023 Eggs are coded to retain their parents' forms when they can (just like evolutions) so I don't think you can get a Battle Bond form by breeding a normal one. The 50-50 will be rolled only when you catch it in the wild or receive it as a gift. That's why I added the functionality of changing forms with an item for the Ash-Greninja mod for Reborn. You could also make the 50-50 roll occur for eggs by tinkering with the code in PokemonDayCare.rb I think. Edit: I had a look, I think the following should work: Spoiler Changing this line: egg.form = mainparent.form unless egg.species == 479 to this: egg.form = mainparent.form unless [479,PBSpecies::FROAKIE].include?(egg.species) Quote
AsNKrysis Posted July 16, 2023 Author Posted July 16, 2023 5 hours ago, Karvanha said: Eggs are coded to retain their parents' forms when they can (just like evolutions) so I don't think you can get a Battle Bond form by breeding a normal one. The 50-50 will be rolled only when you catch it in the wild or receive it as a gift. That's why I added the functionality of changing forms with an item for the Ash-Greninja mod for Reborn. You could also make the 50-50 roll occur for eggs by tinkering with the code in PokemonDayCare.rb I think. Edit: I had a look, I think the following should work: Hide contents Changing this line: egg.form = mainparent.form unless egg.species == 479 to this: egg.form = mainparent.form unless [479,PBSpecies::FROAKIE].include?(egg.species) Yep, that worked perfectly. This completely slipped my mind, though it figures that it makes sense for egg Pokemon to not randomize their forms on creation. I'll be sure to apply your fix to the next update. You've been a big help Karvanha, so thanks a bunch! Quote
Virbank 26 Posted July 17, 2023 Posted July 17, 2023 Wish there were gen 5 style backsprites for the delta starter lines as well. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.