Advertisement
exodus122

OoT - Power Crouch Stab explained

Dec 26th, 2019
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. At Link's Instance + 0x4EC, there is a 4-byte bit field which determines the type of attack Link has most recently used, for the sword, stick, and hammer items. Slashing or jumpslashing with one of those items writes different values to the bitfield.
  2.  
  3. -When you load a new scene, that bit field gets set to the default value of 00000100 (Kokiri Sword Slash / Broken Giant's Knife Slash).
  4. -Performing any of the attacks listed below will set this bit field to the corresponding value. Quickspins set the same value as a slash.
  5. -Performing a crouch stab attack will not change the value of the bit field. Crouch stabs will use the last value stored in that bit field to calculate its damage.
  6.  
  7. 00000001
  8. 00000002 Deku Stick Slash
  9. 00000004
  10. 00000008
  11. 00000010
  12. 00000020
  13. 00000040 Hammer Swing
  14. 00000080
  15. 00000100 Kokiri Sword Slash / Broken Giant's Knife Slash
  16. 00000200 Master Sword Slash
  17. 00000400 Biggoron Sword Slash / Giant's Knife Slash
  18. 00000800
  19. 00001000
  20. 00002000
  21. 00004000
  22. 00008000
  23. 00010000
  24. 00020000
  25. 00040000
  26. 00080000
  27. 00100000
  28. 00200000
  29. 00400000
  30. 00800000
  31. 01000000
  32. 02000000 Kokiri Sword Jump Attack / Broken Giant's Knife Jump Attack
  33. 04000000 Biggoron Sword Jump Attack / Giant's Knife Jump Attack
  34. 08000000 Master Sword Jump Attack / Deku Stick Jump Attack
  35. 10000000
  36. 20000000
  37. 40000000 Hammer Jump Attack
  38. 80000000
  39.  
  40. For more information on enemy damage, check this page: https://wiki.cloudmodding.com/oot/Damage_Charts#Damage_Chart
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement