Rydotee

Relentess

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