tux.sprite 38 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517
  1. (supertux-sprite
  2. (action
  3. (name "gameover")
  4. (fps 10.0)
  5. (hitbox 13 6 32 32)
  6. (images "small/gameover-0.png"
  7. "small/gameover-1.png"))
  8. ; Small Tux
  9. (action
  10. (name "small-walk-right")
  11. (fps 15.0)
  12. (hitbox 8 16 32 32)
  13. (images "small/walk-0.png"
  14. "small/walk-1.png"
  15. "small/walk-2.png"
  16. "small/walk-3.png"
  17. "small/walk-4.png"
  18. "small/walk-5.png"
  19. "small/walk-6.png"
  20. "small/walk-7.png"))
  21. (action
  22. (name "small-walk-left")
  23. (fps 15.0)
  24. (hitbox 8 16 32 32)
  25. (mirror-action "small-walk-right"))
  26. (action
  27. (name "small-run-right")
  28. (fps 15.0)
  29. (hitbox 8 16 32 32)
  30. (clone-action "small-walk-right"))
  31. (action
  32. (name "small-run-left")
  33. (fps 15.0)
  34. (hitbox 8 16 32 32)
  35. (mirror-action "small-walk-right"))
  36. (action
  37. (name "small-stand-right")
  38. (fps 15.0)
  39. (hitbox 8 16 32 32)
  40. (images "small/stand-0.png"))
  41. (action
  42. (name "small-stand-left")
  43. (fps 15.0)
  44. (hitbox 8 16 32 32)
  45. (mirror-action "small-stand-right"))
  46. (action
  47. (name "small-walljump-right")
  48. (fps 24.0)
  49. (loops 1)
  50. (hitbox 12 16 32 32)
  51. (images "small/small-walljump-0.png"
  52. "small/small-walljump-1.png"
  53. "small/small-walljump-2.png"))
  54. (action
  55. (name "small-walljump-left")
  56. (fps 24.0)
  57. (loops 1)
  58. (hitbox 6 16 32 32)
  59. (mirror-action "small-walljump-right"))
  60. (action
  61. (name "small-jump-right")
  62. (fps 15.0)
  63. (hitbox 8 16 32 32)
  64. (images "small/jump-0.png"))
  65. (action
  66. (name "small-jump-left")
  67. (fps 15.0)
  68. (hitbox 8 16 32 32)
  69. (mirror-action "small-jump-right"))
  70. (action
  71. (name "small-fall-right")
  72. (fps 15.0)
  73. (hitbox 8 16 32 32)
  74. (images "small/jump-0.png"))
  75. (action
  76. (name "small-fall-left")
  77. (fps 15.0)
  78. (hitbox 8 16 32 32)
  79. (mirror-action "small-jump-right"))
  80. (action
  81. (name "small-skid-right")
  82. (hitbox 8 17 32 32)
  83. (images "small/skid-0.png"))
  84. (action
  85. (name "small-skid-left")
  86. (hitbox 8 17 32 32)
  87. (mirror-action "small-skid-right"))
  88. (action
  89. (name "small-kick-right")
  90. (hitbox 8 16 32 32)
  91. (images "small/kick-0.png"))
  92. (action
  93. (name "small-kick-left")
  94. (hitbox 8 16 32 32)
  95. (mirror-action "small-kick-right"))
  96. (action
  97. (name "small-idle-right")
  98. (fps 5.0)
  99. (hitbox 8 16 32 32)
  100. (images "small/idle-0.png"
  101. "small/idle-1.png"
  102. "small/idle-0.png"))
  103. (action
  104. (name "small-idle-left")
  105. (hitbox 8 16 32 32)
  106. (mirror-action "small-idle-right"))
  107. (action
  108. (name "small-climbing-right")
  109. (hitbox 12 19 36 35)
  110. (fps 15.0)
  111. (images "small/ladder-0.png"
  112. "small/ladder-1.png"
  113. "small/ladder-2.png"
  114. "small/ladder-3.png"
  115. "small/ladder-4.png"
  116. "small/ladder-5.png"
  117. "small/ladder-6.png"
  118. "small/ladder-7.png"))
  119. (action
  120. (name "small-climbing-left")
  121. (hitbox 12 19 36 35)
  122. (fps 15.0)
  123. (mirror-action "small-climbing-right"))
  124. (action
  125. (name "small-swimming-right")
  126. (fps 15.0)
  127. (hitbox 29 24 32 32)
  128. (images "small/swimsmall1.png"
  129. "small/swimsmall2.png"
  130. "small/swimsmall3.png"
  131. "small/swimsmall4.png"
  132. "small/swimsmall5.png"))
  133. (action
  134. (name "small-swimming-left")
  135. (fps 15.0)
  136. (hitbox 29 24 32 32)
  137. (mirror-action "small-swimming-right"))
  138. (action
  139. (name "small-floating-right")
  140. (fps 11.0)
  141. (hitbox 29 24 32 32)
  142. (images "small/swimsmall1.png"
  143. "small/swimsmall2.png"
  144. "small/swimsmall3.png"
  145. "small/swimsmallidle.png"
  146. "small/swimsmallidle.png"
  147. "small/swimsmallidle.png"
  148. "small/swimsmallidle.png"
  149. "small/swimsmallidle.png"
  150. "small/swimsmallidle.png"
  151. "small/swimsmallidle.png"
  152. "small/swimsmallidle.png"
  153. "small/swimsmallidle.png"
  154. "small/swimsmallidle.png"
  155. "small/swimsmallidle.png"
  156. "small/swimsmallidle.png"
  157. "small/swimsmallidle.png"))
  158. (action
  159. (name "small-floating-left")
  160. (fps 11.0)
  161. (hitbox 29 24 32 32)
  162. (mirror-action "small-floating-right"))
  163. (action
  164. (name "small-swimjump-right")
  165. (fps 10.0)
  166. (loops 1)
  167. (hitbox 29 24 36 35)
  168. (images "small/swimsmall1.png"))
  169. (action
  170. (name "small-swimjump-left")
  171. (fps 10.0)
  172. (loops 1)
  173. (hitbox 29 24 36 35)
  174. (mirror-action "small-swimjump-right"))
  175. (action
  176. (name "grow-right")
  177. (fps 15.0)
  178. (hitbox 16 13 32 64)
  179. (images "small/grow-0.png"
  180. "small/grow-1.png"
  181. "small/grow-2.png"
  182. "small/grow-3.png"
  183. "small/grow-4.png"
  184. "small/grow-5.png"
  185. "small/grow-6.png"))
  186. (action
  187. (name "grow-left")
  188. (hitbox 16 13 32 64)
  189. (mirror-action "grow-right"))
  190. (action
  191. (name "swimgrow-right")
  192. (fps 15.0)
  193. (hitbox 29 24 32 64)
  194. (images "small/swimsmallidle.png"
  195. "small/swimsmallidle.png"
  196. "small/swimgrow1.png"
  197. "small/swimgrow2.png"
  198. "small/swimgrow3.png"
  199. "big/swimidle1.png"
  200. "big/swimidle1.png"))
  201. (action
  202. (name "swimgrow-left")
  203. (hitbox 29 24 32 64)
  204. (mirror-action "swimgrow-right"))
  205. (action
  206. (name "grow-ladder-right")
  207. (fps 15.0)
  208. (hitbox 12 14 25 64)
  209. (images "small/grow-ladder-0.png"
  210. "small/grow-ladder-1.png"
  211. "small/grow-ladder-2.png"
  212. "small/grow-ladder-3.png"
  213. "small/grow-ladder-4.png"
  214. "small/grow-ladder-5.png"
  215. "small/grow-ladder-6.png"))
  216. (action
  217. (name "grow-ladder-left")
  218. (hitbox 12 14 25 64)
  219. (mirror-action "grow-ladder-right"))
  220. ; Big Tux
  221. (action
  222. (name "big-walk-right")
  223. (fps 15.0)
  224. (hitbox 16 14 32 64)
  225. (images "big/walk-0.png"
  226. "big/walk-1.png"
  227. "big/walk-2.png"
  228. "big/walk-3.png"
  229. "big/walk-4.png"
  230. "big/walk-5.png"
  231. "big/walk-6.png"
  232. "big/walk-7.png"))
  233. (action
  234. (name "big-walk-left")
  235. (fps 15.0)
  236. (hitbox 16 14 32 64)
  237. (mirror-action "big-walk-right"))
  238. (action
  239. (name "big-stand-right")
  240. (fps 15.0)
  241. (hitbox 16 14 32 64)
  242. (images "big/stand-0.png"))
  243. (action
  244. (name "big-stand-left")
  245. (fps 15.0)
  246. (hitbox 16 14 32 64)
  247. (mirror-action "big-stand-right"))
  248. (action
  249. (name "big-walljump-right")
  250. (fps 24.0)
  251. (loops 1)
  252. (hitbox 24 14 32 64)
  253. (images "big/big-walljump-0.png"
  254. "big/big-walljump-1.png"
  255. "big/big-walljump-2.png"))
  256. (action
  257. (name "big-walljump-left")
  258. (fps 24.0)
  259. (loops 1)
  260. (hitbox 8 14 32 64)
  261. (mirror-action "big-walljump-right"))
  262. (action
  263. (name "big-jump-right")
  264. (fps 15.0)
  265. (hitbox 16 14 32 64)
  266. (images "big/jump-0.png"))
  267. (action
  268. (name "big-jump-left")
  269. (fps 15.0)
  270. (hitbox 16 14 32 64)
  271. (mirror-action "big-jump-right"))
  272. (action
  273. (name "big-fall-right")
  274. (fps 15.0)
  275. (hitbox 16 14 32 64)
  276. (images "big/jump-0.png"))
  277. (action
  278. (name "big-fall-left")
  279. (fps 15.0)
  280. (hitbox 16 14 32 64)
  281. (mirror-action "big-jump-right"))
  282. (action
  283. (name "big-skid-right")
  284. (hitbox 16 14 32 64)
  285. (images "big/skid-0.png"))
  286. (action
  287. (name "big-skid-left")
  288. (hitbox 16 14 32 64)
  289. (mirror-action "big-skid-right"))
  290. (action
  291. (name "big-kick-right")
  292. (hitbox 16 14 32 64)
  293. (images "big/kick-0.png"))
  294. (action
  295. (name "big-kick-left")
  296. (hitbox 16 14 32 64)
  297. (mirror-action "big-kick-right"))
  298. (action
  299. (name "big-idle-right")
  300. (fps 5.0)
  301. (hitbox 16 14 32 64)
  302. (images "big/idle-0.png"
  303. "big/idle-1.png"
  304. "big/idle-0.png"))
  305. (action
  306. (name "big-idle-left")
  307. (hitbox 16 14 32 64)
  308. (mirror-action "big-idle-right"))
  309. (action
  310. (name "big-climbing-right")
  311. (hitbox 9 14 25 64)
  312. (fps 15.0)
  313. (images "big/ladder-0.png"
  314. "big/ladder-1.png"
  315. "big/ladder-2.png"
  316. "big/ladder-3.png"
  317. "big/ladder-4.png"
  318. "big/ladder-5.png"
  319. "big/ladder-6.png"
  320. "big/ladder-7.png"))
  321. (action
  322. (name "big-climbing-left")
  323. (hitbox 9 14 25 64)
  324. (fps 15.0)
  325. (mirror-action "big-climbing-right"))
  326. (action
  327. (name "big-duck-right")
  328. (hitbox 16 45 32 32)
  329. (images "big/duck-0.png"))
  330. (action
  331. (name "big-duck-left")
  332. (hitbox 16 45 32 32)
  333. (mirror-action "big-duck-right"))
  334. (action
  335. (name "big-backflip-right")
  336. (hitbox 16 37 32 32)
  337. (images "big/backflip.png"))
  338. (action
  339. (name "big-backflip-left")
  340. (hitbox 16 37 32 32)
  341. (fps 18.0)
  342. (mirror-action "big-backflip-right"))
  343. (action
  344. (name "big-buttjump-right")
  345. (hitbox 16 14 32 46)
  346. (fps 20.0)
  347. (loops 1)
  348. (images "big/buttjump-0.png"
  349. "big/buttjump-1.png"
  350. "big/buttjump-2.png"
  351. "big/buttjump-3.png"
  352. "big/buttjump-4.png"
  353. "big/buttjump-5.png"
  354. "big/buttjump-6.png"))
  355. (action
  356. (name "big-buttjump-left")
  357. (hitbox 16 14 32 46)
  358. (fps 20.0)
  359. (loops 1)
  360. (mirror-action "big-buttjump-right"))
  361. (action
  362. (name "big-swimming-right")
  363. (fps 15.0)
  364. (hitbox 29 24 32 64)
  365. (images "big/swim-0.png"
  366. "big/swim-1.png"
  367. "big/swim-2.png"
  368. "big/swim-3.png"
  369. "big/swim-4.png"))
  370. (action
  371. (name "big-swimming-left")
  372. (fps 15.0)
  373. (hitbox 29 24 32 64)
  374. (mirror-action "big-swimming-right"))
  375. (action
  376. (name "big-floating-right")
  377. (fps 11.0)
  378. (hitbox 29 24 32 64)
  379. (images "big/swim-0.png"
  380. "big/swim-1.png"
  381. "big/swim-2.png"
  382. "big/swimidle1.png"
  383. "big/swimidle1.png"
  384. "big/swimidle1.png"
  385. "big/swimidle1.png"
  386. "big/swimidle1.png"
  387. "big/swimidle1.png"
  388. "big/swimidle1.png"
  389. "big/swimidle1.png"
  390. "big/swimidle1.png"
  391. "big/swimidle1.png"
  392. "big/swimidle1.png"
  393. "big/swimidle1.png"
  394. "big/swimidle1.png"
  395. "big/swimidle1.png"
  396. "big/swimidle1.png"
  397. "big/swimidle1.png"
  398. "big/swimidle1.png"
  399. "big/swimidle1.png"
  400. "big/swimidle1.png"
  401. "big/swimidle1.png"))
  402. (action
  403. (name "big-floating-left")
  404. (fps 11.0)
  405. (hitbox 29 24 32 64)
  406. (mirror-action "big-floating-right"))
  407. (action
  408. (name "big-swimjump-right")
  409. (fps 10.0)
  410. (loops 1)
  411. (hitbox 29 24 32 64)
  412. (images "big/swim-0.png"))
  413. (action
  414. (name "big-swimjump-left")
  415. (fps 10.0)
  416. (loops 1)
  417. (hitbox 29 24 32 64)
  418. (mirror-action "big-swimjump-right"))
  419. ; Fire Tux
  420. (action
  421. (name "fire-walk-right")
  422. (fps 15.0)
  423. (hitbox 16 14 32 64)
  424. (clone-action "big-walk-right"))
  425. (action
  426. (name "fire-walk-left")
  427. (fps 15.0)
  428. (hitbox 16 14 32 64)
  429. (mirror-action "big-walk-right"))
  430. (action
  431. (name "fire-stand-right")
  432. (fps 15.0)
  433. (hitbox 16 14 32 64)
  434. (clone-action "big-stand-right"))
  435. (action
  436. (name "fire-stand-left")
  437. (fps 15.0)
  438. (hitbox 16 14 32 64)
  439. (mirror-action "big-stand-right"))
  440. (action
  441. (name "fire-walljump-right")
  442. (fps 24.0)
  443. (loops 1)
  444. (hitbox 24 14 32 64)
  445. (clone-action "big-walljump-right"))
  446. (action
  447. (name "fire-walljump-left")
  448. (fps 24.0)
  449. (loops 1)
  450. (hitbox 8 14 32 64)
  451. (mirror-action "fire-walljump-right"))
  452. (action
  453. (name "fire-jump-right")
  454. (fps 16.0)
  455. (hitbox 16 14 32 64)
  456. (loops 1)
  457. (clone-action "big-jump-right"))
  458. (action
  459. (name "fire-jump-left")
  460. (fps 16.0)
  461. (hitbox 16 14 32 64)
  462. (loops 1)
  463. (mirror-action "big-jump-right"))
  464. (action
  465. (name "fire-fall-right")
  466. (fps 16.0)
  467. (hitbox 16 14 32 64)
  468. (loops 1)
  469. (clone-action "big-jump-right"))
  470. (action
  471. (name "fire-fall-left")
  472. (fps 16.0)
  473. (hitbox 16 14 32 64)
  474. (loops 1)
  475. (mirror-action "big-jump-right"))
  476. (action
  477. (name "fire-skid-right")
  478. (hitbox 16 14 32 64)
  479. (clone-action "big-skid-right"))
  480. (action
  481. (name "fire-skid-left")
  482. (hitbox 16 14 32 64)
  483. (mirror-action "big-skid-right"))
  484. (action
  485. (name "fire-kick-right")
  486. (hitbox 16 14 32 64)
  487. (clone-action "big-kick-right"))
  488. (action
  489. (name "fire-kick-left")
  490. (hitbox 16 14 32 64)
  491. (mirror-action "big-kick-right"))
  492. (action
  493. (name "fire-idle-right")
  494. (fps 5.0)
  495. (hitbox 16 14 32 64)
  496. (clone-action "big-idle-right"))
  497. (action
  498. (name "fire-idle-left")
  499. (hitbox 16 14 32 64)
  500. (mirror-action "big-idle-right"))
  501. (action
  502. (name "fire-climbing-right")
  503. (hitbox 9 14 25 64)
  504. (fps 15.0)
  505. (clone-action "big-climbing-right"))
  506. (action
  507. (name "fire-climbing-left")
  508. (hitbox 9 14 25 64)
  509. (fps 15.0)
  510. (mirror-action "big-climbing-right"))
  511. (action
  512. (name "fire-duck-right")
  513. (hitbox 16 45 32 32)
  514. (clone-action "big-duck-right"))
  515. (action
  516. (name "fire-duck-left")
  517. (hitbox 16 45 32 32)
  518. (mirror-action "big-duck-right"))
  519. (action
  520. (name "fire-backflip-right")
  521. (hitbox 16 37 32 32)
  522. (clone-action "big-backflip-right"))
  523. (action
  524. (name "fire-backflip-left")
  525. (hitbox 16 37 32 32)
  526. (fps 18.0)
  527. (mirror-action "big-backflip-right"))
  528. (action
  529. (name "fire-buttjump-right")
  530. (hitbox 16 14 32 46)
  531. (fps 20.0)
  532. (loops 1)
  533. (clone-action "big-buttjump-right"))
  534. (action
  535. (name "fire-buttjump-left")
  536. (hitbox 16 14 32 46)
  537. (fps 20.0)
  538. (loops 1)
  539. (mirror-action "big-buttjump-right"))
  540. (action
  541. (name "fire-swimming-right")
  542. (fps 15.0)
  543. (hitbox 29 24 32 64)
  544. (clone-action "big-swimming-right"))
  545. (action
  546. (name "fire-swimming-left")
  547. (fps 15.0)
  548. (hitbox 29 24 32 64)
  549. (mirror-action "big-swimming-right"))
  550. (action
  551. (name "fire-floating-right")
  552. (fps 11.0)
  553. (hitbox 29 24 32 64)
  554. (clone-action "big-floating-right"))
  555. (action
  556. (name "fire-floating-left")
  557. (fps 11.0)
  558. (hitbox 29 24 32 64)
  559. (mirror-action "big-floating-right"))
  560. (action
  561. (name "fire-swimjump-right")
  562. (fps 10.0)
  563. (loops 1)
  564. (hitbox 29 24 32 64)
  565. (clone-action "big-swimjump-right"))
  566. (action
  567. (name "fire-swimjump-left")
  568. (fps 10.0)
  569. (loops 1)
  570. (hitbox 29 24 32 64)
  571. (mirror-action "big-swimjump-right"))
  572. ; Ice Tux
  573. (action
  574. (name "ice-walk-right")
  575. (fps 15.0)
  576. (hitbox 16 14 32 64)
  577. (clone-action "big-walk-right"))
  578. (action
  579. (name "ice-walk-left")
  580. (fps 15.0)
  581. (hitbox 16 14 32 64)
  582. (mirror-action "big-walk-right"))
  583. (action
  584. (name "ice-stand-right")
  585. (fps 15.0)
  586. (hitbox 16 14 32 64)
  587. (clone-action "big-stand-right"))
  588. (action
  589. (name "ice-stand-left")
  590. (fps 15.0)
  591. (hitbox 16 14 32 64)
  592. (mirror-action "big-stand-right"))
  593. (action
  594. (name "ice-walljump-right")
  595. (fps 24.0)
  596. (loops 1)
  597. (hitbox 24 14 32 64)
  598. (clone-action "big-walljump-right"))
  599. (action
  600. (name "ice-walljump-left")
  601. (fps 24.0)
  602. (loops 1)
  603. (hitbox 8 14 32 64)
  604. (mirror-action "ice-walljump-right"))
  605. (action
  606. (name "ice-jump-right")
  607. (fps 16.0)
  608. (hitbox 16 14 32 64)
  609. (loops 1)
  610. (clone-action "big-jump-right"))
  611. (action
  612. (name "ice-jump-left")
  613. (fps 16.0)
  614. (hitbox 16 14 32 64)
  615. (loops 1)
  616. (mirror-action "big-jump-right"))
  617. (action
  618. (name "ice-fall-right")
  619. (fps 16.0)
  620. (hitbox 16 14 32 64)
  621. (loops 1)
  622. (clone-action "big-jump-right"))
  623. (action
  624. (name "ice-fall-left")
  625. (fps 16.0)
  626. (hitbox 16 14 32 64)
  627. (loops 1)
  628. (mirror-action "big-jump-right"))
  629. (action
  630. (name "ice-skid-right")
  631. (hitbox 16 14 32 64)
  632. (clone-action "big-skid-right"))
  633. (action
  634. (name "ice-skid-left")
  635. (hitbox 16 14 32 64)
  636. (mirror-action "big-skid-right"))
  637. (action
  638. (name "ice-kick-right")
  639. (hitbox 16 14 32 64)
  640. (clone-action "big-kick-right"))
  641. (action
  642. (name "ice-kick-left")
  643. (hitbox 16 14 32 64)
  644. (mirror-action "big-kick-right"))
  645. (action
  646. (name "ice-idle-right")
  647. (fps 5.0)
  648. (hitbox 16 14 32 64)
  649. (clone-action "big-idle-right"))
  650. (action
  651. (name "ice-idle-left")
  652. (hitbox 16 14 32 64)
  653. (mirror-action "big-idle-right"))
  654. (action
  655. (name "ice-climbing-right")
  656. (hitbox 9 14 25 64)
  657. (fps 15.0)
  658. (clone-action "big-climbing-right"))
  659. (action
  660. (name "ice-climbing-left")
  661. (hitbox 9 14 25 64)
  662. (fps 15.0)
  663. (mirror-action "big-climbing-right"))
  664. (action
  665. (name "ice-duck-right")
  666. (hitbox 16 45 32 32)
  667. (clone-action "big-duck-right"))
  668. (action
  669. (name "ice-duck-left")
  670. (hitbox 16 45 32 32)
  671. (mirror-action "big-duck-right"))
  672. (action
  673. (name "ice-backflip-right")
  674. (hitbox 16 37 32 32)
  675. (clone-action "big-backflip-right"))
  676. (action
  677. (name "ice-backflip-left")
  678. (hitbox 16 37 32 32)
  679. (fps 18.0)
  680. (mirror-action "big-backflip-right"))
  681. (action
  682. (name "ice-buttjump-right")
  683. (hitbox 16 14 32 46)
  684. (fps 20.0)
  685. (loops 1)
  686. (clone-action "big-buttjump-right"))
  687. (action
  688. (name "ice-buttjump-left")
  689. (hitbox 16 14 32 46)
  690. (fps 20.0)
  691. (loops 1)
  692. (mirror-action "big-buttjump-right"))
  693. (action
  694. (name "ice-swimming-right")
  695. (fps 15.0)
  696. (hitbox 29 24 32 64)
  697. (clone-action "big-swimming-right"))
  698. (action
  699. (name "ice-swimming-left")
  700. (fps 15.0)
  701. (hitbox 29 24 32 64)
  702. (mirror-action "big-swimming-right"))
  703. (action
  704. (name "ice-floating-right")
  705. (fps 11.0)
  706. (hitbox 29 24 32 64)
  707. (clone-action "big-floating-right"))
  708. (action
  709. (name "ice-floating-left")
  710. (fps 11.0)
  711. (hitbox 29 24 32 64)
  712. (mirror-action "big-floating-right"))
  713. (action
  714. (name "ice-swimjump-right")
  715. (fps 10.0)
  716. (loops 1)
  717. (hitbox 29 24 32 64)
  718. (clone-action "big-swimjump-right"))
  719. (action
  720. (name "ice-swimjump-left")
  721. (fps 10.0)
  722. (loops 1)
  723. (hitbox 29 24 32 64)
  724. (mirror-action "big-swimjump-right"))
  725. ; Earth Tux
  726. (action
  727. (name "earth-walk-right")
  728. (fps 15.0)
  729. (hitbox 16 14 32 64)
  730. (clone-action "big-walk-right"))
  731. (action
  732. (name "earth-walk-left")
  733. (fps 15.0)
  734. (hitbox 16 14 32 64)
  735. (mirror-action "big-walk-right"))
  736. (action
  737. (name "earth-stand-right")
  738. (fps 15.0)
  739. (hitbox 16 14 32 64)
  740. (clone-action "big-stand-right"))
  741. (action
  742. (name "earth-stand-left")
  743. (fps 15.0)
  744. (hitbox 16 14 32 64)
  745. (mirror-action "big-stand-right"))
  746. (action
  747. (name "earth-walljump-right")
  748. (fps 24.0)
  749. (loops 1)
  750. (hitbox 24 14 32 64)
  751. (clone-action "big-walljump-right"))
  752. (action
  753. (name "earth-walljump-left")
  754. (fps 24.0)
  755. (loops 1)
  756. (hitbox 8 14 32 64)
  757. (mirror-action "earth-walljump-right"))
  758. (action
  759. (name "earth-jump-right")
  760. (fps 16.0)
  761. (hitbox 16 14 32 64)
  762. (loops 1)
  763. (clone-action "big-jump-right"))
  764. (action
  765. (name "earth-jump-left")
  766. (fps 16.0)
  767. (hitbox 16 14 32 64)
  768. (loops 1)
  769. (mirror-action "big-jump-right"))
  770. (action
  771. (name "earth-fall-right")
  772. (fps 16.0)
  773. (hitbox 16 14 32 64)
  774. (loops 1)
  775. (clone-action "big-jump-right"))
  776. (action
  777. (name "earth-fall-left")
  778. (fps 16.0)
  779. (hitbox 16 14 32 64)
  780. (loops 1)
  781. (mirror-action "big-jump-right"))
  782. (action
  783. (name "earth-skid-right")
  784. (hitbox 16 14 32 64)
  785. (clone-action "big-skid-right"))
  786. (action
  787. (name "earth-skid-left")
  788. (hitbox 16 14 32 64)
  789. (mirror-action "big-skid-right"))
  790. (action
  791. (name "earth-kick-right")
  792. (hitbox 16 14 32 64)
  793. (clone-action "big-kick-right"))
  794. (action
  795. (name "earth-kick-left")
  796. (hitbox 16 14 32 64)
  797. (mirror-action "big-kick-right"))
  798. (action
  799. (name "earth-idle-right")
  800. (fps 5.0)
  801. (hitbox 16 14 32 64)
  802. (clone-action "big-idle-right"))
  803. (action
  804. (name "earth-idle-left")
  805. (hitbox 16 14 32 64)
  806. (mirror-action "big-idle-right"))
  807. (action
  808. (name "earth-climbing-right")
  809. (fps 15.0)
  810. (hitbox 9 14 25 64)
  811. (clone-action "big-climbing-right"))
  812. (action
  813. (name "earth-climbing-left")
  814. (fps 15.0)
  815. (hitbox 9 14 25 64)
  816. (mirror-action "big-climbing-right"))
  817. (action
  818. (name "earth-duck-right")
  819. (hitbox 16 45 32 32)
  820. (clone-action "big-duck-right"))
  821. (action
  822. (name "earth-duck-left")
  823. (hitbox 16 45 32 32)
  824. (mirror-action "big-duck-right"))
  825. (action
  826. (name "earth-backflip-right")
  827. (hitbox 16 37 32 32)
  828. (clone-action "big-backflip-right"))
  829. (action
  830. (name "earth-backflip-left")
  831. (hitbox 16 37 32 32)
  832. (fps 18.0)
  833. (mirror-action "big-backflip-right"))
  834. (action
  835. (name "earth-buttjump-right")
  836. (hitbox 16 14 32 46)
  837. (fps 20.0)
  838. (loops 1)
  839. (clone-action "big-buttjump-right"))
  840. (action
  841. (name "earth-buttjump-left")
  842. (hitbox 16 14 32 46)
  843. (fps 20.0)
  844. (loops 1)
  845. (mirror-action "big-buttjump-right"))
  846. (action
  847. (name "earth-swimming-right")
  848. (fps 15.0)
  849. (hitbox 29 24 32 64)
  850. (clone-action "big-swimming-right"))
  851. (action
  852. (name "earth-swimming-left")
  853. (fps 15.0)
  854. (hitbox 29 24 32 64)
  855. (mirror-action "big-swimming-right"))
  856. (action
  857. (name "earth-floating-right")
  858. (fps 11.0)
  859. (hitbox 29 24 32 64)
  860. (clone-action "big-floating-right"))
  861. (action
  862. (name "earth-floating-left")
  863. (fps 11.0)
  864. (hitbox 29 24 32 64)
  865. (mirror-action "big-floating-right"))
  866. (action
  867. (name "earth-swimjump-right")
  868. (fps 10.0)
  869. (loops 1)
  870. (hitbox 29 24 32 64)
  871. (clone-action "big-swimjump-right"))
  872. (action
  873. (name "earth-swimjump-left")
  874. (fps 10.0)
  875. (loops 1)
  876. (hitbox 29 24 32 64)
  877. (mirror-action "big-swimjump-right"))
  878. ; Stone Tux
  879. (action
  880. (name "earth-walk-right-stone")
  881. (fps 15.0)
  882. (hitbox 16 14 32 64)
  883. (images "earth/statue.png"))
  884. (action
  885. (name "earth-walk-left-stone")
  886. (fps 15.0)
  887. (hitbox 16 14 32 64)
  888. (mirror-action "earth-walk-right-stone"))
  889. (action
  890. (name "earth-stand-right-stone")
  891. (fps 15.0)
  892. (hitbox 16 14 32 64)
  893. (images "earth/statue.png"))
  894. (action
  895. (name "earth-stand-left-stone")
  896. (fps 15.0)
  897. (hitbox 16 14 32 64)
  898. (mirror-action "earth-stand-right-stone"))
  899. (action
  900. (name "earth-jump-right-stone")
  901. (fps 15.0)
  902. (hitbox 16 14 32 64)
  903. (images "earth/statue.png"))
  904. (action
  905. (name "earth-jump-left-stone")
  906. (fps 15.0)
  907. (hitbox 16 14 32 64)
  908. (mirror-action "earth-jump-right-stone"))
  909. (action
  910. (name "earth-skid-right-stone")
  911. (hitbox 16 14 32 64)
  912. (images "earth/statue.png"))
  913. (action
  914. (name "earth-skid-left-stone")
  915. (hitbox 16 14 32 64)
  916. (mirror-action "earth-skid-right-stone"))
  917. (action
  918. (name "earth-kick-right-stone")
  919. (hitbox 16 14 32 64)
  920. (images "earth/statue.png"))
  921. (action
  922. (name "earth-kick-left-stone")
  923. (hitbox 16 14 32 64)
  924. (mirror-action "earth-kick-right-stone"))
  925. (action
  926. (name "earth-idle-right-stone")
  927. (fps 5.0)
  928. (hitbox 16 14 32 64)
  929. (images "earth/statue.png"))
  930. (action
  931. (name "earth-idle-left-stone")
  932. (hitbox 16 14 32 64)
  933. (mirror-action "earth-idle-right-stone"))
  934. (action
  935. (name "earth-climbing-right-stone")
  936. (hitbox 16 14 32 64)
  937. (images "earth/statue.png"))
  938. (action
  939. (name "earth-climbing-left-stone")
  940. (hitbox 16 14 32 64)
  941. (mirror-action "earth-climbing-right-stone"))
  942. (action
  943. (name "earth-duck-right-stone")
  944. (hitbox 16 45 32 32)
  945. (images "earth/statue.png"))
  946. (action
  947. (name "earth-duck-left-stone")
  948. (hitbox 16 45 32 32)
  949. (mirror-action "earth-duck-right-stone"))
  950. (action
  951. (name "earth-backflip-right-stone")
  952. (hitbox 16 37 32 32)
  953. (images "earth/statue.png"))
  954. (action
  955. (name "earth-backflip-left-stone")
  956. (hitbox 16 37 32 32)
  957. (fps 18.0)
  958. (mirror-action "earth-backflip-right-stone"))
  959. (action
  960. (name "earth-buttjump-right-stone")
  961. (hitbox 16 14 32 64)
  962. (images "earth/statue.png"))
  963. (action
  964. (name "earth-buttjump-left-stone")
  965. (hitbox 16 14 32 64)
  966. (mirror-action "earth-buttjump-right-stone"))
  967. ; Air Tux
  968. (action
  969. (name "air-walk-right")
  970. (fps 15.0)
  971. (hitbox 16 14 32 64)
  972. (clone-action "big-walk-right"))
  973. (action
  974. (name "air-walk-left")
  975. (fps 15.0)
  976. (hitbox 16 14 32 64)
  977. (mirror-action "big-walk-right"))
  978. (action
  979. (name "air-stand-right")
  980. (fps 15.0)
  981. (hitbox 16 14 32 64)
  982. (clone-action "big-stand-right"))
  983. (action
  984. (name "air-stand-left")
  985. (fps 15.0)
  986. (hitbox 16 14 32 64)
  987. (mirror-action "big-stand-right"))
  988. (action
  989. (name "air-walljump-right")
  990. (fps 24.0)
  991. (loops 1)
  992. (hitbox 24 14 32 64)
  993. (clone-action "big-walljump-right"))
  994. (action
  995. (name "air-walljump-left")
  996. (fps 24.0)
  997. (loops 1)
  998. (hitbox 8 14 32 64)
  999. (mirror-action "air-walljump-right"))
  1000. (action
  1001. (name "air-jump-right")
  1002. (fps 16.0)
  1003. (hitbox 16 14 32 64)
  1004. (loops 1)
  1005. (clone-action "big-jump-right"))
  1006. (action
  1007. (name "air-jump-left")
  1008. (fps 16.0)
  1009. (hitbox 16 14 32 64)
  1010. (loops 1)
  1011. (mirror-action "big-jump-right"))
  1012. (action
  1013. (name "air-fall-right")
  1014. (fps 16.0)
  1015. (hitbox 16 14 32 64)
  1016. (loos 1)
  1017. (clone-action "big-jump-right"))
  1018. (action
  1019. (name "air-fall-left")
  1020. (fps 16.0)
  1021. (hitbox 16 14 32 64)
  1022. (loops 1)
  1023. (mirror-action "big-jump-right"))
  1024. (action
  1025. (name "air-skid-right")
  1026. (hitbox 16 14 32 64)
  1027. (clone-action "big-skid-right"))
  1028. (action
  1029. (name "air-skid-left")
  1030. (hitbox 16 14 32 64)
  1031. (mirror-action "big-skid-right"))
  1032. (action
  1033. (name "air-kick-right")
  1034. (hitbox 16 14 32 64)
  1035. (clone-action "big-kick-right"))
  1036. (action
  1037. (name "air-kick-left")
  1038. (hitbox 16 14 32 64)
  1039. (mirror-action "big-kick-right"))
  1040. (action
  1041. (name "air-idle-right")
  1042. (fps 5.0)
  1043. (hitbox 16 14 32 64)
  1044. (clone-action "big-idle-right"))
  1045. (action
  1046. (name "air-idle-left")
  1047. (hitbox 16 14 32 64)
  1048. (mirror-action "big-idle-right"))
  1049. (action
  1050. (name "air-climbing-right")
  1051. (fps 15.0)
  1052. (hitbox 9 14 25 64)
  1053. (clone-action "big-climbing-right"))
  1054. (action
  1055. (name "air-climbing-left")
  1056. (fps 15.0)
  1057. (hitbox 9 14 25 64)
  1058. (mirror-action "big-climbing-right"))
  1059. (action
  1060. (name "air-duck-right")
  1061. (hitbox 16 45 32 32)
  1062. (clone-action "big-duck-right"))
  1063. (action
  1064. (name "air-duck-left")
  1065. (hitbox 16 45 32 32)
  1066. (mirror-action "big-duck-right"))
  1067. (action
  1068. (name "air-backflip-right")
  1069. (hitbox 16 37 32 32)
  1070. (clone-action "big-backflip-right"))
  1071. (action
  1072. (name "air-backflip-left")
  1073. (hitbox 16 37 32 32)
  1074. (fps 18.0)
  1075. (mirror-action "big-backflip-right"))
  1076. (action
  1077. (name "air-buttjump-right")
  1078. (hitbox 16 14 32 46)
  1079. (fps 20.0)
  1080. (loops 1)
  1081. (clone-action "big-buttjump-right"))
  1082. (action
  1083. (name "air-buttjump-left")
  1084. (hitbox 16 14 32 46)
  1085. (fps 20.0)
  1086. (loops 1)
  1087. (mirror-action "big-buttjump-right"))
  1088. (action
  1089. (name "air-swimming-right")
  1090. (fps 15.0)
  1091. (hitbox 29 24 32 64)
  1092. (clone-action "big-swimming-right"))
  1093. (action
  1094. (name "air-swimming-left")
  1095. (fps 15.0)
  1096. (hitbox 29 24 32 64)
  1097. (mirror-action "big-swimming-right"))
  1098. (action
  1099. (name "air-floating-right")
  1100. (fps 11.0)
  1101. (hitbox 29 24 32 64)
  1102. (clone-action "big-floating-right"))
  1103. (action
  1104. (name "air-floating-left")
  1105. (fps 11.0)
  1106. (hitbox 29 24 32 64)
  1107. (mirror-action "big-floating-right"))
  1108. (action
  1109. (name "air-swimjump-right")
  1110. (fps 10.0)
  1111. (loops 1)
  1112. (hitbox 29 24 32 64)
  1113. (clone-action "big-swimjump-right"))
  1114. (action
  1115. (name "air-swimjump-left")
  1116. (fps 10.0)
  1117. (loops 1)
  1118. (hitbox 29 24 32 64)
  1119. (mirror-action "big-swimjump-right"))
  1120. ; Santa Tux
  1121. (action
  1122. (name "santa-walk-right")
  1123. (fps 20.0)
  1124. (hitbox 16 14 32 64)
  1125. (clone-action "big-walk-right"))
  1126. (action
  1127. (name "santa-walk-left")
  1128. (fps 20.0)
  1129. (hitbox 16 14 32 64)
  1130. (mirror-action "big-walk-right"))
  1131. (action
  1132. (name "santa-stand-right")
  1133. (fps 15.0)
  1134. (hitbox 16 14 32 64)
  1135. (clone-action "big-stand-right"))
  1136. (action
  1137. (name "santa-stand-left")
  1138. (fps 15.0)
  1139. (hitbox 16 14 32 64)
  1140. (mirror-action "big-stand-right"))
  1141. (action
  1142. (name "santa-walljump-right")
  1143. (fps 24.0)
  1144. (loops 1)
  1145. (hitbox 24 14 32 64)
  1146. (clone-action "big-walljump-right"))
  1147. (action
  1148. (name "santa-walljump-left")
  1149. (fps 24.0)
  1150. (loops 1)
  1151. (hitbox 8 14 32 64)
  1152. (mirror-action "santa-walljump-right"))
  1153. (action
  1154. (name "santa-jump-right")
  1155. (fps 16.0)
  1156. (hitbox 16 14 32 64)
  1157. (loops 1)
  1158. (clone-action "big-jump-right"))
  1159. (action
  1160. (name "santa-jump-left")
  1161. (fps 16.0)
  1162. (hitbox 16 14 32 64)
  1163. (loops 1)
  1164. (mirror-action "big-jump-right"))
  1165. (action
  1166. (name "santa-fall-right")
  1167. (fps 16.0)
  1168. (hitbox 16 14 32 64)
  1169. (loops 1)
  1170. (clone-action "big-jump-right"))
  1171. (action
  1172. (name "santa-fall-left")
  1173. (fps 16.0)
  1174. (hitbox 16 14 32 64)
  1175. (loops 1)
  1176. (mirror-action "big-jump-right"))
  1177. (action
  1178. (name "santa-skid-right")
  1179. (hitbox 16 14 32 64)
  1180. (clone-action "big-skid-right"))
  1181. (action
  1182. (name "santa-skid-left")
  1183. (hitbox 16 14 32 64)
  1184. (mirror-action "big-skid-right"))
  1185. (action
  1186. (name "santa-kick-right")
  1187. (hitbox 16 14 32 64)
  1188. (clone-action "big-kick-right"))
  1189. (action
  1190. (name "santa-kick-left")
  1191. (hitbox 16 14 32 64)
  1192. (mirror-action "big-kick-right"))
  1193. (action
  1194. (name "santa-idle-right")
  1195. (fps 5.0)
  1196. (hitbox 16 14 32 64)
  1197. (clone-action "big-idle-right"))
  1198. (action
  1199. (name "santa-idle-left")
  1200. (hitbox 16 14 32 64)
  1201. (mirror-action "big-idle-right"))
  1202. (action
  1203. (name "santa-climbing-right")
  1204. (fps 15.0)
  1205. (hitbox 9 14 25 64)
  1206. (clone-action "big-climbing-right"))
  1207. (action
  1208. (name "santa-climbing-left")
  1209. (fps 15.0)
  1210. (hitbox 9 14 25 64)
  1211. (mirror-action "big-climbing-right"))
  1212. (action
  1213. (name "santa-duck-right")
  1214. (hitbox 16 45 32 32)
  1215. (clone-action "big-duck-right"))
  1216. (action
  1217. (name "santa-duck-left")
  1218. (hitbox 16 45 32 32)
  1219. (mirror-action "big-duck-right"))
  1220. (action
  1221. (name "santa-backflip-right")
  1222. (hitbox 16 37 32 32)
  1223. (clone-action "big-backflip-right"))
  1224. (action
  1225. (name "santa-backflip-left")
  1226. (hitbox 16 37 32 32)
  1227. (fps 18.0)
  1228. (mirror-action "big-backflip-right"))
  1229. (action
  1230. (name "santa-buttjump-right")
  1231. (hitbox 16 14 32 46)
  1232. (fps 20.0)
  1233. (loops 1)
  1234. (clone-action "big-buttjump-right"))
  1235. (action
  1236. (name "santa-buttjump-left")
  1237. (hitbox 16 14 32 46)
  1238. (fps 20.0)
  1239. (loops 1)
  1240. (mirror-action "big-buttjump-right"))
  1241. (action
  1242. (name "santa-swimming-right")
  1243. (fps 15.0)
  1244. (hitbox 29 24 32 64)
  1245. (clone-action "big-swimming-right"))
  1246. (action
  1247. (name "santa-swimming-left")
  1248. (fps 15.0)
  1249. (hitbox 29 24 32 64)
  1250. (mirror-action "big-swimming-right"))
  1251. (action
  1252. (name "santa-floating-right")
  1253. (fps 11.0)
  1254. (hitbox 29 24 32 64)
  1255. (clone-action "big-floating-right"))
  1256. (action
  1257. (name "santa-floating-left")
  1258. (fps 11.0)
  1259. (hitbox 29 24 32 64)
  1260. (mirror-action "big-floating-right"))
  1261. (action
  1262. (name "santa-swimjump-right")
  1263. (fps 10.0)
  1264. (loops 1)
  1265. (hitbox 29 24 32 64)
  1266. (clone-action "big-swimjump-right"))
  1267. (action
  1268. (name "santa-swimjump-left")
  1269. (fps 10.0)
  1270. (loops 1)
  1271. (hitbox 29 24 32 64)
  1272. (mirror-action "big-swimjump-right"))
  1273. )