diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-11-11 17:01:30 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-11-11 17:01:30 -0500 |
commit | 3bf10bc57c417d9e01a577fe2a17c15cef01a8f3 (patch) | |
tree | 0f29e0f561ba8c58d7e828cf54f45a6d20cce6f9 | |
parent | 8f5de72725d04e014e12404eb66af946172d6d8b (diff) | |
parent | aba4c67f8fbc40f6f3ea924aa5f795bb4469e043 (diff) |
Merge branch 'master' of https://github.com/pret/pokecrystal.wiki
-rw-r--r-- | Add-a-new-map-and-landmark.md | 2 | ||||
-rw-r--r-- | Physical-Special-split.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Add-a-new-map-and-landmark.md b/Add-a-new-map-and-landmark.md index d83b984..8da44e4 100644 --- a/Add-a-new-map-and-landmark.md +++ b/Add-a-new-map-and-landmark.md @@ -326,7 +326,7 @@ The `connection` macro takes four arguments: the direction, map name, map ID, an If the offset isn't clear, try comparing screenshots of other maps with their own offset values, and base your own connections on similarly aligned ones. In this case, we made `GLOBAL_TERMINAL_OUTSIDE` the same height as `GOLDENROD_CITY`, 18 blocks, and they'll line up perfectly side by side, so the offset is 0. -(Before November 10, 2018, the `connection` macro took six parameters; instead of a single sideways offset, you had to specify a target offset, source offset, and strip length, which were confusing and harder to calculate. The current macro definition has legacy support for the old one, since in all of the official maps, sideways offset = source offset − target offset, with the strip length being completely redundant. I strongly recommend porting the new macro to any old pokecrystal projects.) +(Before November 10, 2018, the `connection` macro took six parameters; instead of a single sideways offset, you had to specify a target offset, source offset, and strip length, which were confusing and harder to calculate. The current macro definition has legacy support for the old one, since in all of the official maps, sideways offset = target offset − source offset, with the strip length being completely redundant. I strongly recommend porting the new macro to any old pokecrystal projects.) ## 7. Define any new landmarks diff --git a/Physical-Special-split.md b/Physical-Special-split.md index 3410b98..22484fd 100644 --- a/Physical-Special-split.md +++ b/Physical-Special-split.md @@ -1,6 +1,6 @@ In Gen 2 (and Gen 3), some types were always physical and some were always special. Here's how to implement the physical/special split from Gen 4 and up. -(The code for this feature was adapted from [Pokémon Fractal](https://gitgud.io/pfero/axyllagame/) (the Axyllia region).) +(The code for this feature was adapted from [Pokémon Fractal](https://gitgud.io/pfero/axyllagame/) (the Axyllia region) and [Polished Crystal](https://github.com/Rangi42/polishedcrystal).) ## Contents |