• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • 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.

[Pokeemerald] I made a item that lets players inflict their party with a status condition. You can use it in your decompilation projects!

PSF

fangame developer
  • 10
    Posts
    4
    Years
    Hexorb

    [PokeCommunity.com] I made a item that lets players inflict their party with a status condition. You can use it in your decompilation projects!


    The hexorb allows the player to give the Pokémon in their party a status condition. This branch allows developers to use the Hexorb item in their decomp projects.

    This feature was inspired by the Pokémon Center Clerk found in Pokémon Run and Bun.

    This is for use in pokeemerald-expansion decomp projects.

    Documentation

    The full documentation can be found on Github. The documentation covers:
    * Usage
    * Known Issues
    * Support

    Installation

    These instructions assume that you can build pokeemerald-expansion, have a basic understanding of C, and are familiar with using the in-game scripting language. If you do not, please watch the tutorials series from Team Aqua's Hideout.

    git merge (recommended)

    From the root directory of your project, run the following commands in your terminal program of choice:

    Code:
    git remote add psf-expansion https://github.com/PokemonSanFran/pokeemerald-expansion/ # This adds our team's pokeemerald-expansion branch as a remote repo.
    git pull psf-expansion hexorb # This pulls in the pokevial feature branch

    Manual merge
    If your project is:
    • Too far behind pokeemerald-expansion
    • Using a different base (pokeemerald or pokefirered)
    • Some other reason that I can't think of
    You can manually implement the features using the diff between this branch and vanilla pokeemerald-expansion as a guide. You will need to manually edit or create each of these files in your project to properly recreate the feature.
     
    Back
    Top