Skip to content

Commit c70ce28

Browse files
committed
add lucy
1 parent 5fc8f8b commit c70ce28

File tree

4 files changed

+151
-1
lines changed

4 files changed

+151
-1
lines changed

data/data.db

28 KB
Binary file not shown.

data/utils/aliases/Lucy.json

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
[
2+
{
3+
"input": "c.S",
4+
"aliases": [
5+
"5S"
6+
]
7+
},
8+
{
9+
"input": "2D",
10+
"aliases": [
11+
"Sweep"
12+
]
13+
},
14+
{
15+
"input": "5[D]",
16+
"aliases": [
17+
"5D!"
18+
]
19+
},
20+
{
21+
"input": "6D or 4D",
22+
"aliases": [
23+
"Throw",
24+
"6D",
25+
"4D"
26+
]
27+
},
28+
{
29+
"input": "j.6D or j.4D",
30+
"aliases": [
31+
"Air Throw",
32+
"J6D",
33+
"J4D"
34+
]
35+
},
36+
{
37+
"input": "236D",
38+
"aliases": [
39+
"Wild Assault",
40+
"WA"
41+
]
42+
},
43+
{
44+
"input": "236[D]",
45+
"aliases": [
46+
"Wild Assault Hold",
47+
"WAH",
48+
"WA!",
49+
"236D!"
50+
]
51+
},
52+
{
53+
"input": "214H",
54+
"aliases": [
55+
"Monowire",
56+
"214H!",
57+
"MW"
58+
]
59+
},
60+
{
61+
"input": "214[H]",
62+
"aliases": [
63+
"214H!",
64+
"Monowire Hold",
65+
"MWH"
66+
]
67+
},
68+
{
69+
"input": "214K",
70+
"aliases": [
71+
"Sprint Attack",
72+
"SA"
73+
]
74+
},
75+
{
76+
"input": "214K S",
77+
"aliases": [
78+
"Sprint Attack - Sweep",
79+
"Low",
80+
"SAS",
81+
"214KS"
82+
]
83+
},
84+
{
85+
"input": "214K H",
86+
"aliases": [
87+
"Sprint Attack - Cross Up",
88+
"Flip",
89+
"SAC",
90+
"214KH"
91+
]
92+
},
93+
{
94+
"input": "236S",
95+
"aliases": [
96+
"Unity",
97+
"Gun"
98+
]
99+
},
100+
{
101+
"input": "236[S]",
102+
"aliases": [
103+
"Unity Hold",
104+
"Gun Hold",
105+
"236S!",
106+
"UH",
107+
"GH"
108+
]
109+
},
110+
{
111+
"input": "623H",
112+
"aliases": [
113+
"Monowire - Breakout",
114+
"DP"
115+
]
116+
},
117+
{
118+
"input": "P or D",
119+
"aliases": [
120+
"Moonwire Cancel",
121+
"MC"
122+
]
123+
},
124+
{
125+
"input": "632146H",
126+
"aliases": [
127+
"Finisher: Deepdive",
128+
"Super",
129+
"FDD",
130+
"6246H"
131+
]
132+
},
133+
{
134+
"input": "632146S",
135+
"aliases": [
136+
"Quickhack",
137+
"Hax",
138+
"6246S"
139+
]
140+
}
141+
]

data/utils/nicknames.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,14 @@
134134
"LW"
135135
]
136136
},
137+
{
138+
"character": "Lucy",
139+
"nicknames": [
140+
"Lucyna Kushinada",
141+
"LU",
142+
"LK"
143+
]
144+
},
137145
{
138146
"character": "May",
139147
"nicknames": [

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub struct Data {
2121
db: Arc<Mutex<SqlConnection>>
2222
}
2323

24-
pub const CHARS: [&str; 31] = [
24+
pub const CHARS: [&str; 32] = [
2525
"A.B.A",
2626
"Anji Mito",
2727
"Asuka R",
@@ -40,6 +40,7 @@ pub const CHARS: [&str; 31] = [
4040
"Johnny",
4141
"Ky Kiske",
4242
"Leo Whitefang",
43+
"Lucy",
4344
"May",
4445
"Millia Rage",
4546
"Nagoriyuki",

0 commit comments

Comments
 (0)