Advertisement
cpmct32

Trampoline Trick Names

Oct 11th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. triple backs with twists
  2.  
  3. 000 triple back
  4. 001 dub back full out
  5. 002 dub back dub full out
  6. 010 full out in
  7. 011 full full out
  8. 012 miller out
  9. 020 dub full out in
  10. 021 miller out
  11. 022 killer out
  12. 100 full in triff
  13. 101 full in triff full out
  14. 102 full in triff dub full out
  15. 110 full full in
  16. 111 full full full
  17. 112 full miller
  18. 120 miller in
  19. 121 miller full
  20. 122 full killer
  21. 200 dub full in triff
  22. 201 dub full in triff full out
  23. 202 dub full in triff dub full out
  24. 210 miller in
  25. 211 miller full
  26. 212 dub full miller
  27. 220 killer in
  28. 221 killer full
  29. 222 killer dub full
  30. -
  31. 023 thriller out
  32. 123 full thriller
  33. 320 thriller in
  34. 321 thriller full
  35. 322 thriller dub full
  36. -
  37.  
  38. trip back -> 000
  39. n full out triff -> 001, 002
  40. n full out in -> 010, 020
  41. n full in triff -> 100, 200
  42.  
  43. x full in triff y full out -> 101, 102, 201, 202
  44.  
  45. full full in/out -> 110, 011
  46. miller in/out -> 120, 210, 012, 021
  47. killer in/out -> 220, 022
  48. thriller in/out -> 230, 320, 023, 032
  49.  
  50. full full full -> 111
  51. x full miller/miller x full -> 112, 121, 211, 212
  52. x full killer/killer x full -> 122, 221, 222
  53. x full thriller/thriller x full -> 123, 132, 231, 321, 223, 232, 322
  54.  
  55. 0.5 Half out
  56. 1.0 Full
  57. 1.5 Rudi
  58. 2.0 Dub full
  59. 2.5 Randy
  60. 3.0 Trip full
  61. 3.5 Adolph
  62. 4.0 Quad full
  63. 4.5 Frydolph
  64. 5.0 Quint full
  65. 5.5 Robodolph
  66.  
  67.  
  68. x full in/out -> 10, 20, 30, 03, 02, 01
  69. x full in y full out -> 13, 23, 32, 31
  70. miller -> 21
  71. killer -> 22
  72. thriller -> 32
  73.  
  74.  
  75. double twist flip:
  76.  
  77. 1. choose x in twists {0.5, 1, 1.5, 2, ... , 5, 5.5}
  78. 2. choose y out twists
  79. 3. if x+y = 3 -> Miller
  80. 4. if x+y = 4 -> Killer
  81. 5. if x+y = 5 -> Thriller
  82. 6. if x = 0 -> y out
  83. 7. if y = = -> x in
  84. 8. else x in y out
  85.  
  86.  
  87. Rotation x to Name:
  88. if x = 0 -> nothing
  89. if x % 1 = 0 -> multiplierName(x) full
  90. if x = 0.5 -> half
  91. if x = 1.5 -> rudi
  92. if x = 2.5 -> randy
  93. etc.
  94.  
  95.  
  96.  
  97. Types of flip:
  98.  
  99. - Single/Base (Backflip, Cody, Kaboom)
  100. - Multiflip (Dub back, trip kaboom)
  101. - Twisting Flip (dub full, cody full)
  102. - Twisting Multiflip (miller, half in)
  103.  
  104. Flip Generation
  105.  
  106. Flips
  107. - Kaboom Flatspin
  108. - Sideflip
  109. - Zach
  110.  
  111. Twistable Flips
  112. - Backflip
  113. - Frontflip
  114. - Kaboom
  115. - Cody
  116.  
  117. Foreach Flip
  118. For x: 0 -> 5
  119. name = x-multiplier + FlipName
  120.  
  121. Forach Twistable Flip
  122. For x: 0 -> 5
  123. name = x-multiplier + FlipName
  124. name = FlipName + x-multiplierTwist
  125. name = FlipName + (x + 0.5)-multiplierTwist
  126. For y: 0 -> 5
  127. name = DoubleTwistFlipName(x, y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement