/usr/share/games/trackballs/levels/frg6.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 56 57 | (set-track-name (_ "High Nausea Rating"))
(set-author "Ulrik Enstad")
(set-start-position 238 238)
(set-acceleration (set-primary-color (new-mr-black 225 221) 0.5 0.5 0.5) 1.6)
(pipe 224 208 -0.9 225 208 -1.3 0.4)
(pipe-connector 225 208 -1.3 0.4)
(pipe 225 208 -1.3 224.9 208 -3.1 0.4)
(pipe-connector 224.9 208 -3.1 0.4)
(pipe 224.9 208 -3.1 222 208 -3.1 0.4)
(diamond 218.5 206.5)
(add-goal 226 184 #f "Shop2")
(add-goal 227 184 #f "Shop2")
(add-flag 210 197 30 #f 1.5)
(add-flag 222 208 30 #f 0.5)
(add-flag 233 233 50 #f 0.5)
(define bonus-goto "Shop2")
(set-primary-color (add-goal 217 218 #t "bonusb") 1.0 1.0 1.0)
(fog)
(fog-color 0.8 0.3 0.0)
(jump 0.0)
(cond
((= (difficulty) *easy*)
(start-time 100)
)
((= (difficulty) *normal*)
(start-time 90)
)
((= (difficulty) *hard*)
(start-time 70)
)
)
(cond
((= (difficulty) *easy*)
(set-primary-color (set-acceleration (set-modtime
(new-mr-black 227 216) *mod-spike* -1.) 2.3) 0.8 0.0 0.0)
)
((= (difficulty) *normal*)
(set-primary-color (set-acceleration (set-modtime
(new-mr-black 227 216) *mod-spike* -1.) 2.3) 0.8 0.0 0.0)
)
((= (difficulty) *hard*)
(set-acceleration (set-modtime (set-primary-color (set-secondary-color (new-mr-black 227 216) 1.0 1.0 1.0) 0.0 0.3 1.0) *mod-speed* -1.) 8.0)
)
)
(restart-time 0)
|