;; -*- mode: scheme -*- ;; (tile (id INT) ;; (directions TOP RIGHT DOWN LEFT) ;; (supertux-worldmap-tiles (tile (id 1) (image "road_h.png") (north #f) (south #f) (west #t) (east #t) (stop #f)) (tile (id 2) (image "road_v.png") (north #t) (south #t) (west #f) (east #f) (stop #f)) (tile (id 3) (image "road_ws.png") (north #f) (south #t) (west #t) (east #f) (stop #t)) (tile (id 4) (image "road_cross.png") (north #t) (south #t) (west #t) (east #t) (stop #t)) (tile (id 5) (image "road_end.png") (north #f) (south #f) (west #f) (east #t) (stop #t)) (tile (id 6) (image "road_h_stop.png") (north #f) (south #f) (west #t) (east #t) (stop #t)) (tile (id 7) (image "road_v_stop.png") (north #t) (south #t) (west #f) (east #f) (stop #t)) (tile (id 8) (image "ground.png") (north #f) (south #f) (east #f) (west #f) (stop #f)) (tile (id 9) (image "water.png")) (tile (id 11) (image "snow1.png")) (tile (id 12) (image "snow2.png")) (tile (id 13) (image "snow3.png")) (tile (id 14) (image "snow4.png")) (tile (id 15) (image "snow5.png")) (tile (id 16) (image "snow6.png")) (tile (id 17) (image "snow7.png")) (tile (id 18) (image "snow8.png")) (tile (id 19) (image "snow9.png")) (tile (id 20) (image "snow10.png")) (tile (id 21) (image "snow11.png")) (tile (id 22) (image "snow12.png")) (tile (id 23) (image "snow13.png")) (tile (id 24) (image "wood1.png")) (tile (id 25) (image "wood2.png")) (tile (id 26) (image "wood3.png")) (tile (id 27) (image "wood4.png")) (tile (id 28) (image "wood5.png")) (tile (id 29) (image "wood6.png")) (tile (id 30) (image "wood7.png")) (tile (id 31) (image "wood8.png")) (tile (id 32) (image "wood9.png")) (tile (id 33) (image "wood10.png")) (tile (id 34) (image "wood11.png")) (tile (id 35) (image "wood12.png")) (tile (id 36) (image "wood13.png")) (tile (id 37) (image "road_ne.png") (stop #f) (auto-walk #t) (north #t) (south #f) (west #f) (east #t)) (tile (id 38) (image "road_nsw.png") (north #t) (south #t) (west #t) (east #f)) (tile (id 39) (image "road_sw.png") (stop #f) (auto-walk #t) (north #f) (south #t) (west #t) (east #f)) (tile (id 40) (image "road_we.png") (north #f) (south #f) (west #t) (east #t) (stop #f)) (tile (id 41) (image "road_nes.png") (north #t) (south #t) (west #f) (east #t)) (tile (id 42) (image "road_nw.png") (stop #f) (auto-walk #t) (north #t) (south #f) (west #t) (east #f)) (tile (id 43) (image "road_swe.png") (north #f) (south #t) (west #t) (east #t)) (tile (id 44) (image "road_new.png") (north #t) (south #f) (west #t) (east #t)) (tile (id 45) (image "road_nesw.png") (north #t) (south #t) (west #t) (east #t)) (tile (id 46) (image "road_nws.png") (north #t) (south #t) (west #t) (east #f)) (tile (id 47) (image "road_ns.png") (north #t) (south #t) (west #f) (east #f) (stop #f)) (tile (id 48) (image "road_se.png") (stop #f) (auto-walk #t) (north #f) (south #t) (west #f) (east #t)) ;; castle (tile (id 49) (image "castle1.png") (north #f) (south #f) (west #f) (east #f)) (tile (id 50) (image "castle2.png") (north #f) (south #f) (west #f) (east #f)) (tile (id 51) (image "castle3.png") (north #f) (south #f) (west #f) (east #f)) (tile (id 52) (image "castle4.png") (north #f) (south #f) (west #f) (east #f)) (tile (id 53) (image "castle5.png") (north #f) (south #f) (west #f) (east #f)) (tile (id 54) (image "castle6.png") (north #f) (south #f) (west #f) (east #f)) (tile (id 55) (image "castle7.png") (north #f) (south #f) (west #f) (east #f)) (tile (id 56) (image "castle8.png") (stop #t) (north #f) (south #f) (west #f) (east #t)) (tile (id 57) (image "castle9.png") (stop #f) (north #f) (south #f) (west #t) (east #t)) (tile (id 58) (image "igloo1.png") (stop #f) (north #f) (south #f) (west #f) (east #f)) (tile (id 59) (image "igloo2.png") (stop #t) (north #f) (south #t) (west #f) (east #f)) (tile (id 60) (image "snowman.png") (north #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 ;;