-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtraits.js
More file actions
64 lines (56 loc) · 1.04 KB
/
Copy pathtraits.js
File metadata and controls
64 lines (56 loc) · 1.04 KB
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
const randomElement = (list) => {
const _random = Math.floor(Math.random() * list.length);
return list[_random];
};
const getBackground = () => {
return randomElement(["Sky01", "Sky02", "Sky03", "Sky04", "Sky05"]);
};
const getBodyAndHead = () => {
return randomElement(["Female"]);
};
const getHead = () => {
return randomElement([
"Angry",
"Default",
"Frown",
"Happy2",
"Surprise",
"Angry_Female",
"Default_Female",
"Frown_Female",
"Happy2_Female",
"Surprise_Female",
]);
};
const getWeapon = () => {
return randomElement([
"A",
"B",
"C",
"D",
"E",
"A_Female",
"B_Female",
"C_Female",
"D_Female",
"E_Female",
]);
};
const getSPR = () => {
return randomElement(["A", "B", "C"]);
};
const getOther = () => {
return randomElement(["A", "B", "C", "D"]);
};
const getHairstyle = () => {
return randomElement(["A", "B", "C", "D"]);
};
module.exports = {
getBodyAndHead,
getBackground,
getHairstyle,
getWeapon,
getOther,
getHead,
getSPR,
};