-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap1.py
More file actions
27 lines (26 loc) · 1.27 KB
/
map1.py
File metadata and controls
27 lines (26 loc) · 1.27 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
# 0 = dinding pembatas kamera,
# 1 = dinding,
# 2 = air yang tidak bisa dilewati
# 5 = pintu,
# 6 = lantai,
# 7 = rumput
# 8 = air yang bisa dilewati (misal sungai dengan jembatan)
MAP1 = [
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
[0,7,7,7,7,7,7,7,7,7,1,6,6,6,6,6,6,6,6,6,6,6,6,6,1,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,1,6,6,6,6,6,6,6,6,6,6,6,6,6,1,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,1,6,6,6,6,6,6,6,6,6,6,6,6,6,1,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,1,6,6,6,6,6,6,1,1,1,5,1,1,1,1,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,1,6,6,6,6,6,6,1,7,7,7,7,7,7,7,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,1,1,1,1,1,1,1,1,7,7,7,7,7,7,7,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0],
[0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0],
[0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,7,7,7,7,7,7,7,7,7,0],
[0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,2,7,7,7,7,7,7,7,7,7,0],
[0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,7,7,7,7,7,7,7,7,7,0],
[0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,2,7,7,7,7,7,7,7,7,7,0],
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
]