This file is indexed.

/usr/share/games/trackballs/levels/child1.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
;;; level child1
;;; This is an easy and short level for young children.
;;; This level was created for my little goddaughter.


(day)

(set-track-name (_ "Maze"))
(set-author "Attila Boros")

;; Start
(set-start-position 249 245)
(cond
 ((= (difficulty) *easy*)   (start-time 240))
 ((= (difficulty) *normal*) (start-time 120))
 ((= (difficulty) *hard*)   (start-time  60))
)

;; Goal
(add-goal 238 247 #t "child2")

;; Do not jump
(jump 0.1)

(add-flag 254 242 100 #t 0.1) 
(add-flag 238 254 100 #t 0.1) 
(add-flag 238 242 100 #t 0.1) 
(add-flag 254 254 100 #t 0.1)