• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Recent content by The Law

  1. The Law

    Emerald hack: Pokémon Radiant White

    Unfortunately not. I am getting back on it now after a hiatus. Most of the layout is done, so we are finishing the mechanics as well as preparing the last scripts. But due to a lack of sprite work, we are being delayed a bit by that
  2. The Law

    [Decomps] Pokémon Radiant White, a decomp ROM hack

    Pokémon Radiant Whitebook StoryPokémon Radiant White is a ROM hack made using Pokeemerald, as well as numerous decompilation features. The goal is to make a ROM hack that demonstrates what Pokeemerald is capable of, as well as making a dream of mine (Law, Lead Developer) come true: Making the...
  3. The Law

    Pokémon Radiant White: Looking for Tileset Artist

    I am the lead developer on the Rom hack: Pokemon Radiant White, a Pokemon Emerald Hack. Currently my team is going through a reformation. As a result we are looking for a person to help us finish our tilesets so we can finish the last handful of maps for our 4 gym demo. If you are interested...
  4. The Law

    Emerald hack: Pokémon Radiant White

    Pokémon Radiant Whitebook StoryWelcome to the Elara Region. Explore and catch over 350 different Pokémon in a new region based on northern Norway and the rest of Scandinavia! Meet a cast of original characters and get to know them! Take on the Elara League challenge and face the true...
  5. The Law

    [Released] Just Another Pokemon Fangame

    Imma play the heck out of this
  6. The Law

    IMPORTANT: Accent Challenge, 2018/2019

    https://vocaroo.com/i/s0r2uyNiD6tc I swear a lot sorry about that. Enjoy
  7. The Law

    Proposal: Review: Pokémon Green Review

    (This is the first draft of a review of Pokemon Green Remix If you'll have me, I'd love to take request for games to review. On top of that I majored in Game Design and I felt like I learned a lot, so I'd love to write some articles about game design and such to help people out. I do plan on...
  8. The Law

    Custom Evolution Methods

    Item as a certain gender Step 1: defining our evolution method Now navigate to line 395 in include>pokemon.h You should see the following: Line 410 and 411 were added by me. This is where you will be adding your define for your evolution method. The name does not matter, but to keep things...
  9. The Law

    Custom Evolution Methods

    Level up with another Pokémon in party Step 1: defining our evolution method Now navigate to line 395 in include>pokemon.h You should see the following: Line 410 was added by me. This is where you will be adding your define for your evolution method. The name does not matter, but to keep...
  10. The Law

    Custom Evolution Methods

    Level with held item at certain time of day OBS!!! If evolution is cancelled, the held item is still consumed. Step 1: defining our evolution method Now navigate to line 395 in include>pokemon.h You should see the following: Line 410 & 411 was added by me. This is where you will be adding...
  11. The Law

    Custom Evolution Methods

    Level up at certain location Step 1: defining our evolution method At the top add the following lines of code: #define EVO_MAP_GROUP(map) (map >> 8) //Code to add #define EVO_MAP_NUM(map) (map & 0xFF) //Code to add It should now look something like this: Now navigate to line 395 in...
  12. The Law

    Custom Evolution Methods

    Level with move Step 1: defining our evolution method Navigate to line 395 in include>pokemon.h You should see the following: Line 410 was added by me. This is where you will be adding your define for your evolution method. The name does not matter, but to keep things tidy and organized we...
  13. The Law

    Custom Evolution Methods

    Level with certain gender Step 1: defining our evolution method Navigate to line 395 in include>pokemon.h You should see the following: Line 410 & 411 was added by me. This is where you will be adding your define for your evolution method. The name does not matter, but to keep things tidy...
  14. The Law

    Custom Evolution Methods

    In this tutorial we'll be looking into making custom evolution methods. Some of these are from Gen IV and onwards, but I will also show you a custom evolution method I made myself. Every method will use the following files. include>pokemon.h src>pokemon.c src>data>pokemon>evolution.h Table of...
Back
Top