(east #t)
(stop #t))
(tile (id 5)
- (image "road_e.png")
+ (image "road_end.png")
(north #f)
(south #f)
(west #f)
(south #t)
(west #f)
(east #f))
- )
+
+ ;; Secret paths
+ (tile (id 61)
+ (image "road_nws.png")
+ (north #t)
+ (south #t)
+ (west #t)
+ (east #t))
+
+ (tile (id 62)
+ (image "snow5.png")
+ (stop #f)
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #t))
+
+ (tile (id 63)
+ (image "water.png")
+ (stop #f)
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #t))
+
+ (tile (id 64)
+ (image "snow7.png")
+ (stop #f)
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #t))
+
+ ;;one-way vertical road
+ (tile (id 65)
+ (image "road_ns.png")
+ (north #t)
+ (south #t)
+ (west #f)
+ (east #f)
+ (stop #f)
+ (one-way "north-south"))
+
+ ;;one-way horizontal road
+ (tile (id 66)
+ (image "road_we.png")
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #t)
+ (stop #f)
+ (one-way "west-east"))
+
+ ;; Another invisible road
+ (tile (id 67)
+ (image "snow9.png")
+ (stop #t)
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #f))
+
+ ;; End of the line
+ (tile (id 68)
+ (image "road_n.png")
+ (stop #t)
+ (north #t)
+ (south #f)
+ (west #f)
+ (east #f))
+
+ (tile (id 69)
+ (image "road_e.png")
+ (stop #t)
+ (north #f)
+ (south #f)
+ (west #f)
+ (east #t))
+
+ (tile (id 70)
+ (image "road_s.png")
+ (stop #t)
+ (north #f)
+ (south #t)
+ (west #f)
+ (east #f))
+
+ (tile (id 71)
+ (image "road_w.png")
+ (stop #t)
+ (north #f)
+ (south #f)
+ (west #t)
+ (east #f))
+
+)
;; EOF ;;