/usr/share/games/trackballs/levels/motion1.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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | (set-track-name (_ "Pendulum Motion"))
(set-author "Warren D. Ober")
(set-start-position 143.5 124.5)
(start-time 720)
(restart-time 90)
;; SET JUMP TO Default;
(jump 1.0)
;;Weather conditions.
(day)
;;Set ball velocity.
(define speed 0.3)
(cond
((= (difficulty) *easy*) (set! speed 0.20))
((= (difficulty) *normal*) (set! speed 0.30))
((= (difficulty) *hard*) (set! speed 0.40)))
;;Flags.
(add-flag 14 18 350 #t 0.1)
(add-flag 14 26 150 #t 0.1)
(add-flag 17 26 350 #t 0.1)
(add-flag 16 40 200 #t 0.1)
;;Platform
(add-cyclic-platform
;;; Positions
101 80 102 81
;;; Low, High, Time Offset, Speed
-8.0 5. 0.0 0.75)
;;PIPES
;scoop
(define pipe1(pipe 101.5 81.0 4.8 101.5 83.0 8.5 1.4))
(set-primary-color pipe1 0.5 0.0 0.0 0.3)
(set-wind pipe1 15.0 0.0)
(set-primary-color (pipe-connector 101.5 83.0 8.5 1.4) 0.5 0.0 0.0 0.3)
(define pipe2(pipe 101.5 83.0 8.7 101.5 99.5 8.7 1.0))
(set-primary-color pipe2 0.5 0.0 0.0 0.3)
(set-wind pipe2 3.5 0.0)
;1st turn.
(set-primary-color (pipe-connector 101.5 100.0 8.7 1.1) 0.5 0.0 0.0 0.3)
(define pipe3(pipe 101.6 99.9 8.6 114.4 87.9 1.2 1.0))
(set-primary-color pipe3 0.5 0.0 0.0 0.3)
(set-wind pipe3 0.0 1.0)
;2nd turn.
(set-primary-color (pipe-connector 114.6 88.0 1.0 1.1) 0.5 0.0 0.0 0.3)
(define pipe4(pipe 114.7 87.9 1.0 114.7 99.7 -3.5 1.0))
(set-primary-color pipe4 0.5 0.0 0.0 0.3)
(set-wind pipe4 2.0 0.0)
;3rd turn. (up)
(set-primary-color (pipe-connector 114.7 100 -3.4 1.2) 0.5 0.0 0.0 0.3)
(define pipe5(pipe 114.4 100 -3.6 134.4 100.1 7.6 1.0))
(set-primary-color pipe5 0.5 0.0 0.0 0.3)
(set-wind pipe5 6.5 0.0)
;4th turn.
(set-primary-color (pipe-connector 134.7 100.1 7.4 1.0) 0.5 0.0 0.0 0.3)
(define pipe6(pipe 134.7 100.0 7.4 134.7 119.6 7.4 1.0))
(set-primary-color pipe6 0.5 0.0 0.0 0.3)
(set-wind pipe6 3.0 0.0)
;last turn (down to shute).
(set-primary-color (pipe-connector 134.7 120 7.5 1.0) 0.5 0.0 0.0 0.3)
(define pipe7(pipe 134.8 120.0 7.5 106.5 114.0 -4.0 1.0))
(set-primary-color pipe7 0.5 0.0 0.0 0.3)
(set-wind pipe7 1.0 0.0)
;Drop shute
(define pipe8(pipe 104 114 -7.5 103.5 114 -9.5 1.5))
(set-primary-color pipe8 0.9 0.9 0.9 0.9)
(set-wind pipe8 -10.0 0.0)
;connector
(set-primary-color (pipe-connector 103.5 114 -9.5 1.5) 0.9 0.9 0.9 0.9)
(define pipe9(pipe 103.5 114.3 -9.8 102.0 121 -9.8 1.0))
(set-primary-color pipe8 0.9 0.9 0.9 0.9)
(set-wind pipe8 0.0 15.0)
(set-primary-color (pipe-connector 102 121 -9.8 1.0) 0.9 0.9 0.9 0.9)
;;BEGIN LIFT SHUTE
(define shute(pipe 102 121 -9.8 102 122 16.4 1.0))
(set-primary-color shute 0.9 0.9 0.9 0.3)
(set-wind shute 4.0 5.0)
;;End of level
(add-goal 34 60 #f "bx3")
|