/usr/share/games/trackballs/levels/ki1.scm is in trackballs-data 1.2.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ;;; level kw1
;;; Note. This is meant to be a very easy and basic level for ages 4-5.
;;; Also, since I am a beginner at designing levels, I want to keep it
;;; simple at first.
(day)
(set-track-name (_ "Right Angles"))
(set-author "Keith Winston")
(set-start-position 252 252)
(start-time 300)
;; This is the goal
(add-goal 221 237 #t "ki2")
(add-flag 250 243 100 #t 0.1) ;; first flag
(add-flag 244 242 100 #t 0.1)
(add-flag 247 235 250 #t 0.5)
(add-flag 228 237 100 #t 0.1)
(define speed 0.2)
;(cond
; ((= (difficulty) *easy*) (set! speed 0.10))
; ((= (difficulty) *normal*) (set! speed 0.20))
; ((= (difficulty) *hard*) (set! speed 0.30))
;)
|