Advertisement
Arnethegreat

GSU

May 31st, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. ; egg/player touch a coin (object)
  2. dw $DF68 ; $00DF28 | r0 = #$0002
  3.  
  4. ; player/egg destroying a sandblock
  5. ; note: not shells/chomp rocks
  6. dw $E04F ; $00DF2A | r0 = #$0004
  7.  
  8. ; ground pound a pole
  9. dw $E0A9 ; $00DF2C | r0 = #$0006
  10.  
  11. ; ? Triggered when starting to aim an egg
  12. dw $E0CD ; $00DF2E | r0 = #$0008
  13.  
  14. ; hitting a mario block from underneath (In mario form ofc)
  15. ; also hitting an egg block from underneath
  16. ; also donut blocks, breakable blocks exploding
  17. ; BASICALLY whenever a object gets replaced by a sprite
  18. dw $DFC3 ; $00DF30 | r0 = #$000A
  19.  
  20. ; breakable block with cracks gets hit and breaks
  21. ;
  22. dw $E023 ; $00DF32 | r0 = #$000C
  23.  
  24. ; Breakable block without cracks gets hit
  25. ; Also green/yellow/red blocks
  26. ; Gets called 4 times for breakable, 2 for tetris blocks (one per tile?)
  27. dw $E017 ; $00DF34 | r0 = #$000E
  28.  
  29. ; touch cross section
  30. ; (fires every frame except only when there isn't a cross-section wall (like 1-2))
  31. dw $E0D7 ; $00DF36 | r0 = #$0010
  32.  
  33. ; touch blue spikes or yellow spikes
  34. dw $E0E6 ; $00DF38 | r0 = #$0012
  35.  
  36. ; touching a spike (that seesaws balance on like 2-5)
  37. dw $E0F2 ; $00DF3A | r0 = #$0014
  38.  
  39. ; touch right edge of screen in skii levels and tutorial level
  40. dw $DF44 ; $00DF3C | r0 = #$0016
  41.  
  42. ; Egg hitting blue spikes
  43. dw $E068 ; $00DF3E | r0 = #$0018
  44.  
  45. ; touching lava you idiot (all kinds)
  46. dw $E101 ; $00DF40 | r0 = #$001A
  47.  
  48. dw $E126 ; $00DF42 | r0 = #$001C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement