-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkickdata.py
More file actions
29 lines (22 loc) · 999 Bytes
/
kickdata.py
File metadata and controls
29 lines (22 loc) · 999 Bytes
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
class wallkickdata():
def __init__(self):
self.i=[
[[( 0, 0),(-2, 0),( 1, 0),(-2,1),( 1, -2)],
[( 0, 0),( 2, 0),(-1, 0),( 2, -1),(-1,2)]],
[[( 0, 0),(-1, 0),( 2, 0),(-1, -2),( 2,1)],
[( 0, 0),( 1, 0),(-2, 0),( 1,2),(-2, -1)]],
[[( 0, 0),( 2, 0),(-1, 0),( 2, -1),(-1,2)],
[( 0, 0),(-2, 0),( 1, 0),(-2,1),( 1, -2)]],
[[( 0, 0),( 1, 0),(-2, 0),( 1,2),(-2, -1)],
[( 0, 0),(-1, 0),( 2, 0),(-1, -2),( 2,1)]]
]
self.therest=[
[[( 0, 0),(-1, 0),(-1, -1),( 0,2),(-1,2)],
[( 0, 0),( 1, 0),( 1,1),( 0, -2),( 1, -2)]],
[[( 0, 0),( 1, 0),( 1,1),( 0, -2),( 1, -2)],
[( 0, 0),(-1, 0),(-1, -1),( 0,2),(-1,2)]],
[[( 0, 0),( 1, 0),( 1, -1),( 0,2),( 1,2)],
[( 0, 0),(-1, 0),(-1,1),( 0, -2),(-1, -2)]],
[[( 0, 0),(-1, 0),(-1,1),( 0, -2),(-1, -2)],
[( 0, 0),( 1, 0),( 1, -1),( 0,2),( 1,2)]],
]