16064
|
1 |
# Templates for maze map generator in hedgewars
|
|
2 |
|
|
3 |
templates:
|
|
4 |
# 00
|
|
5 |
-
|
|
6 |
width: 2048
|
|
7 |
height: 1024
|
|
8 |
max_hedgehogs: 64
|
|
9 |
cell_size: 100
|
|
10 |
distortion_limiting_factor: 140
|
|
11 |
braidness: 12
|
|
12 |
invert: false
|
|
13 |
|
|
14 |
# 01
|
|
15 |
-
|
|
16 |
width: 1536
|
|
17 |
height: 1024
|
|
18 |
max_hedgehogs: 64
|
|
19 |
cell_size: 64
|
|
20 |
distortion_limiting_factor: 160
|
|
21 |
braidness: 8
|
|
22 |
invert: false
|
|
23 |
|
|
24 |
# 02
|
|
25 |
-
|
|
26 |
width: 2048
|
|
27 |
height: 1024
|
|
28 |
max_hedgehogs: 64
|
|
29 |
cell_size: 140
|
|
30 |
distortion_limiting_factor: 140
|
|
31 |
braidness: 12
|
|
32 |
invert: false
|
|
33 |
|
|
34 |
# 03
|
|
35 |
-
|
|
36 |
width: 4096
|
|
37 |
height: 2048
|
|
38 |
max_hedgehogs: 64
|
|
39 |
cell_size: 160
|
|
40 |
distortion_limiting_factor: 180
|
|
41 |
braidness: 16
|
|
42 |
invert: false
|
|
43 |
|
|
44 |
# 04
|
|
45 |
-
|
|
46 |
width: 4096
|
|
47 |
height: 2048
|
|
48 |
max_hedgehogs: 64
|
|
49 |
cell_size: 240
|
|
50 |
distortion_limiting_factor: 220
|
|
51 |
braidness: 20
|
|
52 |
invert: false
|
|
53 |
|
|
54 |
# 05
|
|
55 |
-
|
|
56 |
width: 4096
|
|
57 |
height: 2048
|
|
58 |
max_hedgehogs: 64
|
|
59 |
cell_size: 280
|
|
60 |
distortion_limiting_factor: 220
|
|
61 |
braidness: 20
|
|
62 |
invert: false
|
|
63 |
|
|
64 |
# 06
|
|
65 |
-
|
|
66 |
width: 1024
|
|
67 |
height: 1024
|
|
68 |
max_hedgehogs: 64
|
|
69 |
cell_size: 64
|
|
70 |
distortion_limiting_factor: 150
|
|
71 |
braidness: 3
|
|
72 |
invert: true
|
|
73 |
|
|
74 |
# 07
|
|
75 |
-
|
|
76 |
width: 2048
|
|
77 |
height: 1024
|
|
78 |
max_hedgehogs: 64
|
|
79 |
cell_size: 80
|
|
80 |
distortion_limiting_factor: 150
|
|
81 |
braidness: 5
|
|
82 |
invert: true
|
|
83 |
|
|
84 |
# 08
|
|
85 |
-
|
|
86 |
width: 2048
|
|
87 |
height: 1024
|
|
88 |
max_hedgehogs: 64
|
|
89 |
cell_size: 120
|
|
90 |
distortion_limiting_factor: 150
|
|
91 |
braidness: 5
|
|
92 |
invert: true
|
|
93 |
|
|
94 |
# 09
|
|
95 |
-
|
|
96 |
width: 4096
|
|
97 |
height: 2048
|
|
98 |
max_hedgehogs: 64
|
|
99 |
cell_size: 140
|
|
100 |
distortion_limiting_factor: 200
|
|
101 |
braidness: 10
|
|
102 |
invert: true
|
|
103 |
|
|
104 |
# 10
|
|
105 |
-
|
|
106 |
width: 4096
|
|
107 |
height: 2048
|
|
108 |
max_hedgehogs: 64
|
|
109 |
cell_size: 220
|
|
110 |
distortion_limiting_factor: 250
|
|
111 |
braidness: 10
|
|
112 |
invert: true
|
|
113 |
|
|
114 |
# 11
|
|
115 |
-
|
|
116 |
width: 4096
|
|
117 |
height: 2048
|
|
118 |
max_hedgehogs: 64
|
|
119 |
cell_size: 256
|
|
120 |
distortion_limiting_factor: 280
|
|
121 |
braidness: 10
|
|
122 |
invert: true
|
|
123 |
|
|
124 |
template_types:
|
|
125 |
small_tunnels: [0, 1]
|
|
126 |
medium_tunnels: [2, 3]
|
|
127 |
large_tunnels: [4, 5]
|
|
128 |
small_islands: [6, 7]
|
|
129 |
medium_islands: [8, 9]
|
|
130 |
large_islands: [10, 11]
|
|
131 |
|