acd130b0ae933a80bf3b9c7678b62c171dfbe707
[supertux.git] / data / images / worldmap / antarctica.scm
1 ;; (tile (id INT)
2 ;;       (directions TOP RIGHT DOWN LEFT) 
3 ;;
4 (supertux-worldmap-tiles
5  (tile (id 0)
6        (image "ground.png")
7        (north #f)
8        (south #f)
9        (east  #f)
10        (west  #f)
11        (stop  #f))
12  (tile (id 1)
13        (image "road_h.png")
14        (north #f)
15        (south #f)
16        (west  #t)
17        (east  #t)
18        (stop #f))
19  (tile (id 2)
20        (image "road_v.png")
21        (north #t)
22        (south #t)
23        (west  #f)
24        (east  #f)
25        (stop #f))
26  (tile (id 3)
27        (image "road_ws.png")
28        (north #f)
29        (south #t)
30        (west  #t)
31        (east  #f)
32        (stop #t))
33  (tile (id 4)
34        (image "road_cross.png")
35        (north #t)
36        (south #t)
37        (west  #t)
38        (east  #t)
39        (stop #t))
40  (tile (id 5)
41        (image "road_e.png")
42        (north #f)
43        (south #f)
44        (west  #f)
45        (east  #t)
46        (stop #t))
47  (tile (id 6)
48        (image "road_h_stop.png")
49        (north #f)
50        (south #f)
51        (west  #t)
52        (east  #t)
53        (stop #t))
54  (tile (id 7)
55        (image "road_v_stop.png")
56        (north #t)
57        (south #t)
58        (west  #f)
59        (east  #f)
60        (stop #t))
61
62 )
63
64 ;; EOF ;;