phicr

Z3 Gravity Ring Settings

Feb 23rd, 2021 (edited)
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.18 KB | None | 0 0
  1. ; Settings
  2.  
  3. ; Boolean Settings (1 = Yes, 0 = No)
  4.  
  5. !PushOutOfDoorway = 1 ; Push Link out of vertical doorways when he jumps
  6. !AllowHookshotWaterJump = 0 ; Allow using hookshot while jumping above deep water
  7. !AllowStairJump = 0 ; Allow jumping while on outdoor staircases
  8.  
  9. ; !AllowBunnyJump: Allow Bunny Link to jump with the R button
  10.  
  11. !AllowBunnyJump_Never = 0
  12. !AllowBunnyJump_WithRing = 1
  13. !AllowBunnyJump_Always = 2
  14.  
  15. !AllowBunnyJump #= !AllowBunnyJump_Always
  16.  
  17. ; !MireWaterSounds: Fix water sounds playing while in midair in mire
  18.  
  19. !MireWaterSounds_NoFix = 0
  20. !MireWaterSounds_FixForRingJump = 1
  21. !MireWaterSounds_FixForAllJumps = 2
  22.  
  23. !MireWaterSounds #= !MireWaterSounds_FixForAllJumps
  24.  
  25. ; !LandingNoise: Allow noises when you land after a jump (bitfield)
  26.  
  27. !LandingNoise_OnWater = 1
  28. !LandingNoise_OnLand = 2
  29. !LandingNoise_OnGrass = 4
  30.  
  31. !LandingNoise #= !LandingNoise_OnWater|!LandingNoise_OnGrass
  32.  
  33. ; Addresses
  34.  
  35. !JumpInverseDirection = $7C
  36. !JumpForwardDirection = $7D
  37. !JumpNonStartingDirections = $7E
  38. !JumpDirectionType = $7F
  39. !IsJumping = $80
  40. !JumpTimer = $81
  41. !JumpingAboveWater = $82
  42.  
  43. ; Constants
  44.  
  45. !JumpDistance = $30
  46. !JumpDistanceDash = $60
  47. !JumpDistanceDiagonal = $28
  48.  
Add Comment
Please, Sign In to add comment