summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Adding-new-overworlds.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/Adding-new-overworlds.md b/Adding-new-overworlds.md
index f1af207..5ac4c2d 100644
--- a/Adding-new-overworlds.md
+++ b/Adding-new-overworlds.md
@@ -160,6 +160,8 @@ Updated
(See [Caveat #2](#caveats) when it comes to more than 255 overworld objects.)
## Caveats
-1. The GBA has a maximum of 16 palettes it can load at once (these are the palette slots), and the vanilla overworld palette system has those divided up pretty rigidly: Palette slot 0 is reserved for the player palette, and slot 1 is for the reflection. Palette slots 2, 3, 4, and 5 are shared between nearly all overworld objects, and slots 6, 7, 8, amd 9 are for reflections of each of those. Slot 10 and 11 are used for palette and reflection of "special" objects, which include the rival character (ie, the other player palette) and the overworld legendaries; only one of these can be in the same map at the same time, because fighting for that palette will occur otherwise. The remaining 4 slots are generally used as needed for screen effects such as dirt clouds when you hop a ledge, rustling tall grass, or weather effects. If you choose to implement the [dynamic overworld palette system](https://github.com/pret/pokeemerald/wiki/Dynamic-overworld-palette-system), all of these rules go away, but the system can come with its own caveats.
+<img align="right" src="https://user-images.githubusercontent.com/794812/93617350-dbbfff80-f9a3-11ea-82f9-d5fd7b444e0c.png">
+
+1. The GBA has a maximum of 16 palettes it can load at once (these are the palette slots), and the vanilla overworld palette system has those divided up pretty rigidly: Palette slot 0 is reserved for the player palette, and slot 1 is for the reflection. Palette slots 2, 3, 4, and 5 are shared between nearly all overworld objects, and slots 6, 7, 8, and 9 are for reflections of each of those. Slot 10 and 11 are used for palette and reflection of "special" objects, which include the rival character (ie, the other player palette) and the overworld legendaries; only one of these can be in the same map at the same time, because fighting for that palette will occur otherwise. The remaining 4 slots are generally used as needed for screen effects such as dirt clouds when you hop a ledge, rustling tall grass, or weather effects. If you choose to implement the [dynamic overworld palette system](https://github.com/pret/pokeemerald/wiki/Dynamic-overworld-palette-system), all of these rules go away, but the system can come with its own caveats.
2. By default, there is a limit of 256 overworlds (0-255), but it can be expanded with some work. [Here is an example of the limit being raised to an effective limit of 512.](https://github.com/tustin2121/trihard-emerald/commit/e54c965c123848116740ee8335a1bec3223513e6) \ No newline at end of file