Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation since 07/03/26 in all areas

  1. (Disclaimer: This post will probably be updated as time goes on today if there's anything I missed or realize I want to add later. Or maybe not!) 1.) DO NOT MERGE YOUR V14 FOLDER WITH YOUR V13.5 FOLDER Hey there! It's finally time again! This is not the release post. This is a quick post to help make your save file transition from v13.5 to v14 is as smooth as possible. First, let's start with this: PLACES THAT ARE NOT SAFE TO SAVE/LOAD UP IN: DISCORD INTEGRATION: Rejuvenation is now officially supported on Discord! No more Poker game or Age of War or whatever it's called in your activity sidebar. GEN 9 + ZA Megas: Gen 9 is now included! This includes numerous moveset updates. I said we weren't including ZA Megas and that's somewhat true. All sprites and stones have been implemented, but only those with official abilities are actually included in game. Go nuts trying to find some of them! JOIPLAY/KIRIN: We do have builds for Joiplay, but calling it official support may be a bit of stretch. These are highly experimental builds and maintaining overarching support is something we aren't putting at a high priority right now. There ARE some issues that we already know about that CANNOT be fixed by our side. The developers of these will have to take care of them. Same goes for Kirin. THE PROLOGUE + NG+: The prologue got some big changes if you weren't aware. It has an extended story if you have a completed v14 save. NG+ Is actually quite extensive this time around. So once you're done playing v14, there's more adventures to be had if you so wish to experience them! Some of them are very... very interesting. And I reward you handsomely for taking the time to play again :). I'll leave it at that. CHAPTER PASSWORDS: V13.5 brought in a Terajuma Password that allowed you to skip directly to Terajuma. v14 Brings in a new password that skips you directly to Act 2, Chapter 9. I really wanted to get a Karma Files password ready for release, but this password is already very experimental. I expect there to be some unforeseen issues with this one. Tread carefully with this one, but it should work okay. In the future I hope to have the Karma Files password skip ready as well, but ACT 2 is so extensive that it takes a lot of time and testing. I hope you all understand! RANDOMIZER SUPPORT: Unfortunately due to all the major systems changes we've had, having this in time for release was not feasible, but we are working on support later down the line! HOW TO START CHAPTER 16: But first, I have to mention something. I know a lot of you Renegade fans are itching to jump into Renegade first. I highly, highly do not recommend that you do this. Renegade acts without regard to spoilers in Paragon. And some things in Renegade will flat out NOT MAKE SENSE without context from Paragon. I HIGHLY recommend that you play and complete Chapter 16 in Paragon FIRST.
    53 points
  2. No turning back. It all ends here. With or without you. ...But where are you? When are you? Instructions on what to do before and after loading can be found HERE. DOWNLOAD THE GAME HERE OR HERE Patch Notes (V14.0.0):
    29 points
  3. Greetings, you probably don’t know who I am. I’m Falirion, one of the Programmers for Rejuvenation. So if I work on Rejuvenation what am I doing on Reborn’s devblog? Well since Reborn, Rejuvenation and Desolation all share our primary codebase I was asked (yes, asked, please ignore the banging on the barricaded door in the background) to talk a bit about one of the more major code reworks that have been done during 19.6’s development, the rework of the move resolution in battle, a part of the Code that was essentially rewritten from scratch. I will give the warning right now, this is going to get technical. So let’s start with the obvious first question. Why? Why fully rewrite a section of the code that was already working fine? Well, because while in the grand scheme of things it was working correctly, about 95% of cases or so, there were several existing bugs that were ultimately deeply rooted in how we actually handle the resolution of moves. We had a collection of bugs that all ultimately boil down to a certain older bug that has plagued the codebase since before I was even part of this community and probably even since the start of Reborn’s development. Our older Players may remember the so-called “spread damage bug”, a bug in which, when using a damaging move that affected multiple opponents, the second affected target would take more damage than it should, if the first affected target fainted to the attack. This was due to the double battle spread damage reduction not applying to the second target because, due to the first target fainting, the game didn’t recognize anymore that it should reduce this damage for being spread damage. Now of course this bug has been fixed for a while so why is this relevant? The fix to this bug is what a programmer colloquially refers to as “duct tape”, a more or less sloppy fix that resolves the issue but doesn’t really address the root cause, like using duct tape to try and keep your headphones from falling apart instead of replacing them. In the earlier mentioned bug collection almost all of them were a variation of this: something happened when dealing damage to target 1, and this would then affect how the move interacts on target 2 (typically the damage) when it in fact shouldn’t do this. Some examples are Moxie, Beast Boost, Soul-Heart and Water Spout or Eruption vs Rowap Berry. And the root cause is the same we were for all these years doing move resolution wrong, simple as that. The issues can be boiled down to 3 key points: Timing, Referentiality and Structure. Before explaining these, a quick aside. When explaining these I am going to refer to 2 Moves in particular Stomping Tantrum and Dragon Darts. This is because the functionality of these 2 moves taught me a fair bit about how the move execution needs to be to work correctly. And while I assume that most people reading this are familiar with Pokémon mechanics, for clarity a quick rundown: Stomping Tantrum is a damaging ground type move which doubles in power if the previous move the attacker used has failed… for most reasons, hitting protect for example does not activate this power boost. Dragon Darts in single battles is just a 2 hit attack, kinda like dragon type double hit. In double battles however this move has a quality we will call smart targeting, it will attempt to hit both opponents once each, if however the move would fail against one of the targets, it will ignore that target and instead hit the remaining target twice. So since we are now on the same page... Of the primary issues Structure is by far the most important one, but I will keep it for last so let’s start with Timing. Now, in the old move execution the general order of things isn’t inherently wrong; first check that the move doesn’t fail, then calculate and apply the damage and then handle the effects. It’s just the logical order of things. However the failure check was happening way too late, in particular for dragon darts, by the time the failure check was happening we had already determined which targets we are hitting and how often. Which is a problem for Dragon Darts because it needs to know whether it would fail or not to determine who to hit and how often in the first place. As such we had to move failure checks a lot earlier and while doing so we noticed, a lot of specific failure conditions were checking at the wrong time entirely, in fact type immunities and primal weathers were part of the damage calculation which is just wrong on so many levels. So let’s talk real quick about failure conditions, in Reborn 19.5 code they are generally in 2 places, at the start of move execution in a method called “pbTryUseMove”, which covers things like being asleep, paralyzed and other things that prevent the move from happening and as such not using PP, and “pbSuccessCheck” which covers just about all the rest just before the move would deal damage. If only it was so easy… After the rework we categorize them into 4 categories (numbered 0 to 3 because we are programmers so we start counting at 0). category 0 is “pbTryUseMove” and is largely the same as before so moving right along. category 1 is new entirely, timing wise it happens after subtracting PP, but before the activation of protean for example. This includes things like primal weathers and queenly majesty, the move is canceled in its entirety, usually irrespective of the explicit target (queenly majesty is a side effect ability, who actually has the ability is irrelevant). Only exceptions here are sucker punch and poltergeist, which directly check for the target here. category 2 and category 3 are both equivalent to “pbSuccessCheck” and are still in this method. Why are these categories separate if they are in the same place? Well I personally also call Category 3 "the group of random move specific failure conditions that exists because Pokémon code always has to be weird and wacky" but that’s a mouthful. The difference between Category 2 and 3 is that Category 2 conditions are checked before checking Accuracy while Category 3 conditions are checked afterwards. To be frank I was tempted to ignore this but there is a quirk about this that is relevant to Stomping Tantrum. Which leads us to Referentiality, an issue largely specific to Stomping Tantrum, as mentioned earlier not all failure conditions actually activate Stomping Tantrum’s power boost. Hitting into a target’s Protect (or equivalent) for example. Another group of failure conditions which don’t count for Stomping Tantrum are in fact all Category 3 failures. Any Failure condition that happens after the accuracy check will not activate the damage boost. Which brings us to the key problem, how do we even recognize why a move failed? Can we even? In the old move execution, we could not, the move failed and there was no reference as to why. Additionally in the Timing category I mentioned that we are checking move failure before determining who and how often we hit them. There is a problem with this, when we check whether a move fails against a certain target now, we are before the point where we handle anything, so we have to delay the effects and player feedback for these failures. Which means we need to know why a move failed after the check is finished. As such we are using what we call hit flags. In the above screenshot you see a bit of the failure handling, along with a lot of examples of these hit flags. They are kept for each target the move targets and make note of what happens to the move against that target. For Stomping Tantrum’s case we can check against these hit flags and make the effect not activate if any of the ones that shouldn’t trigger it are included. So lastly Structure. The primary problem was that when handling moves damaging multiple targets, we were handling targets sequentially, which is to say one after the other. We were checking failure conditions, calculating damage, applying damage, applying effects and so on for one target fully before moving on to the next. Which is the root cause for most of the bugs I mentioned at the start. So if that is wrong what is actually correct? The targets in canon are handled in parallel so we first check for move failure for all targets before then handling those failures for all relevant targets, before calculating damage on all targets, before applying… you get the idea. This approach prevents what happens to the first target affecting what happens to the second, because the damage you are dealing to the second target has already been calculated. This also lets us remove the Duct tape fixes and have overall cleaner code. So how do we actually know that canon works this way? Dragon Darts is a big hint. Not only do we need to know whether the move fails against all targets before calculating damage, we can also tell that failure checking works similarly in parallel based on how Dragon Darts acts when it fails against both targets. When Dragon Darts fails against both targets the player will only receive the feedback for one of those targets, the other target being ignored entirely. The feedback received relates to the target whose failure condition has the least priority when checking failure conditions Let’s look at the reworked pbSuccessCheck real quick. What we see here is that first it creates an Array of hit flags, one hit flag for every target the move targets. Initially the hit flag is on “:Success”, indicating a move that connects with the target. Then it checks each possible failure condition, in order for all targets before checking the next one, in order on this screenshot, whether the target is hidden via the effect of the ability Commander (gen 9 ability jumpscare!), whether the target is in a semi-invulnerability turn (like Fly or Phantom Force), whether a priority move is blocked by psychic terrain and whether the move is blocked by Wide Guard. Between each of these it runs a method called “successCheckFinished?” which ends the check when it detects that the move would fail against all targets at this point and also does some filtering for Dragon Darts to remove the first target that failed. The point here is that the failure condition check also runs in parallel and has a very specific order it checks these conditions for and this order matters. Structure was also significant in a different way, fixing this required a ton of work. Depicted here is the method "pbEffect" as it is in 19.5 Reborn the primary method of move handling, each move with an effect subclasses (overwrite it with their own modified version which can still call into this higher level version of the method) this method. The issue is this method bundles together, everything; damage calculation, damage application, move animation, move effects, literally everything. And to make the previously mentioned fixes to the structure we had to untangle this method, separate the components so we can do each step separately for all targets instead of doing it all for one target. Which due to the subclassing meant, we had to rewrite every single move, all the several hundred moves that exist in the game, we had to fully rewrite in a new structure. I have to give a shoutout to the Community Cooperation Initiative, modders that signed up to work directly on the codebase without being part of the dev teams, maybe even canonize their mods and such things. Without the help of all of them, rewriting all these moves in the new structure would have taken much longer than it did. Thank you for your help in this and everything else since. Now there is more I could talk about here, but I have probably already been rambling way too much. As a TLDR: we rewrote the entirety of the move execution because the rebornian games had some key things wrong here for several years if not more than a decade, which allowed us to fix some long standing bugs which were not fixable otherwise. So why should you, the player, care? Under the hood it changed completely but for gameplay it remained essentially the same except we fixed some bugs, right? Essentially yes, but all this also allowed us to streamline things, for example this: Nice, right? enu asked me to ensure when rewriting the move execution that we can implement simultaneous damage dealing and health bar movement. Doesn’t just look nice but also speeds up move execution a fair bit. Uhh… looks like the door barricade isn’t gonna hold much longer, so I gotta bounce, hope you found this interesting, I know I can get way too much into details, so excuse the long explanation. Have a nice day! Sounds of a door breaking open You will never take me alive!
    22 points
  4. Hey friends! It's been a minute since anything has been posted on the dev blog proper, but I've got something to share. Today I received an email containing a video and a photo of the contents of an envelope had been sent to me. I can't seem to embed the video itself, so I'll have to describe what's going on with that. It's rather interesting though—it was a doorbell video. Weirdly enough, the person recorded on it seems to be... The SPU Delivery Guy? Y'know, the one who delivered those packages from the Puppet Master way back. He's talking to someone inaudible off-camera, but more importantly, what is he doing here? Hang on, let me transcribe it for you... "Yo! Is anybody home? I've got a rush delivery for P̸͡L̸AY̴͢E̢͘R̷̸! ...Oh, they're not home again? Man, I always seem to miss them whenever they've got a package to receive huh? Sure, it's been a while since I've last been here, but it's kind of a weird coincidence that they're never around whenever I am. Kind of a shame too, as I probably won't see be able to meet them for real in the future. Either way, there's an envelope that's addressed to them, so if you would be so kind to hand it to them when you next see 'em, that'd be fantastic. ...What? What do I mean I won't be able to meet them? Well, I'm leaving the city, actually. This is my last day at work y'see, and I'm leavin' for greener pastures in two days. My boss didn't want to extend the duration of my contract, and I decided enough is enough. Too much freaky stuff happening 'round these parts anyways, what with the freak accidents at Axis High 'n all... I don't want any part in it, so I'm headin' to Galar. I've found some work there instead. ...Yeah, thanks man. I'll do my best out there. You take care, too. You better stay safe out there." ...And that's it. The second thing that was included in the email is the package itself—the envelope that the guy delivered. Inside the envelope was... Tickets for a farewell concert for Risa Raider...? But... That shouldn't be possible. As we all know, she's... ... Oh, the mail that contained the video and photo had a bit to say about the ticket. "The tickets seem legit, but there's something off about them. When you hold one up, it looks as if the image of Risa on the front of the card glitches out ever so slightly, as if she's opening her eyes to smile at you. I'm not sure if I hallucinated it or if it's real, but the tickets give me the creeps." Finally, the email described a date was listed on the back of the ticket. July 13th. Strangely enough, there was no venue location included... But instead, it lists that a promotional video for the concert shall be released that day. Perhaps the place where the concert will be held will be announced in that video? Something shifty is going on with this whole thing, that's for sure. Perhaps it's best that we keep an eye on the situation for now. We'll keep you posted! o7
    18 points
  5. Don't report bugs to the devs if you are using mods. If you have issues with the mods use this thread to report it or contact us by Discord. The rars all come with the proper folder structure, just throw their contents into the game folder. This is a compilation of mods working for V14 ported from the one I made for 13.5. They are very modular and shouldn't break on small updates. Some didn't need changes, while others needed some small touching and some have been just made from zero due to how much the code of those parts changed or me having a better idea on how to do it. Some mods have been removed because they are superflous due to being alrady something dientical or similar in the base game. Some I may just considered that are not needed. Make requests for adding things and I may do it if I have time. You can have them all or chose the ones you want. Some of them have dependencies on three scripts that don't do anything unless you have the others. They have code that can be called from other scripts. This time I am adding some modular debug that activates the debug menu in particular places only. Far more recommended to use oly those you will use to prevent errors with the debug menu. People who contibuted to this pack besides myself (detailed credits ont he specific mod): @Jarred B Dank aka Matt. Made some of the mods of the pack. He has been the main person who collaborated with me in Discord to make the QoL Mod Compilation Pack for Rejuv 13.5 from which his verson was ported. @AsNKrysis aka AsN. Ported three of the mods available on the pack. He also has his own mod releases for 13.5, so please check them too. @Waynolt a lot of his modular pack has been ported to v13. @DemICE some of DemICE's mods have been ported or have been used as references when making new ones. You have to drop the "patch" folder in the rar in your game's folder. Everything is already properly set there. Mod List: Rejuv V14 QoL Mod Compilation Pack Changelog: Downloads: August 2nd Update (14.0.14): Rejuv V14 QoL Mod Compilation Pack Version 11.rar You can also check my ShowMoveEffectiveness Mod for V14. Old Downloads:
    7 points
  6. Theres no error message. I did eveything i can think of. I tried to allow firewall access, redownloaded the game, i loaded an old save file just to make sure its not a corrupter save, extracted to game in a different folder away from v13.5, etc. I can play v13.5 normally. Do you have any ideas/reason for why this is happening? Am i missing a few files?
    5 points
  7. In order to view the #emotional-support channel on our community discord, users will need to have the Trusted role on the server. In order to get the trusted role, users must be verified, have less than 3 active warning points, and must read the following:
    5 points
  8. I posted this on Reddit a few months ago, but I thought I'd share it here as well. I've managed to find all versions of Rejuv and saved all of them to my own Google Drive to make sure they're archived. Thought some of you here might be interested in trying out old Rejuv and see how far the game has evolved. 1. https://drive.google.com/file/d/1FtbfenFuUL_ff-E3nAZ4Ceexbgm6bGGR/view?usp=sharing 2. https://drive.google.com/file/d/1wYLzGvjXk4gmNmwxk6aB66SdGbo375Et/view?usp=sharing 3. https://drive.google.com/file/d/1LDiW3cuhuPjcdkfJkXIdr4sHdm5f-heL/view?usp=sharing - (Credit goes to MoonPaw for digging this one up) 4. https://drive.google.com/file/d/19boRjZ0_PbRzL_pQS8Fwk8p0x44x6SqI/view?usp=sharing 5. https://drive.google.com/file/d/1HBdGbwg5IxOAsKT-OWwI-1j-IEn7IYxW/view?usp=sharing 6. https://drive.google.com/file/d/1S3x9ktKr3SR16byDlPK28ufHODo3Bjrd/view?usp=sharing 7. https://drive.google.com/file/d/1g9FmMfiXSaG3mPEk2H8089LU4Ln1kjUl/view?usp=sharing 8. https://drive.google.com/file/d/1r9HDCZEigPNfrFonGcsO_ZQBEy74a_Kt/view?usp=sharing 9. https://drive.google.com/file/d/13KYoKIvlTJFOMzm2mo-0GI_vOci-xIOg/view?usp=sharing 10. https://drive.google.com/file/d/1arnJn5IaIQXLAZ0WTQdepmiEG4MJfY5X/view?usp=sharing 11. https://drive.google.com/file/d/1pOwQQUUgjRFmvWow5DJbleAfz1FTn23s/view?usp=sharing 12. https://drive.google.com/file/d/1lfUV-qajIEYrNqN-tMNjZ6MrHjkg5a7o/view?usp=drive_link 13. https://drive.google.com/file/d/1O7f89eOvRHPoeZ2HjzuEIz4GRIWz2nTl/view?usp=sharing 13.5. https://drive.google.com/file/d/1SyWyQ7WCaIZX_PgUTMPHr3Sy_-JgVc-w/view?usp=sharing (patched to 13.5.7)
    4 points
  9. It's both for new and some that just had placement or requirement changes.
    3 points
  10. Some new visitors here! Welcome! I’ll cut to it: I will be releasing updates to the Rejuvenation Walkthrough for V14 incrementally. I’m thinking of respecting the main server spoiler policy and not publishing until that window is up - this will allow me time to work, catch up with month 1 patches, and allow everyone to play the game. Of course if going no-walkthrough is an issue for you please wait until then. Cheers From bigJ himself
    3 points
  11. Yes, I am working on a V14 version, and I think I should have it soon. It will be on a separate post to keep this for 13.5
    3 points
  12. New download. The old updater has been discarded. Now, the updater itself has been integrated into the actual game, so that there's no confusion as to whether a patch has dropped or not.
    3 points
  13. Shiny DLC. Please place in the "Characters" folder. Phan Project Progress Par: ########################################## Enjoy your stay in Ceolis! - Punkeev (Admin, Leader)
    3 points
  14. LETS GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
    3 points
  15. Version 9: Added Z.1.3.7.Cheat_PC_AddGemPack, Z.3.2.Cheat_PC_Get100000RedEssence, and Z.6.0.Cheat_PC_GimmighoulCoinFarm.
    2 points
  16. My only deepest hope is for Monotype Passwords like in Reborn. It’s all I’ve been waiting for for years
    2 points
  17. > very, very interesting Why did you phrase it like that, Jan, did you put WD Gaster in NG+
    2 points
  18. I don't think he has anything set up for posting custom sprites for this mod, but I do think it's a good idea to just create your own thread and post them there.
    2 points
  19. WE IN THE FINAL STRETCH BOIIISSSSSSSSSSS
    2 points
  20. july 13th? oh its gonna be so hype and thank the devs for their amazing work~
    2 points
  21. Hello, I've been working on a mod for Rejuv for myself, because I wanted to use more diverse pokemon teams. All the changes can be found in the attached ods document (all changes in bold), but in summary, the mod buffs most weak pokemon to be more usable and a few more powerful pokemon to add diversity to their gameplay. Additionally to a lot of general stats buffs, in many cases, I buffed the weaker offensive stats of pokemon to allow a use of special or physical damage, some pokemon gain a double type when they kinda make sense, others also gain new abilities or new pokemon/trainer exclusive moves. Because I like them, I have also at least added an additional ability and a late game move to all eevee forms and starter lines. Most changes are rather small but some are pretty big. For example, Sceptile is now a physical attacker with "Sharpness", Mega Sceptile stays as a special attacker but gains Technician. Aggron can be used as a special attacker (if you want to) with a buffed SpAttk and Lightningrod. Meganium gains the fairy type and the Filter ability etc. Note1: Serperior gained the Psychic type (and a few attacks), this is because it annoyed me that it was the only one of the generation without a double type (Samurott gained Ice-type). If you have a suggestion for an alternative, I would be curious. All suggestions on other stuff are also welcome. Note2: I tried to not make any mistakes, but I'm only human, so the Excel file may not be completely exact. Installation: I normally replace the montext.rb document in Rejuvenation-13.5.0-windows\Scripts\Rejuv with the file attached and then use a compile all command in the game. Maybe this would work if you just added it to the mod folder, but I'm not sure. To more experienced modders, if there are modifications I have to do to the file to make it work in that way, please tell me and I will do it. Compatibility/Version update/Uninstall This mod only modifies 1 file, the pokemon data, so it should be compatible with everything that doesn't change this file. The mod will probably not be compatible with next version (until updated), but the moves learnt and (I think) the new abilities will remain even if you update. I'm pretty sure that there is no issue installing or uninstalling this mod at any time. Learnt moves and abilities will remain, but the stats will go back to normal after 1 level. I hope you enjoy ! Edit: I just realised that this is the wrong forum to post this... I'm sorry, would it be possible for a mod to move it to the correct place (Guides & Resources) or should I delete and repost? Rejuv Changes Summary.ods montext.rb
    1 point
  22. Fixed, thank you, You need the actual Item Finder in your bag for the mod to work, you get it on Mirage Woods. No, both can be used together, they are compatible. Move to the right, egg moves have their own tab. PreEvo adds them to normal relearned, but note that if you don't have the FullUnlockedRelearner, the only moves that appear until certain progression as the ones you forgot. Stupid mistakes on my part, I will add these fixes and publish an update later.
    1 point
  23. https://docs.google.com/document/d/1QMk1M_4W-CoOn_69vWH5kljjyiX4j6AHauW_UlmS_6o/preview?pru=AAABn5pwCHM*A_qCcHCf3n3pNcbf_XRkIQ&tab=t.f95paryw1wly This is the google doc with all documented changes and additions
    1 point
  24. Game.rxdata This is right at the end, before the true end cutscene with clear
    1 point
  25. If you completed that part on any save, it is considered NG+ for that content. It is tracked between saves on Unidata.
    1 point
  26. I'm running into a game-breaking crash in version 14.0.8 and wanted to see if there's a known workaround for this specific trigger. Whenever I try to load my current save file, the game crashes immediately during the loading screen with this error: Exception: NoMethodError Message: undefined method 'maxBoxes' for nil:NilClass this happen when i'm playing as melia in the pearl route
    1 point
  27. Miss G is Katsu, Nastasias Mom, and by Ren's room I mean the one on the 100th floor of the Xen HQ, the open door second from the right by the stairs
    1 point
  28. All A form and location From the google doc community madein spoiler above
    1 point
  29. Why is Jan Gaster posting I'm scared
    1 point
  30. its unfortunate I cant play this day one, I'm going to North Bay to spend time with family. Day 2 works tho
    1 point
  31. I'm pretty sure this is the Unexplored Territory quest. The following is taken from the Bigjra walkthrough. If I'm incorrect, you can look through the guide anyway for further information if you'd like. "Fly on over to the Agate Circus, head to Route 2, then enter the Ametrine Mountain on top. From here, surf down the waterfall into 1F. Move the boulder from below on the left side, then climb the waterfall to cross the path from above. Dive down here to reach B1F. "Once you cross the B2F ice puzzle, go to the top left corner of this room and dive down. Follow this path all the way to a New World Door!"
    1 point
  32. forgot his birthday sorry Ryland you will be my favorite rejuv character forever and ever
    1 point
  33. hi! thank you so much for this mod, it's awesome!! i've been creating a ton of shinies for this - i'm nearly done with the starters, and then I plan to create all the rest, in order of availability. is there somewhere specific I should post them? or should I just create my own thread? thanks :)
    1 point
  34. STORY AND CHARACTERS The Arpegia Region is back from an entirely new perspective. A land built on unity and strength, the Arpegian Archipelago reimagines Pokemon in a semi-medieval setting. By facing the Arpegia League Gauntlet, anyone has the chance to rise to the throne and rule over the land however they see fit. You play as a young girl named Faria and her Tinkatink from the desert island of Garmere. Her father, a former Gauntlet Crest Bearer, left the island years ago for reasons you aren't aware of. When you finally get the chance to leave the island and go looking for him, something happens that changes the course of your life and journey forever. Faria will be joined by a unique cast of characters as she goes on her journey to find her missing father. Kelvin is someone you've known since childhood, but the events of the game cause you to become close friends as he chases his own dreams away from Garmere Island. Mathu is a traveling bard who appears in Chapter 2; he's eccentric, outlandish, and too much almost all of the time, but he is a very powerful trainer with a lot of knowledge about myths, religion, and history. The new and current release has you challenging 2 Crest Bearers (Gym Leaders). FEATURES Gen 1-9 Pokemon, Anti-Grinding measures (Audino trainers, Set IV Event Pokemon), HM removal, Manually Allocated EVs Field Effect System from Pokemon Reborn and Rejuvenation Boss Battle System from Pokemon Rejuvenation Advanced Battle AI Custom Regional Forms SCREENSHOTS DOWNLOAD I recommend joining the Official Diadem Discord Server for the most up to date downloads Google Drive (RECOMMENDED): https://drive.google.com/file/d/1_nLcE0qa8OzkLE-snvJuwjtnG1JBTGoC/view?usp=sharing Dropbox: https://www.dropbox.com/scl/fi/p98nm0m19k5uhd53jggt9/Diadem-2.0.rar?rlkey=jvse80rdji61bih09kjis29ff&st=49mvh8eh&dl=0 Developed by Matt/Puff Heavily inspired by Pokemon Reborn, Rejuvenation, and Desolation CREDITS
    1 point
  35. Episode 3 Part 2 of my Pokemon Rejuvenation Challenge Run is here! Unlike the other 1, this is a (relatively) short 1 folks! Please enjoy!
    1 point
  36. after trying to do some research on mirage woods, i found out that after the update no one has actually written up a guide to either the broken bell quest (for zorua) or actually getting to the place, so here. i may be stupid and experiencing Skill Issue. after entering mirage woods: meanwhile for the broken bell quest (zorua): move relearner: hopefully some people get use out of this
    1 point
  37. - Where Love Lies Overhaul v0.4.2 - Alpha 1 - A mod to update the maps of "Rejuvenation - Where Love Lies" to match the current version of Rejuvenation (V13.5) and to fix some bugs and issues. Currently, the mod contains the content for all chapters and both the normal and true ending are possible. In total, 55+ Maps were remade and a some more (slightly) edited. For a more detailed Changelog, see the GitHub page. *Disclaimer* Even though I completed the mod multiple times, there might still be some issues/bugs. This was after all my first time working with RPG Maker. If you find any bugs, please report them on GitHub. This can also include spelling mistakes, visual glitches, walking into walls and so on. Download: GitHub Mega: WLL Overhaul Rejuvenation Integration Installation: Download & unpack Where Love Lies Copy the content of "WLL Overhaul.zip" into the same folder & allow the files to be overwritten (Optional) Copy the content of "Rejuvenation Integration.zip" into your Rejuvenation v13.5 folder & allow the files to be overwritten Simply start the game Rejuvenation Integration: True Ending Guide:
    1 point
  38. Happy Birthday , i hope that you will have a great day
    1 point
  39. nah, it's just a joke gameover. don't worry about it LOL
    1 point
  40. anyways since i don't know where else to post this, (imo) hands down the best interaction in V11 and you can't change my mind (doodled by yours truly)
    1 point
×
×
  • Create New...