mario.stl 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842
  1. (supertux-level
  2. (version 3)
  3. (name (_ "Mario's Supposed to Deal With This..."))
  4. (author "Daniel Ward")
  5. (license "CC-BY-SA 4.0 International")
  6. (target-time 65)
  7. (allow-item-pocket "inherit")
  8. (icon "")
  9. (icon-locked "")
  10. (statistics
  11. (enable-coins #t)
  12. (enable-badguys #f)
  13. (enable-secrets #t)
  14. )
  15. (sector
  16. (name "main")
  17. (ambient-light
  18. (color 0.8 0.82 1)
  19. )
  20. (background
  21. (color 1 1 1)
  22. (alignment "top")
  23. (scroll-speed-x -1)
  24. (speed 0)
  25. (image "/images/background/misc/skybox_stars.png")
  26. (z-pos -290)
  27. )
  28. (background
  29. (color 1 1 1)
  30. (alignment "top")
  31. (scroll-speed-x -5)
  32. (speed 0)
  33. (image "/images/background/misc/skybox_night.png")
  34. (z-pos -280)
  35. )
  36. (background
  37. (color 0.2 0.2 0.3)
  38. (alignment "bottom")
  39. (scroll-speed-x -15)
  40. (speed 0.2)
  41. (image "/images/background/antarctic/ice_mountains.png")
  42. (z-pos -220)
  43. )
  44. (background
  45. (color 0.7 0.7 0.8 0.8)
  46. (alignment "bottom")
  47. (scroll-speed-x -50)
  48. (speed 1)
  49. (speed-y 0)
  50. (image "/images/background/arcticskies/arcticskies3.png")
  51. (z-pos 200)
  52. )
  53. (bonusblock
  54. (type "orange")
  55. (z-pos 51)
  56. (x 2080)
  57. (y 256)
  58. )
  59. (bonusblock
  60. (z-pos 51)
  61. (contents "1up")
  62. (x 10352)
  63. (y 160)
  64. )
  65. (bonusblock
  66. (type "orange")
  67. (z-pos 51)
  68. (x 9856)
  69. (y 256)
  70. )
  71. (bonusblock
  72. (type "purple")
  73. (z-pos 51)
  74. (x 4832)
  75. (y 96)
  76. )
  77. (bouncingsnowball
  78. (z-pos 50)
  79. (x 1664)
  80. (y 384)
  81. )
  82. (camera
  83. (name "Camera")
  84. (mode "normal")
  85. )
  86. (climbable
  87. (width 32)
  88. (height 384)
  89. (x 2336)
  90. (y 192)
  91. )
  92. (climbable
  93. (width 32)
  94. (height 416)
  95. (x 4384)
  96. (y 32)
  97. )
  98. (climbable
  99. (width 32)
  100. (height 288)
  101. (x 6432)
  102. (y 384)
  103. )
  104. (climbable
  105. (width 32)
  106. (height 288)
  107. (x 6592)
  108. (y 384)
  109. )
  110. (climbable
  111. (width 32)
  112. (height 256)
  113. (x 6752)
  114. (y 384)
  115. )
  116. (climbable
  117. (width 32)
  118. (height 256)
  119. (x 6912)
  120. (y 384)
  121. )
  122. (climbable
  123. (width 32)
  124. (height 512)
  125. (x 10016)
  126. (y 32)
  127. )
  128. (coin
  129. (z-pos 49)
  130. (handle
  131. (scale_x 0)
  132. (scale_y 0)
  133. (offset_x 0)
  134. (offset_y 0)
  135. )
  136. (path-ref "gen17122732091740236660080")
  137. )
  138. (coin
  139. (z-pos 49)
  140. (handle
  141. (scale_x 0)
  142. (scale_y 0)
  143. (offset_x 0)
  144. (offset_y 0)
  145. )
  146. (path-ref "gen17122732061740236658064")
  147. )
  148. (coin
  149. (z-pos 49)
  150. (handle
  151. (scale_x 0)
  152. (scale_y 0)
  153. (offset_x 0)
  154. (offset_y 0)
  155. )
  156. (path-ref "gen17122732471740236659184")
  157. )
  158. (coin
  159. (z-pos 49)
  160. (handle
  161. (scale_x 0)
  162. (scale_y 0)
  163. (offset_x 0)
  164. (offset_y 0)
  165. )
  166. (path-ref "gen17122732731740236657616")
  167. )
  168. (coin
  169. (z-pos 49)
  170. (handle
  171. (scale_x 0)
  172. (scale_y 0)
  173. (offset_x 0)
  174. (offset_y 0)
  175. )
  176. (path-ref "gen17122739721740236660304")
  177. )
  178. (coin
  179. (z-pos 49)
  180. (handle
  181. (scale_x 0)
  182. (scale_y 0)
  183. (offset_x 0)
  184. (offset_y 0)
  185. )
  186. (path-ref "gen17122739561740236661872")
  187. )
  188. (coin
  189. (z-pos 49)
  190. (handle
  191. (scale_x 0)
  192. (scale_y 0)
  193. (offset_x 0)
  194. (offset_y 0)
  195. )
  196. (path-ref "gen17122753761740236659408")
  197. )
  198. (coin
  199. (z-pos 49)
  200. (starting-node 1)
  201. (handle
  202. (scale_x 0)
  203. (scale_y 0)
  204. (offset_x 0)
  205. (offset_y 0)
  206. )
  207. (path-ref "gen17122753761740236659408")
  208. )
  209. (coin
  210. (z-pos 49)
  211. (starting-node 2)
  212. (handle
  213. (scale_x 0)
  214. (scale_y 0)
  215. (offset_x 0)
  216. (offset_y 0)
  217. )
  218. (path-ref "gen17122753761740236659408")
  219. )
  220. (coin
  221. (z-pos 49)
  222. (starting-node 3)
  223. (handle
  224. (scale_x 0)
  225. (scale_y 0)
  226. (offset_x 0)
  227. (offset_y 0)
  228. )
  229. (path-ref "gen17122753761740236659408")
  230. )
  231. (coin
  232. (z-pos 49)
  233. (handle
  234. (scale_x 0)
  235. (scale_y 0)
  236. (offset_x 0)
  237. (offset_y 0)
  238. )
  239. (path-ref "gen17122837771988212915472")
  240. )
  241. (coin
  242. (z-pos 49)
  243. (handle
  244. (scale_x 0)
  245. (scale_y 0)
  246. (offset_x 0)
  247. (offset_y 0)
  248. )
  249. (path-ref "gen17122837941988212915920")
  250. )
  251. (coin
  252. (z-pos 49)
  253. (handle
  254. (scale_x 0)
  255. (scale_y 0)
  256. (offset_x 0)
  257. (offset_y 0)
  258. )
  259. (path-ref "gen17122838171988212911440")
  260. )
  261. (coin
  262. (z-pos 49)
  263. (handle
  264. (scale_x 0)
  265. (scale_y 0)
  266. (offset_x 0)
  267. (offset_y 0)
  268. )
  269. (path-ref "gen17122862161988212914352")
  270. )
  271. (coin
  272. (z-pos 49)
  273. (handle
  274. (scale_x 0)
  275. (scale_y 0)
  276. (offset_x 0)
  277. (offset_y 0)
  278. )
  279. (path-ref "gen17122862451988212908304")
  280. )
  281. (coin
  282. (z-pos 49)
  283. (handle
  284. (scale_x 0)
  285. (scale_y 0)
  286. (offset_x 0)
  287. (offset_y 0)
  288. )
  289. (path-ref "gen17122862301988212913232")
  290. )
  291. (coin
  292. (z-pos 49)
  293. (handle
  294. (scale_x 0)
  295. (scale_y 0)
  296. (offset_x 0)
  297. (offset_y 0)
  298. )
  299. (path-ref "gen17122863001988212910992")
  300. )
  301. (coin
  302. (z-pos 49)
  303. (handle
  304. (scale_x 0)
  305. (scale_y 0)
  306. (offset_x 0)
  307. (offset_y 0)
  308. )
  309. (path-ref "gen17122864882492911753984")
  310. )
  311. (coin
  312. (z-pos 49)
  313. (handle
  314. (scale_x 0)
  315. (scale_y 0)
  316. (offset_x 0)
  317. (offset_y 0)
  318. )
  319. (path-ref "gen17122865152491593932992")
  320. )
  321. (coin
  322. (z-pos 49)
  323. (handle
  324. (scale_x 0)
  325. (scale_y 0)
  326. (offset_x 0)
  327. (offset_y 0)
  328. )
  329. (path-ref "gen17122865412492911753984")
  330. )
  331. (coin
  332. (z-pos 49)
  333. (handle
  334. (scale_x 0)
  335. (scale_y 0)
  336. (offset_x 0)
  337. (offset_y 0)
  338. )
  339. (path-ref "gen17122865522491593933888")
  340. )
  341. (coin
  342. (z-pos 49)
  343. (handle
  344. (scale_x 0)
  345. (scale_y 0)
  346. (offset_x 0)
  347. (offset_y 0)
  348. )
  349. (path-ref "gen17122865532492996912928")
  350. )
  351. (decal
  352. (z-pos 55)
  353. (sprite "/images/decal/snow/igloo_fg.png")
  354. (x 12064)
  355. (y 256)
  356. )
  357. (decal
  358. (z-pos -50)
  359. (sprite "/images/decal/snow/igloo_bg.png")
  360. (x 12064)
  361. (y 256)
  362. )
  363. (decal
  364. (z-pos 50)
  365. (sprite "/images/decal/sign_icons/leftup.png")
  366. (x 5984)
  367. (y 576)
  368. )
  369. (dispenser
  370. (z-pos 55)
  371. (cycle 3)
  372. (type "cannon")
  373. (objects
  374. (kamikazesnowball
  375. (z-pos 50)
  376. )
  377. )
  378. (direction "left")
  379. (gravity #t)
  380. (x 2464)
  381. (y 352)
  382. )
  383. (dispenser
  384. (z-pos 55)
  385. (cycle 3)
  386. (type "cannon")
  387. (objects
  388. (kamikazesnowball
  389. (z-pos 50)
  390. )
  391. )
  392. (direction "left")
  393. (gravity #t)
  394. (x 2432)
  395. (y 256)
  396. )
  397. (dispenser
  398. (z-pos 55)
  399. (cycle 3)
  400. (type "cannon")
  401. (objects
  402. (kamikazesnowball
  403. (z-pos 50)
  404. )
  405. )
  406. (direction "left")
  407. (gravity #t)
  408. (x 4480)
  409. (y 224)
  410. )
  411. (dispenser
  412. (z-pos 55)
  413. (cycle 3)
  414. (type "cannon")
  415. (objects
  416. (kamikazesnowball
  417. (z-pos 50)
  418. )
  419. )
  420. (direction "left")
  421. (gravity #t)
  422. (x 4480)
  423. (y 320)
  424. )
  425. (firefly
  426. (z-pos 0)
  427. (x 7472)
  428. (y 400)
  429. )
  430. (flyingsnowball
  431. (z-pos 50)
  432. (x 576)
  433. (y 352)
  434. )
  435. (flyingsnowball
  436. (z-pos 50)
  437. (x 768)
  438. (y 384)
  439. )
  440. (flyingsnowball
  441. (z-pos 50)
  442. (x 5152)
  443. (y 224)
  444. )
  445. (flyingsnowball
  446. (z-pos 50)
  447. (x 5056)
  448. (y 224)
  449. )
  450. (flyingsnowball
  451. (z-pos 50)
  452. (x 7040)
  453. (y 544)
  454. )
  455. (flyingsnowball
  456. (z-pos 50)
  457. (x 7168)
  458. (y 512)
  459. )
  460. (flyingsnowball
  461. (z-pos 50)
  462. (x 7296)
  463. (y 480)
  464. )
  465. (flyingsnowball
  466. (z-pos 50)
  467. (x 9856)
  468. (y 608)
  469. )
  470. (flyingsnowball
  471. (z-pos 50)
  472. (x 9984)
  473. (y 576)
  474. )
  475. (gradient
  476. (blend "none")
  477. (top_color 0 0 0)
  478. (bottom_color 0 0 0.2)
  479. )
  480. (gradient
  481. (top_color 0.3 0.3 0.3 0.2)
  482. (bottom_color 0.5 0.5 0.5 0.3)
  483. (z-pos 300)
  484. )
  485. (gradient
  486. (top_color 0.3 0.3 0.3 0.1)
  487. (bottom_color 0.7 0.7 0.8 0.4)
  488. (z-pos -210)
  489. )
  490. (invisible_wall
  491. (width 8)
  492. (height 64)
  493. (x 2008)
  494. (y 416)
  495. )
  496. (invisible_wall
  497. (width 8)
  498. (height 64)
  499. (x 1952)
  500. (y 424)
  501. )
  502. (invisible_wall
  503. (width 8)
  504. (height 64)
  505. (x 2008)
  506. (y 32)
  507. )
  508. (invisible_wall
  509. (width 16)
  510. (height 64)
  511. (x 1952)
  512. (y 32)
  513. )
  514. (invisible_wall
  515. (width 8)
  516. (height 64)
  517. (x 2968)
  518. (y 448)
  519. )
  520. (invisible_wall
  521. (width 8)
  522. (height 64)
  523. (x 2912)
  524. (y 448)
  525. )
  526. (invisible_wall
  527. (width 8)
  528. (height 64)
  529. (x 3200)
  530. (y 448)
  531. )
  532. (invisible_wall
  533. (width 8)
  534. (height 64)
  535. (x 3256)
  536. (y 448)
  537. )
  538. (invisible_wall
  539. (width 8)
  540. (height 64)
  541. (x 3488)
  542. (y 448)
  543. )
  544. (invisible_wall
  545. (width 8)
  546. (height 64)
  547. (x 3544)
  548. (y 448)
  549. )
  550. (invisible_wall
  551. (width 8)
  552. (height 64)
  553. (x 3928)
  554. (y 448)
  555. )
  556. (invisible_wall
  557. (width 8)
  558. (height 64)
  559. (x 3872)
  560. (y 448)
  561. )
  562. (invisible_wall
  563. (width 8)
  564. (height 64)
  565. (x 4696)
  566. (y 480)
  567. )
  568. (invisible_wall
  569. (width 8)
  570. (height 64)
  571. (x 4640)
  572. (y 480)
  573. )
  574. (invisible_wall
  575. (width 8)
  576. (height 64)
  577. (x 6264)
  578. (y 256)
  579. )
  580. (invisible_wall
  581. (width 8)
  582. (height 64)
  583. (x 6208)
  584. (y 256)
  585. )
  586. (invisible_wall
  587. (width 8)
  588. (height 64)
  589. (x 10392)
  590. (y 480)
  591. )
  592. (invisible_wall
  593. (width 8)
  594. (height 64)
  595. (x 10336)
  596. (y 480)
  597. )
  598. (invisible_wall
  599. (width 8)
  600. (height 64)
  601. (x 10168)
  602. (y 480)
  603. )
  604. (invisible_wall
  605. (width 8)
  606. (height 64)
  607. (x 10112)
  608. (y 480)
  609. )
  610. (invisible_wall
  611. (width 8)
  612. (height 64)
  613. (x 9112)
  614. (y 160)
  615. )
  616. (invisible_wall
  617. (width 8)
  618. (height 64)
  619. (x 9056)
  620. (y 160)
  621. )
  622. (invisible_wall
  623. (width 64)
  624. (height 8)
  625. (x 4832)
  626. (y 480)
  627. )
  628. (invisible_wall
  629. (width 64)
  630. (height 8)
  631. (x 4832)
  632. (y 408)
  633. )
  634. (invisible_wall
  635. (width 64)
  636. (height 8)
  637. (x 5952)
  638. (y 440)
  639. )
  640. (invisible_wall
  641. (width 64)
  642. (height 8)
  643. (x 5952)
  644. (y 512)
  645. )
  646. (invisible_wall
  647. (width 64)
  648. (height 8)
  649. (x 5760)
  650. (y 256)
  651. )
  652. (invisible_wall
  653. (width 64)
  654. (height 8)
  655. (x 5760)
  656. (y 184)
  657. )
  658. (invisible_wall
  659. (width 64)
  660. (height 8)
  661. (x 6048)
  662. (y 160)
  663. )
  664. (invisible_wall
  665. (width 64)
  666. (height 8)
  667. (x 6048)
  668. (y 88)
  669. )
  670. (invisible_wall
  671. (width 64)
  672. (height 8)
  673. (x 6880)
  674. (y 216)
  675. )
  676. (invisible_wall
  677. (width 64)
  678. (height 8)
  679. (x 6880)
  680. (y 288)
  681. )
  682. (invisible_wall
  683. (width 64)
  684. (height 8)
  685. (x 6176)
  686. (y 472)
  687. )
  688. (invisible_wall
  689. (width 64)
  690. (height 8)
  691. (x 6176)
  692. (y 544)
  693. )
  694. (invisible_wall
  695. (width 8)
  696. (height 64)
  697. (x 8184)
  698. (y 224)
  699. )
  700. (invisible_wall
  701. (width 8)
  702. (height 64)
  703. (x 8128)
  704. (y 224)
  705. )
  706. (invisible_wall
  707. (width 8)
  708. (height 64)
  709. (x 8504)
  710. (y 224)
  711. )
  712. (invisible_wall
  713. (width 8)
  714. (height 64)
  715. (x 8448)
  716. (y 224)
  717. )
  718. (invisible_wall
  719. (width 8)
  720. (height 64)
  721. (x 8856)
  722. (y 224)
  723. )
  724. (invisible_wall
  725. (width 8)
  726. (height 64)
  727. (x 8800)
  728. (y 224)
  729. )
  730. (invisible_wall
  731. (width 64)
  732. (height 8)
  733. (x 9728)
  734. (y 152)
  735. )
  736. (invisible_wall
  737. (width 64)
  738. (height 8)
  739. (x 9728)
  740. (y 224)
  741. )
  742. (invisible_wall
  743. (width 64)
  744. (height 8)
  745. (x 9728)
  746. (y 312)
  747. )
  748. (invisible_wall
  749. (width 64)
  750. (height 8)
  751. (x 9728)
  752. (y 384)
  753. )
  754. (invisible_wall
  755. (width 64)
  756. (height 8)
  757. (x 9024)
  758. (y 472)
  759. )
  760. (invisible_wall
  761. (width 64)
  762. (height 8)
  763. (x 9024)
  764. (y 544)
  765. )
  766. (invisible_wall
  767. (width 64)
  768. (height 8)
  769. (x 9024)
  770. (y 384)
  771. )
  772. (invisible_wall
  773. (width 64)
  774. (height 8)
  775. (x 9024)
  776. (y 312)
  777. )
  778. (jumpy
  779. (z-pos 50)
  780. (x 3024)
  781. (y 320)
  782. )
  783. (jumpy
  784. (z-pos 50)
  785. (x 5888)
  786. (y 200)
  787. )
  788. (mrbomb
  789. (z-pos 50)
  790. (x 1600)
  791. (y 384)
  792. )
  793. (mrbomb
  794. (z-pos 50)
  795. (x 1472)
  796. (y 384)
  797. )
  798. (mrbomb
  799. (z-pos 50)
  800. (x 6624)
  801. (y 288)
  802. )
  803. (mrbomb
  804. (z-pos 50)
  805. (x 6496)
  806. (y 288)
  807. )
  808. (mrbomb
  809. (z-pos 50)
  810. (x 7776)
  811. (y 416)
  812. )
  813. (mrbomb
  814. (z-pos 50)
  815. (x 9344)
  816. (y 384)
  817. )
  818. (music
  819. (file "/music/antarctic/underwater.music")
  820. )
  821. (particles-rain
  822. )
  823. (path
  824. (name "gen17122732091740236660080")
  825. (path
  826. (mode "pingpong")
  827. (adapt_speed #f)
  828. (node
  829. (x 2048)
  830. (y 320)
  831. (time 0.5)
  832. (easing "EaseQuadIn")
  833. )
  834. (node
  835. (x 1984)
  836. (y 384)
  837. )
  838. )
  839. )
  840. (path
  841. (name "gen17122732061740236658064")
  842. (path
  843. (mode "pingpong")
  844. (adapt_speed #f)
  845. (node
  846. (x 1888)
  847. (y 320)
  848. (time 0.5)
  849. (easing "EaseQuadIn")
  850. )
  851. (node
  852. (x 1952)
  853. (y 384)
  854. )
  855. )
  856. )
  857. (path
  858. (name "gen17122732471740236659184")
  859. (path
  860. (mode "pingpong")
  861. (adapt_speed #f)
  862. (node
  863. (x 1984)
  864. (y 96)
  865. (time 0.5)
  866. (easing "EaseQuadOut")
  867. )
  868. (node
  869. (x 2048)
  870. (y 160)
  871. )
  872. )
  873. )
  874. (path
  875. (name "gen17122732731740236657616")
  876. (path
  877. (mode "pingpong")
  878. (adapt_speed #f)
  879. (node
  880. (x 1952)
  881. (y 96)
  882. (time 0.5)
  883. (easing "EaseQuadOut")
  884. )
  885. (node
  886. (x 1888)
  887. (y 160)
  888. )
  889. )
  890. )
  891. (path
  892. (name "gen17122739721740236660304")
  893. (path
  894. (mode "pingpong")
  895. (adapt_speed #f)
  896. (node
  897. (x 2272)
  898. (y 320)
  899. (easing "EaseQuadInOut")
  900. )
  901. (node
  902. (x 2400)
  903. (y 320)
  904. )
  905. )
  906. )
  907. (path
  908. (name "gen17122739561740236661872")
  909. (path
  910. (mode "pingpong")
  911. (adapt_speed #f)
  912. (node
  913. (x 2400)
  914. (y 448)
  915. (easing "EaseQuadInOut")
  916. )
  917. (node
  918. (x 2272)
  919. (y 448)
  920. )
  921. )
  922. )
  923. (path
  924. (name "gen17122753761740236659408")
  925. (path
  926. (adapt_speed #f)
  927. (node
  928. (x 5504)
  929. (y 448)
  930. )
  931. (node
  932. (x 5568)
  933. (y 384)
  934. )
  935. (node
  936. (x 5504)
  937. (y 320)
  938. )
  939. (node
  940. (x 5440)
  941. (y 384)
  942. )
  943. )
  944. )
  945. (path
  946. (name "gen17122837771988212915472")
  947. (path
  948. (mode "pingpong")
  949. (adapt_speed #f)
  950. (node
  951. (x 6832)
  952. (y 576)
  953. (easing "EaseQuadInOut")
  954. )
  955. (node
  956. (x 6832)
  957. (y 400)
  958. )
  959. )
  960. )
  961. (path
  962. (name "gen17122837941988212915920")
  963. (path
  964. (mode "pingpong")
  965. (adapt_speed #f)
  966. (node
  967. (x 6672)
  968. (y 400)
  969. (easing "EaseQuadInOut")
  970. )
  971. (node
  972. (x 6672)
  973. (y 592)
  974. )
  975. )
  976. )
  977. (path
  978. (name "gen17122838171988212911440")
  979. (path
  980. (mode "pingpong")
  981. (adapt_speed #f)
  982. (node
  983. (x 6512)
  984. (y 608)
  985. (easing "EaseQuadInOut")
  986. )
  987. (node
  988. (x 6512)
  989. (y 400)
  990. )
  991. )
  992. )
  993. (path
  994. (name "gen17122862161988212914352")
  995. (path
  996. (mode "pingpong")
  997. (adapt_speed #f)
  998. (node
  999. (x 8704)
  1000. (y 352)
  1001. (easing "EaseQuadInOut")
  1002. )
  1003. (node
  1004. (x 8704)
  1005. (y 448)
  1006. )
  1007. )
  1008. )
  1009. (path
  1010. (name "gen17122862451988212908304")
  1011. (path
  1012. (mode "pingpong")
  1013. (adapt_speed #f)
  1014. (node
  1015. (x 8576)
  1016. (y 352)
  1017. (easing "EaseQuadInOut")
  1018. )
  1019. (node
  1020. (x 8576)
  1021. (y 448)
  1022. )
  1023. )
  1024. )
  1025. (path
  1026. (name "gen17122862301988212913232")
  1027. (path
  1028. (mode "pingpong")
  1029. (adapt_speed #f)
  1030. (node
  1031. (x 8640)
  1032. (y 448)
  1033. (easing "EaseQuadInOut")
  1034. )
  1035. (node
  1036. (x 8640)
  1037. (y 352)
  1038. )
  1039. )
  1040. )
  1041. (path
  1042. (name "gen17122863001988212910992")
  1043. (path
  1044. (mode "pingpong")
  1045. (adapt_speed #f)
  1046. (node
  1047. (x 9504)
  1048. (y 576)
  1049. (easing "EaseQuadInOut")
  1050. )
  1051. (node
  1052. (x 9629)
  1053. (y 577)
  1054. )
  1055. )
  1056. )
  1057. (path
  1058. (name "gen17122864882492911753984")
  1059. (path
  1060. (mode "pingpong")
  1061. (adapt_speed #f)
  1062. (node
  1063. (x 9536)
  1064. (y 544)
  1065. (easing "EaseQuadInOut")
  1066. )
  1067. (node
  1068. (x 9664)
  1069. (y 544)
  1070. )
  1071. )
  1072. )
  1073. (path
  1074. (name "gen17122865152491593932992")
  1075. (path
  1076. (mode "pingpong")
  1077. (adapt_speed #f)
  1078. (node
  1079. (x 9504)
  1080. (y 512)
  1081. (easing "EaseQuadInOut")
  1082. )
  1083. (node
  1084. (x 9632)
  1085. (y 512)
  1086. )
  1087. )
  1088. )
  1089. (path
  1090. (name "gen17122865412492911753984")
  1091. (path
  1092. (mode "pingpong")
  1093. (adapt_speed #f)
  1094. (node
  1095. (x 9280)
  1096. (y 512)
  1097. (easing "EaseQuadInOut")
  1098. )
  1099. (node
  1100. (x 9408)
  1101. (y 512)
  1102. )
  1103. )
  1104. )
  1105. (path
  1106. (name "gen17122865522491593933888")
  1107. (path
  1108. (mode "pingpong")
  1109. (adapt_speed #f)
  1110. (node
  1111. (x 9312)
  1112. (y 544)
  1113. (easing "EaseQuadInOut")
  1114. )
  1115. (node
  1116. (x 9440)
  1117. (y 544)
  1118. )
  1119. )
  1120. )
  1121. (path
  1122. (name "gen17122865532492996912928")
  1123. (path
  1124. (mode "pingpong")
  1125. (adapt_speed #f)
  1126. (node
  1127. (x 9280)
  1128. (y 576)
  1129. (easing "EaseQuadInOut")
  1130. )
  1131. (node
  1132. (x 9408)
  1133. (y 576)
  1134. )
  1135. )
  1136. )
  1137. (path
  1138. (name "gen17122803882130738397776")
  1139. (path
  1140. (mode "oneshot")
  1141. (adapt_speed #f)
  1142. (node
  1143. (x 3456)
  1144. (y 512)
  1145. )
  1146. )
  1147. )
  1148. (path
  1149. (name "gen17122803902130738398448")
  1150. (path
  1151. (mode "oneshot")
  1152. (adapt_speed #f)
  1153. (node
  1154. (x 3168)
  1155. (y 512)
  1156. )
  1157. )
  1158. )
  1159. (path
  1160. (name "gen17122804012132119805312")
  1161. (path
  1162. (mode "pingpong")
  1163. (adapt_speed #f)
  1164. (node
  1165. (x 3312)
  1166. (y 416)
  1167. (easing "EaseQuadInOut")
  1168. )
  1169. (node
  1170. (x 3312)
  1171. (y 480)
  1172. )
  1173. )
  1174. )
  1175. (path
  1176. (name "gen17122805852130738396432")
  1177. (path
  1178. (mode "pingpong")
  1179. (adapt_speed #f)
  1180. (node
  1181. (x 7424)
  1182. (y 448)
  1183. (easing "EaseQuadInOut")
  1184. )
  1185. (node
  1186. (x 7424)
  1187. (y 448)
  1188. )
  1189. )
  1190. )
  1191. (path
  1192. (name "gen17122840561988237407104")
  1193. (path
  1194. (mode "pingpong")
  1195. (adapt_speed #f)
  1196. (node
  1197. (x 8096)
  1198. (y 448)
  1199. (easing "EaseQuadInOut")
  1200. )
  1201. (node
  1202. (x 8096)
  1203. (y 576)
  1204. )
  1205. )
  1206. )
  1207. (path
  1208. (name "gen17122841431988237410912")
  1209. (path
  1210. (mode "pingpong")
  1211. (adapt_speed #f)
  1212. (node
  1213. (x 8416)
  1214. (y 480)
  1215. (time 3)
  1216. (easing "EaseQuadInOut")
  1217. )
  1218. (node
  1219. (x 8768)
  1220. (y 480)
  1221. )
  1222. )
  1223. )
  1224. (path
  1225. (name "gen17122844201988237405312")
  1226. (path
  1227. (mode "oneshot")
  1228. (adapt_speed #f)
  1229. (node
  1230. (x 10304)
  1231. (y 544)
  1232. )
  1233. )
  1234. )
  1235. (path
  1236. (name "gen17122844241988237406880")
  1237. (path
  1238. (mode "oneshot")
  1239. (adapt_speed #f)
  1240. (node
  1241. (x 10080)
  1242. (y 544)
  1243. )
  1244. )
  1245. )
  1246. (path
  1247. (name "gen17122847921988237407104")
  1248. (path
  1249. (mode "pingpong")
  1250. (adapt_speed #f)
  1251. (node
  1252. (x 9104)
  1253. (y 608)
  1254. (time 3)
  1255. (easing "EaseQuadInOut")
  1256. )
  1257. (node
  1258. (x 9696)
  1259. (y 608)
  1260. )
  1261. )
  1262. )
  1263. (path
  1264. (name "gen17122870362491681542080")
  1265. (path
  1266. (mode "oneshot")
  1267. (adapt_speed #f)
  1268. (node
  1269. (x 10624)
  1270. (y 512)
  1271. )
  1272. )
  1273. )
  1274. (path
  1275. (name "gen17122870382491681542304")
  1276. (path
  1277. (mode "oneshot")
  1278. (adapt_speed #f)
  1279. (node
  1280. (x 11104)
  1281. (y 512)
  1282. )
  1283. )
  1284. )
  1285. (path
  1286. (name "gen17322578051743992207360")
  1287. (path
  1288. (mode "oneshot")
  1289. (adapt_speed #f)
  1290. (node
  1291. (x 12320)
  1292. (y 512)
  1293. )
  1294. )
  1295. )
  1296. (path
  1297. (name "gen17322578071743992222464")
  1298. (path
  1299. (mode "oneshot")
  1300. (adapt_speed #f)
  1301. (node
  1302. (x 11776)
  1303. (y 512)
  1304. )
  1305. )
  1306. )
  1307. (platform
  1308. (z-pos 50)
  1309. (handle
  1310. (scale_x 0)
  1311. (scale_y 0)
  1312. (offset_x 0)
  1313. (offset_y 0)
  1314. )
  1315. (running #f)
  1316. (path-ref "gen17122803882130738397776")
  1317. )
  1318. (platform
  1319. (z-pos 50)
  1320. (handle
  1321. (scale_x 0)
  1322. (scale_y 0)
  1323. (offset_x 0)
  1324. (offset_y 0)
  1325. )
  1326. (running #f)
  1327. (path-ref "gen17122803902130738398448")
  1328. )
  1329. (platform
  1330. (z-pos 50)
  1331. (handle
  1332. (scale_x 0)
  1333. (scale_y 0)
  1334. (offset_x 0)
  1335. (offset_y 0)
  1336. )
  1337. (path-ref "gen17122804012132119805312")
  1338. )
  1339. (platform
  1340. (z-pos 50)
  1341. (handle
  1342. (scale_x 0)
  1343. (scale_y 0)
  1344. (offset_x 0)
  1345. (offset_y 0)
  1346. )
  1347. (running #f)
  1348. (path-ref "gen17122805852130738396432")
  1349. )
  1350. (platform
  1351. (z-pos 50)
  1352. (handle
  1353. (scale_x 0)
  1354. (scale_y 0)
  1355. (offset_x 0)
  1356. (offset_y 0)
  1357. )
  1358. (path-ref "gen17122840561988237407104")
  1359. )
  1360. (platform
  1361. (z-pos 50)
  1362. (handle
  1363. (scale_x 0)
  1364. (scale_y 0)
  1365. (offset_x 0)
  1366. (offset_y 0)
  1367. )
  1368. (path-ref "gen17122841431988237410912")
  1369. )
  1370. (platform
  1371. (z-pos 50)
  1372. (handle
  1373. (scale_x 0)
  1374. (scale_y 0)
  1375. (offset_x 0)
  1376. (offset_y 0)
  1377. )
  1378. (running #f)
  1379. (path-ref "gen17122844201988237405312")
  1380. )
  1381. (platform
  1382. (z-pos 50)
  1383. (handle
  1384. (scale_x 0)
  1385. (scale_y 0)
  1386. (offset_x 0)
  1387. (offset_y 0)
  1388. )
  1389. (running #f)
  1390. (path-ref "gen17122844241988237406880")
  1391. )
  1392. (platform
  1393. (z-pos 50)
  1394. (handle
  1395. (scale_x 0)
  1396. (scale_y 0)
  1397. (offset_x 0)
  1398. (offset_y 0)
  1399. )
  1400. (path-ref "gen17122847921988237407104")
  1401. )
  1402. (platform
  1403. (z-pos 50)
  1404. (handle
  1405. (scale_x 0)
  1406. (scale_y 0)
  1407. (offset_x 0)
  1408. (offset_y 0)
  1409. )
  1410. (running #f)
  1411. (path-ref "gen17122870362491681542080")
  1412. )
  1413. (platform
  1414. (z-pos 50)
  1415. (handle
  1416. (scale_x 0)
  1417. (scale_y 0)
  1418. (offset_x 0)
  1419. (offset_y 0)
  1420. )
  1421. (running #f)
  1422. (path-ref "gen17122870382491681542304")
  1423. )
  1424. (platform
  1425. (z-pos 50)
  1426. (handle
  1427. (scale_x 0)
  1428. (scale_y 0)
  1429. (offset_x 0)
  1430. (offset_y 0)
  1431. )
  1432. (running #f)
  1433. (path-ref "gen17322578051743992207360")
  1434. )
  1435. (platform
  1436. (z-pos 50)
  1437. (handle
  1438. (scale_x 0)
  1439. (scale_y 0)
  1440. (offset_x 0)
  1441. (offset_y 0)
  1442. )
  1443. (running #f)
  1444. (path-ref "gen17322578071743992222464")
  1445. )
  1446. (scripttrigger
  1447. (width 32)
  1448. (height 32)
  1449. (script "
  1450. local vel_x = Tux.get_velocity_x();
  1451. local vel_y = Tux.get_velocity_y();
  1452. Tux.set_pos(Tux.get_x(), 74);
  1453. Tux.set_velocity(vel_x, vel_y);
  1454. ")
  1455. (button #f)
  1456. (x 1968)
  1457. (y 448)
  1458. )
  1459. (scripttrigger
  1460. (width 32)
  1461. (height 32)
  1462. (script "
  1463. local vel_x = Tux.get_velocity_x();
  1464. local vel_y = Tux.get_velocity_y();
  1465. Tux.set_pos(Tux.get_x(), 374);
  1466. Tux.set_velocity(vel_x, vel_y);
  1467. ")
  1468. (button #f)
  1469. (x 1968)
  1470. (y 32)
  1471. )
  1472. (scripttrigger
  1473. (width 32)
  1474. (height 32)
  1475. (script "
  1476. local vel_x = Tux.get_velocity_x();
  1477. local vel_y = Tux.get_velocity_y();
  1478. Tux.set_pos(Tux.get_x()+288, Tux.get_y()-20);
  1479. Tux.set_velocity(vel_x, -vel_y);")
  1480. (button #f)
  1481. (x 2928)
  1482. (y 480)
  1483. )
  1484. (scripttrigger
  1485. (width 32)
  1486. (height 32)
  1487. (script "
  1488. local vel_x = Tux.get_velocity_x();
  1489. local vel_y = Tux.get_velocity_y();
  1490. Tux.set_pos(Tux.get_x()-288, Tux.get_y()-20);
  1491. Tux.set_velocity(vel_x, -vel_y);")
  1492. (button #f)
  1493. (x 3216)
  1494. (y 480)
  1495. )
  1496. (scripttrigger
  1497. (width 32)
  1498. (height 32)
  1499. (script "
  1500. local vel_x = Tux.get_velocity_x();
  1501. local vel_y = Tux.get_velocity_y();
  1502. Tux.set_pos(Tux.get_x()+384, Tux.get_y()-16);
  1503. Tux.set_velocity(vel_x, -vel_y);")
  1504. (button #f)
  1505. (x 3504)
  1506. (y 480)
  1507. )
  1508. (scripttrigger
  1509. (width 32)
  1510. (height 32)
  1511. (script "
  1512. local vel_x = Tux.get_velocity_x();
  1513. local vel_y = Tux.get_velocity_y();
  1514. Tux.set_pos(Tux.get_x()-384, Tux.get_y()-16);
  1515. Tux.set_velocity(vel_x, -vel_y);")
  1516. (button #f)
  1517. (x 3888)
  1518. (y 480)
  1519. )
  1520. (scripttrigger
  1521. (width 32)
  1522. (height 32)
  1523. (script "
  1524. local vel_y = Tux.get_velocity_y();
  1525. Tux.set_pos(Tux.get_x()+224, Tux.get_y()-32);
  1526. Tux.set_velocity(vel_y, -250);")
  1527. (button #f)
  1528. (x 4656)
  1529. (y 512)
  1530. )
  1531. (scripttrigger
  1532. (width 32)
  1533. (height 32)
  1534. (script "
  1535. local vel_x = Tux.get_velocity_x();
  1536. Tux.set_pos(Tux.get_x()-208, 440);
  1537. Tux.set_velocity(0, vel_x-100);")
  1538. (button #f)
  1539. (x 4832)
  1540. (y 432)
  1541. )
  1542. (scripttrigger
  1543. (width 32)
  1544. (height 32)
  1545. (script "
  1546. local vel_x = Tux.get_velocity_x();
  1547. local vel_y = Tux.get_velocity_y();
  1548. Tux.set_pos(Tux.get_x()-128, 192);
  1549. Tux.set_velocity(vel_x, vel_y);")
  1550. (button #f)
  1551. (x 5984)
  1552. (y 464)
  1553. )
  1554. (scripttrigger
  1555. (width 32)
  1556. (height 32)
  1557. (script "
  1558. local vel_x = Tux.get_velocity_x();
  1559. local vel_y = Tux.get_velocity_y();
  1560. Tux.set_pos(Tux.get_x()+128,448);
  1561. Tux.set_velocity(vel_x, vel_y);")
  1562. (button #f)
  1563. (x 5760)
  1564. (y 208)
  1565. )
  1566. (scripttrigger
  1567. (width 32)
  1568. (height 32)
  1569. (script "
  1570. local vel_x = Tux.get_velocity_x();
  1571. Tux.set_pos(Tux.get_x()+224, 214);
  1572. Tux.set_velocity(0, -vel_x-200);")
  1573. (button #f)
  1574. (x 6080)
  1575. (y 112)
  1576. )
  1577. (scripttrigger
  1578. (width 32)
  1579. (height 32)
  1580. (script "
  1581. local vel_y = Tux.get_velocity_y();
  1582. Tux.set_pos(Tux.get_x()-224,96);
  1583. Tux.set_velocity(-vel_y, -250);")
  1584. (button #f)
  1585. (x 6224)
  1586. (y 288)
  1587. )
  1588. (scripttrigger
  1589. (width 32)
  1590. (height 32)
  1591. (script "
  1592. local vel_x = Tux.get_velocity_x();
  1593. local vel_y = Tux.get_velocity_y();
  1594. Tux.set_pos(Tux.get_x()-640, 480);
  1595. Tux.set_velocity(vel_x, vel_y);")
  1596. (button #f)
  1597. (x 6912)
  1598. (y 240)
  1599. )
  1600. (scripttrigger
  1601. (width 32)
  1602. (height 32)
  1603. (script "
  1604. local vel_x = Tux.get_velocity_x();
  1605. local vel_y = Tux.get_velocity_y();
  1606. Tux.set_pos(Tux.get_x()+640, 224);
  1607. Tux.set_velocity(vel_x, vel_y);")
  1608. (button #f)
  1609. (x 6176)
  1610. (y 496)
  1611. )
  1612. (scripttrigger
  1613. (width 32)
  1614. (height 32)
  1615. (script "
  1616. local vel_x = Tux.get_velocity_x();
  1617. local vel_y = Tux.get_velocity_y();
  1618. Tux.set_pos(Tux.get_x()+224, Tux.get_y()-10);
  1619. Tux.set_velocity(vel_x, -vel_y);")
  1620. (button #f)
  1621. (x 10128)
  1622. (y 512)
  1623. )
  1624. (scripttrigger
  1625. (width 32)
  1626. (height 32)
  1627. (script "
  1628. local vel_x = Tux.get_velocity_x();
  1629. local vel_y = Tux.get_velocity_y();
  1630. Tux.set_pos(Tux.get_x()-224, Tux.get_y()-10);
  1631. Tux.set_velocity(vel_x, -vel_y);")
  1632. (button #f)
  1633. (x 10352)
  1634. (y 512)
  1635. )
  1636. (scripttrigger
  1637. (width 32)
  1638. (height 32)
  1639. (script "
  1640. local vel_x = Tux.get_velocity_x();
  1641. local vel_y = Tux.get_velocity_y();
  1642. Tux.set_pos(Tux.get_x()+320, Tux.get_y()+32);
  1643. Tux.set_velocity(vel_x, -vel_y);")
  1644. (button #f)
  1645. (x 8144)
  1646. (y 224)
  1647. )
  1648. (scripttrigger
  1649. (width 32)
  1650. (height 32)
  1651. (script "
  1652. local vel_x = Tux.get_velocity_x();
  1653. local vel_y = Tux.get_velocity_y();
  1654. Tux.set_pos(Tux.get_x()-320, Tux.get_y()+32);
  1655. Tux.set_velocity(vel_x, -vel_y);")
  1656. (button #f)
  1657. (x 8464)
  1658. (y 224)
  1659. )
  1660. (scripttrigger
  1661. (width 32)
  1662. (height 32)
  1663. (script "
  1664. local vel_x = Tux.get_velocity_x();
  1665. local vel_y = Tux.get_velocity_y();
  1666. Tux.set_pos(Tux.get_x()-256, 266);
  1667. Tux.set_velocity(vel_x, vel_y);")
  1668. (button #f)
  1669. (x 9072)
  1670. (y 192)
  1671. )
  1672. (scripttrigger
  1673. (width 32)
  1674. (height 32)
  1675. (script "
  1676. local vel_x = Tux.get_velocity_x();
  1677. local vel_y = Tux.get_velocity_y();
  1678. Tux.set_pos(Tux.get_x()+256, 120);
  1679. Tux.set_velocity(vel_x, vel_y);")
  1680. (button #f)
  1681. (x 8816)
  1682. (y 224)
  1683. )
  1684. (scripttrigger
  1685. (width 32)
  1686. (height 32)
  1687. (script "
  1688. local vel_x = Tux.get_velocity_x();
  1689. local vel_y = Tux.get_velocity_y();
  1690. Tux.set_pos(Tux.get_x()-32, 320);
  1691. Tux.set_velocity(-vel_x, vel_y);")
  1692. (button #f)
  1693. (x 9760)
  1694. (y 176)
  1695. )
  1696. (scripttrigger
  1697. (width 32)
  1698. (height 32)
  1699. (script "
  1700. local vel_x = Tux.get_velocity_x();
  1701. local vel_y = Tux.get_velocity_y();
  1702. Tux.set_pos(Tux.get_x()-32, 160);
  1703. Tux.set_velocity(-vel_x, vel_y);")
  1704. (button #f)
  1705. (x 9760)
  1706. (y 336)
  1707. )
  1708. (scripttrigger
  1709. (width 32)
  1710. (height 32)
  1711. (script "
  1712. local vel_x = Tux.get_velocity_x();
  1713. local vel_y = Tux.get_velocity_y();
  1714. Tux.set_pos(Tux.get_x()+32, 320);
  1715. Tux.set_velocity(-vel_x, vel_y);")
  1716. (button #f)
  1717. (x 9024)
  1718. (y 496)
  1719. )
  1720. (scripttrigger
  1721. (width 32)
  1722. (height 32)
  1723. (script "
  1724. local vel_x = Tux.get_velocity_x();
  1725. local vel_y = Tux.get_velocity_y();
  1726. Tux.set_pos(Tux.get_x()+32, 480);
  1727. Tux.set_velocity(-vel_x, vel_y);")
  1728. (button #f)
  1729. (x 9024)
  1730. (y 336)
  1731. )
  1732. (sequencetrigger
  1733. (sequence "endsequence")
  1734. (width 32)
  1735. (height 464)
  1736. (x 11712)
  1737. (y -16)
  1738. )
  1739. (sequencetrigger
  1740. (sequence "stoptux")
  1741. (width 32)
  1742. (height 288)
  1743. (x 12320)
  1744. (y 160)
  1745. )
  1746. (spawnpoint
  1747. (name "main")
  1748. (x 208)
  1749. (y 144)
  1750. )
  1751. (spiky
  1752. (z-pos 50)
  1753. (x 1408)
  1754. (y 384)
  1755. )
  1756. (spiky
  1757. (z-pos 50)
  1758. (x 1536)
  1759. (y 384)
  1760. )
  1761. (spiky
  1762. (z-pos 50)
  1763. (x 6560)
  1764. (y 288)
  1765. )
  1766. (spiky
  1767. (z-pos 50)
  1768. (x 9440)
  1769. (y 384)
  1770. )
  1771. (thunderstorm
  1772. (interval 14)
  1773. )
  1774. (tilemap
  1775. (solid #f)
  1776. (z-pos 100)
  1777. (width 390)
  1778. (height 25)
  1779. (tiles -451 0 59 60 -388 0 1742 1743 -516 0 2143 2144 -388 0 2146 2147 -503 0 53 55 -264 0 2144 2145 -122 0 54 56 -61 0 130 -202 0 2147 2148 -33 0 53 55 -37 0 2087 2088 -8 0 2087 2088 -101 0 129 -216 0 2085 2086 -19 0 54 56 -37 0 2089 2090 -8 0 2089 2090 -101 0 129 -216 0 2087 2088 -171 0 129 -304 0 2144 2145 -20 0 53 55 -61 0 129 -25 0 3171 3172 -277 0 2147 2148 -20 0 54 56 -61 0 129 -25 0 3177 3178 -362 0 129 -83 0 57 58 -88 0 55 1744 -214 0 4967 -61 0 3171 3172 -20 0 59 60 -28 0 2085 2086 -7 0 2085 2086 -49 0 56 1745 -33 0 2143 2144 -241 0 3177 3178 -50 0 2087 2088 -7 0 2087 2088 -43 0 57 58 -39 0 2146 2147 -5 0 55 1744 -87 0 2144 2145 -251 0 59 60 -46 0 56 1745 -87 0 2147 2148 -3226 0)
  1780. )
  1781. (tilemap
  1782. (solid #t)
  1783. (z-pos -1)
  1784. (width 390)
  1785. (height 25)
  1786. (tiles -137 0 3060 -175 0 3060 -213 0 3060 -175 0 3060 -213 0 3060 -175 0 3060 -213 0 3060 -4 0 1604 1605 -169 0 3060 -213 0 3060 -4 0 1606 1607 -160 0 2818 -8 0 3060 -149 0 4336 -63 0 3060 -168 0 55 -6 0 3060 -149 0 3060 -63 0 3060 -41 0 2144 -74 0 2087 2088 -8 0 2087 2088 -40 0 56 -6 0 3060 -149 0 3060 -63 0 3060 -41 0 2147 -4 0 1600 1601 -118 0 2817 -8 0 3060 -149 0 3060 -38 0 1616 1617 -23 0 3060 -46 0 1602 1603 -123 0 78 -3 0 3060 -149 0 3060 -38 0 1618 1619 -23 0 3060 -13 0 136 137 -130 0 2818 -20 0 2818 -8 0 3060 -149 0 3060 -63 0 3060 -13 0 138 139 -97 0 -2 44 -29 0 2144 -24 0 55 -6 0 3060 -149 0 3060 -38 0 5400 -24 0 3060 -63 0 4336 -4 0 4336 -4 0 4336 -4 0 4336 -33 0 -2 44 -29 0 2147 -24 0 56 -6 0 3060 -149 0 3060 -17 0 1624 1625 -7 0 1620 1621 -10 0 5404 5400 -4 0 -2 5400 0 1620 1621 0 -2 5400 -11 0 3060 -13 0 -2 2818 -48 0 3060 -4 0 3060 -4 0 3060 -4 0 3060 -33 0 -2 44 -31 0 2817 -20 0 2817 -8 0 3060 -149 0 3060 -17 0 1626 1627 -7 0 1622 1623 -11 0 5404 5400 -3 0 -2 5404 0 1622 1623 0 -2 5404 -11 0 3061 -13 0 -2 2817 -48 0 3060 -4 0 3060 -4 0 3060 -4 0 3060 -96 0 3060 -149 0 3060 -40 0 5404 -36 0 -2 2818 -35 0 2144 -12 0 3060 -4 0 3060 -4 0 3060 -4 0 3060 -66 0 2818 -29 0 3060 -149 0 3060 -77 0 -2 2817 -35 0 2147 -12 0 3060 -4 0 3060 -4 0 3060 -4 0 3060 -59 0 44 -4 0 2144 -31 0 3060 -149 0 3060 -127 0 3060 -4 0 3060 -4 0 3060 -4 0 3060 -58 0 44 -5 0 2147 -31 0 3061 -149 0 3061 -127 0 3060 -4 0 3060 -4 0 3060 -4 0 3060 -66 0 2817 -257 0 -26 5400 -24 0 3060 -4 0 3060 -4 0 3060 -4 0 3060 -324 0 -26 5404 -24 0 3060 -4 0 3060 -4 0 3061 -4 0 3061 -374 0 3061 -4 0 3061 -1743 0)
  1787. )
  1788. (tilemap
  1789. (solid #f)
  1790. (tint 0.4 0.4 0.5)
  1791. (z-pos -150)
  1792. (width 390)
  1793. (height 25)
  1794. (tiles -57 0 27 -12 28 29 0 27 28 29 -5 0 27 -16 28 29 -18 0 27 -2 28 29 -2 0 27 -20 28 29 -4 0 27 -14 28 29 -6 0 27 -13 28 29 -3 0 27 -25 28 29 -2 0 47 -50 0 27 -3 28 29 -7 0 27 -16 28 29 -5 0 27 -3 28 29 -16 0 27 -2 28 29 -119 0 27 -12 28 29 0 27 28 29 0 27 -20 28 29 -18 0 27 29 -4 0 27 -20 28 29 -4 0 27 -15 28 29 -4 0 27 -17 28 29 -4 0 27 -21 28 29 -42 0 27 29 -2 0 47 -5 0 27 -6 28 29 -5 0 27 -15 28 29 -6 0 27 -3 28 29 -2 0 27 -3 28 29 -5 0 47 0 27 -3 28 29 -120 0 27 -12 28 29 -3 0 47 0 27 -20 28 29 -18 0 27 29 -4 0 27 -21 28 29 -2 0 27 -7 28 29 -5 0 27 -27 28 29 -2 0 27 -22 28 29 -41 0 27 29 -2 0 47 -5 0 27 -6 28 29 -5 0 27 -4 28 29 -4 0 27 -5 28 29 -5 0 27 -13 28 29 -2 0 27 29 0 27 -2 28 29 -121 0 27 -9 28 29 -6 0 47 0 27 -6 28 29 0 27 -11 28 29 -18 0 27 29 -5 0 27 -29 28 29 -8 0 27 -3 28 29 0 27 -8 28 29 -2 0 27 -9 28 29 0 27 -3 28 29 -2 0 27 -10 28 29 0 27 -4 28 29 -38 0 27 28 29 0 27 29 -5 0 27 -6 28 29 -5 0 27 -6 28 29 -4 0 27 -3 28 29 -4 0 27 -16 28 29 -2 0 27 -3 28 29 -121 0 27 -9 28 29 -6 0 47 -6 0 27 29 -2 0 27 -11 28 29 -18 0 27 29 -7 0 27 -27 28 29 -9 0 27 -26 28 29 0 27 -2 28 29 -4 0 27 -9 28 29 -2 0 27 -3 28 29 -37 0 27 -7 28 29 -3 0 27 -6 28 29 -5 0 27 -5 28 29 -7 0 27 28 29 -3 0 27 -17 28 29 -2 0 27 -2 28 29 -124 0 27 -7 28 29 -6 0 47 -6 0 47 -3 0 27 -4 28 29 -2 0 27 -3 28 29 -18 0 27 28 29 -6 0 47 -3 0 27 -14 28 29 -2 0 27 -4 28 29 -11 0 47 -2 0 27 29 -5 0 27 -3 28 29 -3 0 27 -12 28 29 -4 0 27 -8 28 29 -4 0 27 -2 28 29 -35 0 27 -9 28 29 -16 0 27 -8 28 29 -2 0 27 -2 28 29 -4 0 27 -10 28 29 -5 0 27 28 29 0 27 -2 28 29 -126 0 27 -6 28 29 -12 0 47 -4 0 27 -2 28 29 -4 0 27 -2 28 29 -18 0 27 -2 28 29 -9 0 27 -13 28 29 -4 0 27 -3 28 29 -23 0 47 -7 0 27 -10 28 29 -4 0 27 -9 28 29 -3 0 27 -2 28 29 -34 0 27 -9 28 29 -3 0 27 28 29 -5 0 27 -2 28 29 -2 0 27 -14 28 29 -4 0 27 -10 28 29 -5 0 27 28 29 0 27 -2 28 29 -122 0 27 29 -2 0 27 -7 28 29 -6 0 27 -4 28 29 -4 0 27 -2 28 29 -4 0 27 -2 28 29 -18 0 27 28 29 -9 0 27 -14 28 29 -4 0 27 -2 28 29 -34 0 27 29 -4 0 27 -3 28 29 -2 0 27 -10 28 29 -3 0 27 -2 28 29 -31 0 27 -44 28 29 -3 0 47 0 27 -10 28 29 -6 0 27 29 0 27 -2 28 29 -124 0 27 -10 28 29 -5 0 27 -4 28 29 -4 0 27 -2 28 29 -4 0 27 -2 28 29 -18 0 27 28 29 -9 0 27 -14 28 29 -4 0 27 -2 28 29 -35 0 47 -4 0 27 -24 28 29 -26 0 27 -2 28 29 0 27 -18 28 29 0 27 -6 28 29 0 27 -30 28 29 -7 0 27 29 0 27 28 29 -124 0 27 -12 28 29 0 27 -7 28 29 -4 0 27 -2 28 29 -4 0 27 -2 28 29 -18 0 27 -2 28 29 -6 0 27 -17 28 29 -2 0 27 28 29 -42 0 27 -6 28 29 -4 0 27 -12 28 29 -26 0 27 -46 28 29 -4 0 27 -13 28 29 -7 0 27 29 0 27 28 29 -125 0 27 -22 28 29 -3 0 27 -2 28 29 -4 0 27 -2 28 29 -18 0 27 -3 28 29 -4 0 27 -5 28 29 0 27 -15 28 29 -42 0 27 -6 28 29 -4 0 27 -12 28 29 -29 0 27 -41 28 29 -9 0 27 -9 28 29 -8 0 27 29 0 27 28 29 -125 0 27 -22 28 29 -3 0 27 -3 28 29 -2 0 27 -3 28 29 -18 0 27 -4 28 29 -3 0 27 -5 28 29 0 27 -10 28 29 -2 0 27 28 29 -46 0 27 -19 28 29 -31 0 27 -36 28 29 0 27 -4 28 29 -7 0 27 -7 28 29 -10 0 47 0 27 29 -125 0 27 -24 28 29 0 27 -11 28 29 -18 0 27 -4 28 29 -2 0 27 -5 28 29 -3 0 27 -8 28 29 -4 0 27 29 -43 0 27 -13 28 29 -3 0 27 -2 28 29 -34 0 27 28 29 0 27 29 -3 0 27 -3 28 29 -4 0 27 -6 28 29 -2 0 27 -29 28 29 -139 0 27 -39 28 29 -18 0 27 -5 28 29 0 27 -5 28 29 -3 0 27 -8 28 29 -2 0 47 0 27 29 -42 0 27 -5 28 29 -4 0 27 -10 28 29 -31 0 27 -6 28 29 -4 0 27 -2 28 29 -7 0 27 -4 28 29 -3 0 27 -28 28 29 -140 0 27 -6 28 29 0 27 29 -2 0 27 -13 28 29 -2 0 27 -5 28 29 -21 0 27 -5 28 29 0 27 -5 28 29 -4 0 27 -7 28 29 -4 0 27 29 -42 0 27 -3 28 29 -6 0 27 -9 28 29 -31 0 27 -2 28 29 0 27 28 29 -4 0 27 -3 28 29 -8 0 27 -2 28 29 -6 0 27 -25 28 29 -134 0 27 -2 28 29 -4 0 27 -4 28 29 -2 0 47 -4 0 27 -2 28 29 0 27 -7 28 29 -2 0 27 -5 28 29 -21 0 27 -13 28 29 -4 0 27 -7 28 29 -4 0 27 29 -43 0 27 -11 28 29 -45 0 27 -9 28 29 -8 0 27 28 29 -7 0 27 -15 28 29 -5 0 27 -3 28 29 -125 0 27 -4 28 29 -2 0 27 -4 28 29 -6 0 27 29 -3 0 47 -3 0 27 -2 28 29 -3 0 27 -6 28 29 -2 0 27 -5 28 29 -35 0 27 -3 28 29 -5 0 27 -3 28 29 -2 0 27 28 29 -21 0 27 -6 28 29 -13 0 27 -10 28 29 -47 0 27 -9 28 29 -8 0 27 28 29 -7 0 27 -9 28 29 -13 0 27 29 -125 0 27 -13 28 29 -11 0 27 -7 28 29 0 27 -7 28 29 -44 0 27 -3 28 29 -5 0 27 -11 28 29 -17 0 27 -7 28 29 -13 0 27 -8 28 29 -49 0 27 -4 28 29 0 27 -2 28 29 -8 0 27 29 -9 0 27 -2 28 29 0 27 29 -143 0 27 -6 28 29 0 27 -5 28 29 -10 0 27 -17 28 29 -43 0 27 -6 28 29 -3 0 27 -37 28 29 -14 0 27 -5 28 29 -58 0 27 -2 28 29 -8 0 27 29 -159 0 27 -4 28 29 -4 0 27 -4 28 29 -10 0 27 -17 28 29 -43 0 27 -6 28 29 -14 0 27 -8 28 29 -14 0 27 29 -81 0 27 28 29 -259 0 27 29 0 27 -2 28 29 -15 0 27 -4 28 29 -101 0 27 29 -388 0 27 29 -1299 0)
  1795. )
  1796. (tilemap
  1797. (solid #f)
  1798. (z-pos -100)
  1799. (width 390)
  1800. (height 25)
  1801. (tiles -49 0 4674 4678 4682 -9 0 59 60 -3 0 4665 -11 0 79 0 79 -8 0 4665 -3 0 4665 -9 0 4674 4678 -2 4682 0 4683 4679 4675 -8 0 4665 -2 0 4665 -15 0 4665 -5 0 4665 0 4665 -7 0 4665 -3 0 4665 -2 0 4665 -35 0 4665 -13 0 4665 0 4665 -18 0 4683 4679 4675 -34 0 79 0 79 -13 0 4665 -2 0 4665 -10 0 4665 0 4665 -13 0 4665 0 4665 -7 0 4665 0 4665 -110 0 4674 4678 4682 -15 0 4665 -11 0 79 0 79 -7 0 1355 4665 -3 0 4665 -8 0 4674 4678 4682 -4 0 4683 4679 4675 -7 0 4665 -2 0 4665 -15 0 4665 -5 0 4665 0 4665 -7 0 4665 -3 0 4665 -2 0 4665 -35 0 4665 -4 0 1355 -4 0 1355 -3 0 4665 0 4665 -13 0 4665 -5 0 4683 4679 4675 -33 0 79 0 79 -13 0 4665 -2 0 4665 0 1355 -6 0 1355 0 4665 0 4665 -13 0 4665 0 4665 -7 0 4665 0 4665 -109 0 4674 4678 4682 -16 0 4669 -3 0 4665 -7 0 79 0 79 -4 0 4665 -2 0 1356 4665 -3 0 4665 0 4665 -5 0 4674 4678 4682 -6 0 4683 4679 4675 -6 0 4665 -2 0 4669 -15 0 4665 -5 0 4669 0 4665 -7 0 4665 -3 0 4665 -2 0 4669 -35 0 4665 -4 0 1356 -4 0 1356 -3 0 4665 0 4665 -13 0 4665 -6 0 4683 4679 4675 -32 0 79 0 79 -13 0 4669 -2 0 4665 0 1356 -6 0 1356 0 4669 0 4665 -13 0 4669 0 4665 -7 0 4669 0 4665 -108 0 4674 4678 4682 -21 0 4665 -7 0 79 0 79 -4 0 4665 -2 0 1356 4665 -3 0 4665 0 4665 -4 0 4674 4678 4682 -8 0 4683 4679 4675 -5 0 4665 -6 0 4665 -11 0 4669 -7 0 4665 -7 0 4665 -3 0 4665 -32 0 55 -5 0 4665 -4 0 1356 -4 0 1356 -3 0 4669 0 4665 -13 0 4665 -7 0 4683 4679 4675 -31 0 79 0 79 -16 0 4669 0 1356 -6 0 1356 -3 0 4669 -15 0 4665 -9 0 4669 -107 0 4674 4678 4682 -5 0 4674 4665 -15 0 4665 -7 0 79 0 79 -4 0 4665 -2 0 1356 4669 -3 0 4665 0 4665 -3 0 4674 4678 4682 -10 0 4683 4679 4675 -4 0 4669 -6 0 4665 -19 0 4665 -7 0 4669 -3 0 4665 -32 0 56 -5 0 4669 -4 0 1356 -4 0 1356 -5 0 4669 -10 0 4665 -2 0 4665 -8 0 4683 4679 4675 -30 0 79 0 79 -15 0 1809 1812 0 1356 -6 0 1356 -19 0 4669 -116 0 4674 4678 4682 -7 0 4665 -15 0 4665 -14 0 4665 -2 0 1356 -4 0 4665 0 4669 -3 0 4681 4682 -12 0 4683 4684 -11 0 4665 -19 0 4669 -11 0 4669 -43 0 1356 -4 0 1356 -16 0 4665 -2 0 4665 -9 0 4683 4679 4675 -47 0 1810 1813 0 1356 -6 0 1356 -135 0 4674 4678 4682 -8 0 4665 -15 0 4669 -14 0 4665 -2 0 1356 -4 0 4669 -5 0 4682 -26 0 4669 -2 0 4665 -72 0 1356 -4 0 1356 -16 0 4665 -2 0 4665 -10 0 4683 4679 4675 -46 0 1811 1814 0 1411 -6 0 1411 -67 0 130 -66 0 4674 4678 4682 -9 0 4669 -29 0 1355 4665 -2 0 1356 -40 0 4665 -69 0 1809 1812 0 1356 -4 0 1356 0 1809 1812 -6 0 55 -6 0 4665 -2 0 4665 -11 0 4683 4679 4675 -46 0 4665 -6 0 4665 -69 0 129 -65 0 4674 4678 4682 -40 0 1356 4669 -2 0 1356 -40 0 4665 -69 0 1810 1813 0 1356 -4 0 1356 0 1810 1813 -6 0 56 -3 0 4665 -2 0 4665 -2 0 4669 -12 0 4683 4684 -3 0 4665 0 4665 -13 0 4665 -7 0 4665 0 4665 -6 0 4665 -9 0 4665 0 1355 -4 0 4665 0 1355 -67 0 129 -64 0 4674 4678 4682 -14 0 1355 -26 0 1356 -3 0 1356 -40 0 4669 -35 0 4665 -11 0 4665 0 4665 -19 0 1811 1814 0 1411 -4 0 1411 0 1811 1814 -10 0 4665 -2 0 4665 -20 0 4665 0 4665 0 1355 -2 0 1355 -8 0 4665 -7 0 4669 0 4665 -6 0 4665 -9 0 4665 0 1356 -4 0 4669 0 1356 -67 0 129 -63 0 4674 4678 4682 -8 0 1809 1812 -2 0 1809 1812 0 1356 -23 0 1355 -2 0 1356 -3 0 1411 -43 0 1355 -32 0 4665 -11 0 4665 0 4665 -39 0 4665 0 4669 -2 0 4665 -20 0 4665 0 4669 0 1356 -2 0 1356 -8 0 4669 -9 0 4665 -6 0 4665 -9 0 4669 0 1356 -6 0 1356 -67 0 129 -34 0 4665 -27 0 4674 4678 4682 -9 0 1810 1813 -2 0 1810 1813 0 1356 -3 0 1624 1625 -16 0 4665 0 1356 -2 0 1356 -47 0 1356 -32 0 4665 -11 0 4669 0 4665 -23 0 4665 -10 0 4665 -4 0 4665 -4 0 4669 -20 0 4669 -3 0 1356 -2 0 1356 -18 0 4665 -6 0 4669 -11 0 1356 -6 0 1356 -37 0 1809 1812 -9 0 1809 1812 -17 0 129 -6 0 1809 1812 -23 0 4665 -2 0 4665 -27 0 4677 4682 -10 0 1811 1814 -2 0 1811 1814 0 1356 -3 0 1626 1627 -16 0 4665 0 1356 -2 0 1356 -44 0 1809 1812 0 1356 -32 0 4669 -13 0 4669 -23 0 4665 -10 0 4665 -4 0 4665 -29 0 1356 -2 0 1356 -18 0 4669 -18 0 1411 -6 0 1411 -37 0 1810 1813 -9 0 1810 1813 -17 0 129 -6 0 1810 1813 -23 0 4665 -2 0 4665 -20 0 4665 -6 0 4682 -18 0 1411 -21 0 4665 0 1356 -2 0 1411 -44 0 1810 1813 0 1356 -17 0 55 -23 0 1809 1812 -20 0 1355 -6 0 4669 -10 0 4669 -4 0 4665 -29 0 1411 -2 0 1411 -45 0 4665 -3 0 4665 -32 0 1811 1814 -9 0 1811 1814 -17 0 4967 -6 0 1811 1814 -18 0 4665 -4 0 4665 -2 0 4665 -20 0 4665 -45 0 1355 0 4669 0 1356 -2 0 1411 -44 0 1811 1814 0 1411 -17 0 56 -23 0 1810 1813 -20 0 1356 -22 0 4669 -78 0 4665 -3 0 4665 -89 0 4665 -4 0 4665 -2 0 4665 -20 0 4665 -3 0 4665 -7 0 79 0 79 -7 0 79 0 79 -5 0 59 60 -14 0 1356 -3 0 1356 -50 0 1411 -41 0 1811 1814 -16 0 55 -3 0 1356 -101 0 4669 -3 0 4665 -27 0 4665 -6 0 4661 -3 0 4665 0 4665 -23 0 4665 -8 0 4665 -5 0 4661 -9 0 4665 -4 0 4665 -2 0 4669 -20 0 4665 -3 0 4665 -7 0 79 0 79 -7 0 79 0 79 -21 0 1356 -3 0 1411 -9 0 59 60 -38 0 79 0 79 -53 0 7416 7417 -3 0 56 -3 0 1356 -46 0 4665 -58 0 4665 -27 0 4665 -6 0 4665 -3 0 4665 0 4665 -23 0 4665 -8 0 4665 -5 0 4665 -9 0 4669 -4 0 4669 -23 0 4665 -3 0 4665 -7 0 79 0 79 -7 0 79 0 79 -21 0 1356 -53 0 79 0 79 -11 0 59 60 -33 0 4665 -6 0 7407 7408 -7 0 1411 -46 0 4665 -2 0 4665 -13 0 4665 -41 0 4669 -27 0 4665 -6 0 4665 -3 0 4669 0 4665 -23 0 4669 -8 0 4669 -5 0 4665 -38 0 4665 -3 0 4669 0 4665 -5 0 79 0 79 -7 0 79 0 79 -21 0 1411 -18 0 4665 -34 0 79 0 79 -46 0 4665 -6 0 7409 7410 -54 0 4665 -2 0 4665 0 4665 -11 0 4665 -69 0 4669 -6 0 4665 -5 0 4665 -38 0 4665 -38 0 4665 -5 0 4665 -5 0 79 0 79 -7 0 79 0 79 -40 0 4665 -34 0 79 0 79 -46 0 4665 -6 0 7411 7412 -54 0 4665 -2 0 4669 0 4665 -11 0 4665 -76 0 4665 -5 0 4669 -38 0 4665 -38 0 4669 -5 0 4665 -58 0 4665 -34 0 79 0 79 -46 0 4665 -14 0 4665 -47 0 4669 -4 0 4665 -3 0 4665 -7 0 4665 -76 0 4665 -44 0 4669 -44 0 4665 -55 0 4665 -2 0 4665 -83 0 4669 -14 0 4665 -52 0 4665 -3 0 4665 -7 0 4669 -76 0 4669 -89 0 4669 -4 0 4665 -46 0 4665 -3 0 4665 -2 0 4669 -98 0 4665 -52 0 4665 -3 0 4665 -179 0 4665 -46 0 4665 -3 0 4665 -101 0 4669 -52 0 4669 -3 0 4669 -179 0 4669 -46 0 4669 -3 0 4669 -296 0)
  1802. )
  1803. (tilemap
  1804. (solid #t)
  1805. (z-pos 0)
  1806. (width 390)
  1807. (height 25)
  1808. (tiles -53 0 27 -18 28 29 27 -10 28 29 27 -8 28 29 27 29 -2 212 -16 0 -2 212 27 -9 28 29 27 -3 28 29 -2 212 27 -27 28 29 -4 212 -11 0 27 29 -7 0 47 -3 0 27 -30 28 29 27 -3 28 29 -24 0 27 -4 28 29 -2 213 27 28 29 27 -3 28 29 -3 213 27 -4 28 29 27 29 212 27 -23 28 29 -2 212 27 28 29 27 -6 28 29 -3 212 27 28 29 27 -2 28 29 -114 0 27 -3 28 29 -11 0 27 -7 28 29 -3 0 27 -5 28 29 -6 0 27 28 29 -2 212 -16 0 -2 212 27 29 -5 0 27 -7 28 29 -2 212 -14 0 27 29 -13 0 -4 212 -10 0 78 27 29 -7 0 27 -3 28 29 -24 0 27 28 29 27 -6 28 29 -26 0 27 -13 28 29 -3 0 27 -6 28 29 212 211 -23 0 211 -2 212 27 29 -8 0 47 -3 212 27 29 -120 0 27 -2 28 29 -12 0 27 -2 28 29 27 28 29 -5 0 27 -3 28 29 -8 0 27 29 -2 212 -16 0 -2 212 47 -7 0 27 -6 28 29 -2 212 -14 0 27 29 -13 0 -4 212 -10 0 78 27 29 -9 0 27 28 29 -8 0 44 -3 0 44 -2 0 44 -8 0 27 -7 28 29 -26 0 27 -4 28 29 0 -2 211 0 27 -2 28 29 27 29 -5 0 27 28 29 27 -2 28 29 -2 212 -23 0 -3 212 -11 0 -3 212 -122 0 27 -2 28 29 102 -12 0 27 -2 28 29 27 29 -5 0 27 29 27 29 -10 0 47 -2 212 -16 0 -2 212 -9 0 27 -3 28 29 27 29 -2 212 -14 0 27 29 -13 0 213 -3 212 -9 0 -2 78 27 29 -10 0 27 29 -9 0 -2 44 -2 0 -2 44 -9 0 27 -3 28 29 27 -2 28 29 -25 0 27 28 29 27 -2 28 29 0 -2 212 0 27 -4 28 29 -5 0 27 -5 28 29 -2 212 -9 0 83 -2 78 102 -2 78 83 -7 0 -3 212 -11 0 -3 212 -122 0 27 -2 28 29 -14 0 27 -7 28 29 27 -2 28 29 -12 0 -2 212 -16 0 -2 212 -10 0 27 -4 28 29 -2 212 -14 0 27 29 -13 0 128 -3 212 -9 0 -2 78 27 29 -10 0 27 29 -8 0 44 -2 0 44 -3 0 44 -8 0 27 -6 28 29 -13 0 27 28 29 -8 0 27 -5 28 29 27 29 0 -2 212 0 27 28 29 27 -2 28 29 -3 211 27 -4 28 29 27 29 -2 212 -23 0 213 -2 212 -11 0 -3 212 -123 0 27 28 29 -15 0 27 -10 28 29 -12 0 -2 212 -16 0 -2 212 -11 0 27 28 29 27 29 -2 212 -5 0 27 -2 28 29 44 -2 0 44 27 28 29 -14 0 -3 212 -9 0 -2 78 27 29 -7 0 27 -3 28 29 -24 0 27 -5 28 29 -15 0 27 28 29 -5 0 27 -3 28 29 27 -4 28 29 0 -2 212 0 27 -5 28 29 -3 212 27 29 27 -4 28 29 -2 212 -9 0 -7 44 -8 0 -2 212 -11 0 -3 212 -123 0 27 28 29 -6 0 -2 78 -8 0 27 -3 28 29 27 -4 28 29 -12 0 -2 212 -15 0 102 -2 212 -12 0 27 -2 28 29 -2 212 -6 0 27 29 -6 0 27 29 -14 0 -2 212 213 -9 0 78 27 29 -7 0 27 -2 28 29 27 29 -8 0 83 -2 78 83 102 -2 78 83 -6 0 2818 27 28 29 27 -2 28 29 -17 0 27 -2 28 29 -2 0 27 -2 28 29 27 -6 28 29 0 -2 212 172 246 27 -2 28 29 27 29 -3 212 27 -6 28 29 -2 212 78 -23 0 -2 212 -8 0 44 -2 0 -3 212 -89 0 44 -34 0 27 -9 28 29 -8 0 27 -7 28 29 -7 0 44 -5 0 -2 212 -2 0 44 -7 0 44 -5 0 -2 212 -5 0 44 -7 0 27 28 29 -2 212 -6 0 27 29 -6 0 27 29 78 83 -12 0 -2 212 -10 0 78 27 29 -7 0 27 -4 28 29 -24 0 27 -3 28 29 -19 0 27 -11 28 29 -2 0 27 29 0 -2 212 247 248 47 -2 0 27 28 29 -3 212 27 28 29 -2 0 27 28 29 -2 212 105 27 -21 28 29 -2 212 -11 0 -3 212 0 44 -72 0 -2 78 -11 0 44 -7 0 44 -13 0 44 0 44 0 44 -11 0 27 -6 28 29 0 27 29 -9 0 27 28 29 27 28 29 -14 0 -2 212 -16 0 -2 212 -14 0 27 29 -2 212 -6 0 27 29 -6 0 27 29 -14 0 -2 213 -9 0 -3 78 27 29 -6 0 27 -4 28 29 -24 0 27 -3 28 29 -20 0 27 -3 28 29 27 -4 28 29 -4 0 47 0 -2 212 27 29 -4 0 27 29 -3 213 27 29 -4 0 27 29 -2 212 27 28 29 -15 0 27 -4 28 29 -2 212 -9 0 44 0 -3 212 -73 0 -4 78 -14 0 44 0 44 -12 0 44 0 44 0 44 0 44 0 44 0 44 -18 0 27 29 -8 0 27 -3 28 29 -10 0 44 -4 0 -2 212 0 44 -9 0 44 -4 0 213 212 -4 0 44 -10 0 47 -2 212 -5 0 27 29 -2 78 44 -2 0 44 -2 78 47 -13 0 27 28 29 -9 0 27 -3 28 29 -2 0 27 28 29 0 27 -5 28 29 -2 0 -2 78 -14 0 -2 78 27 -5 28 29 -38 0 -2 212 -19 0 -2 212 47 -22 0 47 -2 212 -11 0 -3 212 -2 0 44 -65 0 -7 28 29 27 -3 28 29 -16 0 44 -11 0 44 0 44 0 44 -21 0 27 28 29 -6 0 27 -3 28 29 -16 0 -2 212 -13 0 27 -2 28 29 212 -16 0 -2 213 -6 0 27 29 -6 0 27 29 -36 0 27 28 29 27 -4 28 29 -3 78 27 -7 28 29 27 -10 28 29 -39 0 -2 212 -19 0 -2 212 -24 0 -2 212 -8 0 44 -2 0 -3 212 -19 0 78 0 78 -3 0 105 -42 0 -10 28 29 -21 0 -2 78 -33 0 27 28 29 -8 0 27 29 -8 0 211 -2 0 44 -5 0 -2 212 -2 0 44 -7 0 44 -5 0 211 212 -5 0 44 -10 0 -2 83 -6 0 27 29 -6 0 27 -3 28 29 -33 0 27 -3 28 29 27 -10 28 29 27 -13 28 29 -40 0 -2 212 -19 0 -2 212 -5 0 78 -12 0 78 -5 0 -2 212 -11 0 -3 212 0 44 -15 0 78 0 78 0 78 0 78 -3 0 78 -40 0 29 27 -6 28 29 -22 0 -4 78 -30 0 47 0 27 28 29 -8 0 47 -8 0 78 212 -8 0 -2 212 -13 0 47 -2 0 -2 212 -23 0 27 28 29 -6 0 27 28 29 -5 0 44 -2 0 44 -2 0 44 -3 0 44 -19 0 27 -8 28 29 -43 0 78 -18 0 -2 212 -19 0 -2 212 27 -2 28 29 -3 78 -10 0 -3 78 27 -2 28 29 212 213 -9 0 44 0 -3 212 -6 0 78 -8 0 78 0 78 0 78 0 78 0 78 -3 0 78 -40 0 -6 28 29 -23 0 27 -5 28 29 27 -18 28 29 -8 0 27 -3 28 29 -7 0 47 -8 0 -2 78 212 78 -4 0 27 29 0 213 212 -13 0 27 29 0 213 212 0 27 29 -4 0 27 29 -14 0 78 47 -3 78 -2 44 -3 78 47 -3 0 44 -32 0 27 28 29 27 28 29 -46 0 -3 78 -8 0 -2 78 -7 0 -2 212 -19 0 -2 212 27 -22 28 29 213 -12 0 -3 212 -2 0 44 -3 0 -2 78 -5 0 78 0 78 0 78 0 78 0 78 0 78 -3 0 78 -40 0 -4 28 29 -28 0 27 -13 28 29 27 -8 28 29 -2 78 -4 0 27 -4 28 29 -14 0 27 -2 28 29 213 78 -4 0 27 -2 28 29 213 -14 0 27 28 29 212 27 28 29 -4 0 27 -2 28 29 -11 0 -2 78 27 29 -6 0 27 29 -27 0 78 -9 0 27 -3 28 29 -2 2818 -41 0 27 -7 28 29 27 28 29 27 -3 28 29 -6 0 -2 212 -14 0 27 29 -3 0 -2 212 47 -36 0 -3 212 -6 0 27 -11 28 29 27 -12 28 29 -8 0 27 -14 28 29 27 -10 28 29 -34 0 27 -14 28 29 27 -14 28 29 27 28 29 -13 0 27 -5 28 29 -4 0 27 -2 28 29 -18 0 213 27 28 29 -4 0 27 -17 28 29 -6 0 27 28 29 -25 0 78 105 78 -8 0 27 -3 28 29 -48 0 27 -10 28 29 -6 0 -2 212 -19 0 -2 212 -37 0 -3 213 -9 0 27 -16 28 29 27 28 29 -14 0 27 -17 28 29 27 -4 28 -36 0 27 -5 28 29 -3 0 27 -5 28 29 -3 0 27 -14 28 29 -10 0 27 -3 28 29 27 -8 28 29 -20 0 27 -25 28 29 -4 0 27 -9 28 29 -11 0 27 -21 28 29 -49 0 27 -5 28 29 27 -2 28 29 -6 0 -2 212 -19 0 -2 212 -145 0 27 -3 28 29 -5 0 27 29 27 28 29 -5 0 27 -11 28 29 -2 78 -9 0 27 -14 28 29 -20 0 27 -2 28 29 27 -8 28 29 -3 0 27 -3 28 29 27 -10 28 29 -17 0 27 -2 28 29 -6 0 27 28 29 -9 0 27 -7 28 29 -46 0 27 -6 28 29 -6 0 -2 213 -13 0 27 -2 28 29 -2 0 -2 213 47 -144 0 27 28 29 27 29 -5 0 27 -3 28 29 -5 0 27 -6 28 29 27 -3 28 29 105 -2 78 -7 0 27 -8 28 29 27 -5 28 29 -21 0 27 -7 28 29 27 28 29 -5 0 27 -8 28 29 27 -4 28 29 -26 0 27 29 -11 0 27 -6 28 29 -50 0 27 28 29 27 29 -22 0 27 29 -151 0 27 -22 28 29 27 -19 28 29 27 -11 28 29 -22 0 27 -10 28 29 -5 0 27 -3 28 29 27 -11 28 29 27 -5 28 29 27 -4 28 29 27 -3 28 29 27 -2 28 29 27 -2 28 29 -11 0 27 -5 28 29 -53 0 27 28 29 -176 0 27 -9 28 29 27 -24 28 29 27 -17 28 29 -24 0 27 -3 28 29 27 -8 28 29 27 -37 28 29 27 -4 28 29 -11 0 27 28 29 27 28 29 -56 0 47 -177 0 27 -4 28 29 27 -38 28 29 27 -6 28 29 -25 0 27 -6 28 29 27 -28 28 29 27 -3 28 29 27 -15 28 29 -11 0 27 -3 28 29 -237 0 27 -15 28 29 27 -5 28 29 27 -3 28 29 27 -20 28 29 -27 0 27 -9 28 29 27 -5 28 29 27 -14 28 29 27 -11 28 29 27 -10 28 29 -11 0 27 -2 28 29 -242 0 27 -31 28 29 27 -6 28 29 -36 0 27 -25 28 29 27 -23 28 29 27 -2 28 29 -12 0 27 28 29 -255 0 27 -17 28 29 -54 0 27 -45 28 29 -12 0 27 28 29 -196 0)
  1809. )
  1810. (tilemap
  1811. (solid #f)
  1812. (tint 1 0 0.6)
  1813. (z-pos 100)
  1814. (name "RED")
  1815. (width 390)
  1816. (height 25)
  1817. (tiles -1359 0 53 55 -388 0 54 56 -482 0 57 58 -388 0 59 60 -380 0 59 60 -307 0 57 58 -79 0 1742 1743 -307 0 59 60 -1863 0 57 58 -10 0 57 58 -376 0 59 60 -10 0 59 60 -193 0 57 58 -5 0 57 58 -381 0 59 60 -5 0 59 60 -3185 0)
  1818. )
  1819. (tilemap
  1820. (solid #f)
  1821. (tint 1 0 0.6)
  1822. (z-pos -10)
  1823. (name "redback")
  1824. (width 390)
  1825. (height 25)
  1826. (tiles -1361 0 55 -389 0 56 -863 0 59 60 -396 0 59 60 -1079 0 59 60 -2265 0 59 60 -3387 0)
  1827. )
  1828. (trampoline
  1829. (type "stationary")
  1830. (z-pos 50)
  1831. (x 8144)
  1832. (y 416)
  1833. )
  1834. (trampoline
  1835. (type "stationary")
  1836. (z-pos 50)
  1837. (x 8816)
  1838. (y 416)
  1839. )
  1840. )
  1841. )