diff options
-rw-r--r-- | Spawn-Point-(for-Fly-or-Teleport).md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Spawn-Point-(for-Fly-or-Teleport).md b/Spawn-Point-(for-Fly-or-Teleport).md new file mode 100644 index 0000000..e13f292 --- /dev/null +++ b/Spawn-Point-(for-Fly-or-Teleport).md @@ -0,0 +1,33 @@ +This tutorial is for how to add a new spawn point for fly. + +After successfully achieved the "[Add a new map and landmark](https://github.com/pret/pokecrystal/wiki/Add-a-new-map-and-landmark)" tutorial, + +Simply edit constants/map_data_constants.asm: + +`; johto + const SPAWN_NEW_BARK + ... + const SPAWN_GOLDENROD ++ const SPAWN_GLOBALTERMINAL` + + +Then edit data/maps/spawn_points.asm: + +`SpawnPoints: + + ... + spawn GOLDENROD_CITY, 15, 28 ++ spawn GLOBAL_TERMINAL_OUTSIDE, 8, 10 +` + +Then edit data/maps/flypoints.asm + +`Flypoints: + +... +; Johto + ... + flypoint GOLDENROD, GOLDENROD_CITY + flypoint GLOBALTERMINAL, GLOBAL_TERMINAL` + +Then compile your project and you're done
\ No newline at end of file |