Advertisement
Rydotee

Dual Versatile

Jun 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local FORM = {}
  2.  
  3. --The name of this form. Do not repeat names of forms!
  4. FORM.Name = "Dual Versatile"
  5.  
  6. --Who does this form belong to? Options: FORM_SINGLE, FORM_DUAL, FORM_BOTH
  7. FORM.Type = FORM_DUAL
  8.  
  9. --What user groups are able to use this form? And which stances?
  10. FORM.UserGroups = {}
  11.  
  12. FORM.Stances = {}
  13.  
  14. FORM.Stances[1] = {
  15. [ "run" ] = "b_run",
  16. [ "idle" ] = "wos_ryoku_h_idle",
  17. [ "light_left" ] = {
  18. Sequence = "wos_ryoku_b_left_t3",
  19. Time = nil,
  20. Rate = nil,
  21. },
  22. [ "light_right" ] = {
  23. Sequence = "wos_phalanx_r_right_t3",
  24. Time = nil,
  25. Rate = nil,
  26. },
  27. [ "light_forward" ] = {
  28. Sequence = "wos_judge_r_s2_t3",
  29. Time = nil,
  30. Rate = nil,
  31. },
  32. [ "air_left" ] = {
  33. Sequence = "phalanx_a_left_t1",
  34. Time = 0.6,
  35. Rate = 1.6,
  36. },
  37. [ "air_right" ] = {
  38. Sequence = "phalanx_a_right_t1",
  39. Time = 0.6,
  40. Rate = 1.7,
  41. },
  42. [ "air_forward" ] = {
  43. Sequence = "phalanx_a_s1_t1",
  44. Time = 0.6,
  45. Rate = 1.2,
  46. },
  47. [ "heavy" ] = {
  48. Sequence = "phalanx_b_s1_t1",
  49. Time = nil,
  50. Rate = nil,
  51. },
  52. [ "heavy_charge" ] = "phalanx_b_s1_charge",
  53. }
  54.  
  55. FORM.Stances[2] = {
  56. [ "run" ] = "b_run",
  57. [ "idle" ] = "wos_ryoku_h_idle",
  58. [ "light_left" ] = {
  59. Sequence = "wos_ryoku_b_left_t3",
  60. Time = nil,
  61. Rate = nil,
  62. },
  63. [ "light_right" ] = {
  64. Sequence = "wos_phalanx_r_right_t3",
  65. Time = nil,
  66. Rate = nil,
  67. },
  68. [ "light_forward" ] = {
  69. Sequence = "wos_judge_r_s2_t3",
  70. Time = nil,
  71. Rate = nil,
  72. },
  73. [ "air_left" ] = {
  74. Sequence = "phalanx_a_left_t1",
  75. Time = 0.6,
  76. Rate = 1.6,
  77. },
  78. [ "air_right" ] = {
  79. Sequence = "phalanx_a_right_t1",
  80. Time = 0.6,
  81. Rate = 1.7,
  82. },
  83. [ "air_forward" ] = {
  84. Sequence = "phalanx_a_s1_t1",
  85. Time = 0.6,
  86. Rate = 1.2,
  87. },
  88. [ "heavy" ] = {
  89. Sequence = "phalanx_b_s1_t1",
  90. Time = nil,
  91. Rate = nil,
  92. },
  93. [ "heavy_charge" ] = "phalanx_b_s1_charge",
  94. }
  95.  
  96.  
  97. FORM.Stances[3] = {
  98. [ "run" ] = "b_run",
  99. [ "idle" ] = "wos_ryoku_h_idle",
  100. [ "light_left" ] = {
  101. Sequence = "wos_ryoku_b_left_t3",
  102. Time = nil,
  103. Rate = nil,
  104. },
  105. [ "light_right" ] = {
  106. Sequence = "wos_phalanx_r_right_t3",
  107. Time = nil,
  108. Rate = nil,
  109. },
  110. [ "light_forward" ] = {
  111. Sequence = "wos_judge_r_s2_t3",
  112. Time = nil,
  113. Rate = nil,
  114. },
  115. [ "air_left" ] = {
  116. Sequence = "phalanx_a_left_t1",
  117. Time = 0.6,
  118. Rate = 1.6,
  119. },
  120. [ "air_right" ] = {
  121. Sequence = "phalanx_a_right_t1",
  122. Time = 0.6,
  123. Rate = 1.7,
  124. },
  125. [ "air_forward" ] = {
  126. Sequence = "phalanx_a_s1_t1",
  127. Time = 0.6,
  128. Rate = 1.2,
  129. },
  130. [ "heavy" ] = {
  131. Sequence = "phalanx_b_s1_t1",
  132. Time = nil,
  133. Rate = nil,
  134. },
  135. [ "heavy_charge" ] = "phalanx_b_s1_charge",
  136. }
  137.  
  138.  
  139. wOS:RegisterNewForm( FORM )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement