+;; -*- mode: scheme -*-
;; (tile (id INT)
;; (directions TOP RIGHT DOWN LEFT)
;;
(tile (id 37)
(image "road_ne.png")
+ (stop #f)
+ (auto-walk #t)
(north #t)
(south #f)
(west #f)
(east #f))
(tile (id 39)
(image "road_sw.png")
+ (stop #f)
+ (auto-walk #t)
(north #f)
(south #t)
(west #t)
(east #t))
(tile (id 42)
(image "road_nw.png")
+ (stop #f)
+ (auto-walk #t)
(north #t)
(south #f)
(west #t)
(stop #f))
(tile (id 48)
(image "road_se.png")
+ (stop #f)
+ (auto-walk #t)
(north #f)
(south #t)
(west #f)