Welcome to Data Crystal's new home! Data Crystal is now part of the TCRF family (sort of).
The wiki has recently moved; please report any issues in Discord. Pardon the dust.

Ice Climber (NES)/RAM map: Difference between revisions

From Data Crystal
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


All sprite descriptions can be found in the [https://www.nintendo.co.jp/clv/manuals/en/pdf/CLV-P-NAAUE.pdf|official nintendo manual]
All sprite descriptions can be found in the [https://www.nintendo.co.jp/clv/manuals/en/pdf/CLV-P-NAAUE.pdf|official nintendo manual]
For Popo (player 1):


{| border="1" cellpadding="1"  
{| border="1" cellpadding="1"  
Line 33: Line 35:
|-
|-
|0x0343 || Not on breakable floor || 0 if ice climber is standing or walking on breakable floor  
|0x0343 || Not on breakable floor || 0 if ice climber is standing or walking on breakable floor  
1 otherwise (e.g. in the air, on unbreakable floor etc.)  
1 otherwise (e.g. in the air, on unbreakable floor etc.)
|-
|-
|0x0363 || Number of Nitpicker hits || resets to zero after every level  
|0x0361 || Number of ice hit || resets to zero after every level
|-
|0x0362 || Number of vegetables collected || resets to zero after every level
|-
|0x0363 || Number of nitpicker hit || resets to zero after every level  
|-
|-
|0x0363 || Number of bricks broken || resets to zero after every level  
|0x0F70 - 0x0F73 || Score || Updated at every level  
|-
|-
|}
|}
{{Internal Data|game=Ice Climber}}
{{Internal Data|game=Ice Climber}}

Revision as of 12:12, 27 December 2020

Chip tiny.png The following article is a RAM map for Ice Climber (NES).

All sprite descriptions can be found in the nintendo manual

For Popo (player 1):

RAM Address Function Details
0x008A Number of screen scrolls upwards Resets to 0 for every new level

adds 6 everytime the screen scrolls upwards except for the one time the screen transitions to the bonus (in which case it adds 0)

0x008D Number of screen scrolls upwards Resets to 1 for every new level

adds 5 for the first screen scroll and then 6 for every other screen scroll until the end of the main level

takes a value of 47 when the screen first scrolls to the bonus level

takes a value of 0 for the subsequent screen scroll and remains zero until the end of the bonus

0x0090 Number of screen scrolls upwards Resets to 4 for every new level

adds 1 everytime the screen scrolls upwards except for the one time the screen transitions to the bonus (in which case it adds 0)

0x0014 Which combinations of buttons are pressed The value is the sums of all the values of the buttons pressed using the following values:

Right: 1 | Left: 2 | Down: 4 | Up: 8 | Start: 16 | Select: 32 | B: 64 | A: -128

0x0015 Which direction is pressed The value corresponds to the direction pressed (values from the cell above)
0x0020 Lives
0x0059 Level Number
0x0064 X axis
0x0066 Y axis
0x0343 Not on breakable floor 0 if ice climber is standing or walking on breakable floor

1 otherwise (e.g. in the air, on unbreakable floor etc.)

0x0361 Number of ice hit resets to zero after every level
0x0362 Number of vegetables collected resets to zero after every level
0x0363 Number of nitpicker hit resets to zero after every level
0x0F70 - 0x0F73 Score Updated at every level