Name: | Tightrope |
Author: | Bio |
Added: | |
Act As: | 25 |
Includes GFX: | No |
Description: | Done at S.N.N. request. Mario may travel on this block if he is slow (walking), but will fall off if he is running. |
Tags: | fall lorom sa-1 speed |
Comments: | 3 (jump to comments) |
Rating: |
Download
463 bytes | 630 downloads
Comments (3)
https://www.youtube.com/watch?v=NTuqaRQFDH4&feature=youtu.be
db $42
JMP MarioBelow : JMP MarioAbove : JMP MarioSide
JMP SpriteV : JMP SpriteH
JMP Cape : JMP Fireball
JMP MarioCorner : JMP MarioHead : JMP MarioBody
MarioBelow:
RTL
MarioAbove:
LDA $7B ; \ If the player's x speed is less than 30...
CMP #$1E ; |
BPL Label_0000 ; /
LDA $7B ; \ If the player's x speed is greater than -30...
CMP #$E2 ; |
BMI Label_0000 ; /
BRA Label_0001
Label_0000:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
Label_0001: ; > --------
MarioSide:
SpriteV:
SpriteH:
Cape:
Fireball:
RTL
MarioCorner:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
RTL
MarioHead:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
RTL
MarioBody:
LDA $7B ; \ If the player's x speed is less than 30...
CMP #$1E ; |
BPL Label_0002 ; /
LDA $7B ; \ If the player's x speed is greater than -30...
CMP #$E2 ; |
BMI Label_0002 ; /
BRA Label_0003
Label_0002:
LDA #$25 ; \ Make this block passable.
STA $1693 ; |
LDY #$00 ; /
Label_0003: ; > --------
RTL