/usr/share/games/trackballs/levels/ki4.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 | ;;; Clowning Around
;;; a kids level that is semi-hard.
(set-track-name (_ "Clowning Around"))
(set-author "Dietrich Radel")
(set-start-position 234 232)
(add-goal 221 226 #t "ki5")
;;; how much time each difficulty level gets
(cond
((= (difficulty) *easy*)(begin (start-time 180) (restart-time 60)))
((= (difficulty) *normal*)(begin (start-time 150) (restart-time 45)))
((= (difficulty) *hard*)(begin (start-time 120) (restart-time 30)))
)
(add-flag 243 237 100 #t 0.1)
(add-flag 245 239 100 #t 0.1)
(add-flag 225 232 150 #t 0.1)
(add-flag 226 227 150 #t 0.1)
(add-modpill 223 231 *mod-spike* 25 40)
;; This would create a forcefield and a switch turning it on/off
(define ff (forcefield 226.5 225.5 0.0 1.0 0.0 0.0 1.0 *ff-bounce*))
(switch 222.5 229.5 (lambda () (set-onoff ff #t)) (lambda () (set-onoff ff #f)))
; Savepoint for everyone
(diamond 229.5 238.5)
; Savepoints for easy only
(if (= (difficulty) *easy*)
(begin (diamond 242 234)
(diamond 235 232)))
|