-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnums.cs
331 lines (320 loc) · 8.62 KB
/
Enums.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace fro_mod
{
public static class Enums
{
public static string[] BodyParts = new string[]
{
"Pelvis",
"Spine",
"Spine1",
"Spine2",
"Head",
"Neck",
"Left arm",
"Left forearm",
"Left hand",
"Right arm",
"Right forearm",
"Right hand",
"Left upleg",
"Left leg",
"Left foot",
"Right upleg",
"Right leg",
"Right foot"
};
public static string[] States = new string[] {
"Disabled",
"Riding",
"Setup",
"BeginPop",
"Pop",
"InAir",
"Release",
"Impact",
"Powerslide",
"Manual",
"Grinding",
"EnterCoping",
"ExitCoping",
"Grabs",
"Bailed",
"Pushing",
"Braking"
};
public static string[] StatesReal = new string[] {
"Riding",
"Setup",
"BeginPop",
"Pop",
"InAir",
"Release",
"Impact",
"Powerslide",
"Manual",
"Grinding",
"EnterCoping",
"ExitCoping",
"Grabs",
"Bailed",
"Pushing",
"Braking"
};
public static string[] Stances = new string[] {
"Fakie",
"Switch"
};
public static string[] StancesCustomizer = new string[] {
"Regular",
"Fakie",
"Nollie",
"Switch"
};
public static string[] GrindType = new string[] {
"BsFiftyFifty",
"FsFiftyFifty",
"FsFiveO",
"BsFiveO",
"BsNoseGrind",
"FsNoseGrind",
"BsCrook",
"FsOverCrook",
"FsCrook",
"BsOverCrook",
"FsNoseSlide",
"BsNoseSlide",
"FsNoseBluntSlide",
"BsNoseBluntSlide",
"BsBoardSlide",
"FsBoardSlide",
"FsLipSlide",
"BsLipSlide",
"FsTailSlide",
"BsBluntSlide",
"BsTailSlide",
"FsBluntSlide",
"BsFeeble",
"FsSmith",
"FsFeeble",
"BsSmith",
"BsSuski",
"FsSuski",
"BsSalad",
"FsSalad",
"BsWilly",
"FsWilly",
"FsLosi",
"BsLosi"
};
public static string[] input_types = new string[] {
"Both sticks to the front",
"Both sticks to the back",
"Left stick to the front",
"Right stick to the front",
"Left stick to the back",
"Right stick to the back",
"Both sticks to the outside",
"Both sticks to the inside",
"Left stick to the left",
"Left stick to the right",
"Right stick to the left",
"Right stick to the right",
"Both sticks to the left",
"Both sticks to the right"
};
public static string[] Keyframe_States = new string[] {
"Head",
"Left Hand",
"Right Hand"
};
public static string[] Animations = new string[] {
"Waving",
"Celebrating",
"Clapping"
};
public static string[] special_patreons = new string[]
{
"doobiedoober",
"Kai Down",
"Josh C",
"imagedthought",
"FLIPFINGERS",
"Eric Mcgrady",
"Matt Coote",
"Slabs",
"Marcel Mink",
"Sam Clayworth",
"helio",
"Kyle Gherman",
"Nick Morocco",
"Euan",
"J'vonte Johnson",
"Fully FB",
"Johannes Hesse",
"Foolie Surfin",
"Hands",
"Eggroll",
"COFRESI",
"clyde curtis",
"Dedrick Grimes",
"Second_Nature_XL Buck",
"Billy",
"Nati Adams",
"putra syah",
"Lucas Jaehn",
"heartsick",
"dustin fuston",
"Davonte Calloway",
"Oscar Laguna",
"Glenn",
"Will Airey",
"Guru",
"Nathaniel Gardner",
"LL",
"Marco Aznesoc",
"Joe Austin",
"Justin S Reynolds",
"lirtle",
"Corey Walker",
"spokk",
"Guy #4",
"Seth Bates",
"DeathProtector Collective",
"JMCAutomatic",
"Lord Tusk",
"Zaheer",
"kevin hardy",
"Simon Blench",
"Joseph Connolly",
"kevin4mayor",
"Drippy QTip",
"c. r.r.",
"Malcolm hazley",
"fleep",
"B1GM1KE PaRaSiTe",
"lesk",
"caine.e",
"Roy Daytona",
"Jake Langdown",
"Khaleel Haynesworth",
"ClutchClubz YT",
"alex",
"New Comply",
"Gabriel Rosa",
"Bradford McMahan",
"Bob Gnarly",
"Babyfacedbull",
"Mathew Boynton",
"justin",
"carsonic",
"nolan c",
"ryder",
"kaiden",
"Smithers",
"Connoe",
"jacob acevedo",
"Adam Rodgers",
"Michael",
"Alex Kelley",
"Mitchell",
"Lucca",
"Jordan Byrd",
"Lochie Axon",
"Rapha",
"alex",
"Lil Parsnip (not to be confused with Mr. Stinky)",
"Todd Hubbard",
"Benny Nixx",
"Nicklas Appel",
"EditorNuri",
"Cooper Maurer",
"Mr Karl Havelock",
"III KAEKYDO III",
"Jordan",
"Tyler Waite",
"Roland Garcia",
"Ryan Howell",
"turtle master",
"Daria Dayle",
"Tyler Jacobs",
"Blake Rowland",
"Grief XL",
"Corey walker",
"PDW TV",
"Let me borrow your toaster",
"Knowee",
"richud",
"DoomBoy",
"Stevyy",
"jSEPI",
"trystun winston",
"Marcus Faigelman",
"Steven",
"Ralph Gray",
"azzi",
"Stapetheape",
"bonji",
"Brian Regan",
"YSL Snippets",
"Cristino Trejo",
"James King",
"Brandon",
"AGENT DIESEL LIVE",
"JaxxPlaysGames",
"o潭l潭l潭�潭H",
"Aaron Eaddy",
"Shaun Clarke",
"Iamnicobeats",
"Ricardo Duarte",
"Edward Tankersley",
"Terrell Lyons",
"Mataytopotato",
"william roy",
"Seth Siegel",
"Embaasn",
"Sawzy",
"Beslxm",
"stinker39",
"Lucian",
"z e",
"Zach Wolfhope",
"Hairdads 101",
"Colin Cook",
"nano.",
"markis Beltre",
"Kad Boi",
"DANKDAVE",
"zakara",
"tohar ben melech",
"Taven Buttelo",
"lewis"
};
public static Vector3[] OriginalRotations = new Vector3[]
{
new Vector3(1.3f, 336.2f, 274.9f),
new Vector3(1.6f, 2.3f, 347.5f),
new Vector3(2.1f, 5.4f, 350.2f),
new Vector3(4.6f, 1.1f, 347.4f),
new Vector3(18.1f, 6.1f, 15.1f),
new Vector3(19.0f, 359.3f, 341.5f),
new Vector3(11.9f, 301.0f, 12.8f),
new Vector3(353.9f, 14.5f, 41.2f),
new Vector3(13.9f, 353.7f, 352.1f),
new Vector3(337.9f, 53.3f, 9.9f),
new Vector3(1.8f, 352.0f, 47.9f),
new Vector3(355.7f, 357.6f, 0.7f),
new Vector3(354.2f, 169.8f, 329.3f),
new Vector3(1.0f, 1.4f, 55.9f),
new Vector3(1.1f, 9.8f, 338.9f),
new Vector3(4.0f, 182.7f, 342.3f),
new Vector3(0.1f, 0.2f, 58.5f),
new Vector3(359.0f, 352.3f, 331.8f)
};
}
}