/usr/share/games/trackballs/levels/child5.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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | ;;; level child5
;;; This is an easy and short level for young children.
;;; This level was created for my little goddaughter.
(day)
(rain 0.2)
(fog 0.1)
(set-track-name (_ "Wonderland"))
(set-author "Attila Boros")
;; Start
(set-start-position 240 248)
(cond
((= (difficulty) *easy*) (start-time 300))
((= (difficulty) *normal*) (start-time 180))
((= (difficulty) *hard*) (start-time 90))
)
;; Goal
(add-goal 248 241 #f "child6")
;; Do not jump
(jump 0.1)
(set-cell-wall-colors 0 0 255 255 0 .9 .7 .1 .3)
(set-cell-wall-colors 0 0 255 255 1 .9 .7 .1 .3)
(set-cell-wall-colors 0 0 255 255 2 .9 .7 .1 .3)
(set-cell-wall-colors 0 0 255 255 3 .9 .7 .1 .3)
(add-cyclic-platform 252 247 252 247 -2.0 2.0 1.0 0.5)
(define pipe1(pipe 240.2 252.0 2.5 243.7 252. 2.5 0.5))
(set-primary-color pipe1 .3 .7 .9 .4)
(define pipe2(pipe 244.2 248.0 2.5 247.7 248. 2.5 0.5))
(set-primary-color pipe2 .3 .7 .9 .4)
(define pipe3(pipe 248.2 252.0 2.5 251.7 252. 2.5 0.5))
(set-primary-color pipe3 .3 .7 .9 .4)
(trigger 240 249 0.5 (lambda() (set-primary-color pipe1 .3 .7 .9 .0)))
(trigger 240 249 0.5 (lambda() (set-primary-color pipe2 .3 .7 .9 .0)))
(trigger 240 249 0.5 (lambda() (set-primary-color pipe3 .3 .7 .9 .0)))
(trigger 240 252 0.5 (lambda() (set-primary-color pipe1 .3 .7 .9 .0)))
(trigger 240 251 0.5 (lambda() (set-primary-color pipe1 .3 .7 .9 .5)))
(trigger 244 248 0.5 (lambda() (set-primary-color pipe2 .3 .7 .9 .0)))
(trigger 244 249 0.5 (lambda() (set-primary-color pipe2 .3 .7 .9 .5)))
(trigger 248 252 0.5 (lambda() (set-primary-color pipe3 .3 .7 .9 .0)))
(trigger 248 251 0.5 (lambda() (set-primary-color pipe3 .3 .7 .9 .5)))
|