-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.py
21 lines (20 loc) · 988 Bytes
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# World data:
# Below is numeric data of created world, where numbers is types of blocks.
world_data = [
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],
[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],
[1,0,0,0,0,0,0,0,0,5,2,2,2,2,6,0,0,0,0,0,0,0,0,1],
[1,0,0,0,0,0,0,0,0,3,1,1,1,1,1,6,0,0,0,0,0,0,0,1],
[1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,5,2,1],
[1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,1,1,1],
[1,0,0,0,0,0,0,0,5,1,1,6,0,0,0,0,5,6,0,0,0,0,1,1],
[1,0,0,0,0,0,0,0,3,1,1,1,2,2,2,2,1,1,6,0,0,0,0,1],
[1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,4,0,2,0,0,1],
[1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,4,0,0,0,5,1],
[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,5,1,1],
[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1],
[1,0,0,0,0,0,0,0,0,0,5,2,2,6,0,0,0,0,0,5,2,1,1,1],
[1,0,0,0,0,0,0,0,5,2,1,1,1,4,0,0,0,0,5,1,1,1,1,1],
[1,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1],
]