Advertisement
HamburgerSan

Sponge RNG

Jul 26th, 2015
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. If X is within 96 pixels (horizontally) of Wire Sponge, the probabilities are different as opposed to if X is farther away than 96 pixels from him.
  2.  
  3. If X is within 96 of Wire Sponge, the probabilities are:
  4.  
  5. - 6/16 to jump towards X
  6. - 5/16 to chain the wall
  7. - 3/16 to spin wire
  8. - 2/16 to hang on the ceiling
  9.  
  10. If X is farther away, then
  11.  
  12. - 3/15 to jump towards X
  13. - 6/15 to chain the wall
  14. - 3/15 to spin wire
  15. - 3/15 to hang on the ceiling
  16.  
  17. (yes, out of 15. It is caused by a glitch in the code.)
  18.  
  19. Note that Wire Sponge cannot chain the wall if he is too far from it when facing X. If "chain the wall" is selected in this case, the RNG will simply select again. In other words:
  20.  
  21. (within 96 pixels)
  22. - 6/11 to jump towards X
  23. - 3/11 to spin wire
  24. - 2/11 to hang on the ceiling
  25.  
  26. (farther than 96 pixels)
  27. - 3/9 to jump towards X
  28. - 3/9 to spin wire
  29. - 3/9 to hang on the ceiling
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement