diff options
author | obskyr <powpowd@gmail.com> | 2018-07-03 04:27:39 +0200 |
---|---|---|
committer | obskyr <powpowd@gmail.com> | 2018-07-03 04:27:39 +0200 |
commit | d26c5f6937518f891d7cb699e237e172588f4a26 (patch) | |
tree | ea63c5cda3e21aa97fdc362a198bc7cbc0d10ce2 /constants/map_data_constants.asm | |
parent | 5a8a294140c870b1a979980c6e7e61cea5883452 (diff) | |
parent | 9ee9fe5c8f74571c41540085ac1566090ae1936b (diff) |
Merge branch 'mid-kid-master'
Diffstat (limited to 'constants/map_data_constants.asm')
-rw-r--r-- | constants/map_data_constants.asm | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/constants/map_data_constants.asm b/constants/map_data_constants.asm index e711e1d..8a60442 100644 --- a/constants/map_data_constants.asm +++ b/constants/map_data_constants.asm @@ -8,11 +8,25 @@ const GATE const DUNGEON +; connection directions (see data/maps/data.asm) + const_def + const EAST_F + const WEST_F + const SOUTH_F + const NORTH_F + +; wMapConnections + const_def + shift_const EAST + shift_const WEST + shift_const SOUTH + shift_const NORTH + ; SpawnPoints indexes (see data/maps/spawn_points.asm) const_value = -1 const SPAWN_N_A - + NUM_SPAWNS EQU 18 - + ; size of each spawn point data -SPAWN_POINT_SIZE EQU 4
\ No newline at end of file +SPAWN_POINT_SIZE EQU 4 |