/usr/share/games/trackballs/levels/child2.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 | ;;; level child2
;;; This is an easy and short level for young children.
;;; This level was created for my little goddaughter.
(day)
(snow 0.5)
(set-track-name (_ "Christmas"))
(set-author "Attila Boros")
;; Start
(set-start-position 253 250)
(cond
((= (difficulty) *easy*) (start-time 180))
((= (difficulty) *normal*) (start-time 120))
((= (difficulty) *hard*) (start-time 60))
)
;; Goal
(add-goal 250 246 #t "child3")
;; Do not jump
(jump 0.1)
(add-cyclic-platform 248 250 248 250 -4.0 -2.5 2.0 0.5)
(add-flag 248 252 50 #t 0.1)
(add-flag 248 246 50 #t 0.1)
|