Advertisement
RealnfernoGear

Commented S2 Level Code

Aug 18th, 2019
2,604
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; -------------------------------------------------------------------------------
  2. ; Main game level order
  3.  
  4. ; One value per act. That value is the level/act number of the level to load when
  5. ; that act finishes.
  6. ; -------------------------------------------------------------------------------
  7. ;word_142F8:
  8. ; How it works: Each entry points to the next act to load.
  9. ; So, EHZ1/Slot 0 on this list would say "emerald_hill_act_2".
  10. ; Note: $FFFF is just a filler for DEZ's hardcoded loading for the ending.
  11. LevelOrder: zoneOrderedTable 2,2    ; WrdArr_LevelOrder
  12. ; EHZ
  13.     zoneTableEntry.w  emerald_hill_zone_act_2
  14.     zoneTableEntry.w  chemical_plant_zone_act_1 ; 1
  15. ; Unused 1
  16.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 2
  17.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 3
  18. ; Unused Wood Zone
  19.     zoneTableEntry.w  wood_zone_act_2       ; 4
  20.     zoneTableEntry.w  metropolis_zone_act_1     ; 5
  21. ; Unused 3
  22.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 6
  23.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 7
  24. ; Metropolis 1 & 2
  25.     zoneTableEntry.w  metropolis_zone_act_2     ; 8
  26.     zoneTableEntry.w  metropolis_zone_act_3     ; 9
  27. ; Metropolis 3 & 4 (Cyber City)
  28.     zoneTableEntry.w  sky_chase_zone_act_1      ; 10
  29.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 11
  30. ; Wing Fortress (outside edits)
  31.     zoneTableEntry.w  death_egg_zone_act_1      ; 12
  32.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 13
  33. ; Hill Top
  34.     zoneTableEntry.w  hill_top_zone_act_2       ; 14
  35.     zoneTableEntry.w  mystic_cave_zone_act_1    ; 15
  36. ; Unused Hidden Palace
  37.     zoneTableEntry.w  hidden_palace_zone_act_2  ; 16
  38.     zoneTableEntry.w  oil_ocean_zone_act_1      ; 17
  39. ; Unused
  40.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 18
  41.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 19
  42. ; Oil Ocean
  43.     zoneTableEntry.w  oil_ocean_zone_act_2      ; 20
  44.     zoneTableEntry.w  metropolis_zone_act_1     ; 21
  45. ; Mystic Cave
  46.     zoneTableEntry.w  mystic_cave_zone_act_2    ; 22
  47.     zoneTableEntry.w  oil_ocean_zone_act_1      ; 23
  48. ; Casino Night
  49.     zoneTableEntry.w  casino_night_zone_act_2   ; 24
  50.     zoneTableEntry.w  hill_top_zone_act_1       ; 25
  51. ; Chemical Plant
  52.     zoneTableEntry.w  chemical_plant_zone_act_2 ; 26
  53.     zoneTableEntry.w  aquatic_ruin_zone_act_1   ; 27
  54. ; Death Egg (outside edits)
  55.     zoneTableEntry.w  $FFFF             ; 28
  56.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 29
  57. ; Aquatic Ruin
  58.     zoneTableEntry.w  aquatic_ruin_zone_act_2   ; 30
  59.     zoneTableEntry.w  casino_night_zone_act_1   ; 31
  60. ; Sky Chase (outside edits)
  61.     zoneTableEntry.w  wing_fortress_zone_act_1  ; 32
  62.     zoneTableEntry.w  emerald_hill_zone_act_1   ; 33
  63.     zoneTableEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement